libZSservicesZSamazonka-iamZSamazonka-iam
Copyright(c) 2013-2021 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone

Amazonka.IAM.ListInstanceProfileTags

Description

Lists the tags that are attached to the specified IAM instance profile. The returned list of tags is sorted by tag key. For more information about tagging, see Tagging IAM resources in the IAM User Guide.

Synopsis

Creating a Request

data ListInstanceProfileTags Source #

See: newListInstanceProfileTags smart constructor.

Constructors

ListInstanceProfileTags' 

Fields

  • marker :: Maybe Text

    Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start.

  • maxItems :: Maybe Natural

    Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true.

    If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true, and Marker contains a value to include in the subsequent call that tells the service where to continue from.

  • instanceProfileName :: Text

    The name of the IAM instance profile whose tags you want to see.

    This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Instances

Instances details
Eq ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Read ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Show ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Generic ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Associated Types

type Rep ListInstanceProfileTags :: Type -> Type #

NFData ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Methods

rnf :: ListInstanceProfileTags -> () #

Hashable ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

AWSRequest ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

ToHeaders ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

ToPath ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

ToQuery ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

type Rep ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

type Rep ListInstanceProfileTags = D1 ('MetaData "ListInstanceProfileTags" "Amazonka.IAM.ListInstanceProfileTags" "libZSservicesZSamazonka-iamZSamazonka-iam" 'False) (C1 ('MetaCons "ListInstanceProfileTags'" 'PrefixI 'True) (S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "maxItems") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Natural)) :*: S1 ('MetaSel ('Just "instanceProfileName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text))))
type AWSResponse ListInstanceProfileTags Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

newListInstanceProfileTags Source #

Create a value of ListInstanceProfileTags with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:marker:ListInstanceProfileTags', listInstanceProfileTags_marker - Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start.

$sel:maxItems:ListInstanceProfileTags', listInstanceProfileTags_maxItems - Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true.

If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true, and Marker contains a value to include in the subsequent call that tells the service where to continue from.

$sel:instanceProfileName:ListInstanceProfileTags', listInstanceProfileTags_instanceProfileName - The name of the IAM instance profile whose tags you want to see.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Request Lenses

listInstanceProfileTags_marker :: Lens' ListInstanceProfileTags (Maybe Text) Source #

Use this parameter only when paginating results and only after you receive a response indicating that the results are truncated. Set it to the value of the Marker element in the response that you received to indicate where the next call should start.

listInstanceProfileTags_maxItems :: Lens' ListInstanceProfileTags (Maybe Natural) Source #

Use this only when paginating results to indicate the maximum number of items you want in the response. If additional items exist beyond the maximum you specify, the IsTruncated response element is true.

If you do not include this parameter, the number of items defaults to 100. Note that IAM might return fewer results, even when there are more results available. In that case, the IsTruncated response element returns true, and Marker contains a value to include in the subsequent call that tells the service where to continue from.

listInstanceProfileTags_instanceProfileName :: Lens' ListInstanceProfileTags Text Source #

The name of the IAM instance profile whose tags you want to see.

This parameter allows (through its regex pattern) a string of characters consisting of upper and lowercase alphanumeric characters with no spaces. You can also include any of the following characters: _+=,.@-

Destructuring the Response

data ListInstanceProfileTagsResponse Source #

See: newListInstanceProfileTagsResponse smart constructor.

Constructors

ListInstanceProfileTagsResponse' 

Fields

  • marker :: Maybe Text

    When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

  • isTruncated :: Maybe Bool

    A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results.

  • httpStatus :: Int

    The response's http status code.

  • tags :: [Tag]

    The list of tags that are currently attached to the IAM instance profile. Each tag consists of a key name and an associated value. If no tags are attached to the specified resource, the response contains an empty list.

Instances

Instances details
Eq ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Read ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Show ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Generic ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

Associated Types

type Rep ListInstanceProfileTagsResponse :: Type -> Type #

NFData ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

type Rep ListInstanceProfileTagsResponse Source # 
Instance details

Defined in Amazonka.IAM.ListInstanceProfileTags

type Rep ListInstanceProfileTagsResponse = D1 ('MetaData "ListInstanceProfileTagsResponse" "Amazonka.IAM.ListInstanceProfileTags" "libZSservicesZSamazonka-iamZSamazonka-iam" 'False) (C1 ('MetaCons "ListInstanceProfileTagsResponse'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "marker") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "isTruncated") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool))) :*: (S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Tag]))))

newListInstanceProfileTagsResponse Source #

Create a value of ListInstanceProfileTagsResponse with all optional fields omitted.

Use generic-lens or optics to modify other optional fields.

The following record fields are available, with the corresponding lenses provided for backwards compatibility:

$sel:marker:ListInstanceProfileTags', listInstanceProfileTagsResponse_marker - When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

$sel:isTruncated:ListInstanceProfileTagsResponse', listInstanceProfileTagsResponse_isTruncated - A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results.

$sel:httpStatus:ListInstanceProfileTagsResponse', listInstanceProfileTagsResponse_httpStatus - The response's http status code.

$sel:tags:ListInstanceProfileTagsResponse', listInstanceProfileTagsResponse_tags - The list of tags that are currently attached to the IAM instance profile. Each tag consists of a key name and an associated value. If no tags are attached to the specified resource, the response contains an empty list.

Response Lenses

listInstanceProfileTagsResponse_marker :: Lens' ListInstanceProfileTagsResponse (Maybe Text) Source #

When IsTruncated is true, this element is present and contains the value to use for the Marker parameter in a subsequent pagination request.

listInstanceProfileTagsResponse_isTruncated :: Lens' ListInstanceProfileTagsResponse (Maybe Bool) Source #

A flag that indicates whether there are more items to return. If your results were truncated, you can make a subsequent pagination request using the Marker request parameter to retrieve more items. Note that IAM might return fewer than the MaxItems number of results even when there are more results available. We recommend that you check IsTruncated after every call to ensure that you receive all your results.

listInstanceProfileTagsResponse_tags :: Lens' ListInstanceProfileTagsResponse [Tag] Source #

The list of tags that are currently attached to the IAM instance profile. Each tag consists of a key name and an associated value. If no tags are attached to the specified resource, the response contains an empty list.