Class: Aws::ServerlessApplicationRepository::Types::ParameterValue

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-serverlessapplicationrepository/lib/aws-sdk-serverlessapplicationrepository/types.rb

Overview

Parameter value of the application.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

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.

Returns:

  • (String)


1510
1511
1512
1513
1514
1515
# File 'gems/aws-sdk-serverlessapplicationrepository/lib/aws-sdk-serverlessapplicationrepository/types.rb', line 1510

class ParameterValue < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueString

The input value associated with the parameter.

Returns:

  • (String)


1510
1511
1512
1513
1514
1515
# File 'gems/aws-sdk-serverlessapplicationrepository/lib/aws-sdk-serverlessapplicationrepository/types.rb', line 1510

class ParameterValue < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end