libZSservicesZSamazonka-cloudformationZSamazonka-cloudformation
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.CloudFormation.Types.TemplateParameter

Description

 
Synopsis

Documentation

data TemplateParameter Source #

The TemplateParameter data type.

See: newTemplateParameter smart constructor.

Constructors

TemplateParameter' 

Fields

Instances

Instances details
Eq TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

Read TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

Show TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

Generic TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

Associated Types

type Rep TemplateParameter :: Type -> Type #

NFData TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

Methods

rnf :: TemplateParameter -> () #

Hashable TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

FromXML TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

type Rep TemplateParameter Source # 
Instance details

Defined in Amazonka.CloudFormation.Types.TemplateParameter

type Rep TemplateParameter = D1 ('MetaData "TemplateParameter" "Amazonka.CloudFormation.Types.TemplateParameter" "libZSservicesZSamazonka-cloudformationZSamazonka-cloudformation" 'False) (C1 ('MetaCons "TemplateParameter'" 'PrefixI 'True) ((S1 ('MetaSel ('Just "parameterKey") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)) :*: S1 ('MetaSel ('Just "defaultValue") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 ('MetaSel ('Just "noEcho") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Bool)) :*: S1 ('MetaSel ('Just "description") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 (Maybe Text)))))

newTemplateParameter :: TemplateParameter Source #

Create a value of TemplateParameter 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:parameterKey:TemplateParameter', templateParameter_parameterKey - The name associated with the parameter.

$sel:defaultValue:TemplateParameter', templateParameter_defaultValue - The default value associated with the parameter.

$sel:noEcho:TemplateParameter', templateParameter_noEcho - Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

$sel:description:TemplateParameter', templateParameter_description - User defined description associated with the parameter.

templateParameter_parameterKey :: Lens' TemplateParameter (Maybe Text) Source #

The name associated with the parameter.

templateParameter_defaultValue :: Lens' TemplateParameter (Maybe Text) Source #

The default value associated with the parameter.

templateParameter_noEcho :: Lens' TemplateParameter (Maybe Bool) Source #

Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

templateParameter_description :: Lens' TemplateParameter (Maybe Text) Source #

User defined description associated with the parameter.