Class: Aws::Imagebuilder::Types::WorkflowParameterDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::Imagebuilder::Types::WorkflowParameterDetail
- 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
-
#default_value ⇒ Array<String>
The default value of this parameter if no input is provided.
-
#description ⇒ String
Describes this parameter.
-
#name ⇒ String
The name of this input parameter.
-
#type ⇒ String
The type of input this parameter provides.
Instance Attribute Details
#default_value ⇒ Array<String>
The default value of this parameter if no input is provided.
8254 8255 8256 8257 8258 8259 8260 8261 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8254 class WorkflowParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
Describes this parameter.
8254 8255 8256 8257 8258 8259 8260 8261 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8254 class WorkflowParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of this input parameter.
8254 8255 8256 8257 8258 8259 8260 8261 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8254 class WorkflowParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of input this parameter provides. The currently supported value is “string”.
8254 8255 8256 8257 8258 8259 8260 8261 |
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8254 class WorkflowParameterDetail < Struct.new( :name, :type, :default_value, :description) SENSITIVE = [] include Aws::Structure end |