Class: Aws::Imagebuilder::Types::WorkflowParameter

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

Overview

Contains a key/value pair that sets the named workflow parameter.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#name ⇒ String

The name of the workflow parameter to set.

Returns:

  • (String)


10035
10036
10037
10038
10039
10040
# File 'lib/aws-sdk-imagebuilder/types.rb', line 10035

class WorkflowParameter < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#value ⇒ Array<String>

Sets the value for the named workflow parameter.

Returns:

  • (Array<String>)


10035
10036
10037
10038
10039
10040
# File 'lib/aws-sdk-imagebuilder/types.rb', line 10035

class WorkflowParameter < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end