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)


9937
9938
9939
9940
9941
9942
9943
9944
# File 'lib/aws-sdk-cloudformation/types.rb', line 9937

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)


9937
9938
9939
9940
9941
9942
9943
9944
# File 'lib/aws-sdk-cloudformation/types.rb', line 9937

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)


9937
9938
9939
9940
9941
9942
9943
9944
# File 'lib/aws-sdk-cloudformation/types.rb', line 9937

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)


9937
9938
9939
9940
9941
9942
9943
9944
# File 'lib/aws-sdk-cloudformation/types.rb', line 9937

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