amazonka-codedeploy-2.0: Amazon CodeDeploy 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.CodeDeploy.Types.TagFilter

Description

 
Synopsis

Documentation

data TagFilter Source #

Information about an on-premises instance tag filter.

See: newTagFilter smart constructor.

Constructors

TagFilter' 

Fields

  • key :: Maybe Text

    The on-premises instance tag filter key.

  • type' :: Maybe TagFilterType

    The on-premises instance tag filter type:

    • KEY_ONLY: Key only.
    • VALUE_ONLY: Value only.
    • KEY_AND_VALUE: Key and value.
  • value :: Maybe Text

    The on-premises instance tag filter value.

Instances

Instances details
FromJSON TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

ToJSON TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

Generic TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

Associated Types

type Rep TagFilter :: Type -> Type #

Read TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

Show TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

NFData TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

Methods

rnf :: TagFilter -> () #

Eq TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

Hashable TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

type Rep TagFilter Source # 
Instance details

Defined in Amazonka.CodeDeploy.Types.TagFilter

type Rep TagFilter = D1 ('MetaData "TagFilter" "Amazonka.CodeDeploy.Types.TagFilter" "amazonka-codedeploy-2.0-4OehMEUeOr9G9ZXD2VmvAo" 'False) (C1 ('MetaCons "TagFilter'" 'PrefixI 'True) (S1 ('MetaSel ('Just "key") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 ('MetaSel ('Just "type'") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe TagFilterType)) :*: S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newTagFilter :: TagFilter Source #

Create a value of TagFilter 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:TagFilter', tagFilter_key - The on-premises instance tag filter key.

$sel:type':TagFilter', tagFilter_type - The on-premises instance tag filter type:

  • KEY_ONLY: Key only.
  • VALUE_ONLY: Value only.
  • KEY_AND_VALUE: Key and value.

$sel:value:TagFilter', tagFilter_value - The on-premises instance tag filter value.

tagFilter_key :: Lens' TagFilter (Maybe Text) Source #

The on-premises instance tag filter key.

tagFilter_type :: Lens' TagFilter (Maybe TagFilterType) Source #

The on-premises instance tag filter type:

  • KEY_ONLY: Key only.
  • VALUE_ONLY: Value only.
  • KEY_AND_VALUE: Key and value.

tagFilter_value :: Lens' TagFilter (Maybe Text) Source #

The on-premises instance tag filter value.