Select your cookie preferences

We use essential cookies and similar tools that are necessary to provide our site and services. We use performance cookies to collect anonymous statistics, so we can understand how customers use our site and make improvements. Essential cookies cannot be deactivated, but you can choose “Customize” or “Decline” to decline performance cookies.

If you agree, AWS and approved third parties will also use cookies to provide useful site features, remember your preferences, and display relevant content, including relevant advertising. To accept or decline all non-essential cookies, choose “Accept” or “Decline.” To make more detailed choices, choose “Customize.”

Class: Aws::CloudFormation::Types::Parameter

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

Overview

The Parameter data type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#parameter_keyString

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

Returns:

  • (String)

6395
6396
6397
6398
6399
6400
6401
6402
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6395

class Parameter < Struct.new(
  :parameter_key,
  :parameter_value,
  :use_previous_value,
  :resolved_value)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_valueString

The input value associated with the parameter.

Returns:

  • (String)

6395
6396
6397
6398
6399
6400
6401
6402
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6395

class Parameter < Struct.new(
  :parameter_key,
  :parameter_value,
  :use_previous_value,
  :resolved_value)
  SENSITIVE = []
  include Aws::Structure
end

#resolved_valueString

Read-only. The value that corresponds to a Systems Manager parameter key. This field is returned only for Systems Manager parameter types in the template. For more information, see Specify existing resources at runtime with CloudFormation-supplied parameter types in the CloudFormation User Guide.

Returns:

  • (String)

6395
6396
6397
6398
6399
6400
6401
6402
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6395

class Parameter < Struct.new(
  :parameter_key,
  :parameter_value,
  :use_previous_value,
  :resolved_value)
  SENSITIVE = []
  include Aws::Structure
end

#use_previous_valueBoolean

During a stack update, use the existing parameter value that the stack is using for a given parameter key. If you specify true, do not specify a parameter value.

Returns:

  • (Boolean)

6395
6396
6397
6398
6399
6400
6401
6402
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 6395

class Parameter < Struct.new(
  :parameter_key,
  :parameter_value,
  :use_previous_value,
  :resolved_value)
  SENSITIVE = []
  include Aws::Structure
end