Class: Aws::MigrationHubOrchestrator::Types::StepInput

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

Overview

Note:

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

Note:

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.

Defined Under Namespace

Classes: IntegerValue, ListOfStringsValue, MapOfStringValue, StringValue, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#integer_valueInteger

The value of the integer.

Returns:

  • (Integer)


1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1715

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_valueArray<String>

List of string values.

Returns:

  • (Array<String>)


1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1715

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_valueHash<String,String>

Map of string values.

Returns:

  • (Hash<String,String>)


1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1715

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_valueString

String value.

Returns:

  • (String)


1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1715

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1715
1716
1717
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1715

def unknown
  @unknown
end