Class: Aws::CloudFormation::Types::TemplateParameter

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

Overview

The ‘TemplateParameter` data type.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_valueString

The default value associated with the parameter.

Returns:

  • (String)


10726
10727
10728
10729
10730
10731
10732
10733
# File 'lib/aws-sdk-cloudformation/types.rb', line 10726

class TemplateParameter < Struct.new(
  :parameter_key,
  :default_value,
  :no_echo,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

User defined description associated with the parameter.

Returns:

  • (String)


10726
10727
10728
10729
10730
10731
10732
10733
# File 'lib/aws-sdk-cloudformation/types.rb', line 10726

class TemplateParameter < Struct.new(
  :parameter_key,
  :default_value,
  :no_echo,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#no_echoBoolean

Flag indicating whether the parameter should be displayed as plain text in logs and UIs.

Returns:

  • (Boolean)


10726
10727
10728
10729
10730
10731
10732
10733
# File 'lib/aws-sdk-cloudformation/types.rb', line 10726

class TemplateParameter < Struct.new(
  :parameter_key,
  :default_value,
  :no_echo,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#parameter_keyString

The name associated with the parameter.

Returns:

  • (String)


10726
10727
10728
10729
10730
10731
10732
10733
# File 'lib/aws-sdk-cloudformation/types.rb', line 10726

class TemplateParameter < Struct.new(
  :parameter_key,
  :default_value,
  :no_echo,
  :description)
  SENSITIVE = []
  include Aws::Structure
end