amazonka-serverlessrepo-2.0: Amazon ServerlessApplicationRepository 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.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
ToJSON 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 #

Read ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Show ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

NFData ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Methods

rnf :: ParameterValue -> () #

Eq ParameterValue Source # 
Instance details

Defined in Amazonka.ServerlessApplicationRepository.Types.ParameterValue

Hashable 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" "amazonka-serverlessrepo-2.0-DJX7EnU3zce9dFmCiMzat7" '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.