libZSservicesZSamazonka-resourcegroupstaggingZSamazonka-resourcegroupstagging
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.ResourceGroupsTagging.TagResources

Description

Applies one or more tags to the specified resources. Note the following:

  • Not all resources can have tags. For a list of services with resources that support tagging using this operation, see Services that support the Resource Groups Tagging API.
  • Each resource can have up to 50 tags. For other limits, see Tag Naming and Usage Conventions in the AWS General Reference.
  • You can only tag resources that are located in the specified AWS Region for the AWS account.
  • To add tags to a resource, you need the necessary permissions for the service that the resource belongs to as well as permissions for adding tags. For more information, see the documentation for each service.

Do not store personally identifiable information (PII) or other confidential or sensitive information in tags. We use tags to provide you with billing and administration services. Tags are not intended to be used for private or sensitive data.

Synopsis

Creating a Request

data TagResources Source #

See: newTagResources smart constructor.

Constructors

TagResources' 

Fields

Instances

Instances details
Eq TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Read TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Show TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Generic TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Associated Types

type Rep TagResources :: Type -> Type #

NFData TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Methods

rnf :: TagResources -> () #

Hashable TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

ToJSON TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

AWSRequest TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Associated Types

type AWSResponse TagResources #

ToHeaders TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

ToPath TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

ToQuery TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

type Rep TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

type Rep TagResources = D1 ('MetaData "TagResources" "Amazonka.ResourceGroupsTagging.TagResources" "libZSservicesZSamazonka-resourcegroupstaggingZSamazonka-resourcegroupstagging" 'False) (C1 ('MetaCons "TagResources'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceARNList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (NonEmpty Text)) :*: S1 ('MetaSel ('Just "tags") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (HashMap Text Text))))
type AWSResponse TagResources Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

newTagResources Source #

Create a value of TagResources 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:resourceARNList:TagResources', tagResources_resourceARNList - Specifies the list of ARNs of the resources that you want to apply tags to.

An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

$sel:tags:TagResources', tagResources_tags - Specifies a list of tags that you want to add to the specified resources. A tag consists of a key and a value that you define.

Request Lenses

tagResources_resourceARNList :: Lens' TagResources (NonEmpty Text) Source #

Specifies the list of ARNs of the resources that you want to apply tags to.

An ARN (Amazon Resource Name) uniquely identifies a resource. For more information, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.

tagResources_tags :: Lens' TagResources (HashMap Text Text) Source #

Specifies a list of tags that you want to add to the specified resources. A tag consists of a key and a value that you define.

Destructuring the Response

data TagResourcesResponse Source #

See: newTagResourcesResponse smart constructor.

Constructors

TagResourcesResponse' 

Fields

  • failedResourcesMap :: Maybe (HashMap Text FailureInfo)

    A map containing a key-value pair for each failed item that couldn't be tagged. The key is the ARN of the failed resource. The value is a FailureInfo object that contains an error code, a status code, and an error message. If there are no errors, the FailedResourcesMap is empty.

  • httpStatus :: Int

    The response's http status code.

Instances

Instances details
Eq TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Read TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Show TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Generic TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Associated Types

type Rep TagResourcesResponse :: Type -> Type #

NFData TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

Methods

rnf :: TagResourcesResponse -> () #

type Rep TagResourcesResponse Source # 
Instance details

Defined in Amazonka.ResourceGroupsTagging.TagResources

type Rep TagResourcesResponse = D1 ('MetaData "TagResourcesResponse" "Amazonka.ResourceGroupsTagging.TagResources" "libZSservicesZSamazonka-resourcegroupstaggingZSamazonka-resourcegroupstagging" 'False) (C1 ('MetaCons "TagResourcesResponse'" 'PrefixI 'True) (S1 ('MetaSel ('Just "failedResourcesMap") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe (HashMap Text FailureInfo))) :*: S1 ('MetaSel ('Just "httpStatus") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Int)))

newTagResourcesResponse Source #

Create a value of TagResourcesResponse 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:failedResourcesMap:TagResourcesResponse', tagResourcesResponse_failedResourcesMap - A map containing a key-value pair for each failed item that couldn't be tagged. The key is the ARN of the failed resource. The value is a FailureInfo object that contains an error code, a status code, and an error message. If there are no errors, the FailedResourcesMap is empty.

$sel:httpStatus:TagResourcesResponse', tagResourcesResponse_httpStatus - The response's http status code.

Response Lenses

tagResourcesResponse_failedResourcesMap :: Lens' TagResourcesResponse (Maybe (HashMap Text FailureInfo)) Source #

A map containing a key-value pair for each failed item that couldn't be tagged. The key is the ARN of the failed resource. The value is a FailureInfo object that contains an error code, a status code, and an error message. If there are no errors, the FailedResourcesMap is empty.