@aws-sdk/client-emr-containers 3.554.0 → 3.562.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/README.md +24 -0
- package/dist-cjs/index.js +176 -0
- package/dist-es/EMRContainers.js +6 -0
- package/dist-es/commands/CreateSecurityConfigurationCommand.js +24 -0
- package/dist-es/commands/DescribeSecurityConfigurationCommand.js +24 -0
- package/dist-es/commands/ListSecurityConfigurationsCommand.js +24 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/models_0.js +3 -0
- package/dist-es/pagination/ListSecurityConfigurationsPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +105 -0
- package/dist-types/EMRContainers.d.ts +22 -0
- package/dist-types/EMRContainersClient.d.ts +5 -2
- package/dist-types/commands/CreateSecurityConfigurationCommand.d.ts +95 -0
- package/dist-types/commands/CreateVirtualClusterCommand.d.ts +1 -0
- package/dist-types/commands/DescribeSecurityConfigurationCommand.d.ts +102 -0
- package/dist-types/commands/DescribeVirtualClusterCommand.d.ts +1 -0
- package/dist-types/commands/ListSecurityConfigurationsCommand.d.ts +105 -0
- package/dist-types/commands/ListVirtualClustersCommand.d.ts +1 -0
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/models_0.d.ts +284 -0
- package/dist-types/pagination/ListSecurityConfigurationsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +27 -0
- package/dist-types/ts3.4/EMRContainers.d.ts +52 -0
- package/dist-types/ts3.4/EMRContainersClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/CreateSecurityConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DescribeSecurityConfigurationCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListSecurityConfigurationsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/models_0.d.ts +70 -0
- package/dist-types/ts3.4/pagination/ListSecurityConfigurationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +36 -0
- package/package.json +4 -4
|
@@ -52,6 +52,22 @@ export const se_CreateManagedEndpointCommand = async (input, context) => {
|
|
|
52
52
|
b.m("POST").h(headers).b(body);
|
|
53
53
|
return b.build();
|
|
54
54
|
};
|
|
55
|
+
export const se_CreateSecurityConfigurationCommand = async (input, context) => {
|
|
56
|
+
const b = rb(input, context);
|
|
57
|
+
const headers = {
|
|
58
|
+
"content-type": "application/json",
|
|
59
|
+
};
|
|
60
|
+
b.bp("/securityconfigurations");
|
|
61
|
+
let body;
|
|
62
|
+
body = JSON.stringify(take(input, {
|
|
63
|
+
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
64
|
+
name: [],
|
|
65
|
+
securityConfigurationData: (_) => _json(_),
|
|
66
|
+
tags: (_) => _json(_),
|
|
67
|
+
}));
|
|
68
|
+
b.m("POST").h(headers).b(body);
|
|
69
|
+
return b.build();
|
|
70
|
+
};
|
|
55
71
|
export const se_CreateVirtualClusterCommand = async (input, context) => {
|
|
56
72
|
const b = rb(input, context);
|
|
57
73
|
const headers = {
|
|
@@ -63,6 +79,7 @@ export const se_CreateVirtualClusterCommand = async (input, context) => {
|
|
|
63
79
|
clientToken: [true, (_) => _ ?? generateIdempotencyToken()],
|
|
64
80
|
containerProvider: (_) => _json(_),
|
|
65
81
|
name: [],
|
|
82
|
+
securityConfigurationId: [],
|
|
66
83
|
tags: (_) => _json(_),
|
|
67
84
|
}));
|
|
68
85
|
b.m("POST").h(headers).b(body);
|
|
@@ -125,6 +142,15 @@ export const se_DescribeManagedEndpointCommand = async (input, context) => {
|
|
|
125
142
|
b.m("GET").h(headers).b(body);
|
|
126
143
|
return b.build();
|
|
127
144
|
};
|
|
145
|
+
export const se_DescribeSecurityConfigurationCommand = async (input, context) => {
|
|
146
|
+
const b = rb(input, context);
|
|
147
|
+
const headers = {};
|
|
148
|
+
b.bp("/securityconfigurations/{id}");
|
|
149
|
+
b.p("id", () => input.id, "{id}", false);
|
|
150
|
+
let body;
|
|
151
|
+
b.m("GET").h(headers).b(body);
|
|
152
|
+
return b.build();
|
|
153
|
+
};
|
|
128
154
|
export const se_DescribeVirtualClusterCommand = async (input, context) => {
|
|
129
155
|
const b = rb(input, context);
|
|
130
156
|
const headers = {};
|
|
@@ -201,6 +227,20 @@ export const se_ListManagedEndpointsCommand = async (input, context) => {
|
|
|
201
227
|
b.m("GET").h(headers).q(query).b(body);
|
|
202
228
|
return b.build();
|
|
203
229
|
};
|
|
230
|
+
export const se_ListSecurityConfigurationsCommand = async (input, context) => {
|
|
231
|
+
const b = rb(input, context);
|
|
232
|
+
const headers = {};
|
|
233
|
+
b.bp("/securityconfigurations");
|
|
234
|
+
const query = map({
|
|
235
|
+
[_cA]: [() => input.createdAfter !== void 0, () => (input[_cA].toISOString().split(".")[0] + "Z").toString()],
|
|
236
|
+
[_cB]: [() => input.createdBefore !== void 0, () => (input[_cB].toISOString().split(".")[0] + "Z").toString()],
|
|
237
|
+
[_mR]: [() => input.maxResults !== void 0, () => input[_mR].toString()],
|
|
238
|
+
[_nT]: [, input[_nT]],
|
|
239
|
+
});
|
|
240
|
+
let body;
|
|
241
|
+
b.m("GET").h(headers).q(query).b(body);
|
|
242
|
+
return b.build();
|
|
243
|
+
};
|
|
204
244
|
export const se_ListTagsForResourceCommand = async (input, context) => {
|
|
205
245
|
const b = rb(input, context);
|
|
206
246
|
const headers = {};
|
|
@@ -329,6 +369,22 @@ export const de_CreateManagedEndpointCommand = async (output, context) => {
|
|
|
329
369
|
Object.assign(contents, doc);
|
|
330
370
|
return contents;
|
|
331
371
|
};
|
|
372
|
+
export const de_CreateSecurityConfigurationCommand = async (output, context) => {
|
|
373
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
374
|
+
return de_CommandError(output, context);
|
|
375
|
+
}
|
|
376
|
+
const contents = map({
|
|
377
|
+
$metadata: deserializeMetadata(output),
|
|
378
|
+
});
|
|
379
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
380
|
+
const doc = take(data, {
|
|
381
|
+
arn: __expectString,
|
|
382
|
+
id: __expectString,
|
|
383
|
+
name: __expectString,
|
|
384
|
+
});
|
|
385
|
+
Object.assign(contents, doc);
|
|
386
|
+
return contents;
|
|
387
|
+
};
|
|
332
388
|
export const de_CreateVirtualClusterCommand = async (output, context) => {
|
|
333
389
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
334
390
|
return de_CommandError(output, context);
|
|
@@ -430,6 +486,20 @@ export const de_DescribeManagedEndpointCommand = async (output, context) => {
|
|
|
430
486
|
Object.assign(contents, doc);
|
|
431
487
|
return contents;
|
|
432
488
|
};
|
|
489
|
+
export const de_DescribeSecurityConfigurationCommand = async (output, context) => {
|
|
490
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
491
|
+
return de_CommandError(output, context);
|
|
492
|
+
}
|
|
493
|
+
const contents = map({
|
|
494
|
+
$metadata: deserializeMetadata(output),
|
|
495
|
+
});
|
|
496
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
497
|
+
const doc = take(data, {
|
|
498
|
+
securityConfiguration: (_) => de_SecurityConfiguration(_, context),
|
|
499
|
+
});
|
|
500
|
+
Object.assign(contents, doc);
|
|
501
|
+
return contents;
|
|
502
|
+
};
|
|
433
503
|
export const de_DescribeVirtualClusterCommand = async (output, context) => {
|
|
434
504
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
435
505
|
return de_CommandError(output, context);
|
|
@@ -505,6 +575,21 @@ export const de_ListManagedEndpointsCommand = async (output, context) => {
|
|
|
505
575
|
Object.assign(contents, doc);
|
|
506
576
|
return contents;
|
|
507
577
|
};
|
|
578
|
+
export const de_ListSecurityConfigurationsCommand = async (output, context) => {
|
|
579
|
+
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
580
|
+
return de_CommandError(output, context);
|
|
581
|
+
}
|
|
582
|
+
const contents = map({
|
|
583
|
+
$metadata: deserializeMetadata(output),
|
|
584
|
+
});
|
|
585
|
+
const data = __expectNonNull(__expectObject(await parseBody(output.body, context)), "body");
|
|
586
|
+
const doc = take(data, {
|
|
587
|
+
nextToken: __expectString,
|
|
588
|
+
securityConfigurations: (_) => de_SecurityConfigurations(_, context),
|
|
589
|
+
});
|
|
590
|
+
Object.assign(contents, doc);
|
|
591
|
+
return contents;
|
|
592
|
+
};
|
|
508
593
|
export const de_ListTagsForResourceCommand = async (output, context) => {
|
|
509
594
|
if (output.statusCode !== 200 && output.statusCode >= 300) {
|
|
510
595
|
return de_CommandError(output, context);
|
|
@@ -822,6 +907,25 @@ const de_ParametricConfigurationOverrides = (output, context) => {
|
|
|
822
907
|
monitoringConfiguration: _json,
|
|
823
908
|
});
|
|
824
909
|
};
|
|
910
|
+
const de_SecurityConfiguration = (output, context) => {
|
|
911
|
+
return take(output, {
|
|
912
|
+
arn: __expectString,
|
|
913
|
+
createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
914
|
+
createdBy: __expectString,
|
|
915
|
+
id: __expectString,
|
|
916
|
+
name: __expectString,
|
|
917
|
+
securityConfigurationData: _json,
|
|
918
|
+
tags: _json,
|
|
919
|
+
});
|
|
920
|
+
};
|
|
921
|
+
const de_SecurityConfigurations = (output, context) => {
|
|
922
|
+
const retVal = (output || [])
|
|
923
|
+
.filter((e) => e != null)
|
|
924
|
+
.map((entry) => {
|
|
925
|
+
return de_SecurityConfiguration(entry, context);
|
|
926
|
+
});
|
|
927
|
+
return retVal;
|
|
928
|
+
};
|
|
825
929
|
const de_VirtualCluster = (output, context) => {
|
|
826
930
|
return take(output, {
|
|
827
931
|
arn: __expectString,
|
|
@@ -829,6 +933,7 @@ const de_VirtualCluster = (output, context) => {
|
|
|
829
933
|
createdAt: (_) => __expectNonNull(__parseRfc3339DateTimeWithOffset(_)),
|
|
830
934
|
id: __expectString,
|
|
831
935
|
name: __expectString,
|
|
936
|
+
securityConfigurationId: __expectString,
|
|
832
937
|
state: __expectString,
|
|
833
938
|
tags: _json,
|
|
834
939
|
});
|
|
@@ -2,6 +2,7 @@ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
|
2
2
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand";
|
|
3
3
|
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
|
|
4
4
|
import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "./commands/CreateManagedEndpointCommand";
|
|
5
|
+
import { CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput } from "./commands/CreateSecurityConfigurationCommand";
|
|
5
6
|
import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "./commands/CreateVirtualClusterCommand";
|
|
6
7
|
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "./commands/DeleteJobTemplateCommand";
|
|
7
8
|
import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "./commands/DeleteManagedEndpointCommand";
|
|
@@ -9,11 +10,13 @@ import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } f
|
|
|
9
10
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "./commands/DescribeJobRunCommand";
|
|
10
11
|
import { DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput } from "./commands/DescribeJobTemplateCommand";
|
|
11
12
|
import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "./commands/DescribeManagedEndpointCommand";
|
|
13
|
+
import { DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput } from "./commands/DescribeSecurityConfigurationCommand";
|
|
12
14
|
import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "./commands/DescribeVirtualClusterCommand";
|
|
13
15
|
import { GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput } from "./commands/GetManagedEndpointSessionCredentialsCommand";
|
|
14
16
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
15
17
|
import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "./commands/ListJobTemplatesCommand";
|
|
16
18
|
import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "./commands/ListManagedEndpointsCommand";
|
|
19
|
+
import { ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput } from "./commands/ListSecurityConfigurationsCommand";
|
|
17
20
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
18
21
|
import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "./commands/ListVirtualClustersCommand";
|
|
19
22
|
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
@@ -39,6 +42,12 @@ export interface EMRContainers {
|
|
|
39
42
|
createManagedEndpoint(args: CreateManagedEndpointCommandInput, options?: __HttpHandlerOptions): Promise<CreateManagedEndpointCommandOutput>;
|
|
40
43
|
createManagedEndpoint(args: CreateManagedEndpointCommandInput, cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void): void;
|
|
41
44
|
createManagedEndpoint(args: CreateManagedEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void): void;
|
|
45
|
+
/**
|
|
46
|
+
* @see {@link CreateSecurityConfigurationCommand}
|
|
47
|
+
*/
|
|
48
|
+
createSecurityConfiguration(args: CreateSecurityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateSecurityConfigurationCommandOutput>;
|
|
49
|
+
createSecurityConfiguration(args: CreateSecurityConfigurationCommandInput, cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void): void;
|
|
50
|
+
createSecurityConfiguration(args: CreateSecurityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void): void;
|
|
42
51
|
/**
|
|
43
52
|
* @see {@link CreateVirtualClusterCommand}
|
|
44
53
|
*/
|
|
@@ -81,6 +90,12 @@ export interface EMRContainers {
|
|
|
81
90
|
describeManagedEndpoint(args: DescribeManagedEndpointCommandInput, options?: __HttpHandlerOptions): Promise<DescribeManagedEndpointCommandOutput>;
|
|
82
91
|
describeManagedEndpoint(args: DescribeManagedEndpointCommandInput, cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void): void;
|
|
83
92
|
describeManagedEndpoint(args: DescribeManagedEndpointCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void): void;
|
|
93
|
+
/**
|
|
94
|
+
* @see {@link DescribeSecurityConfigurationCommand}
|
|
95
|
+
*/
|
|
96
|
+
describeSecurityConfiguration(args: DescribeSecurityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeSecurityConfigurationCommandOutput>;
|
|
97
|
+
describeSecurityConfiguration(args: DescribeSecurityConfigurationCommandInput, cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void): void;
|
|
98
|
+
describeSecurityConfiguration(args: DescribeSecurityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void): void;
|
|
84
99
|
/**
|
|
85
100
|
* @see {@link DescribeVirtualClusterCommand}
|
|
86
101
|
*/
|
|
@@ -112,6 +127,13 @@ export interface EMRContainers {
|
|
|
112
127
|
listManagedEndpoints(args: ListManagedEndpointsCommandInput, options?: __HttpHandlerOptions): Promise<ListManagedEndpointsCommandOutput>;
|
|
113
128
|
listManagedEndpoints(args: ListManagedEndpointsCommandInput, cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void): void;
|
|
114
129
|
listManagedEndpoints(args: ListManagedEndpointsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void): void;
|
|
130
|
+
/**
|
|
131
|
+
* @see {@link ListSecurityConfigurationsCommand}
|
|
132
|
+
*/
|
|
133
|
+
listSecurityConfigurations(): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
134
|
+
listSecurityConfigurations(args: ListSecurityConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
135
|
+
listSecurityConfigurations(args: ListSecurityConfigurationsCommandInput, cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void): void;
|
|
136
|
+
listSecurityConfigurations(args: ListSecurityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void): void;
|
|
115
137
|
/**
|
|
116
138
|
* @see {@link ListTagsForResourceCommand}
|
|
117
139
|
*/
|
|
@@ -10,6 +10,7 @@ import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/
|
|
|
10
10
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand";
|
|
11
11
|
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
|
|
12
12
|
import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "./commands/CreateManagedEndpointCommand";
|
|
13
|
+
import { CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput } from "./commands/CreateSecurityConfigurationCommand";
|
|
13
14
|
import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "./commands/CreateVirtualClusterCommand";
|
|
14
15
|
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "./commands/DeleteJobTemplateCommand";
|
|
15
16
|
import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "./commands/DeleteManagedEndpointCommand";
|
|
@@ -17,11 +18,13 @@ import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } f
|
|
|
17
18
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "./commands/DescribeJobRunCommand";
|
|
18
19
|
import { DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput } from "./commands/DescribeJobTemplateCommand";
|
|
19
20
|
import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "./commands/DescribeManagedEndpointCommand";
|
|
21
|
+
import { DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput } from "./commands/DescribeSecurityConfigurationCommand";
|
|
20
22
|
import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "./commands/DescribeVirtualClusterCommand";
|
|
21
23
|
import { GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput } from "./commands/GetManagedEndpointSessionCredentialsCommand";
|
|
22
24
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "./commands/ListJobRunsCommand";
|
|
23
25
|
import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "./commands/ListJobTemplatesCommand";
|
|
24
26
|
import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "./commands/ListManagedEndpointsCommand";
|
|
27
|
+
import { ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput } from "./commands/ListSecurityConfigurationsCommand";
|
|
25
28
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
26
29
|
import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "./commands/ListVirtualClustersCommand";
|
|
27
30
|
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "./commands/StartJobRunCommand";
|
|
@@ -33,11 +36,11 @@ export { __Client };
|
|
|
33
36
|
/**
|
|
34
37
|
* @public
|
|
35
38
|
*/
|
|
36
|
-
export type ServiceInputTypes = CancelJobRunCommandInput | CreateJobTemplateCommandInput | CreateManagedEndpointCommandInput | CreateVirtualClusterCommandInput | DeleteJobTemplateCommandInput | DeleteManagedEndpointCommandInput | DeleteVirtualClusterCommandInput | DescribeJobRunCommandInput | DescribeJobTemplateCommandInput | DescribeManagedEndpointCommandInput | DescribeVirtualClusterCommandInput | GetManagedEndpointSessionCredentialsCommandInput | ListJobRunsCommandInput | ListJobTemplatesCommandInput | ListManagedEndpointsCommandInput | ListTagsForResourceCommandInput | ListVirtualClustersCommandInput | StartJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
39
|
+
export type ServiceInputTypes = CancelJobRunCommandInput | CreateJobTemplateCommandInput | CreateManagedEndpointCommandInput | CreateSecurityConfigurationCommandInput | CreateVirtualClusterCommandInput | DeleteJobTemplateCommandInput | DeleteManagedEndpointCommandInput | DeleteVirtualClusterCommandInput | DescribeJobRunCommandInput | DescribeJobTemplateCommandInput | DescribeManagedEndpointCommandInput | DescribeSecurityConfigurationCommandInput | DescribeVirtualClusterCommandInput | GetManagedEndpointSessionCredentialsCommandInput | ListJobRunsCommandInput | ListJobTemplatesCommandInput | ListManagedEndpointsCommandInput | ListSecurityConfigurationsCommandInput | ListTagsForResourceCommandInput | ListVirtualClustersCommandInput | StartJobRunCommandInput | TagResourceCommandInput | UntagResourceCommandInput;
|
|
37
40
|
/**
|
|
38
41
|
* @public
|
|
39
42
|
*/
|
|
40
|
-
export type ServiceOutputTypes = CancelJobRunCommandOutput | CreateJobTemplateCommandOutput | CreateManagedEndpointCommandOutput | CreateVirtualClusterCommandOutput | DeleteJobTemplateCommandOutput | DeleteManagedEndpointCommandOutput | DeleteVirtualClusterCommandOutput | DescribeJobRunCommandOutput | DescribeJobTemplateCommandOutput | DescribeManagedEndpointCommandOutput | DescribeVirtualClusterCommandOutput | GetManagedEndpointSessionCredentialsCommandOutput | ListJobRunsCommandOutput | ListJobTemplatesCommandOutput | ListManagedEndpointsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualClustersCommandOutput | StartJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
43
|
+
export type ServiceOutputTypes = CancelJobRunCommandOutput | CreateJobTemplateCommandOutput | CreateManagedEndpointCommandOutput | CreateSecurityConfigurationCommandOutput | CreateVirtualClusterCommandOutput | DeleteJobTemplateCommandOutput | DeleteManagedEndpointCommandOutput | DeleteVirtualClusterCommandOutput | DescribeJobRunCommandOutput | DescribeJobTemplateCommandOutput | DescribeManagedEndpointCommandOutput | DescribeSecurityConfigurationCommandOutput | DescribeVirtualClusterCommandOutput | GetManagedEndpointSessionCredentialsCommandOutput | ListJobRunsCommandOutput | ListJobTemplatesCommandOutput | ListManagedEndpointsCommandOutput | ListSecurityConfigurationsCommandOutput | ListTagsForResourceCommandOutput | ListVirtualClustersCommandOutput | StartJobRunCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput;
|
|
41
44
|
/**
|
|
42
45
|
* @public
|
|
43
46
|
*/
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
4
|
+
import { CreateSecurityConfigurationRequest, CreateSecurityConfigurationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link CreateSecurityConfigurationCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface CreateSecurityConfigurationCommandInput extends CreateSecurityConfigurationRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link CreateSecurityConfigurationCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateSecurityConfigurationCommandOutput extends CreateSecurityConfigurationResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const CreateSecurityConfigurationCommand_base: {
|
|
24
|
+
new (input: CreateSecurityConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: CreateSecurityConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Creates a security configuration. Security configurations in Amazon EMR on EKS are
|
|
30
|
+
* templates for different security setups. You can use security configurations to configure
|
|
31
|
+
* the Lake Formation integration setup. You can also create a security configuration
|
|
32
|
+
* to re-use a security setup each time you create a virtual cluster.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { EMRContainersClient, CreateSecurityConfigurationCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
37
|
+
* // const { EMRContainersClient, CreateSecurityConfigurationCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
38
|
+
* const client = new EMRContainersClient(config);
|
|
39
|
+
* const input = { // CreateSecurityConfigurationRequest
|
|
40
|
+
* clientToken: "STRING_VALUE", // required
|
|
41
|
+
* name: "STRING_VALUE", // required
|
|
42
|
+
* securityConfigurationData: { // SecurityConfigurationData
|
|
43
|
+
* authorizationConfiguration: { // AuthorizationConfiguration
|
|
44
|
+
* lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
45
|
+
* authorizedSessionTagValue: "STRING_VALUE",
|
|
46
|
+
* secureNamespaceInfo: { // SecureNamespaceInfo
|
|
47
|
+
* clusterId: "STRING_VALUE",
|
|
48
|
+
* namespace: "STRING_VALUE",
|
|
49
|
+
* },
|
|
50
|
+
* queryEngineRoleArn: "STRING_VALUE",
|
|
51
|
+
* },
|
|
52
|
+
* encryptionConfiguration: { // EncryptionConfiguration
|
|
53
|
+
* inTransitEncryptionConfiguration: { // InTransitEncryptionConfiguration
|
|
54
|
+
* tlsCertificateConfiguration: { // TLSCertificateConfiguration
|
|
55
|
+
* certificateProviderType: "PEM",
|
|
56
|
+
* publicCertificateSecretArn: "STRING_VALUE",
|
|
57
|
+
* privateCertificateSecretArn: "STRING_VALUE",
|
|
58
|
+
* },
|
|
59
|
+
* },
|
|
60
|
+
* },
|
|
61
|
+
* },
|
|
62
|
+
* },
|
|
63
|
+
* tags: { // TagMap
|
|
64
|
+
* "<keys>": "STRING_VALUE",
|
|
65
|
+
* },
|
|
66
|
+
* };
|
|
67
|
+
* const command = new CreateSecurityConfigurationCommand(input);
|
|
68
|
+
* const response = await client.send(command);
|
|
69
|
+
* // { // CreateSecurityConfigurationResponse
|
|
70
|
+
* // id: "STRING_VALUE",
|
|
71
|
+
* // name: "STRING_VALUE",
|
|
72
|
+
* // arn: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
75
|
+
* ```
|
|
76
|
+
*
|
|
77
|
+
* @param CreateSecurityConfigurationCommandInput - {@link CreateSecurityConfigurationCommandInput}
|
|
78
|
+
* @returns {@link CreateSecurityConfigurationCommandOutput}
|
|
79
|
+
* @see {@link CreateSecurityConfigurationCommandInput} for command's `input` shape.
|
|
80
|
+
* @see {@link CreateSecurityConfigurationCommandOutput} for command's `response` shape.
|
|
81
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
82
|
+
*
|
|
83
|
+
* @throws {@link InternalServerException} (server fault)
|
|
84
|
+
* <p>This is an internal server exception.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link ValidationException} (client fault)
|
|
87
|
+
* <p>There are invalid parameters in the client request.</p>
|
|
88
|
+
*
|
|
89
|
+
* @throws {@link EMRContainersServiceException}
|
|
90
|
+
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
91
|
+
*
|
|
92
|
+
* @public
|
|
93
|
+
*/
|
|
94
|
+
export declare class CreateSecurityConfigurationCommand extends CreateSecurityConfigurationCommand_base {
|
|
95
|
+
}
|
|
@@ -51,6 +51,7 @@ declare const CreateVirtualClusterCommand_base: {
|
|
|
51
51
|
* tags: { // TagMap
|
|
52
52
|
* "<keys>": "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
|
+
* securityConfigurationId: "STRING_VALUE",
|
|
54
55
|
* };
|
|
55
56
|
* const command = new CreateVirtualClusterCommand(input);
|
|
56
57
|
* const response = await client.send(command);
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
4
|
+
import { DescribeSecurityConfigurationRequest, DescribeSecurityConfigurationResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link DescribeSecurityConfigurationCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface DescribeSecurityConfigurationCommandInput extends DescribeSecurityConfigurationRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link DescribeSecurityConfigurationCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface DescribeSecurityConfigurationCommandOutput extends DescribeSecurityConfigurationResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const DescribeSecurityConfigurationCommand_base: {
|
|
24
|
+
new (input: DescribeSecurityConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (__0_0: DescribeSecurityConfigurationCommandInput): import("@smithy/smithy-client").CommandImpl<DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Displays detailed information about a specified security configuration. Security
|
|
30
|
+
* configurations in Amazon EMR on EKS are templates for different security setups. You
|
|
31
|
+
* can use security configurations to configure the Lake Formation integration setup.
|
|
32
|
+
* You can also create a security configuration to re-use a security setup each time you
|
|
33
|
+
* create a virtual cluster.</p>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { EMRContainersClient, DescribeSecurityConfigurationCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
38
|
+
* // const { EMRContainersClient, DescribeSecurityConfigurationCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
39
|
+
* const client = new EMRContainersClient(config);
|
|
40
|
+
* const input = { // DescribeSecurityConfigurationRequest
|
|
41
|
+
* id: "STRING_VALUE", // required
|
|
42
|
+
* };
|
|
43
|
+
* const command = new DescribeSecurityConfigurationCommand(input);
|
|
44
|
+
* const response = await client.send(command);
|
|
45
|
+
* // { // DescribeSecurityConfigurationResponse
|
|
46
|
+
* // securityConfiguration: { // SecurityConfiguration
|
|
47
|
+
* // id: "STRING_VALUE",
|
|
48
|
+
* // name: "STRING_VALUE",
|
|
49
|
+
* // arn: "STRING_VALUE",
|
|
50
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // createdBy: "STRING_VALUE",
|
|
52
|
+
* // securityConfigurationData: { // SecurityConfigurationData
|
|
53
|
+
* // authorizationConfiguration: { // AuthorizationConfiguration
|
|
54
|
+
* // lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
55
|
+
* // authorizedSessionTagValue: "STRING_VALUE",
|
|
56
|
+
* // secureNamespaceInfo: { // SecureNamespaceInfo
|
|
57
|
+
* // clusterId: "STRING_VALUE",
|
|
58
|
+
* // namespace: "STRING_VALUE",
|
|
59
|
+
* // },
|
|
60
|
+
* // queryEngineRoleArn: "STRING_VALUE",
|
|
61
|
+
* // },
|
|
62
|
+
* // encryptionConfiguration: { // EncryptionConfiguration
|
|
63
|
+
* // inTransitEncryptionConfiguration: { // InTransitEncryptionConfiguration
|
|
64
|
+
* // tlsCertificateConfiguration: { // TLSCertificateConfiguration
|
|
65
|
+
* // certificateProviderType: "PEM",
|
|
66
|
+
* // publicCertificateSecretArn: "STRING_VALUE",
|
|
67
|
+
* // privateCertificateSecretArn: "STRING_VALUE",
|
|
68
|
+
* // },
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // },
|
|
72
|
+
* // },
|
|
73
|
+
* // tags: { // TagMap
|
|
74
|
+
* // "<keys>": "STRING_VALUE",
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // };
|
|
78
|
+
*
|
|
79
|
+
* ```
|
|
80
|
+
*
|
|
81
|
+
* @param DescribeSecurityConfigurationCommandInput - {@link DescribeSecurityConfigurationCommandInput}
|
|
82
|
+
* @returns {@link DescribeSecurityConfigurationCommandOutput}
|
|
83
|
+
* @see {@link DescribeSecurityConfigurationCommandInput} for command's `input` shape.
|
|
84
|
+
* @see {@link DescribeSecurityConfigurationCommandOutput} for command's `response` shape.
|
|
85
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link InternalServerException} (server fault)
|
|
88
|
+
* <p>This is an internal server exception.</p>
|
|
89
|
+
*
|
|
90
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
91
|
+
* <p>The specified resource was not found.</p>
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link ValidationException} (client fault)
|
|
94
|
+
* <p>There are invalid parameters in the client request.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link EMRContainersServiceException}
|
|
97
|
+
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
98
|
+
*
|
|
99
|
+
* @public
|
|
100
|
+
*/
|
|
101
|
+
export declare class DescribeSecurityConfigurationCommand extends DescribeSecurityConfigurationCommand_base {
|
|
102
|
+
}
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../EMRContainersClient";
|
|
4
|
+
import { ListSecurityConfigurationsRequest, ListSecurityConfigurationsResponse } from "../models/models_0";
|
|
5
|
+
/**
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export { __MetadataBearer, $Command };
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*
|
|
12
|
+
* The input for {@link ListSecurityConfigurationsCommand}.
|
|
13
|
+
*/
|
|
14
|
+
export interface ListSecurityConfigurationsCommandInput extends ListSecurityConfigurationsRequest {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @public
|
|
18
|
+
*
|
|
19
|
+
* The output of {@link ListSecurityConfigurationsCommand}.
|
|
20
|
+
*/
|
|
21
|
+
export interface ListSecurityConfigurationsCommandOutput extends ListSecurityConfigurationsResponse, __MetadataBearer {
|
|
22
|
+
}
|
|
23
|
+
declare const ListSecurityConfigurationsCommand_base: {
|
|
24
|
+
new (input: ListSecurityConfigurationsCommandInput): import("@smithy/smithy-client").CommandImpl<ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
25
|
+
new (...[input]: [] | [ListSecurityConfigurationsCommandInput]): import("@smithy/smithy-client").CommandImpl<ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput, EMRContainersClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
27
|
+
};
|
|
28
|
+
/**
|
|
29
|
+
* <p>Lists security configurations based on a set of parameters. Security configurations in
|
|
30
|
+
* Amazon EMR on EKS are templates for different security setups. You can use security
|
|
31
|
+
* configurations to configure the Lake Formation integration setup. You can also
|
|
32
|
+
* create a security configuration to re-use a security setup each time you create a virtual
|
|
33
|
+
* cluster.</p>
|
|
34
|
+
* @example
|
|
35
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
36
|
+
* ```javascript
|
|
37
|
+
* import { EMRContainersClient, ListSecurityConfigurationsCommand } from "@aws-sdk/client-emr-containers"; // ES Modules import
|
|
38
|
+
* // const { EMRContainersClient, ListSecurityConfigurationsCommand } = require("@aws-sdk/client-emr-containers"); // CommonJS import
|
|
39
|
+
* const client = new EMRContainersClient(config);
|
|
40
|
+
* const input = { // ListSecurityConfigurationsRequest
|
|
41
|
+
* createdAfter: new Date("TIMESTAMP"),
|
|
42
|
+
* createdBefore: new Date("TIMESTAMP"),
|
|
43
|
+
* maxResults: Number("int"),
|
|
44
|
+
* nextToken: "STRING_VALUE",
|
|
45
|
+
* };
|
|
46
|
+
* const command = new ListSecurityConfigurationsCommand(input);
|
|
47
|
+
* const response = await client.send(command);
|
|
48
|
+
* // { // ListSecurityConfigurationsResponse
|
|
49
|
+
* // securityConfigurations: [ // SecurityConfigurations
|
|
50
|
+
* // { // SecurityConfiguration
|
|
51
|
+
* // id: "STRING_VALUE",
|
|
52
|
+
* // name: "STRING_VALUE",
|
|
53
|
+
* // arn: "STRING_VALUE",
|
|
54
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
55
|
+
* // createdBy: "STRING_VALUE",
|
|
56
|
+
* // securityConfigurationData: { // SecurityConfigurationData
|
|
57
|
+
* // authorizationConfiguration: { // AuthorizationConfiguration
|
|
58
|
+
* // lakeFormationConfiguration: { // LakeFormationConfiguration
|
|
59
|
+
* // authorizedSessionTagValue: "STRING_VALUE",
|
|
60
|
+
* // secureNamespaceInfo: { // SecureNamespaceInfo
|
|
61
|
+
* // clusterId: "STRING_VALUE",
|
|
62
|
+
* // namespace: "STRING_VALUE",
|
|
63
|
+
* // },
|
|
64
|
+
* // queryEngineRoleArn: "STRING_VALUE",
|
|
65
|
+
* // },
|
|
66
|
+
* // encryptionConfiguration: { // EncryptionConfiguration
|
|
67
|
+
* // inTransitEncryptionConfiguration: { // InTransitEncryptionConfiguration
|
|
68
|
+
* // tlsCertificateConfiguration: { // TLSCertificateConfiguration
|
|
69
|
+
* // certificateProviderType: "PEM",
|
|
70
|
+
* // publicCertificateSecretArn: "STRING_VALUE",
|
|
71
|
+
* // privateCertificateSecretArn: "STRING_VALUE",
|
|
72
|
+
* // },
|
|
73
|
+
* // },
|
|
74
|
+
* // },
|
|
75
|
+
* // },
|
|
76
|
+
* // },
|
|
77
|
+
* // tags: { // TagMap
|
|
78
|
+
* // "<keys>": "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // },
|
|
81
|
+
* // ],
|
|
82
|
+
* // nextToken: "STRING_VALUE",
|
|
83
|
+
* // };
|
|
84
|
+
*
|
|
85
|
+
* ```
|
|
86
|
+
*
|
|
87
|
+
* @param ListSecurityConfigurationsCommandInput - {@link ListSecurityConfigurationsCommandInput}
|
|
88
|
+
* @returns {@link ListSecurityConfigurationsCommandOutput}
|
|
89
|
+
* @see {@link ListSecurityConfigurationsCommandInput} for command's `input` shape.
|
|
90
|
+
* @see {@link ListSecurityConfigurationsCommandOutput} for command's `response` shape.
|
|
91
|
+
* @see {@link EMRContainersClientResolvedConfig | config} for EMRContainersClient's `config` shape.
|
|
92
|
+
*
|
|
93
|
+
* @throws {@link InternalServerException} (server fault)
|
|
94
|
+
* <p>This is an internal server exception.</p>
|
|
95
|
+
*
|
|
96
|
+
* @throws {@link ValidationException} (client fault)
|
|
97
|
+
* <p>There are invalid parameters in the client request.</p>
|
|
98
|
+
*
|
|
99
|
+
* @throws {@link EMRContainersServiceException}
|
|
100
|
+
* <p>Base exception class for all service exceptions from EMRContainers service.</p>
|
|
101
|
+
*
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export declare class ListSecurityConfigurationsCommand extends ListSecurityConfigurationsCommand_base {
|
|
105
|
+
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
export * from "./CancelJobRunCommand";
|
|
2
2
|
export * from "./CreateJobTemplateCommand";
|
|
3
3
|
export * from "./CreateManagedEndpointCommand";
|
|
4
|
+
export * from "./CreateSecurityConfigurationCommand";
|
|
4
5
|
export * from "./CreateVirtualClusterCommand";
|
|
5
6
|
export * from "./DeleteJobTemplateCommand";
|
|
6
7
|
export * from "./DeleteManagedEndpointCommand";
|
|
@@ -8,11 +9,13 @@ export * from "./DeleteVirtualClusterCommand";
|
|
|
8
9
|
export * from "./DescribeJobRunCommand";
|
|
9
10
|
export * from "./DescribeJobTemplateCommand";
|
|
10
11
|
export * from "./DescribeManagedEndpointCommand";
|
|
12
|
+
export * from "./DescribeSecurityConfigurationCommand";
|
|
11
13
|
export * from "./DescribeVirtualClusterCommand";
|
|
12
14
|
export * from "./GetManagedEndpointSessionCredentialsCommand";
|
|
13
15
|
export * from "./ListJobRunsCommand";
|
|
14
16
|
export * from "./ListJobTemplatesCommand";
|
|
15
17
|
export * from "./ListManagedEndpointsCommand";
|
|
18
|
+
export * from "./ListSecurityConfigurationsCommand";
|
|
16
19
|
export * from "./ListTagsForResourceCommand";
|
|
17
20
|
export * from "./ListVirtualClustersCommand";
|
|
18
21
|
export * from "./StartJobRunCommand";
|