Class: Aws::Imagebuilder::Types::WorkflowParameterDetail

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

Overview

Defines a parameter that’s used to provide configuration details for the workflow.

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.



9091
9092
9093
9094
9095
9096
9097
9098
# File 'lib/aws-sdk-imagebuilder/types.rb', line 9091

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

#descriptionString

Describes this parameter.



9091
9092
9093
9094
9095
9096
9097
9098
# File 'lib/aws-sdk-imagebuilder/types.rb', line 9091

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

#nameString

The name of this input parameter.



9091
9092
9093
9094
9095
9096
9097
9098
# File 'lib/aws-sdk-imagebuilder/types.rb', line 9091

class WorkflowParameterDetail < 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”.



9091
9092
9093
9094
9095
9096
9097
9098
# File 'lib/aws-sdk-imagebuilder/types.rb', line 9091

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