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

#nameString

The name of the workflow parameter to set.

Returns:

  • (String)


8304
8305
8306
8307
8308
8309
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8304

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

#valueArray<String>

Sets the value for the named workflow parameter.

Returns:

  • (Array<String>)


8304
8305
8306
8307
8308
8309
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8304

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