Class: Aws::MigrationHubOrchestrator::Types::WorkflowStepOutputUnion
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubOrchestrator::Types::WorkflowStepOutputUnion
- 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
Defined Under Namespace
Classes: IntegerValue, ListOfStringValue, StringValue, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#integer_value ⇒ Integer
The integer value.
-
#list_of_string_value ⇒ Array<String>
The list of string value.
-
#string_value ⇒ String
The string value.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#integer_value ⇒ Integer
The integer value.
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_value ⇒ Array<String>
The list of string value.
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_value ⇒ String
The string value.
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 |
#unknown ⇒ Object
Returns the value of attribute unknown
2515 2516 2517 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 2515 def unknown @unknown end |