Class: Aws::ServerlessApplicationRepository::Types::ParameterValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::ServerlessApplicationRepository::Types::ParameterValue
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-serverlessapplicationrepository/types.rb
Overview
Parameter value of the application.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The key associated with the parameter.
-
#value ⇒ String
The input value associated with the parameter.
Instance Attribute Details
#name ⇒ String
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.
1510 1511 1512 1513 1514 1515 |
# File 'lib/aws-sdk-serverlessapplicationrepository/types.rb', line 1510 class ParameterValue < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The input value associated with the parameter.
1510 1511 1512 1513 1514 1515 |
# File 'lib/aws-sdk-serverlessapplicationrepository/types.rb', line 1510 class ParameterValue < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |