- Navigation GuideYou are on a Command (operation) page with structural examples. Use the navigation breadcrumb if you would like to return to the Client landing page.
CreateTemplateCommand
Creates a migration workflow template.
Example Syntax
Use a bare-bones client and the command you need to make an API call.
import { MigrationHubOrchestratorClient, CreateTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
// const { MigrationHubOrchestratorClient, CreateTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
const client = new MigrationHubOrchestratorClient(config);
const input = { // CreateTemplateRequest
templateName: "STRING_VALUE", // required
templateDescription: "STRING_VALUE",
templateSource: { // TemplateSource Union: only one key present
workflowId: "STRING_VALUE",
},
clientToken: "STRING_VALUE",
tags: { // TagMap
"<keys>": "STRING_VALUE",
},
};
const command = new CreateTemplateCommand(input);
const response = await client.send(command);
// { // CreateTemplateResponse
// templateId: "STRING_VALUE",
// templateArn: "STRING_VALUE",
// tags: { // StringMap
// "<keys>": "STRING_VALUE",
// },
// };
CreateTemplateCommand Input
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
templateName Required | string | undefined | The name of the migration workflow template. |
templateSource Required | TemplateSource | undefined | The source of the migration workflow template. |
clientToken | string | undefined | A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Idempotency in the Smithy documentation. |
tags | Record<string, string> | undefined | The tags to add to the migration workflow template. |
templateDescription | string | undefined | A description of the migration workflow template. |
CreateTemplateCommand Output
Parameter | Type | Description |
---|
Parameter | Type | Description |
---|---|---|
$metadata Required | ResponseMetadata | Metadata pertaining to this request. |
tags | Record<string, string> | undefined | The tags added to the migration workflow template. |
templateArn | string | undefined | The Amazon Resource Name (ARN) of the migration workflow template. The format for an Migration Hub Orchestrator template ARN is |
templateId | string | undefined | The ID of the migration workflow template. |
Throws
Name | Fault | Details |
---|
Name | Fault | Details |
---|---|---|
AccessDeniedException | client | You do not have sufficient access to perform this action. |
ConflictException | client | This exception is thrown when an attempt to update or delete a resource would cause an inconsistent state. |
InternalServerException | server | An internal error has occurred. |
ThrottlingException | client | The request was denied due to request throttling. |
ValidationException | client | The input fails to satisfy the constraints specified by an AWS service. |
MigrationHubOrchestratorServiceException | Base exception class for all service exceptions from MigrationHubOrchestrator service. |