Class: AWS.MigrationHubOrchestrator
- Inherits:
-
AWS.Service
- Object
- AWS.Service
- AWS.MigrationHubOrchestrator
- Identifier:
- migrationhuborchestrator
- API Version:
- 2021-08-28
- Defined in:
- (unknown)
Overview
Constructs a service interface object. Each API operation is exposed as a function on service.
Service Description
This API reference provides descriptions, syntax, and other details about each of the actions and data types for AWS Migration Hub Orchestrator. The topic for each action shows the API request parameters and responses. Alternatively, you can use one of the AWS SDKs to access an API that is tailored to the programming language or platform that you're using.
Sending a Request Using MigrationHubOrchestrator
var migrationhuborchestrator = new AWS.MigrationHubOrchestrator();
migrationhuborchestrator.createTemplate(params, function (err, data) {
if (err) console.log(err, err.stack); // an error occurred
else console.log(data); // successful response
});
Locking the API Version
In order to ensure that the MigrationHubOrchestrator object uses this specific API, you can
construct the object by passing the apiVersion option to the constructor:
var migrationhuborchestrator = new AWS.MigrationHubOrchestrator({apiVersion: '2021-08-28'});
You can also set the API version globally in AWS.config.apiVersions using
the migrationhuborchestrator service identifier:
AWS.config.apiVersions = {
migrationhuborchestrator: '2021-08-28',
// other service API versions
};
var migrationhuborchestrator = new AWS.MigrationHubOrchestrator();
Constructor Summary collapse
-
new AWS.MigrationHubOrchestrator(options = {}) ⇒ Object
constructor
Constructs a service object.
Property Summary collapse
-
endpoint ⇒ AWS.Endpoint
readwrite
An Endpoint object representing the endpoint URL for service requests.
Properties inherited from AWS.Service
Method Summary collapse
-
createTemplate(params = {}, callback) ⇒ AWS.Request
Creates a migration workflow template.
.
-
createWorkflow(params = {}, callback) ⇒ AWS.Request
Create a workflow to orchestrate your migrations.
.
-
createWorkflowStep(params = {}, callback) ⇒ AWS.Request
Create a step in the migration workflow.
.
-
createWorkflowStepGroup(params = {}, callback) ⇒ AWS.Request
Create a step group in a migration workflow.
.
-
deleteTemplate(params = {}, callback) ⇒ AWS.Request
Deletes a migration workflow template.
.
-
deleteWorkflow(params = {}, callback) ⇒ AWS.Request
Delete a migration workflow.
-
deleteWorkflowStep(params = {}, callback) ⇒ AWS.Request
Delete a step in a migration workflow.
-
deleteWorkflowStepGroup(params = {}, callback) ⇒ AWS.Request
Delete a step group in a migration workflow.
.
-
getTemplate(params = {}, callback) ⇒ AWS.Request
Get the template you want to use for creating a migration workflow.
.
-
getTemplateStep(params = {}, callback) ⇒ AWS.Request
Get a specific step in a template.
.
-
getTemplateStepGroup(params = {}, callback) ⇒ AWS.Request
Get a step group in a template.
.
-
getWorkflow(params = {}, callback) ⇒ AWS.Request
Get migration workflow.
.
-
getWorkflowStep(params = {}, callback) ⇒ AWS.Request
Get a step in the migration workflow.
.
-
getWorkflowStepGroup(params = {}, callback) ⇒ AWS.Request
Get the step group of a migration workflow.
.
-
listPlugins(params = {}, callback) ⇒ AWS.Request
List AWS Migration Hub Orchestrator plugins.
.
-
listTagsForResource(params = {}, callback) ⇒ AWS.Request
List the tags added to a resource.
.
-
listTemplates(params = {}, callback) ⇒ AWS.Request
List the templates available in Migration Hub Orchestrator to create a migration workflow.
.
-
listTemplateStepGroups(params = {}, callback) ⇒ AWS.Request
List the step groups in a template.
.
-
listTemplateSteps(params = {}, callback) ⇒ AWS.Request
List the steps in a template.
.
-
listWorkflows(params = {}, callback) ⇒ AWS.Request
List the migration workflows.
.
-
listWorkflowStepGroups(params = {}, callback) ⇒ AWS.Request
List the step groups in a migration workflow.
.
-
listWorkflowSteps(params = {}, callback) ⇒ AWS.Request
List the steps in a workflow.
.
-
retryWorkflowStep(params = {}, callback) ⇒ AWS.Request
Retry a failed step in a migration workflow.
.
-
startWorkflow(params = {}, callback) ⇒ AWS.Request
Start a migration workflow.
.
-
stopWorkflow(params = {}, callback) ⇒ AWS.Request
Stop an ongoing migration workflow.
.
-
tagResource(params = {}, callback) ⇒ AWS.Request
Tag a resource by specifying its Amazon Resource Name (ARN).
.
-
untagResource(params = {}, callback) ⇒ AWS.Request
Deletes the tags for a resource.
.
-
updateTemplate(params = {}, callback) ⇒ AWS.Request
Updates a migration workflow template.
.
-
updateWorkflow(params = {}, callback) ⇒ AWS.Request
Update a migration workflow.
.
-
updateWorkflowStep(params = {}, callback) ⇒ AWS.Request
Update a step in a migration workflow.
.
-
updateWorkflowStepGroup(params = {}, callback) ⇒ AWS.Request
Update the step group in a migration workflow.
.
-
waitFor(state, params = {}, callback) ⇒ AWS.Request
Waits for a given MigrationHubOrchestrator resource.
Methods inherited from AWS.Service
makeRequest, makeUnauthenticatedRequest, setupRequestListeners, defineService
Constructor Details
new AWS.MigrationHubOrchestrator(options = {}) ⇒ Object
Constructs a service object. This object has one method for each API operation.