@aws-sdk/client-emr-containers 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.
- package/dist-types/commands/CancelJobRunCommand.d.ts +1 -1
- package/dist-types/commands/CreateJobTemplateCommand.d.ts +17 -19
- package/dist-types/commands/CreateManagedEndpointCommand.d.ts +10 -12
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +5 -5
- package/dist-types/commands/DeleteJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DeleteManagedEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DeleteVirtualClusterCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobRunCommand.d.ts +1 -1
- package/dist-types/commands/DescribeJobTemplateCommand.d.ts +1 -1
- package/dist-types/commands/DescribeManagedEndpointCommand.d.ts +1 -1
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +1 -1
- package/dist-types/commands/ListJobRunsCommand.d.ts +2 -2
- package/dist-types/commands/ListJobTemplatesCommand.d.ts +1 -1
- package/dist-types/commands/ListManagedEndpointsCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +2 -2
- package/dist-types/commands/StartJobRunCommand.d.ts +17 -19
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/package.json +3 -3
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // CancelJobRunRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
32
|
* virtualClusterId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -29,17 +29,17 @@ 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 = {
|
|
32
|
+
* const input = { // CreateJobTemplateRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
34
|
* clientToken: "STRING_VALUE", // required
|
|
35
|
-
* jobTemplateData: {
|
|
35
|
+
* jobTemplateData: { // JobTemplateData
|
|
36
36
|
* executionRoleArn: "STRING_VALUE", // required
|
|
37
37
|
* releaseLabel: "STRING_VALUE", // required
|
|
38
|
-
* configurationOverrides: {
|
|
39
|
-
* applicationConfiguration: [
|
|
40
|
-
* {
|
|
38
|
+
* configurationOverrides: { // ParametricConfigurationOverrides
|
|
39
|
+
* applicationConfiguration: [ // ConfigurationList
|
|
40
|
+
* { // Configuration
|
|
41
41
|
* classification: "STRING_VALUE", // required
|
|
42
|
-
* properties: {
|
|
42
|
+
* properties: { // SensitivePropertiesMap
|
|
43
43
|
* "<keys>": "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* configurations: [
|
|
@@ -48,44 +48,42 @@ export interface CreateJobTemplateCommandOutput extends CreateJobTemplateRespons
|
|
|
48
48
|
* properties: {
|
|
49
49
|
* "<keys>": "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
|
-
* configurations:
|
|
52
|
-
* "<ConfigurationList>",
|
|
53
|
-
* ],
|
|
51
|
+
* configurations: "<ConfigurationList>",
|
|
54
52
|
* },
|
|
55
53
|
* ],
|
|
56
54
|
* },
|
|
57
55
|
* ],
|
|
58
|
-
* monitoringConfiguration: {
|
|
56
|
+
* monitoringConfiguration: { // ParametricMonitoringConfiguration
|
|
59
57
|
* persistentAppUI: "STRING_VALUE",
|
|
60
|
-
* cloudWatchMonitoringConfiguration: {
|
|
58
|
+
* cloudWatchMonitoringConfiguration: { // ParametricCloudWatchMonitoringConfiguration
|
|
61
59
|
* logGroupName: "STRING_VALUE",
|
|
62
60
|
* logStreamNamePrefix: "STRING_VALUE",
|
|
63
61
|
* },
|
|
64
|
-
* s3MonitoringConfiguration: {
|
|
62
|
+
* s3MonitoringConfiguration: { // ParametricS3MonitoringConfiguration
|
|
65
63
|
* logUri: "STRING_VALUE",
|
|
66
64
|
* },
|
|
67
65
|
* },
|
|
68
66
|
* },
|
|
69
|
-
* jobDriver: {
|
|
70
|
-
* sparkSubmitJobDriver: {
|
|
67
|
+
* jobDriver: { // JobDriver
|
|
68
|
+
* sparkSubmitJobDriver: { // SparkSubmitJobDriver
|
|
71
69
|
* entryPoint: "STRING_VALUE", // required
|
|
72
|
-
* entryPointArguments: [
|
|
70
|
+
* entryPointArguments: [ // EntryPointArguments
|
|
73
71
|
* "STRING_VALUE",
|
|
74
72
|
* ],
|
|
75
73
|
* sparkSubmitParameters: "STRING_VALUE",
|
|
76
74
|
* },
|
|
77
|
-
* sparkSqlJobDriver: {
|
|
75
|
+
* sparkSqlJobDriver: { // SparkSqlJobDriver
|
|
78
76
|
* entryPoint: "STRING_VALUE",
|
|
79
77
|
* sparkSqlParameters: "STRING_VALUE",
|
|
80
78
|
* },
|
|
81
79
|
* },
|
|
82
|
-
* parameterConfiguration: {
|
|
83
|
-
* "<keys>": {
|
|
80
|
+
* parameterConfiguration: { // TemplateParameterConfigurationMap
|
|
81
|
+
* "<keys>": { // TemplateParameterConfiguration
|
|
84
82
|
* type: "NUMBER" || "STRING",
|
|
85
83
|
* defaultValue: "STRING_VALUE",
|
|
86
84
|
* },
|
|
87
85
|
* },
|
|
88
|
-
* jobTags: {
|
|
86
|
+
* jobTags: { // TagMap
|
|
89
87
|
* "<keys>": "STRING_VALUE",
|
|
90
88
|
* },
|
|
91
89
|
* },
|
|
@@ -28,18 +28,18 @@ 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 = {
|
|
31
|
+
* const input = { // CreateManagedEndpointRequest
|
|
32
32
|
* name: "STRING_VALUE", // required
|
|
33
33
|
* virtualClusterId: "STRING_VALUE", // required
|
|
34
34
|
* type: "STRING_VALUE", // required
|
|
35
35
|
* releaseLabel: "STRING_VALUE", // required
|
|
36
36
|
* executionRoleArn: "STRING_VALUE", // required
|
|
37
37
|
* certificateArn: "STRING_VALUE",
|
|
38
|
-
* configurationOverrides: {
|
|
39
|
-
* applicationConfiguration: [
|
|
40
|
-
* {
|
|
38
|
+
* configurationOverrides: { // ConfigurationOverrides
|
|
39
|
+
* applicationConfiguration: [ // ConfigurationList
|
|
40
|
+
* { // Configuration
|
|
41
41
|
* classification: "STRING_VALUE", // required
|
|
42
|
-
* properties: {
|
|
42
|
+
* properties: { // SensitivePropertiesMap
|
|
43
43
|
* "<keys>": "STRING_VALUE",
|
|
44
44
|
* },
|
|
45
45
|
* configurations: [
|
|
@@ -48,26 +48,24 @@ export interface CreateManagedEndpointCommandOutput extends CreateManagedEndpoin
|
|
|
48
48
|
* properties: {
|
|
49
49
|
* "<keys>": "STRING_VALUE",
|
|
50
50
|
* },
|
|
51
|
-
* configurations:
|
|
52
|
-
* "<ConfigurationList>",
|
|
53
|
-
* ],
|
|
51
|
+
* configurations: "<ConfigurationList>",
|
|
54
52
|
* },
|
|
55
53
|
* ],
|
|
56
54
|
* },
|
|
57
55
|
* ],
|
|
58
|
-
* monitoringConfiguration: {
|
|
56
|
+
* monitoringConfiguration: { // MonitoringConfiguration
|
|
59
57
|
* persistentAppUI: "ENABLED" || "DISABLED",
|
|
60
|
-
* cloudWatchMonitoringConfiguration: {
|
|
58
|
+
* cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
|
|
61
59
|
* logGroupName: "STRING_VALUE", // required
|
|
62
60
|
* logStreamNamePrefix: "STRING_VALUE",
|
|
63
61
|
* },
|
|
64
|
-
* s3MonitoringConfiguration: {
|
|
62
|
+
* s3MonitoringConfiguration: { // S3MonitoringConfiguration
|
|
65
63
|
* logUri: "STRING_VALUE", // required
|
|
66
64
|
* },
|
|
67
65
|
* },
|
|
68
66
|
* },
|
|
69
67
|
* clientToken: "STRING_VALUE", // required
|
|
70
|
-
* tags: {
|
|
68
|
+
* tags: { // TagMap
|
|
71
69
|
* "<keys>": "STRING_VALUE",
|
|
72
70
|
* },
|
|
73
71
|
* };
|
|
@@ -29,19 +29,19 @@ 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 = {
|
|
32
|
+
* const input = { // CreateVirtualClusterRequest
|
|
33
33
|
* name: "STRING_VALUE", // required
|
|
34
|
-
* containerProvider: {
|
|
34
|
+
* containerProvider: { // ContainerProvider
|
|
35
35
|
* type: "EKS", // required
|
|
36
36
|
* id: "STRING_VALUE", // required
|
|
37
|
-
* info: { // Union: only one key present
|
|
38
|
-
* eksInfo: {
|
|
37
|
+
* info: { // ContainerInfo Union: only one key present
|
|
38
|
+
* eksInfo: { // EksInfo
|
|
39
39
|
* namespace: "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* },
|
|
42
42
|
* },
|
|
43
43
|
* clientToken: "STRING_VALUE", // required
|
|
44
|
-
* tags: {
|
|
44
|
+
* tags: { // TagMap
|
|
45
45
|
* "<keys>": "STRING_VALUE",
|
|
46
46
|
* },
|
|
47
47
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DeleteJobTemplateRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteJobTemplateCommand(input);
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DeleteManagedEndpointRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* virtualClusterId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DeleteVirtualClusterRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DeleteVirtualClusterCommand(input);
|
|
@@ -27,7 +27,7 @@ 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 = {
|
|
30
|
+
* const input = { // DescribeJobRunRequest
|
|
31
31
|
* id: "STRING_VALUE", // required
|
|
32
32
|
* virtualClusterId: "STRING_VALUE", // required
|
|
33
33
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // DescribeJobTemplateRequest
|
|
33
33
|
* id: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeJobTemplateCommand(input);
|
|
@@ -28,7 +28,7 @@ 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 = {
|
|
31
|
+
* const input = { // DescribeManagedEndpointRequest
|
|
32
32
|
* id: "STRING_VALUE", // required
|
|
33
33
|
* virtualClusterId: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // DescribeVirtualClusterRequest
|
|
35
35
|
* id: "STRING_VALUE", // required
|
|
36
36
|
* };
|
|
37
37
|
* const command = new DescribeVirtualClusterCommand(input);
|
|
@@ -27,12 +27,12 @@ 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 = {
|
|
30
|
+
* const input = { // ListJobRunsRequest
|
|
31
31
|
* virtualClusterId: "STRING_VALUE", // required
|
|
32
32
|
* createdBefore: new Date("TIMESTAMP"),
|
|
33
33
|
* createdAfter: new Date("TIMESTAMP"),
|
|
34
34
|
* name: "STRING_VALUE",
|
|
35
|
-
* states: [
|
|
35
|
+
* states: [ // JobRunStates
|
|
36
36
|
* "PENDING" || "SUBMITTED" || "RUNNING" || "FAILED" || "CANCELLED" || "CANCEL_PENDING" || "COMPLETED",
|
|
37
37
|
* ],
|
|
38
38
|
* maxResults: Number("int"),
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // ListJobTemplatesRequest
|
|
33
33
|
* createdAfter: new Date("TIMESTAMP"),
|
|
34
34
|
* createdBefore: new Date("TIMESTAMP"),
|
|
35
35
|
* maxResults: Number("int"),
|
|
@@ -28,14 +28,14 @@ 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 = {
|
|
31
|
+
* const input = { // ListManagedEndpointsRequest
|
|
32
32
|
* virtualClusterId: "STRING_VALUE", // required
|
|
33
33
|
* createdBefore: new Date("TIMESTAMP"),
|
|
34
34
|
* createdAfter: new Date("TIMESTAMP"),
|
|
35
|
-
* types: [
|
|
35
|
+
* types: [ // EndpointTypes
|
|
36
36
|
* "STRING_VALUE",
|
|
37
37
|
* ],
|
|
38
|
-
* states: [
|
|
38
|
+
* states: [ // EndpointStates
|
|
39
39
|
* "CREATING" || "ACTIVE" || "TERMINATING" || "TERMINATED" || "TERMINATED_WITH_ERRORS",
|
|
40
40
|
* ],
|
|
41
41
|
* maxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListTagsForResourceRequest
|
|
30
30
|
* resourceArn: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -31,12 +31,12 @@ 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 = {
|
|
34
|
+
* const input = { // ListVirtualClustersRequest
|
|
35
35
|
* containerProviderId: "STRING_VALUE",
|
|
36
36
|
* containerProviderType: "EKS",
|
|
37
37
|
* createdAfter: new Date("TIMESTAMP"),
|
|
38
38
|
* createdBefore: new Date("TIMESTAMP"),
|
|
39
|
-
* states: [
|
|
39
|
+
* states: [ // VirtualClusterStates
|
|
40
40
|
* "RUNNING" || "TERMINATING" || "TERMINATED" || "ARRESTED",
|
|
41
41
|
* ],
|
|
42
42
|
* maxResults: Number("int"),
|
|
@@ -27,30 +27,30 @@ 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 = {
|
|
30
|
+
* const input = { // StartJobRunRequest
|
|
31
31
|
* name: "STRING_VALUE",
|
|
32
32
|
* virtualClusterId: "STRING_VALUE", // required
|
|
33
33
|
* clientToken: "STRING_VALUE", // required
|
|
34
34
|
* executionRoleArn: "STRING_VALUE",
|
|
35
35
|
* releaseLabel: "STRING_VALUE",
|
|
36
|
-
* jobDriver: {
|
|
37
|
-
* sparkSubmitJobDriver: {
|
|
36
|
+
* jobDriver: { // JobDriver
|
|
37
|
+
* sparkSubmitJobDriver: { // SparkSubmitJobDriver
|
|
38
38
|
* entryPoint: "STRING_VALUE", // required
|
|
39
|
-
* entryPointArguments: [
|
|
39
|
+
* entryPointArguments: [ // EntryPointArguments
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* sparkSubmitParameters: "STRING_VALUE",
|
|
43
43
|
* },
|
|
44
|
-
* sparkSqlJobDriver: {
|
|
44
|
+
* sparkSqlJobDriver: { // SparkSqlJobDriver
|
|
45
45
|
* entryPoint: "STRING_VALUE",
|
|
46
46
|
* sparkSqlParameters: "STRING_VALUE",
|
|
47
47
|
* },
|
|
48
48
|
* },
|
|
49
|
-
* configurationOverrides: {
|
|
50
|
-
* applicationConfiguration: [
|
|
51
|
-
* {
|
|
49
|
+
* configurationOverrides: { // ConfigurationOverrides
|
|
50
|
+
* applicationConfiguration: [ // ConfigurationList
|
|
51
|
+
* { // Configuration
|
|
52
52
|
* classification: "STRING_VALUE", // required
|
|
53
|
-
* properties: {
|
|
53
|
+
* properties: { // SensitivePropertiesMap
|
|
54
54
|
* "<keys>": "STRING_VALUE",
|
|
55
55
|
* },
|
|
56
56
|
* configurations: [
|
|
@@ -59,32 +59,30 @@ export interface StartJobRunCommandOutput extends StartJobRunResponse, __Metadat
|
|
|
59
59
|
* properties: {
|
|
60
60
|
* "<keys>": "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
|
-
* configurations:
|
|
63
|
-
* "<ConfigurationList>",
|
|
64
|
-
* ],
|
|
62
|
+
* configurations: "<ConfigurationList>",
|
|
65
63
|
* },
|
|
66
64
|
* ],
|
|
67
65
|
* },
|
|
68
66
|
* ],
|
|
69
|
-
* monitoringConfiguration: {
|
|
67
|
+
* monitoringConfiguration: { // MonitoringConfiguration
|
|
70
68
|
* persistentAppUI: "ENABLED" || "DISABLED",
|
|
71
|
-
* cloudWatchMonitoringConfiguration: {
|
|
69
|
+
* cloudWatchMonitoringConfiguration: { // CloudWatchMonitoringConfiguration
|
|
72
70
|
* logGroupName: "STRING_VALUE", // required
|
|
73
71
|
* logStreamNamePrefix: "STRING_VALUE",
|
|
74
72
|
* },
|
|
75
|
-
* s3MonitoringConfiguration: {
|
|
73
|
+
* s3MonitoringConfiguration: { // S3MonitoringConfiguration
|
|
76
74
|
* logUri: "STRING_VALUE", // required
|
|
77
75
|
* },
|
|
78
76
|
* },
|
|
79
77
|
* },
|
|
80
|
-
* tags: {
|
|
78
|
+
* tags: { // TagMap
|
|
81
79
|
* "<keys>": "STRING_VALUE",
|
|
82
80
|
* },
|
|
83
81
|
* jobTemplateId: "STRING_VALUE",
|
|
84
|
-
* jobTemplateParameters: {
|
|
85
|
-
* "<keys>": "
|
|
82
|
+
* jobTemplateParameters: { // TemplateParameterInputMap
|
|
83
|
+
* "<keys>": "STRING_VALUE",
|
|
86
84
|
* },
|
|
87
|
-
* retryPolicyConfiguration: {
|
|
85
|
+
* retryPolicyConfiguration: { // RetryPolicyConfiguration
|
|
88
86
|
* maxAttempts: Number("int"), // required
|
|
89
87
|
* },
|
|
90
88
|
* };
|
|
@@ -33,9 +33,9 @@ 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 = {
|
|
36
|
+
* const input = { // TagResourceRequest
|
|
37
37
|
* resourceArn: "STRING_VALUE", // required
|
|
38
|
-
* tags: { // required
|
|
38
|
+
* tags: { // TagMap // required
|
|
39
39
|
* "<keys>": "STRING_VALUE",
|
|
40
40
|
* },
|
|
41
41
|
* };
|
|
@@ -26,9 +26,9 @@ 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 = {
|
|
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
|
* };
|
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.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|