libZSservicesZSamazonka-serverlessrepoZSamazonka-serverlessrepo
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.ServerlessApplicationRepository.Types.ParameterValue

Description

 
Synopsis

Documentation

data ParameterValue Source #

Parameter value of the application.

See: newParameterValue smart constructor.

Constructors

ParameterValue' 

Fields

  • value :: Text

    The input value associated with the parameter.

  • name :: Text

    The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.

Instances

Instances details
Eq ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Read ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Show ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Generic ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Associated Types

type Rep ParameterValue :: Type -> Type #

NFData ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Methods

rnf :: ParameterValue -> () #

Hashable ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

ToJSON ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

type Rep ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

type Rep ParameterValue = D1 ('MetaData "ParameterValue" "Amazonka.ServerlessApplicationRepository.Types.ParameterValue" "libZSservicesZSamazonka-serverlessrepoZSamazonka-serverlessrepo" 'False) (C1 ('MetaCons "ParameterValue'" 'PrefixI 'True) (S1 ('MetaSel ('Just "value") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text) :*: S1 ('MetaSel ('Just "name") 'NoSourceUnpackedness 'NoSourceStrictness 'DecidedStrict) (Rec0 Text)))

newParameterValue Source #

Create a value of ParameterValue 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:value:ParameterValue', parameterValue_value - The input value associated with the parameter.

$sel:name:ParameterValue', parameterValue_name - The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.

parameterValue_value :: Lens' ParameterValue Text Source #

The input value associated with the parameter.

parameterValue_name :: Lens' ParameterValue Text Source #

The key associated with the parameter. If you don't specify a key and value for a particular parameter, AWS CloudFormation uses the default value that is specified in your template.