@aws-sdk/client-m2 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 (33) hide show
  1. package/dist-types/commands/CancelBatchJobExecutionCommand.d.ts +1 -1
  2. package/dist-types/commands/CreateApplicationCommand.d.ts +3 -3
  3. package/dist-types/commands/CreateDataSetImportTaskCommand.d.ts +13 -13
  4. package/dist-types/commands/CreateDeploymentCommand.d.ts +1 -1
  5. package/dist-types/commands/CreateEnvironmentCommand.d.ts +8 -8
  6. package/dist-types/commands/DeleteApplicationCommand.d.ts +1 -1
  7. package/dist-types/commands/DeleteApplicationFromEnvironmentCommand.d.ts +1 -1
  8. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +1 -1
  9. package/dist-types/commands/GetApplicationCommand.d.ts +1 -1
  10. package/dist-types/commands/GetApplicationVersionCommand.d.ts +1 -1
  11. package/dist-types/commands/GetBatchJobExecutionCommand.d.ts +1 -1
  12. package/dist-types/commands/GetDataSetDetailsCommand.d.ts +1 -1
  13. package/dist-types/commands/GetDataSetImportTaskCommand.d.ts +1 -1
  14. package/dist-types/commands/GetDeploymentCommand.d.ts +1 -1
  15. package/dist-types/commands/GetEnvironmentCommand.d.ts +1 -1
  16. package/dist-types/commands/ListApplicationVersionsCommand.d.ts +1 -1
  17. package/dist-types/commands/ListApplicationsCommand.d.ts +2 -2
  18. package/dist-types/commands/ListBatchJobDefinitionsCommand.d.ts +1 -1
  19. package/dist-types/commands/ListBatchJobExecutionsCommand.d.ts +2 -2
  20. package/dist-types/commands/ListDataSetImportHistoryCommand.d.ts +1 -1
  21. package/dist-types/commands/ListDataSetsCommand.d.ts +1 -1
  22. package/dist-types/commands/ListDeploymentsCommand.d.ts +1 -1
  23. package/dist-types/commands/ListEngineVersionsCommand.d.ts +1 -1
  24. package/dist-types/commands/ListEnvironmentsCommand.d.ts +2 -2
  25. package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
  26. package/dist-types/commands/StartApplicationCommand.d.ts +1 -1
  27. package/dist-types/commands/StartBatchJobCommand.d.ts +5 -5
  28. package/dist-types/commands/StopApplicationCommand.d.ts +1 -1
  29. package/dist-types/commands/TagResourceCommand.d.ts +2 -2
  30. package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
  31. package/dist-types/commands/UpdateApplicationCommand.d.ts +2 -2
  32. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +1 -1
  33. package/package.json +3 -3
@@ -26,7 +26,7 @@ export interface CancelBatchJobExecutionCommandOutput extends CancelBatchJobExec
26
26
  * import { M2Client, CancelBatchJobExecutionCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, CancelBatchJobExecutionCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // CancelBatchJobExecutionRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * executionId: "STRING_VALUE", // required
32
32
  * };
