amazonka-fsx-2.0: Amazon FSx 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.FSx.Types.Tag

Description

 
Synopsis

Documentation

data Tag Source #

Specifies a key-value pair for a resource tag.

See: newTag smart constructor.

Constructors

Tag' 

Fields

  • key :: Text

    A value that specifies the TagKey, the name of the tag. Tag keys must be unique for the resource to which they are attached.

  • value :: Text

    A value that specifies the TagValue, the value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key-value pair in a tag set of finances : April and also of payroll : April.

Instances

Instances details
FromJSON Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

ToJSON Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Generic Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Associated Types

type Rep Tag :: Type -> Type #

Methods

from :: Tag -> Rep Tag x #

to :: Rep Tag x -> Tag #

Read Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Show Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Methods

showsPrec :: Int -> Tag -> ShowS #

show :: Tag -> String #

showList :: [Tag] -> ShowS #

NFData Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Methods

rnf :: Tag -> () #

Eq Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Methods

(==) :: Tag -> Tag -> Bool #

(/=) :: Tag -> Tag -> Bool #

Hashable Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

Methods

hashWithSalt :: Int -> Tag -> Int #

hash :: Tag -> Int #

type Rep Tag Source # 
Instance details

Defined in Amazonka.FSx.Types.Tag

type Rep Tag = D1 ('MetaData "Tag" "Amazonka.FSx.Types.Tag" "amazonka-fsx-2.0-6W1DYEEbHPkD4DJvTvpQG4" 'False) (C1 ('MetaCons "Tag'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newTag Source #

Create a value of Tag 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:key:Tag', tag_key - A value that specifies the TagKey, the name of the tag. Tag keys must be unique for the resource to which they are attached.

$sel:value:Tag', tag_value - A value that specifies the TagValue, the value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key-value pair in a tag set of finances : April and also of payroll : April.

tag_key :: Lens' Tag Text Source #

A value that specifies the TagKey, the name of the tag. Tag keys must be unique for the resource to which they are attached.

tag_value :: Lens' Tag Text Source #

A value that specifies the TagValue, the value assigned to the corresponding tag key. Tag values can be null and don't have to be unique in a tag set. For example, you can have a key-value pair in a tag set of finances : April and also of payroll : April.