Class: Aws::MigrationHubOrchestrator::Types::StepInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubOrchestrator::Types::StepInput
- Defined in:
- gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb
Overview
StepInput is a union - when making an API calls you must set exactly one of the members.
StepInput is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of StepInput corresponding to the set member.
A map of key value pairs that is generated when you create a migration workflow. The key value pairs will differ based on your selection of the template.
Direct Known Subclasses
IntegerValue, ListOfStringsValue, MapOfStringValue, StringValue, Unknown
Defined Under Namespace
Classes: IntegerValue, ListOfStringsValue, MapOfStringValue, StringValue, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#integer_value ⇒ Integer
The value of the integer.
-
#list_of_strings_value ⇒ Array<String>
List of string values.
-
#map_of_string_value ⇒ Hash<String,String>
Map of string values.
-
#string_value ⇒ String
String value.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#integer_value ⇒ Integer
The value of the integer.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1567 class StepInput < Struct.new( :integer_value, :string_value, :list_of_strings_value, :map_of_string_value, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntegerValue < StepInput; end class StringValue < StepInput; end class ListOfStringsValue < StepInput; end class MapOfStringValue < StepInput; end class Unknown < StepInput; end end |
#list_of_strings_value ⇒ Array<String>
List of string values.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1567 class StepInput < Struct.new( :integer_value, :string_value, :list_of_strings_value, :map_of_string_value, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntegerValue < StepInput; end class StringValue < StepInput; end class ListOfStringsValue < StepInput; end class MapOfStringValue < StepInput; end class Unknown < StepInput; end end |
#map_of_string_value ⇒ Hash<String,String>
Map of string values.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1567 class StepInput < Struct.new( :integer_value, :string_value, :list_of_strings_value, :map_of_string_value, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntegerValue < StepInput; end class StringValue < StepInput; end class ListOfStringsValue < StepInput; end class MapOfStringValue < StepInput; end class Unknown < StepInput; end end |
#string_value ⇒ String
String value.
1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1567 class StepInput < Struct.new( :integer_value, :string_value, :list_of_strings_value, :map_of_string_value, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class IntegerValue < StepInput; end class StringValue < StepInput; end class ListOfStringsValue < StepInput; end class MapOfStringValue < StepInput; end class Unknown < StepInput; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1567 1568 1569 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1567 def unknown @unknown end |