amazonka-elasticache-2.0: Amazon ElastiCache SDK.
Copyright(c) 2013-2023 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellSafe-Inferred
LanguageHaskell2010

Amazonka.ElastiCache.RemoveTagsFromResource

Description

Removes the tags identified by the TagKeys list from the named resource. A tag is a key-value pair where the key and value are case-sensitive. You can use tags to categorize and track all your ElastiCache resources, with the exception of global replication group. When you add or remove tags on replication groups, those actions will be replicated to all nodes in the replication group. For more information, see Resource-level permissions.

Synopsis

Creating a Request

data RemoveTagsFromResource Source #

Represents the input of a RemoveTagsFromResource operation.

See: newRemoveTagsFromResource smart constructor.

Constructors

RemoveTagsFromResource' 

Fields

  • resourceName :: Text

    The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

    For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.

  • tagKeys :: [Text]

    A list of TagKeys identifying the tags you want removed from the named resource.

Instances

Instances details
ToHeaders RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

ToPath RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

ToQuery RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

AWSRequest RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

Associated Types

type AWSResponse RemoveTagsFromResource #

Generic RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

Associated Types

type Rep RemoveTagsFromResource :: Type -> Type #

Read RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

Show RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

NFData RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

Methods

rnf :: RemoveTagsFromResource -> () #

Eq RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

Hashable RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

type AWSResponse RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

type Rep RemoveTagsFromResource Source # 
Instance details

Defined in Amazonka.ElastiCache.RemoveTagsFromResource

type Rep RemoveTagsFromResource = D1 ('MetaData "RemoveTagsFromResource" "Amazonka.ElastiCache.RemoveTagsFromResource" "amazonka-elasticache-2.0-DTWyHgx8JwY7IlNovngF22" 'False) (C1 ('MetaCons "RemoveTagsFromResource'" 'PrefixI 'True) (S1 ('MetaSel ('Just "resourceName") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "tagKeys") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 [Text])))

newRemoveTagsFromResource Source #

Create a value of RemoveTagsFromResource 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:resourceName:RemoveTagsFromResource', removeTagsFromResource_resourceName - The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.

$sel:tagKeys:RemoveTagsFromResource', removeTagsFromResource_tagKeys - A list of TagKeys identifying the tags you want removed from the named resource.

Request Lenses

removeTagsFromResource_resourceName :: Lens' RemoveTagsFromResource Text Source #

The Amazon Resource Name (ARN) of the resource from which you want the tags removed, for example arn:aws:elasticache:us-west-2:0123456789:cluster:myCluster or arn:aws:elasticache:us-west-2:0123456789:snapshot:mySnapshot.

For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Service Namespaces.

removeTagsFromResource_tagKeys :: Lens' RemoveTagsFromResource [Text] Source #

A list of TagKeys identifying the tags you want removed from the named resource.

Destructuring the Response

data TagListMessage Source #

Represents the output from the AddTagsToResource, ListTagsForResource, and RemoveTagsFromResource operations.

See: newTagListMessage smart constructor.

Constructors

TagListMessage' 

Fields

Instances

Instances details
FromXML TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

Generic TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

Associated Types

type Rep TagListMessage :: Type -> Type #

Read TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

Show TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

NFData TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

Methods

rnf :: TagListMessage -> () #

Eq TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

Hashable TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

type Rep TagListMessage Source # 
Instance details

Defined in Amazonka.ElastiCache.Types.TagListMessage

type Rep TagListMessage = D1 ('MetaData "TagListMessage" "Amazonka.ElastiCache.Types.TagListMessage" "amazonka-elasticache-2.0-DTWyHgx8JwY7IlNovngF22" 'False) (C1 ('MetaCons "TagListMessage'" 'PrefixI 'True) (S1 ('MetaSel ('Just "tagList") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe [Tag]))))

newTagListMessage :: TagListMessage Source #

Create a value of TagListMessage 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:tagList:TagListMessage', tagListMessage_tagList - A list of tags as key-value pairs.

Response Lenses

tagListMessage_tagList :: Lens' TagListMessage (Maybe [Tag]) Source #

A list of tags as key-value pairs.