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)


8394
8395
8396
8397
8398
8399
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8394

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

#valueArray<String>

Sets the value for the named workflow parameter.

Returns:

  • (Array<String>)


8394
8395
8396
8397
8398
8399
# File 'lib/aws-sdk-imagebuilder/types.rb', line 8394

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