Class: Aws::MigrationHubOrchestrator::Types::TemplateSource

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

Overview

Note:

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

The migration workflow template used as the source for the new template.

Defined Under Namespace

Classes: Unknown, WorkflowId

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1858
1859
1860
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1858

def unknown
  @unknown
end

#workflow_idString

The ID of the workflow from the source migration workflow template.

Returns:

  • (String)


1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1858

class TemplateSource < Struct.new(
  :workflow_id,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class WorkflowId < TemplateSource; end
  class Unknown < TemplateSource; end
end