@aws-sdk/client-migrationhuborchestrator 3.300.0 → 3.301.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist-types/commands/CreateWorkflowCommand.d.ts +5 -5
  2. package/dist-types/commands/CreateWorkflowStepCommand.d.ts +8 -8
  3. package/dist-types/commands/CreateWorkflowStepGroupCommand.d.ts +2 -2
  4. package/dist-types/commands/DeleteWorkflowCommand.d.ts +1 -1
  5. package/dist-types/commands/DeleteWorkflowStepCommand.d.ts +1 -1
  6. package/dist-types/commands/DeleteWorkflowStepGroupCommand.d.ts +1 -1
  7. package/dist-types/commands/GetTemplateCommand.d.ts +1 -1
  8. package/dist-types/commands/GetTemplateStepCommand.d.ts +1 -1
  9. package/dist-types/commands/GetTemplateStepGroupCommand.d.ts +1 -1
  10. package/dist-types/commands/GetWorkflowCommand.d.ts +1 -1
  11. package/dist-types/commands/GetWorkflowStepCommand.d.ts +1 -1
  12. package/dist-types/commands/GetWorkflowStepGroupCommand.d.ts +1 -1
  13. package/dist-types/commands/ListPluginsCommand.d.ts +1 -1
  14. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  15. package/dist-types/commands/ListTemplateStepGroupsCommand.d.ts +1 -1
  16. package/dist-types/commands/ListTemplateStepsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListTemplatesCommand.d.ts +1 -1
  18. package/dist-types/commands/ListWorkflowStepGroupsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListWorkflowStepsCommand.d.ts +1 -1
  20. package/dist-types/commands/ListWorkflowsCommand.d.ts +1 -1
  21. package/dist-types/commands/RetryWorkflowStepCommand.d.ts +1 -1
  22. package/dist-types/commands/StartWorkflowCommand.d.ts +1 -1
  23. package/dist-types/commands/StopWorkflowCommand.d.ts +1 -1
  24. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  25. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  26. package/dist-types/commands/UpdateWorkflowCommand.d.ts +5 -5
  27. package/dist-types/commands/UpdateWorkflowStepCommand.d.ts +8 -8
  28. package/dist-types/commands/UpdateWorkflowStepGroupCommand.d.ts +2 -2
  29. package/package.json +3 -3
