Class: Aws::MigrationHubOrchestrator::Types::WorkflowStepOutputUnion

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb

Overview

Note:

WorkflowStepOutputUnion is a union - when making an API calls you must set exactly one of the members.

Note:

WorkflowStepOutputUnion is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of WorkflowStepOutputUnion corresponding to the set member.

A structure to hold multiple values of an output.

Direct Known Subclasses

IntegerValue, ListOfStringValue, StringValue, Unknown

Defined Under Namespace

Classes: IntegerValue, ListOfStringValue, StringValue, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#integer_valueInteger

The integer value.

Returns:

  • (Integer)


2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 2515

class WorkflowStepOutputUnion < Struct.new(
  :integer_value,
  :string_value,
  :list_of_string_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IntegerValue < WorkflowStepOutputUnion; end
  class StringValue < WorkflowStepOutputUnion; end
  class ListOfStringValue < WorkflowStepOutputUnion; end
  class Unknown < WorkflowStepOutputUnion; end
end

#list_of_string_valueArray<String>

The list of string value.

Returns:

  • (Array<String>)


2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 2515

class WorkflowStepOutputUnion < Struct.new(
  :integer_value,
  :string_value,
  :list_of_string_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IntegerValue < WorkflowStepOutputUnion; end
  class StringValue < WorkflowStepOutputUnion; end
  class ListOfStringValue < WorkflowStepOutputUnion; end
  class Unknown < WorkflowStepOutputUnion; end
end

#string_valueString

The string value.

Returns:

  • (String)


2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 2515

class WorkflowStepOutputUnion < Struct.new(
  :integer_value,
  :string_value,
  :list_of_string_value,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class IntegerValue < WorkflowStepOutputUnion; end
  class StringValue < WorkflowStepOutputUnion; end
  class ListOfStringValue < WorkflowStepOutputUnion; end
  class Unknown < WorkflowStepOutputUnion; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



2515
2516
2517
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 2515

def unknown
  @unknown
end