@@ -27,15 +27,15 @@ export interface CreateApplicationCommandOutput extends CreateApplicationRespons
27
27
  * import { M2Client, CreateApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
28
28
  * // const { M2Client, CreateApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
29
29
  * const client = new M2Client(config);
30
- * const input = {
30
+ * const input = { // CreateApplicationRequest
31
31
  * name: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * engineType: "STRING_VALUE", // required
34
- * definition: { // Union: only one key present
34
+ * definition: { // Definition Union: only one key present
35
35
  * s3Location: "STRING_VALUE",
36
36
  * content: "STRING_VALUE",
37
37
  * },
38
- * tags: {
38
+ * tags: { // TagMap
39
39
  * "<keys>": "STRING_VALUE",
40
40
  * },
41
41
  * clientToken: "STRING_VALUE",
@@ -26,27 +26,27 @@ export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImpor
26
26
  * import { M2Client, CreateDataSetImportTaskCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, CreateDataSetImportTaskCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // CreateDataSetImportTaskRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
- * importConfig: { // Union: only one key present
31
+ * importConfig: { // DataSetImportConfig Union: only one key present
32
32
  * s3Location: "STRING_VALUE",
33
- * dataSets: [
34
- * {
35
- * dataSet: {
33
+ * dataSets: [ // DataSetImportList
34
+ * { // DataSetImportItem
35
+ * dataSet: { // DataSet
36
36
  * storageType: "STRING_VALUE",
37
37
  * datasetName: "STRING_VALUE", // required
38
- * datasetOrg: { // Union: only one key present
39
- * vsam: {
38
+ * datasetOrg: { // DatasetOrgAttributes Union: only one key present
39
+ * vsam: { // VsamAttributes
40
40
  * format: "STRING_VALUE", // required
41
41
  * encoding: "STRING_VALUE",
42
42
  * compressed: true || false,
43
- * primaryKey: {
43
+ * primaryKey: { // PrimaryKey
44
44
  * name: "STRING_VALUE",
45
45
  * offset: Number("int"), // required
46
46
  * length: Number("int"), // required
47
47
  * },
48
- * alternateKeys: [
49
- * {
48
+ * alternateKeys: [ // AlternateKeyList
49
+ * { // AlternateKey
50
50
  * name: "STRING_VALUE",
51
51
  * offset: Number("int"), // required
52
52
  * length: Number("int"), // required
@@ -54,18 +54,18 @@ export interface CreateDataSetImportTaskCommandOutput extends CreateDataSetImpor
54
54
  * },
55
55
  * ],
56
56
  * },
57
- * gdg: {
57
+ * gdg: { // GdgAttributes
58
58
  * limit: Number("int"),
59
59
  * rollDisposition: "STRING_VALUE",
60
60
  * },
61
61
  * },
62
62
  * relativePath: "STRING_VALUE",
63
- * recordLength: {
63
+ * recordLength: { // RecordLength
64
64
  * min: Number("int"), // required
65
65
  * max: Number("int"), // required
66
66
  * },
67
67
  * },
68
- * externalLocation: { // Union: only one key present
68
+ * externalLocation: { // ExternalLocation Union: only one key present
69
69
  * s3Location: "STRING_VALUE",
70
70
  * },
71
71
  * },
@@ -26,7 +26,7 @@ export interface CreateDeploymentCommandOutput extends CreateDeploymentResponse,
26
26
  * import { M2Client, CreateDeploymentCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, CreateDeploymentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // CreateDeploymentRequest
30
30
  * environmentId: "STRING_VALUE", // required
31
31
  * applicationId: "STRING_VALUE", // required
32
32
  * applicationVersion: Number("int"), // required
@@ -26,35 +26,35 @@ export interface CreateEnvironmentCommandOutput extends CreateEnvironmentRespons
26
26
  * import { M2Client, CreateEnvironmentCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, CreateEnvironmentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // CreateEnvironmentRequest
30
30
  * name: "STRING_VALUE", // required
31
31
  * instanceType: "STRING_VALUE", // required
32
32
  * description: "STRING_VALUE",
33
33
  * engineType: "STRING_VALUE", // required
34
34
  * engineVersion: "STRING_VALUE",
35
- * subnetIds: [
35
+ * subnetIds: [ // String50List
36
36
  * "STRING_VALUE",
37
37
  * ],
38
38
  * securityGroupIds: [
39
39
  * "STRING_VALUE",
40
40
  * ],
41
- * storageConfigurations: [
42
- * { // Union: only one key present
43
- * efs: {
41
+ * storageConfigurations: [ // StorageConfigurationList
42
+ * { // StorageConfiguration Union: only one key present
43
+ * efs: { // EfsStorageConfiguration
44
44
  * fileSystemId: "STRING_VALUE", // required
45
45
  * mountPoint: "STRING_VALUE", // required
46
46
  * },
47
- * fsx: {
47
+ * fsx: { // FsxStorageConfiguration
48
48
  * fileSystemId: "STRING_VALUE", // required
49
49
  * mountPoint: "STRING_VALUE", // required
50
50
  * },
51
51
  * },
52
52
  * ],
53
53
  * publiclyAccessible: true || false,
54
- * highAvailabilityConfig: {
54
+ * highAvailabilityConfig: { // HighAvailabilityConfig
55
55
  * desiredCapacity: Number("int"), // required
56
56
  * },
57
- * tags: {
57
+ * tags: { // TagMap
58
58
  * "<keys>": "STRING_VALUE",
59
59
  * },
60
60
  * preferredMaintenanceWindow: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface DeleteApplicationCommandOutput extends DeleteApplicationRespons
26
26
  * import { M2Client, DeleteApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, DeleteApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // DeleteApplicationRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new DeleteApplicationCommand(input);
@@ -29,7 +29,7 @@ export interface DeleteApplicationFromEnvironmentCommandOutput extends DeleteApp
29
29
  * import { M2Client, DeleteApplicationFromEnvironmentCommand } from "@aws-sdk/client-m2"; // ES Modules import
30
30
  * // const { M2Client, DeleteApplicationFromEnvironmentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
31
31
  * const client = new M2Client(config);
32
- * const input = {
32
+ * const input = { // DeleteApplicationFromEnvironmentRequest
33
33
  * applicationId: "STRING_VALUE", // required
34
34
  * environmentId: "STRING_VALUE", // required
35
35
  * };
@@ -27,7 +27,7 @@ export interface DeleteEnvironmentCommandOutput extends DeleteEnvironmentRespons
27
27
  * import { M2Client, DeleteEnvironmentCommand } from "@aws-sdk/client-m2"; // ES Modules import
28
28
  * // const { M2Client, DeleteEnvironmentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
29
29
  * const client = new M2Client(config);
30
- * const input = {
30
+ * const input = { // DeleteEnvironmentRequest
31
31
  * environmentId: "STRING_VALUE", // required
32
32
  * };
33
33
  * const command = new DeleteEnvironmentCommand(input);
@@ -26,7 +26,7 @@ export interface GetApplicationCommandOutput extends GetApplicationResponse, __M
26
26
  * import { M2Client, GetApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetApplicationRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetApplicationCommand(input);
@@ -26,7 +26,7 @@ export interface GetApplicationVersionCommandOutput extends GetApplicationVersio
26
26
  * import { M2Client, GetApplicationVersionCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetApplicationVersionCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetApplicationVersionRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * applicationVersion: Number("int"), // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetBatchJobExecutionCommandOutput extends GetBatchJobExecutionR
26
26
  * import { M2Client, GetBatchJobExecutionCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetBatchJobExecutionCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetBatchJobExecutionRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * executionId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetDataSetDetailsCommandOutput extends GetDataSetDetailsRespons
26
26
  * import { M2Client, GetDataSetDetailsCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetDataSetDetailsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetDataSetDetailsRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * dataSetName: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetDataSetImportTaskCommandOutput extends GetDataSetImportTaskR
26
26
  * import { M2Client, GetDataSetImportTaskCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetDataSetImportTaskCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetDataSetImportTaskRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * taskId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetDeploymentCommandOutput extends GetDeploymentResponse, __Met
26
26
  * import { M2Client, GetDeploymentCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetDeploymentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetDeploymentRequest
30
30
  * deploymentId: "STRING_VALUE", // required
31
31
  * applicationId: "STRING_VALUE", // required
32
32
  * };
@@ -26,7 +26,7 @@ export interface GetEnvironmentCommandOutput extends GetEnvironmentResponse, __M
26
26
  * import { M2Client, GetEnvironmentCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, GetEnvironmentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // GetEnvironmentRequest
30
30
  * environmentId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new GetEnvironmentCommand(input);
@@ -26,7 +26,7 @@ export interface ListApplicationVersionsCommandOutput extends ListApplicationVer
26
26
  * import { M2Client, ListApplicationVersionsCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, ListApplicationVersionsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // ListApplicationVersionsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * applicationId: "STRING_VALUE", // required
@@ -28,10 +28,10 @@ export interface ListApplicationsCommandOutput extends ListApplicationsResponse,
28
28
  * import { M2Client, ListApplicationsCommand } from "@aws-sdk/client-m2"; // ES Modules import
29
29
  * // const { M2Client, ListApplicationsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
30
30
  * const client = new M2Client(config);
31
- * const input = {
31
+ * const input = { // ListApplicationsRequest
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
34
- * names: [
34
+ * names: [ // EntityNameList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * environmentId: "STRING_VALUE",
@@ -28,7 +28,7 @@ export interface ListBatchJobDefinitionsCommandOutput extends ListBatchJobDefini
28
28
  * import { M2Client, ListBatchJobDefinitionsCommand } from "@aws-sdk/client-m2"; // ES Modules import
29
29
  * // const { M2Client, ListBatchJobDefinitionsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
30
30
  * const client = new M2Client(config);
31
- * const input = {
31
+ * const input = { // ListBatchJobDefinitionsRequest
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
34
34
  * applicationId: "STRING_VALUE", // required
@@ -27,11 +27,11 @@ export interface ListBatchJobExecutionsCommandOutput extends ListBatchJobExecuti
27
27
  * import { M2Client, ListBatchJobExecutionsCommand } from "@aws-sdk/client-m2"; // ES Modules import
28
28
  * // const { M2Client, ListBatchJobExecutionsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
29
29
  * const client = new M2Client(config);
30
- * const input = {
30
+ * const input = { // ListBatchJobExecutionsRequest
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
33
33
  * applicationId: "STRING_VALUE", // required
34
- * executionIds: [
34
+ * executionIds: [ // IdentifierList
35
35
  * "STRING_VALUE",
36
36
  * ],
37
37
  * jobName: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListDataSetImportHistoryCommandOutput extends ListDataSetImport
26
26
  * import { M2Client, ListDataSetImportHistoryCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, ListDataSetImportHistoryCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // ListDataSetImportHistoryRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
32
  * applicationId: "STRING_VALUE", // required
@@ -28,7 +28,7 @@ export interface ListDataSetsCommandOutput extends ListDataSetsResponse, __Metad
28
28
  * import { M2Client, ListDataSetsCommand } from "@aws-sdk/client-m2"; // ES Modules import
29
29
  * // const { M2Client, ListDataSetsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
30
30
  * const client = new M2Client(config);
31
- * const input = {
31
+ * const input = { // ListDataSetsRequest
32
32
  * applicationId: "STRING_VALUE", // required
33
33
  * nextToken: "STRING_VALUE",
34
34
  * maxResults: Number("int"),
@@ -28,7 +28,7 @@ export interface ListDeploymentsCommandOutput extends ListDeploymentsResponse, _
28
28
  * import { M2Client, ListDeploymentsCommand } from "@aws-sdk/client-m2"; // ES Modules import
29
29
  * // const { M2Client, ListDeploymentsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
30
30
  * const client = new M2Client(config);
31
- * const input = {
31
+ * const input = { // ListDeploymentsRequest
32
32
  * nextToken: "STRING_VALUE",
33
33
  * maxResults: Number("int"),
34
34
  * applicationId: "STRING_VALUE", // required
@@ -26,7 +26,7 @@ export interface ListEngineVersionsCommandOutput extends ListEngineVersionsRespo
26
26
  * import { M2Client, ListEngineVersionsCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, ListEngineVersionsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // ListEngineVersionsRequest
30
30
  * engineType: "STRING_VALUE",
31
31
  * nextToken: "STRING_VALUE",
32
32
  * maxResults: Number("int"),
@@ -26,10 +26,10 @@ export interface ListEnvironmentsCommandOutput extends ListEnvironmentsResponse,
26
26
  * import { M2Client, ListEnvironmentsCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, ListEnvironmentsCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // ListEnvironmentsRequest
30
30
  * nextToken: "STRING_VALUE",
31
31
  * maxResults: Number("int"),
32
- * names: [
32
+ * names: [ // EntityNameList
33
33
  * "STRING_VALUE",
34
34
  * ],
35
35
  * engineType: "STRING_VALUE",
@@ -26,7 +26,7 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
26
26
  * import { M2Client, ListTagsForResourceCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, ListTagsForResourceCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(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 StartApplicationCommandOutput extends StartApplicationResponse,
26
26
  * import { M2Client, StartApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, StartApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // StartApplicationRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * };
32
32
  * const command = new StartApplicationCommand(input);
@@ -27,18 +27,18 @@ export interface StartBatchJobCommandOutput extends StartBatchJobResponse, __Met
27
27
  * import { M2Client, StartBatchJobCommand } from "@aws-sdk/client-m2"; // ES Modules import
28
28
  * // const { M2Client, StartBatchJobCommand } = require("@aws-sdk/client-m2"); // CommonJS import
29
29
  * const client = new M2Client(config);
30
- * const input = {
30
+ * const input = { // StartBatchJobRequest
31
31
  * applicationId: "STRING_VALUE", // required
32
- * batchJobIdentifier: { // Union: only one key present
33
- * fileBatchJobIdentifier: {
32
+ * batchJobIdentifier: { // BatchJobIdentifier Union: only one key present
33
+ * fileBatchJobIdentifier: { // FileBatchJobIdentifier
34
34
  * fileName: "STRING_VALUE", // required
35
35
  * folderPath: "STRING_VALUE",
36
36
  * },
37
- * scriptBatchJobIdentifier: {
37
+ * scriptBatchJobIdentifier: { // ScriptBatchJobIdentifier
38
38
  * scriptName: "STRING_VALUE", // required
39
39
  * },
40
40
  * },
41
- * jobParams: {
41
+ * jobParams: { // BatchJobParametersMap
42
42
  * "<keys>": "STRING_VALUE",
43
43
  * },
44
44
  * };
@@ -26,7 +26,7 @@ export interface StopApplicationCommandOutput extends StopApplicationResponse, _
26
26
  * import { M2Client, StopApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, StopApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // StopApplicationRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * forceStop: true || false,
32
32
  * };
@@ -26,9 +26,9 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
26
26
  * import { M2Client, TagResourceCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, TagResourceCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(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 { M2Client, UntagResourceCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, UntagResourceCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(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,11 +26,11 @@ export interface UpdateApplicationCommandOutput extends UpdateApplicationRespons
26
26
  * import { M2Client, UpdateApplicationCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, UpdateApplicationCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // UpdateApplicationRequest
30
30
  * applicationId: "STRING_VALUE", // required
31
31
  * description: "STRING_VALUE",
32
32
  * currentApplicationVersion: Number("int"), // required
33
- * definition: { // Union: only one key present
33
+ * definition: { // Definition Union: only one key present
34
34
  * s3Location: "STRING_VALUE",
35
35
  * content: "STRING_VALUE",
36
36
  * },
@@ -26,7 +26,7 @@ export interface UpdateEnvironmentCommandOutput extends UpdateEnvironmentRespons
26
26
  * import { M2Client, UpdateEnvironmentCommand } from "@aws-sdk/client-m2"; // ES Modules import
27
27
  * // const { M2Client, UpdateEnvironmentCommand } = require("@aws-sdk/client-m2"); // CommonJS import
28
28
  * const client = new M2Client(config);
29
- * const input = {
29
+ * const input = { // UpdateEnvironmentRequest
30
30
  * environmentId: "STRING_VALUE", // required
31
31
  * desiredCapacity: Number("int"),
32
32
  * instanceType: "STRING_VALUE",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-m2",
3
3
  "description": "AWS SDK for JavaScript M2 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",