@@ -26,19 +26,19 @@ export interface CreateWorkflowCommandOutput extends CreateMigrationWorkflowResp
26
26
  * import { MigrationHubOrchestratorClient, CreateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, CreateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // CreateMigrationWorkflowRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
32
  * templateId: "STRING_VALUE", // required
33
33
  * applicationConfigurationId: "STRING_VALUE", // required
34
- * inputParameters: { // required
35
- * "<keys>": { // Union: only one key present
34
+ * inputParameters: { // StepInputParameters // required
35
+ * "<keys>": { // StepInput Union: only one key present
36
36
  * integerValue: Number("int"),
37
37
  * stringValue: "STRING_VALUE",
38
- * listOfStringsValue: [
38
+ * listOfStringsValue: [ // StringList
39
39
  * "STRING_VALUE",
40
40
  * ],
41
- * mapOfStringValue: {
41
+ * mapOfStringValue: { // StringMap
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * },
@@ -26,34 +26,34 @@ export interface CreateWorkflowStepCommandOutput extends CreateWorkflowStepRespo
26
26
  * import { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, CreateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // CreateWorkflowStepRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * stepGroupId: "STRING_VALUE", // required
32
32
  * workflowId: "STRING_VALUE", // required
33
33
  * stepActionType: "STRING_VALUE", // required
34
34
  * description: "STRING_VALUE",
35
- * workflowStepAutomationConfiguration: {
35
+ * workflowStepAutomationConfiguration: { // WorkflowStepAutomationConfiguration
36
36
  * scriptLocationS3Bucket: "STRING_VALUE",
37
- * scriptLocationS3Key: {
37
+ * scriptLocationS3Key: { // PlatformScriptKey
38
38
  * linux: "STRING_VALUE",
39
39
  * windows: "STRING_VALUE",
40
40
  * },
41
- * command: {
41
+ * command: { // PlatformCommand
42
42
  * linux: "STRING_VALUE",
43
43
  * windows: "STRING_VALUE",
44
44
  * },
45
45
  * runEnvironment: "STRING_VALUE",
46
46
  * targetType: "STRING_VALUE",
47
47
  * },
48
- * stepTarget: [
48
+ * stepTarget: [ // StringList
49
49
  * "STRING_VALUE",
50
50
  * ],
51
- * outputs: [
52
- * {
51
+ * outputs: [ // WorkflowStepOutputList
52
+ * { // WorkflowStepOutput
53
53
  * name: "STRING_VALUE",
54
54
  * dataType: "STRING_VALUE",
55
55
  * required: true || false,
56
- * value: { // Union: only one key present
56
+ * value: { // WorkflowStepOutputUnion Union: only one key present
57
57
  * integerValue: Number("int"),
58
58
  * stringValue: "STRING_VALUE",
59
59
  * listOfStringValue: [
@@ -26,11 +26,11 @@ export interface CreateWorkflowStepGroupCommandOutput extends CreateWorkflowStep
26
26
  * import { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, CreateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // CreateWorkflowStepGroupRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
- * next: [
33
+ * next: [ // StringList
34
34
  * "STRING_VALUE",
35
35
  * ],
36
36
  * previous: [
@@ -27,7 +27,7 @@ export interface DeleteWorkflowCommandOutput extends DeleteMigrationWorkflowResp
27
27
  * import { MigrationHubOrchestratorClient, DeleteWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
28
28
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
29
29
  * const client = new MigrationHubOrchestratorClient(config);
30
- * const input = {
30
+ * const input = { // DeleteMigrationWorkflowRequest
31
31
  * id: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteWorkflowCommand(input);
@@ -27,7 +27,7 @@ export interface DeleteWorkflowStepCommandOutput extends DeleteWorkflowStepRespo
27
27
  * import { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
28
28
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
29
29
  * const client = new MigrationHubOrchestratorClient(config);
30
- * const input = {
30
+ * const input = { // DeleteWorkflowStepRequest
31
31
  * id: "STRING_VALUE", // required
32
32
  * stepGroupId: "STRING_VALUE", // required
33
33
  * workflowId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface DeleteWorkflowStepGroupCommandOutput extends DeleteWorkflowStep
26
26
  * import { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, DeleteWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // DeleteWorkflowStepGroupRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * id: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetTemplateCommandOutput extends GetMigrationWorkflowTemplateRe
26
26
  * import { MigrationHubOrchestratorClient, GetTemplateCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetTemplateCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetMigrationWorkflowTemplateRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetTemplateCommand(input);
@@ -26,7 +26,7 @@ export interface GetTemplateStepCommandOutput extends GetTemplateStepResponse, _
26
26
  * import { MigrationHubOrchestratorClient, GetTemplateStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetTemplateStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetTemplateStepRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * templateId: "STRING_VALUE", // required
32
32
  * stepGroupId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetTemplateStepGroupCommandOutput extends GetTemplateStepGroupR
26
26
  * import { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetTemplateStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetTemplateStepGroupRequest
30
30
  * templateId: "STRING_VALUE", // required
31
31
  * id: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetWorkflowCommandOutput extends GetMigrationWorkflowResponse,
26
26
  * import { MigrationHubOrchestratorClient, GetWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetMigrationWorkflowRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetWorkflowCommand(input);
@@ -26,7 +26,7 @@ export interface GetWorkflowStepCommandOutput extends GetWorkflowStepResponse, _
26
26
  * import { MigrationHubOrchestratorClient, GetWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetWorkflowStepRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * stepGroupId: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface GetWorkflowStepGroupCommandOutput extends GetWorkflowStepGroupR
26
26
  * import { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, GetWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // GetWorkflowStepGroupRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * workflowId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListPluginsCommandOutput extends ListPluginsResponse, __Metadat
26
26
  * import { MigrationHubOrchestratorClient, ListPluginsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListPluginsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListPluginsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * };
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { MigrationHubOrchestratorClient, ListTagsForResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListTagsForResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListTagsForResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new ListTagsForResourceCommand(input);
@@ -26,7 +26,7 @@ export interface ListTemplateStepGroupsCommandOutput extends ListTemplateStepGro
26
26
  * import { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListTemplateStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListTemplateStepGroupsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * templateId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListTemplateStepsCommandOutput extends ListTemplateStepsRespons
26
26
  * import { MigrationHubOrchestratorClient, ListTemplateStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListTemplateStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListTemplateStepsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * templateId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListTemplatesCommandOutput extends ListMigrationWorkflowTemplat
26
26
  * import { MigrationHubOrchestratorClient, ListTemplatesCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListTemplatesCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListMigrationWorkflowTemplatesRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * name: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListWorkflowStepGroupsCommandOutput extends ListWorkflowStepGro
26
26
  * import { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListWorkflowStepGroupsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListWorkflowStepGroupsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * workflowId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListWorkflowStepsCommandOutput extends ListWorkflowStepsRespons
26
26
  * import { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListWorkflowStepsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListWorkflowStepsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * workflowId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListWorkflowsCommandOutput extends ListMigrationWorkflowsRespon
26
26
  * import { MigrationHubOrchestratorClient, ListWorkflowsCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, ListWorkflowsCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // ListMigrationWorkflowsRequest
30
30
  * maxResults: Number("int"),
31
31
  * nextToken: "STRING_VALUE",
32
32
  * templateId: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface RetryWorkflowStepCommandOutput extends RetryWorkflowStepRespons
26
26
  * import { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, RetryWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // RetryWorkflowStepRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * stepGroupId: "STRING_VALUE", // required
32
32
  * id: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface StartWorkflowCommandOutput extends StartMigrationWorkflowRespon
26
26
  * import { MigrationHubOrchestratorClient, StartWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, StartWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // StartMigrationWorkflowRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StartWorkflowCommand(input);
@@ -26,7 +26,7 @@ export interface StopWorkflowCommandOutput extends StopMigrationWorkflowResponse
26
26
  * import { MigrationHubOrchestratorClient, StopWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, StopWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // StopMigrationWorkflowRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StopWorkflowCommand(input);
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { MigrationHubOrchestratorClient, TagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, TagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // TagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tags: { // required
31
+ * tags: { // TagMap // required
32
32
  * "<keys>": "STRING_VALUE",
33
33
  * },
34
34
  * };
@@ -26,9 +26,9 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
26
26
  * import { MigrationHubOrchestratorClient, UntagResourceCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UntagResourceCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UntagResourceRequest
30
30
  * resourceArn: "STRING_VALUE", // required
31
- * tagKeys: [ // required
31
+ * tagKeys: [ // TagKeyList // required
32
32
  * "STRING_VALUE",
33
33
  * ],
34
34
  * };
@@ -26,18 +26,18 @@ export interface UpdateWorkflowCommandOutput extends UpdateMigrationWorkflowResp
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateMigrationWorkflowRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * name: "STRING_VALUE",
32
32
  * description: "STRING_VALUE",
33
- * inputParameters: {
34
- * "<keys>": { // Union: only one key present
33
+ * inputParameters: { // StepInputParameters
34
+ * "<keys>": { // StepInput Union: only one key present
35
35
  * integerValue: Number("int"),
36
36
  * stringValue: "STRING_VALUE",
37
- * listOfStringsValue: [
37
+ * listOfStringsValue: [ // StringList
38
38
  * "STRING_VALUE",
39
39
  * ],
40
- * mapOfStringValue: {
40
+ * mapOfStringValue: { // StringMap
41
41
  * "<keys>": "STRING_VALUE",
42
42
  * },
43
43
  * },
@@ -26,35 +26,35 @@ export interface UpdateWorkflowStepCommandOutput extends UpdateWorkflowStepRespo
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWorkflowStepRequest
30
30
  * id: "STRING_VALUE", // required
31
31
  * stepGroupId: "STRING_VALUE", // required
32
32
  * workflowId: "STRING_VALUE", // required
33
33
  * name: "STRING_VALUE",
34
34
  * description: "STRING_VALUE",
35
35
  * stepActionType: "STRING_VALUE",
36
- * workflowStepAutomationConfiguration: {
36
+ * workflowStepAutomationConfiguration: { // WorkflowStepAutomationConfiguration
37
37
  * scriptLocationS3Bucket: "STRING_VALUE",
38
- * scriptLocationS3Key: {
38
+ * scriptLocationS3Key: { // PlatformScriptKey
39
39
  * linux: "STRING_VALUE",
40
40
  * windows: "STRING_VALUE",
41
41
  * },
42
- * command: {
42
+ * command: { // PlatformCommand
43
43
  * linux: "STRING_VALUE",
44
44
  * windows: "STRING_VALUE",
45
45
  * },
46
46
  * runEnvironment: "STRING_VALUE",
47
47
  * targetType: "STRING_VALUE",
48
48
  * },
49
- * stepTarget: [
49
+ * stepTarget: [ // StringList
50
50
  * "STRING_VALUE",
51
51
  * ],
52
- * outputs: [
53
- * {
52
+ * outputs: [ // WorkflowStepOutputList
53
+ * { // WorkflowStepOutput
54
54
  * name: "STRING_VALUE",
55
55
  * dataType: "STRING_VALUE",
56
56
  * required: true || false,
57
- * value: { // Union: only one key present
57
+ * value: { // WorkflowStepOutputUnion Union: only one key present
58
58
  * integerValue: Number("int"),
59
59
  * stringValue: "STRING_VALUE",
60
60
  * listOfStringValue: [
@@ -26,12 +26,12 @@ export interface UpdateWorkflowStepGroupCommandOutput extends UpdateWorkflowStep
26
26
  * import { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } from "@aws-sdk/client-migrationhuborchestrator"; // ES Modules import
27
27
  * // const { MigrationHubOrchestratorClient, UpdateWorkflowStepGroupCommand } = require("@aws-sdk/client-migrationhuborchestrator"); // CommonJS import
28
28
  * const client = new MigrationHubOrchestratorClient(config);
29
- * const input = {
29
+ * const input = { // UpdateWorkflowStepGroupRequest
30
30
  * workflowId: "STRING_VALUE", // required
31
31
  * id: "STRING_VALUE", // required
32
32
  * name: "STRING_VALUE",
33
33
  * description: "STRING_VALUE",
34
- * next: [
34
+ * next: [ // StringList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * previous: [
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-migrationhuborchestrator",
3
3
  "description": "AWS SDK for JavaScript Migrationhuborchestrator Client for Node.js, Browser and React Native",
4
- "version": "3.300.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.300.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
25
  "@aws-sdk/config-resolver": "3.300.0",
26
- "@aws-sdk/credential-provider-node": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",