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)


9915
9916
9917
9918
9919
9920
9921
9922
# File 'lib/aws-sdk-cloudformation/types.rb', line 9915

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)


9915
9916
9917
9918
9919
9920
9921
9922
# File 'lib/aws-sdk-cloudformation/types.rb', line 9915

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)


9915
9916
9917
9918
9919
9920
9921
9922
# File 'lib/aws-sdk-cloudformation/types.rb', line 9915

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)


9915
9916
9917
9918
9919
9920
9921
9922
# File 'lib/aws-sdk-cloudformation/types.rb', line 9915

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