Class: Aws::MigrationHubOrchestrator::Types::TemplateSource
- Inherits:
-
Struct
- Object
- Struct
- Aws::MigrationHubOrchestrator::Types::TemplateSource
- 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.
Direct Known Subclasses
Defined Under Namespace
Classes: Unknown, WorkflowId
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#unknown ⇒ Object
Returns the value of attribute unknown.
-
#workflow_id ⇒ String
The ID of the workflow from the source migration workflow template.
Instance Attribute Details
#unknown ⇒ Object
Returns the value of attribute unknown
1858 1859 1860 |
# File 'gems/aws-sdk-migrationhuborchestrator/lib/aws-sdk-migrationhuborchestrator/types.rb', line 1858 def unknown @unknown end |
#workflow_id ⇒ String
The ID of the workflow from the source migration workflow template.
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 |