@aws-sdk/client-emr-containers 3.299.0 → 3.300.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.
- package/dist-types/commands/CancelJobRunCommand.d.ts +4 -0
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +65 -0
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +43 -0
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +16 -0
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +3 -0
- package/dist-types/commands/DescribeJobRunCommand.d.ts +4 -0
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +3 -0
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +4 -0
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +3 -0
- package/dist-types/commands/ListJobRunsCommand.d.ts +11 -0
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +6 -0
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +13 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +11 -0
- package/dist-types/commands/StartJobRunCommand.d.ts +61 -0
- package/dist-types/commands/TagResourceCommand.d.ts +6 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
- package/package.json +8 -8
|
@@ -27,6 +27,10 @@ export interface CancelJobRunCommandOutput extends CancelJobRunResponse, __Metad
|
|
|
27
27
|
* import { EMRContainersClient, CancelJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
28
28
|
* // const { EMRContainersClient, CancelJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
29
29
|
* const client = new EMRContainersClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new CancelJobRunCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -29,6 +29,71 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
29
29
|
* import { EMRContainersClient, CreateJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, CreateJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* name: "STRING_VALUE", // required
|
|
34
|
+
* clientToken: "STRING_VALUE", // required
|
|
35
|
+
* jobTemplateData: {
|
|
36
|
+
* executionRoleArn: "STRING_VALUE", // required
|
|
37
|
+
* releaseLabel: "STRING_VALUE", // required
|
|
38
|
+
* configurationOverrides: {
|
|
39
|
+
* applicationConfiguration: [
|
|
40
|
+
* {
|
|
41
|
+
* classification: "STRING_VALUE", // required
|
|
42
|
+
* properties: {
|
|
43
|
+
* "<keys>": "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* configurations: [
|
|
46
|
+
* {
|
|
47
|
+
* classification: "STRING_VALUE", // required
|
|
48
|
+
* properties: {
|
|
49
|
+
* "<keys>": "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* configurations: [
|
|
52
|
+
* "<ConfigurationList>",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* monitoringConfiguration: {
|
|
59
|
+
* persistentAppUI: "STRING_VALUE",
|
|
60
|
+
* cloudWatchMonitoringConfiguration: {
|
|
61
|
+
* logGroupName: "STRING_VALUE",
|
|
62
|
+
* logStreamNamePrefix: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* s3MonitoringConfiguration: {
|
|
65
|
+
* logUri: "STRING_VALUE",
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* jobDriver: {
|
|
70
|
+
* sparkSubmitJobDriver: {
|
|
71
|
+
* entryPoint: "STRING_VALUE", // required
|
|
72
|
+
* entryPointArguments: [
|
|
73
|
+
* "STRING_VALUE",
|
|
74
|
+
* ],
|
|
75
|
+
* sparkSubmitParameters: "STRING_VALUE",
|
|
76
|
+
* },
|
|
77
|
+
* sparkSqlJobDriver: {
|
|
78
|
+
* entryPoint: "STRING_VALUE",
|
|
79
|
+
* sparkSqlParameters: "STRING_VALUE",
|
|
80
|
+
* },
|
|
81
|
+
* },
|
|
82
|
+
* parameterConfiguration: {
|
|
83
|
+
* "<keys>": {
|
|
84
|
+
* type: "NUMBER" || "STRING",
|
|
85
|
+
* defaultValue: "STRING_VALUE",
|
|
86
|
+
* },
|
|
87
|
+
* },
|
|
88
|
+
* jobTags: {
|
|
89
|
+
* "<keys>": "STRING_VALUE",
|
|
90
|
+
* },
|
|
91
|
+
* },
|
|
92
|
+
* tags: {
|
|
93
|
+
* "<keys>": "STRING_VALUE",
|
|
94
|
+
* },
|
|
95
|
+
* kmsKeyArn: "STRING_VALUE",
|
|
96
|
+
* };
|
|
32
97
|
* const command = new CreateJobTemplateCommand(input);
|
|
33
98
|
* const response = await client.send(command);
|
|
34
99
|
* ```
|
|
@@ -28,6 +28,49 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
|
|
|
28
28
|
* import { EMRContainersClient, CreateManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
29
29
|
* // const { EMRContainersClient, CreateManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
30
30
|
* const client = new EMRContainersClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* name: "STRING_VALUE", // required
|
|
33
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
34
|
+
* type: "STRING_VALUE", // required
|
|
35
|
+
* releaseLabel: "STRING_VALUE", // required
|
|
36
|
+
* executionRoleArn: "STRING_VALUE", // required
|
|
37
|
+
* certificateArn: "STRING_VALUE",
|
|
38
|
+
* configurationOverrides: {
|
|
39
|
+
* applicationConfiguration: [
|
|
40
|
+
* {
|
|
41
|
+
* classification: "STRING_VALUE", // required
|
|
42
|
+
* properties: {
|
|
43
|
+
* "<keys>": "STRING_VALUE",
|
|
44
|
+
* },
|
|
45
|
+
* configurations: [
|
|
46
|
+
* {
|
|
47
|
+
* classification: "STRING_VALUE", // required
|
|
48
|
+
* properties: {
|
|
49
|
+
* "<keys>": "STRING_VALUE",
|
|
50
|
+
* },
|
|
51
|
+
* configurations: [
|
|
52
|
+
* "<ConfigurationList>",
|
|
53
|
+
* ],
|
|
54
|
+
* },
|
|
55
|
+
* ],
|
|
56
|
+
* },
|
|
57
|
+
* ],
|
|
58
|
+
* monitoringConfiguration: {
|
|
59
|
+
* persistentAppUI: "ENABLED" || "DISABLED",
|
|
60
|
+
* cloudWatchMonitoringConfiguration: {
|
|
61
|
+
* logGroupName: "STRING_VALUE", // required
|
|
62
|
+
* logStreamNamePrefix: "STRING_VALUE",
|
|
63
|
+
* },
|
|
64
|
+
* s3MonitoringConfiguration: {
|
|
65
|
+
* logUri: "STRING_VALUE", // required
|
|
66
|
+
* },
|
|
67
|
+
* },
|
|
68
|
+
* },
|
|
69
|
+
* clientToken: "STRING_VALUE", // required
|
|
70
|
+
* tags: {
|
|
71
|
+
* "<keys>": "STRING_VALUE",
|
|
72
|
+
* },
|
|
73
|
+
* };
|
|
31
74
|
* const command = new CreateManagedEndpointCommand(input);
|
|
32
75
|
* const response = await client.send(command);
|
|
33
76
|
* ```
|
|
@@ -29,6 +29,22 @@ export interface CreateVirtualClusterCommandOutput extends CreateVirtualClusterR
|
|
|
29
29
|
* import { EMRContainersClient, CreateVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, CreateVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* name: "STRING_VALUE", // required
|
|
34
|
+
* containerProvider: {
|
|
35
|
+
* type: "EKS", // required
|
|
36
|
+
* id: "STRING_VALUE", // required
|
|
37
|
+
* info: { // Union: only one key present
|
|
38
|
+
* eksInfo: {
|
|
39
|
+
* namespace: "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* },
|
|
42
|
+
* },
|
|
43
|
+
* clientToken: "STRING_VALUE", // required
|
|
44
|
+
* tags: {
|
|
45
|
+
* "<keys>": "STRING_VALUE",
|
|
46
|
+
* },
|
|
47
|
+
* };
|
|
32
48
|
* const command = new CreateVirtualClusterCommand(input);
|
|
33
49
|
* const response = await client.send(command);
|
|
34
50
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteJobTemplateCommandOutput extends DeleteJobTemplateRespons
|
|
|
29
29
|
* import { EMRContainersClient, DeleteJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, DeleteJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* id: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteJobTemplateCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface DeleteManagedEndpointCommandOutput extends DeleteManagedEndpoin
|
|
|
28
28
|
* import { EMRContainersClient, DeleteManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
29
29
|
* // const { EMRContainersClient, DeleteManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
30
30
|
* const client = new EMRContainersClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
31
35
|
* const command = new DeleteManagedEndpointCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DeleteVirtualClusterCommandOutput extends DeleteVirtualClusterR
|
|
|
29
29
|
* import { EMRContainersClient, DeleteVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, DeleteVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* id: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DeleteVirtualClusterCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -27,6 +27,10 @@ export interface DescribeJobRunCommandOutput extends DescribeJobRunResponse, __M
|
|
|
27
27
|
* import { EMRContainersClient, DescribeJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
28
28
|
* // const { EMRContainersClient, DescribeJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
29
29
|
* const client = new EMRContainersClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* id: "STRING_VALUE", // required
|
|
32
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
33
|
+
* };
|
|
30
34
|
* const command = new DescribeJobRunCommand(input);
|
|
31
35
|
* const response = await client.send(command);
|
|
32
36
|
* ```
|
|
@@ -29,6 +29,9 @@ export interface DescribeJobTemplateCommandOutput extends DescribeJobTemplateRes
|
|
|
29
29
|
* import { EMRContainersClient, DescribeJobTemplateCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, DescribeJobTemplateCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* id: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
32
35
|
* const command = new DescribeJobTemplateCommand(input);
|
|
33
36
|
* const response = await client.send(command);
|
|
34
37
|
* ```
|
|
@@ -28,6 +28,10 @@ export interface DescribeManagedEndpointCommandOutput extends DescribeManagedEnd
|
|
|
28
28
|
* import { EMRContainersClient, DescribeManagedEndpointCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
29
29
|
* // const { EMRContainersClient, DescribeManagedEndpointCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
30
30
|
* const client = new EMRContainersClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* id: "STRING_VALUE", // required
|
|
33
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
34
|
+
* };
|
|
31
35
|
* const command = new DescribeManagedEndpointCommand(input);
|
|
32
36
|
* const response = await client.send(command);
|
|
33
37
|
* ```
|
|
@@ -31,6 +31,9 @@ export interface DescribeVirtualClusterCommandOutput extends DescribeVirtualClus
|
|
|
31
31
|
* import { EMRContainersClient, DescribeVirtualClusterCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
32
32
|
* // const { EMRContainersClient, DescribeVirtualClusterCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
33
33
|
* const client = new EMRContainersClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* id: "STRING_VALUE", // required
|
|
36
|
+
* };
|
|
34
37
|
* const command = new DescribeVirtualClusterCommand(input);
|
|
35
38
|
* const response = await client.send(command);
|
|
36
39
|
* ```
|
|
@@ -27,6 +27,17 @@ export interface ListJobRunsCommandOutput extends ListJobRunsResponse, __Metadat
|
|
|
27
27
|
* import { EMRContainersClient, ListJobRunsCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
28
28
|
* // const { EMRContainersClient, ListJobRunsCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
29
29
|
* const client = new EMRContainersClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
32
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
33
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
34
|
+
* name: "STRING_VALUE",
|
|
35
|
+
* states: [
|
|
36
|
+
* "PENDING" || "SUBMITTED" || "RUNNING" || "FAILED" || "CANCELLED" || "CANCEL_PENDING" || "COMPLETED",
|
|
37
|
+
* ],
|
|
38
|
+
* maxResults: Number("int"),
|
|
39
|
+
* nextToken: "STRING_VALUE",
|
|
40
|
+
* };
|
|
30
41
|
* const command = new ListJobRunsCommand(input);
|
|
31
42
|
* const response = await client.send(command);
|
|
32
43
|
* ```
|
|
@@ -29,6 +29,12 @@ export interface ListJobTemplatesCommandOutput extends ListJobTemplatesResponse,
|
|
|
29
29
|
* import { EMRContainersClient, ListJobTemplatesCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
30
30
|
* // const { EMRContainersClient, ListJobTemplatesCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
31
31
|
* const client = new EMRContainersClient(config);
|
|
32
|
+
* const input = {
|
|
33
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
34
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
35
|
+
* maxResults: Number("int"),
|
|
36
|
+
* nextToken: "STRING_VALUE",
|
|
37
|
+
* };
|
|
32
38
|
* const command = new ListJobTemplatesCommand(input);
|
|
33
39
|
* const response = await client.send(command);
|
|
34
40
|
* ```
|
|
@@ -28,6 +28,19 @@ export interface ListManagedEndpointsCommandOutput extends ListManagedEndpointsR
|
|
|
28
28
|
* import { EMRContainersClient, ListManagedEndpointsCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
29
29
|
* // const { EMRContainersClient, ListManagedEndpointsCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
30
30
|
* const client = new EMRContainersClient(config);
|
|
31
|
+
* const input = {
|
|
32
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
33
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
34
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
35
|
+
* types: [
|
|
36
|
+
* "STRING_VALUE",
|
|
37
|
+
* ],
|
|
38
|
+
* states: [
|
|
39
|
+
* "CREATING" || "ACTIVE" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
|
|
40
|
+
* ],
|
|
41
|
+
* maxResults: Number("int"),
|
|
42
|
+
* nextToken: "STRING_VALUE",
|
|
43
|
+
* };
|
|
31
44
|
* const command = new ListManagedEndpointsCommand(input);
|
|
32
45
|
* const response = await client.send(command);
|
|
33
46
|
* ```
|
|
@@ -26,6 +26,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
26
26
|
* import { EMRContainersClient, ListTagsForResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
27
27
|
* // const { EMRContainersClient, ListTagsForResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
28
28
|
* const client = new EMRContainersClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* };
|
|
29
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
30
33
|
* const response = await client.send(command);
|
|
31
34
|
* ```
|
|
@@ -31,6 +31,17 @@ export interface ListVirtualClustersCommandOutput extends ListVirtualClustersRes
|
|
|
31
31
|
* import { EMRContainersClient, ListVirtualClustersCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
32
32
|
* // const { EMRContainersClient, ListVirtualClustersCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
33
33
|
* const client = new EMRContainersClient(config);
|
|
34
|
+
* const input = {
|
|
35
|
+
* containerProviderId: "STRING_VALUE",
|
|
36
|
+
* containerProviderType: "EKS",
|
|
37
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
38
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
39
|
+
* states: [
|
|
40
|
+
* "RUNNING" || "TERMINATING" || "TERMINATED" || "ARRESTED",
|
|
41
|
+
* ],
|
|
42
|
+
* maxResults: Number("int"),
|
|
43
|
+
* nextToken: "STRING_VALUE",
|
|
44
|
+
* };
|
|
34
45
|
* const command = new ListVirtualClustersCommand(input);
|
|
35
46
|
* const response = await client.send(command);
|
|
36
47
|
* ```
|
|
@@ -27,6 +27,67 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
27
27
|
* import { EMRContainersClient, StartJobRunCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
28
28
|
* // const { EMRContainersClient, StartJobRunCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
29
29
|
* const client = new EMRContainersClient(config);
|
|
30
|
+
* const input = {
|
|
31
|
+
* name: "STRING_VALUE",
|
|
32
|
+
* virtualClusterId: "STRING_VALUE", // required
|
|
33
|
+
* clientToken: "STRING_VALUE", // required
|
|
34
|
+
* executionRoleArn: "STRING_VALUE",
|
|
35
|
+
* releaseLabel: "STRING_VALUE",
|
|
36
|
+
* jobDriver: {
|
|
37
|
+
* sparkSubmitJobDriver: {
|
|
38
|
+
* entryPoint: "STRING_VALUE", // required
|
|
39
|
+
* entryPointArguments: [
|
|
40
|
+
* "STRING_VALUE",
|
|
41
|
+
* ],
|
|
42
|
+
* sparkSubmitParameters: "STRING_VALUE",
|
|
43
|
+
* },
|
|
44
|
+
* sparkSqlJobDriver: {
|
|
45
|
+
* entryPoint: "STRING_VALUE",
|
|
46
|
+
* sparkSqlParameters: "STRING_VALUE",
|
|
47
|
+
* },
|
|
48
|
+
* },
|
|
49
|
+
* configurationOverrides: {
|
|
50
|
+
* applicationConfiguration: [
|
|
51
|
+
* {
|
|
52
|
+
* classification: "STRING_VALUE", // required
|
|
53
|
+
* properties: {
|
|
54
|
+
* "<keys>": "STRING_VALUE",
|
|
55
|
+
* },
|
|
56
|
+
* configurations: [
|
|
57
|
+
* {
|
|
58
|
+
* classification: "STRING_VALUE", // required
|
|
59
|
+
* properties: {
|
|
60
|
+
* "<keys>": "STRING_VALUE",
|
|
61
|
+
* },
|
|
62
|
+
* configurations: [
|
|
63
|
+
* "<ConfigurationList>",
|
|
64
|
+
* ],
|
|
65
|
+
* },
|
|
66
|
+
* ],
|
|
67
|
+
* },
|
|
68
|
+
* ],
|
|
69
|
+
* monitoringConfiguration: {
|
|
70
|
+
* persistentAppUI: "ENABLED" || "DISABLED",
|
|
71
|
+
* cloudWatchMonitoringConfiguration: {
|
|
72
|
+
* logGroupName: "STRING_VALUE", // required
|
|
73
|
+
* logStreamNamePrefix: "STRING_VALUE",
|
|
74
|
+
* },
|
|
75
|
+
* s3MonitoringConfiguration: {
|
|
76
|
+
* logUri: "STRING_VALUE", // required
|
|
77
|
+
* },
|
|
78
|
+
* },
|
|
79
|
+
* },
|
|
80
|
+
* tags: {
|
|
81
|
+
* "<keys>": "STRING_VALUE",
|
|
82
|
+
* },
|
|
83
|
+
* jobTemplateId: "STRING_VALUE",
|
|
84
|
+
* jobTemplateParameters: {
|
|
85
|
+
* "<keys>": "<String1024>",
|
|
86
|
+
* },
|
|
87
|
+
* retryPolicyConfiguration: {
|
|
88
|
+
* maxAttempts: Number("int"), // required
|
|
89
|
+
* },
|
|
90
|
+
* };
|
|
30
91
|
* const command = new StartJobRunCommand(input);
|
|
31
92
|
* const response = await client.send(command);
|
|
32
93
|
* ```
|
|
@@ -33,6 +33,12 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
33
33
|
* import { EMRContainersClient, TagResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
34
34
|
* // const { EMRContainersClient, TagResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
35
35
|
* const client = new EMRContainersClient(config);
|
|
36
|
+
* const input = {
|
|
37
|
+
* resourceArn: "STRING_VALUE", // required
|
|
38
|
+
* tags: { // required
|
|
39
|
+
* "<keys>": "STRING_VALUE",
|
|
40
|
+
* },
|
|
41
|
+
* };
|
|
36
42
|
* const command = new TagResourceCommand(input);
|
|
37
43
|
* const response = await client.send(command);
|
|
38
44
|
* ```
|
|
@@ -26,6 +26,12 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
26
26
|
* import { EMRContainersClient, UntagResourceCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
27
27
|
* // const { EMRContainersClient, UntagResourceCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
28
28
|
* const client = new EMRContainersClient(config);
|
|
29
|
+
* const input = {
|
|
30
|
+
* resourceArn: "STRING_VALUE", // required
|
|
31
|
+
* tagKeys: [ // required
|
|
32
|
+
* "STRING_VALUE",
|
|
33
|
+
* ],
|
|
34
|
+
* };
|
|
29
35
|
* const command = new UntagResourceCommand(input);
|
|
30
36
|
* const response = await client.send(command);
|
|
31
37
|
* ```
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-emr-containers",
|
|
3
3
|
"description": "AWS SDK for JavaScript Emr Containers Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.300.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.
|
|
25
|
-
"@aws-sdk/config-resolver": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
24
|
+
"@aws-sdk/client-sts": "3.300.0",
|
|
25
|
+
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.300.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",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"@aws-sdk/middleware-host-header": "3.296.0",
|
|
33
33
|
"@aws-sdk/middleware-logger": "3.296.0",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "3.296.0",
|
|
35
|
-
"@aws-sdk/middleware-retry": "3.
|
|
35
|
+
"@aws-sdk/middleware-retry": "3.300.0",
|
|
36
36
|
"@aws-sdk/middleware-serde": "3.296.0",
|
|
37
37
|
"@aws-sdk/middleware-signing": "3.299.0",
|
|
38
38
|
"@aws-sdk/middleware-stack": "3.296.0",
|
|
39
39
|
"@aws-sdk/middleware-user-agent": "3.299.0",
|
|
40
|
-
"@aws-sdk/node-config-provider": "3.
|
|
40
|
+
"@aws-sdk/node-config-provider": "3.300.0",
|
|
41
41
|
"@aws-sdk/node-http-handler": "3.296.0",
|
|
42
42
|
"@aws-sdk/protocol-http": "3.296.0",
|
|
43
43
|
"@aws-sdk/smithy-client": "3.296.0",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"@aws-sdk/util-body-length-browser": "3.295.0",
|
|
48
48
|
"@aws-sdk/util-body-length-node": "3.295.0",
|
|
49
49
|
"@aws-sdk/util-defaults-mode-browser": "3.296.0",
|
|
50
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
50
|
+
"@aws-sdk/util-defaults-mode-node": "3.300.0",
|
|
51
51
|
"@aws-sdk/util-endpoints": "3.296.0",
|
|
52
52
|
"@aws-sdk/util-retry": "3.296.0",
|
|
53
53
|
"@aws-sdk/util-user-agent-browser": "3.299.0",
|
|
54
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
54
|
+
"@aws-sdk/util-user-agent-node": "3.300.0",
|
|
55
55
|
"@aws-sdk/util-utf8": "3.295.0",
|
|
56
56
|
"tslib": "^2.5.0",
|
|
57
57
|
"uuid": "^8.3.2"
|