Class: Aws::Imagebuilder::Types::ComponentParameterDetail

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

Overview

Defines a parameter that is used to provide configuration details for the component.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_valueArray<String>

The default value of this parameter if no input is provided.

Returns:

  • (Array<String>)


457
458
459
460
461
462
463
464
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 457

class ComponentParameterDetail < Struct.new(
  :name,
  :type,
  :default_value,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#descriptionString

Describes this parameter.

Returns:

  • (String)


457
458
459
460
461
462
463
464
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 457

class ComponentParameterDetail < Struct.new(
  :name,
  :type,
  :default_value,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The name of this input parameter.

Returns:

  • (String)


457
458
459
460
461
462
463
464
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 457

class ComponentParameterDetail < Struct.new(
  :name,
  :type,
  :default_value,
  :description)
  SENSITIVE = []
  include Aws::Structure
end

#typeString

The type of input this parameter provides. The currently supported value is "string".

Returns:

  • (String)


457
458
459
460
461
462
463
464
# File 'gems/aws-sdk-imagebuilder/lib/aws-sdk-imagebuilder/types.rb', line 457

class ComponentParameterDetail < Struct.new(
  :name,
  :type,
  :default_value,
  :description)
  SENSITIVE = []
  include Aws::Structure
end