@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
|
@@ -1,5 +1,119 @@
|
|
|
1
1
|
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { EMRContainersServiceException as __BaseException } from "./EMRContainersServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* @public
|
|
5
|
+
* @enum
|
|
6
|
+
*/
|
|
7
|
+
export declare const CertificateProviderType: {
|
|
8
|
+
readonly PEM: "PEM";
|
|
9
|
+
};
|
|
10
|
+
/**
|
|
11
|
+
* @public
|
|
12
|
+
*/
|
|
13
|
+
export type CertificateProviderType = (typeof CertificateProviderType)[keyof typeof CertificateProviderType];
|
|
14
|
+
/**
|
|
15
|
+
* <p>Configurations related to the TLS certificate for the security configuration.</p>
|
|
16
|
+
* @public
|
|
17
|
+
*/
|
|
18
|
+
export interface TLSCertificateConfiguration {
|
|
19
|
+
/**
|
|
20
|
+
* <p>The TLS certificate type. Acceptable values: <code>PEM</code> or
|
|
21
|
+
* <code>Custom</code>.</p>
|
|
22
|
+
* @public
|
|
23
|
+
*/
|
|
24
|
+
certificateProviderType?: CertificateProviderType;
|
|
25
|
+
/**
|
|
26
|
+
* <p>Secrets Manager ARN that contains the public TLS certificate contents, used for
|
|
27
|
+
* communication between the user job and the system job.</p>
|
|
28
|
+
* @public
|
|
29
|
+
*/
|
|
30
|
+
publicCertificateSecretArn?: string;
|
|
31
|
+
/**
|
|
32
|
+
* <p>Secrets Manager ARN that contains the private TLS certificate contents, used for
|
|
33
|
+
* communication between the user job and the system job.</p>
|
|
34
|
+
* @public
|
|
35
|
+
*/
|
|
36
|
+
privateCertificateSecretArn?: string;
|
|
37
|
+
}
|
|
38
|
+
/**
|
|
39
|
+
* <p>Configurations related to in-transit encryption for the security configuration.</p>
|
|
40
|
+
* @public
|
|
41
|
+
*/
|
|
42
|
+
export interface InTransitEncryptionConfiguration {
|
|
43
|
+
/**
|
|
44
|
+
* <p>TLS certificate-related configuration input for the security configuration.</p>
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
tlsCertificateConfiguration?: TLSCertificateConfiguration;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* <p>Configurations related to encryption for the security configuration.</p>
|
|
51
|
+
* @public
|
|
52
|
+
*/
|
|
53
|
+
export interface EncryptionConfiguration {
|
|
54
|
+
/**
|
|
55
|
+
* <p>In-transit encryption-related input for the security configuration.</p>
|
|
56
|
+
* @public
|
|
57
|
+
*/
|
|
58
|
+
inTransitEncryptionConfiguration?: InTransitEncryptionConfiguration;
|
|
59
|
+
}
|
|
60
|
+
/**
|
|
61
|
+
* <p>Namespace inputs for the system job.</p>
|
|
62
|
+
* @public
|
|
63
|
+
*/
|
|
64
|
+
export interface SecureNamespaceInfo {
|
|
65
|
+
/**
|
|
66
|
+
* <p>The ID of the Amazon EKS cluster where Amazon EMR on EKS jobs run.</p>
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
clusterId?: string;
|
|
70
|
+
/**
|
|
71
|
+
* <p>The namespace of the Amazon EKS cluster where the system jobs run.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
namespace?: string;
|
|
75
|
+
}
|
|
76
|
+
/**
|
|
77
|
+
* <p>Lake Formation related configuration inputs for the security
|
|
78
|
+
* configuration.</p>
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
export interface LakeFormationConfiguration {
|
|
82
|
+
/**
|
|
83
|
+
* <p>The session tag to authorize Amazon EMR on EKS for API calls to Lake Formation.</p>
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
authorizedSessionTagValue?: string;
|
|
87
|
+
/**
|
|
88
|
+
* <p>The namespace input of the system job.</p>
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
secureNamespaceInfo?: SecureNamespaceInfo;
|
|
92
|
+
/**
|
|
93
|
+
* <p>The query engine IAM role ARN that is tied to the secure Spark job. The
|
|
94
|
+
* <code>QueryEngine</code> role assumes the <code>JobExecutionRole</code> to execute all
|
|
95
|
+
* the Lake Formation calls.</p>
|
|
96
|
+
* @public
|
|
97
|
+
*/
|
|
98
|
+
queryEngineRoleArn?: string;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* <p>Authorization-related configuration inputs for the security configuration.</p>
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export interface AuthorizationConfiguration {
|
|
105
|
+
/**
|
|
106
|
+
* <p>Lake Formation related configuration inputs for the security
|
|
107
|
+
* configuration.</p>
|
|
108
|
+
* @public
|
|
109
|
+
*/
|
|
110
|
+
lakeFormationConfiguration?: LakeFormationConfiguration;
|
|
111
|
+
/**
|
|
112
|
+
* <p>Encryption-related configuration input for the security configuration.</p>
|
|
113
|
+
* @public
|
|
114
|
+
*/
|
|
115
|
+
encryptionConfiguration?: EncryptionConfiguration;
|
|
116
|
+
}
|
|
3
117
|
/**
|
|
4
118
|
* @public
|
|
5
119
|
*/
|
|
@@ -334,6 +448,62 @@ export interface CreateManagedEndpointResponse {
|
|
|
334
448
|
*/
|
|
335
449
|
virtualClusterId?: string;
|
|
336
450
|
}
|
|
451
|
+
/**
|
|
452
|
+
* <p>Configurations related to the security configuration for the request.</p>
|
|
453
|
+
* @public
|
|
454
|
+
*/
|
|
455
|
+
export interface SecurityConfigurationData {
|
|
456
|
+
/**
|
|
457
|
+
* <p>Authorization-related configuration input for the security configuration.</p>
|
|
458
|
+
* @public
|
|
459
|
+
*/
|
|
460
|
+
authorizationConfiguration?: AuthorizationConfiguration;
|
|
461
|
+
}
|
|
462
|
+
/**
|
|
463
|
+
* @public
|
|
464
|
+
*/
|
|
465
|
+
export interface CreateSecurityConfigurationRequest {
|
|
466
|
+
/**
|
|
467
|
+
* <p>The client idempotency token to use when creating the security configuration.</p>
|
|
468
|
+
* @public
|
|
469
|
+
*/
|
|
470
|
+
clientToken?: string;
|
|
471
|
+
/**
|
|
472
|
+
* <p>The name of the security configuration.</p>
|
|
473
|
+
* @public
|
|
474
|
+
*/
|
|
475
|
+
name: string | undefined;
|
|
476
|
+
/**
|
|
477
|
+
* <p>Security configuration input for the request.</p>
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
securityConfigurationData: SecurityConfigurationData | undefined;
|
|
481
|
+
/**
|
|
482
|
+
* <p>The tags to add to the security configuration.</p>
|
|
483
|
+
* @public
|
|
484
|
+
*/
|
|
485
|
+
tags?: Record<string, string>;
|
|
486
|
+
}
|
|
487
|
+
/**
|
|
488
|
+
* @public
|
|
489
|
+
*/
|
|
490
|
+
export interface CreateSecurityConfigurationResponse {
|
|
491
|
+
/**
|
|
492
|
+
* <p>The ID of the security configuration.</p>
|
|
493
|
+
* @public
|
|
494
|
+
*/
|
|
495
|
+
id?: string;
|
|
496
|
+
/**
|
|
497
|
+
* <p>The name of the security configuration.</p>
|
|
498
|
+
* @public
|
|
499
|
+
*/
|
|
500
|
+
name?: string;
|
|
501
|
+
/**
|
|
502
|
+
* <p>The ARN (Amazon Resource Name) of the security configuration.</p>
|
|
503
|
+
* @public
|
|
504
|
+
*/
|
|
505
|
+
arn?: string;
|
|
506
|
+
}
|
|
337
507
|
/**
|
|
338
508
|
* <p>The information about the Amazon EKS cluster.</p>
|
|
339
509
|
* @public
|
|
@@ -432,6 +602,11 @@ export interface CreateVirtualClusterRequest {
|
|
|
432
602
|
* @public
|
|
433
603
|
*/
|
|
434
604
|
tags?: Record<string, string>;
|
|
605
|
+
/**
|
|
606
|
+
* <p>The ID of the security configuration.</p>
|
|
607
|
+
* @public
|
|
608
|
+
*/
|
|
609
|
+
securityConfigurationId?: string;
|
|
435
610
|
}
|
|
436
611
|
/**
|
|
437
612
|
* @public
|
|
@@ -659,6 +834,70 @@ export declare const EndpointState: {
|
|
|
659
834
|
* @public
|
|
660
835
|
*/
|
|
661
836
|
export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
|
|
837
|
+
/**
|
|
838
|
+
* @public
|
|
839
|
+
*/
|
|
840
|
+
export interface DescribeSecurityConfigurationRequest {
|
|
841
|
+
/**
|
|
842
|
+
* <p>The ID of the security configuration.</p>
|
|
843
|
+
* @public
|
|
844
|
+
*/
|
|
845
|
+
id: string | undefined;
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* <p>Inputs related to the security configuration. Security configurations in Amazon EMR on EKS are templates for different security setups. You can use security
|
|
849
|
+
* configurations to configure the Lake Formation integration setup. You can also
|
|
850
|
+
* create a security configuration to re-use a security setup each time you create a virtual
|
|
851
|
+
* cluster.</p>
|
|
852
|
+
* @public
|
|
853
|
+
*/
|
|
854
|
+
export interface SecurityConfiguration {
|
|
855
|
+
/**
|
|
856
|
+
* <p>The ID of the security configuration.</p>
|
|
857
|
+
* @public
|
|
858
|
+
*/
|
|
859
|
+
id?: string;
|
|
860
|
+
/**
|
|
861
|
+
* <p>The name of the security configuration.</p>
|
|
862
|
+
* @public
|
|
863
|
+
*/
|
|
864
|
+
name?: string;
|
|
865
|
+
/**
|
|
866
|
+
* <p>The ARN (Amazon Resource Name) of the security configuration.</p>
|
|
867
|
+
* @public
|
|
868
|
+
*/
|
|
869
|
+
arn?: string;
|
|
870
|
+
/**
|
|
871
|
+
* <p>The date and time that the job run was created.</p>
|
|
872
|
+
* @public
|
|
873
|
+
*/
|
|
874
|
+
createdAt?: Date;
|
|
875
|
+
/**
|
|
876
|
+
* <p>The user who created the job run.</p>
|
|
877
|
+
* @public
|
|
878
|
+
*/
|
|
879
|
+
createdBy?: string;
|
|
880
|
+
/**
|
|
881
|
+
* <p>Security configuration inputs for the request.</p>
|
|
882
|
+
* @public
|
|
883
|
+
*/
|
|
884
|
+
securityConfigurationData?: SecurityConfigurationData;
|
|
885
|
+
/**
|
|
886
|
+
* <p>The tags to assign to the security configuration.</p>
|
|
887
|
+
* @public
|
|
888
|
+
*/
|
|
889
|
+
tags?: Record<string, string>;
|
|
890
|
+
}
|
|
891
|
+
/**
|
|
892
|
+
* @public
|
|
893
|
+
*/
|
|
894
|
+
export interface DescribeSecurityConfigurationResponse {
|
|
895
|
+
/**
|
|
896
|
+
* <p>Details of the security configuration.</p>
|
|
897
|
+
* @public
|
|
898
|
+
*/
|
|
899
|
+
securityConfiguration?: SecurityConfiguration;
|
|
900
|
+
}
|
|
662
901
|
/**
|
|
663
902
|
* @public
|
|
664
903
|
*/
|
|
@@ -728,6 +967,11 @@ export interface VirtualCluster {
|
|
|
728
967
|
* @public
|
|
729
968
|
*/
|
|
730
969
|
tags?: Record<string, string>;
|
|
970
|
+
/**
|
|
971
|
+
* <p>The ID of the security configuration.</p>
|
|
972
|
+
* @public
|
|
973
|
+
*/
|
|
974
|
+
securityConfigurationId?: string;
|
|
731
975
|
}
|
|
732
976
|
/**
|
|
733
977
|
* @public
|
|
@@ -948,6 +1192,46 @@ export interface ListManagedEndpointsRequest {
|
|
|
948
1192
|
*/
|
|
949
1193
|
nextToken?: string;
|
|
950
1194
|
}
|
|
1195
|
+
/**
|
|
1196
|
+
* @public
|
|
1197
|
+
*/
|
|
1198
|
+
export interface ListSecurityConfigurationsRequest {
|
|
1199
|
+
/**
|
|
1200
|
+
* <p>The date and time after which the security configuration was created.</p>
|
|
1201
|
+
* @public
|
|
1202
|
+
*/
|
|
1203
|
+
createdAfter?: Date;
|
|
1204
|
+
/**
|
|
1205
|
+
* <p>The date and time before which the security configuration was created.</p>
|
|
1206
|
+
* @public
|
|
1207
|
+
*/
|
|
1208
|
+
createdBefore?: Date;
|
|
1209
|
+
/**
|
|
1210
|
+
* <p>The maximum number of security configurations the operation can list.</p>
|
|
1211
|
+
* @public
|
|
1212
|
+
*/
|
|
1213
|
+
maxResults?: number;
|
|
1214
|
+
/**
|
|
1215
|
+
* <p>The token for the next set of security configurations to return.</p>
|
|
1216
|
+
* @public
|
|
1217
|
+
*/
|
|
1218
|
+
nextToken?: string;
|
|
1219
|
+
}
|
|
1220
|
+
/**
|
|
1221
|
+
* @public
|
|
1222
|
+
*/
|
|
1223
|
+
export interface ListSecurityConfigurationsResponse {
|
|
1224
|
+
/**
|
|
1225
|
+
* <p>The list of returned security configurations.</p>
|
|
1226
|
+
* @public
|
|
1227
|
+
*/
|
|
1228
|
+
securityConfigurations?: SecurityConfiguration[];
|
|
1229
|
+
/**
|
|
1230
|
+
* <p>The token for the next set of security configurations to return.</p>
|
|
1231
|
+
* @public
|
|
1232
|
+
*/
|
|
1233
|
+
nextToken?: string;
|
|
1234
|
+
}
|
|
951
1235
|
/**
|
|
952
1236
|
* @public
|
|
953
1237
|
*/
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import { ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput } from "../commands/ListSecurityConfigurationsCommand";
|
|
3
|
+
import { EMRContainersPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
/**
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare const paginateListSecurityConfigurations: (config: EMRContainersPaginationConfiguration, input: ListSecurityConfigurationsCommandInput, ...rest: any[]) => Paginator<ListSecurityConfigurationsCommandOutput>;
|
|
@@ -2,4 +2,5 @@ export * from "./Interfaces";
|
|
|
2
2
|
export * from "./ListJobRunsPaginator";
|
|
3
3
|
export * from "./ListJobTemplatesPaginator";
|
|
4
4
|
export * from "./ListManagedEndpointsPaginator";
|
|
5
|
+
export * from "./ListSecurityConfigurationsPaginator";
|
|
5
6
|
export * from "./ListVirtualClustersPaginator";
|
|
@@ -3,6 +3,7 @@ import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
|
3
3
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "../commands/CancelJobRunCommand";
|
|
4
4
|
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "../commands/CreateJobTemplateCommand";
|
|
5
5
|
import { CreateManagedEndpointCommandInput, CreateManagedEndpointCommandOutput } from "../commands/CreateManagedEndpointCommand";
|
|
6
|
+
import { CreateSecurityConfigurationCommandInput, CreateSecurityConfigurationCommandOutput } from "../commands/CreateSecurityConfigurationCommand";
|
|
6
7
|
import { CreateVirtualClusterCommandInput, CreateVirtualClusterCommandOutput } from "../commands/CreateVirtualClusterCommand";
|
|
7
8
|
import { DeleteJobTemplateCommandInput, DeleteJobTemplateCommandOutput } from "../commands/DeleteJobTemplateCommand";
|
|
8
9
|
import { DeleteManagedEndpointCommandInput, DeleteManagedEndpointCommandOutput } from "../commands/DeleteManagedEndpointCommand";
|
|
@@ -10,11 +11,13 @@ import { DeleteVirtualClusterCommandInput, DeleteVirtualClusterCommandOutput } f
|
|
|
10
11
|
import { DescribeJobRunCommandInput, DescribeJobRunCommandOutput } from "../commands/DescribeJobRunCommand";
|
|
11
12
|
import { DescribeJobTemplateCommandInput, DescribeJobTemplateCommandOutput } from "../commands/DescribeJobTemplateCommand";
|
|
12
13
|
import { DescribeManagedEndpointCommandInput, DescribeManagedEndpointCommandOutput } from "../commands/DescribeManagedEndpointCommand";
|
|
14
|
+
import { DescribeSecurityConfigurationCommandInput, DescribeSecurityConfigurationCommandOutput } from "../commands/DescribeSecurityConfigurationCommand";
|
|
13
15
|
import { DescribeVirtualClusterCommandInput, DescribeVirtualClusterCommandOutput } from "../commands/DescribeVirtualClusterCommand";
|
|
14
16
|
import { GetManagedEndpointSessionCredentialsCommandInput, GetManagedEndpointSessionCredentialsCommandOutput } from "../commands/GetManagedEndpointSessionCredentialsCommand";
|
|
15
17
|
import { ListJobRunsCommandInput, ListJobRunsCommandOutput } from "../commands/ListJobRunsCommand";
|
|
16
18
|
import { ListJobTemplatesCommandInput, ListJobTemplatesCommandOutput } from "../commands/ListJobTemplatesCommand";
|
|
17
19
|
import { ListManagedEndpointsCommandInput, ListManagedEndpointsCommandOutput } from "../commands/ListManagedEndpointsCommand";
|
|
20
|
+
import { ListSecurityConfigurationsCommandInput, ListSecurityConfigurationsCommandOutput } from "../commands/ListSecurityConfigurationsCommand";
|
|
18
21
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
19
22
|
import { ListVirtualClustersCommandInput, ListVirtualClustersCommandOutput } from "../commands/ListVirtualClustersCommand";
|
|
20
23
|
import { StartJobRunCommandInput, StartJobRunCommandOutput } from "../commands/StartJobRunCommand";
|
|
@@ -32,6 +35,10 @@ export declare const se_CreateJobTemplateCommand: (input: CreateJobTemplateComma
|
|
|
32
35
|
* serializeAws_restJson1CreateManagedEndpointCommand
|
|
33
36
|
*/
|
|
34
37
|
export declare const se_CreateManagedEndpointCommand: (input: CreateManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
|
+
/**
|
|
39
|
+
* serializeAws_restJson1CreateSecurityConfigurationCommand
|
|
40
|
+
*/
|
|
41
|
+
export declare const se_CreateSecurityConfigurationCommand: (input: CreateSecurityConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
42
|
/**
|
|
36
43
|
* serializeAws_restJson1CreateVirtualClusterCommand
|
|
37
44
|
*/
|
|
@@ -60,6 +67,10 @@ export declare const se_DescribeJobTemplateCommand: (input: DescribeJobTemplateC
|
|
|
60
67
|
* serializeAws_restJson1DescribeManagedEndpointCommand
|
|
61
68
|
*/
|
|
62
69
|
export declare const se_DescribeManagedEndpointCommand: (input: DescribeManagedEndpointCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
70
|
+
/**
|
|
71
|
+
* serializeAws_restJson1DescribeSecurityConfigurationCommand
|
|
72
|
+
*/
|
|
73
|
+
export declare const se_DescribeSecurityConfigurationCommand: (input: DescribeSecurityConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
63
74
|
/**
|
|
64
75
|
* serializeAws_restJson1DescribeVirtualClusterCommand
|
|
65
76
|
*/
|
|
@@ -80,6 +91,10 @@ export declare const se_ListJobTemplatesCommand: (input: ListJobTemplatesCommand
|
|
|
80
91
|
* serializeAws_restJson1ListManagedEndpointsCommand
|
|
81
92
|
*/
|
|
82
93
|
export declare const se_ListManagedEndpointsCommand: (input: ListManagedEndpointsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
94
|
+
/**
|
|
95
|
+
* serializeAws_restJson1ListSecurityConfigurationsCommand
|
|
96
|
+
*/
|
|
97
|
+
export declare const se_ListSecurityConfigurationsCommand: (input: ListSecurityConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
83
98
|
/**
|
|
84
99
|
* serializeAws_restJson1ListTagsForResourceCommand
|
|
85
100
|
*/
|
|
@@ -112,6 +127,10 @@ export declare const de_CreateJobTemplateCommand: (output: __HttpResponse, conte
|
|
|
112
127
|
* deserializeAws_restJson1CreateManagedEndpointCommand
|
|
113
128
|
*/
|
|
114
129
|
export declare const de_CreateManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateManagedEndpointCommandOutput>;
|
|
130
|
+
/**
|
|
131
|
+
* deserializeAws_restJson1CreateSecurityConfigurationCommand
|
|
132
|
+
*/
|
|
133
|
+
export declare const de_CreateSecurityConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateSecurityConfigurationCommandOutput>;
|
|
115
134
|
/**
|
|
116
135
|
* deserializeAws_restJson1CreateVirtualClusterCommand
|
|
117
136
|
*/
|
|
@@ -140,6 +159,10 @@ export declare const de_DescribeJobTemplateCommand: (output: __HttpResponse, con
|
|
|
140
159
|
* deserializeAws_restJson1DescribeManagedEndpointCommand
|
|
141
160
|
*/
|
|
142
161
|
export declare const de_DescribeManagedEndpointCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeManagedEndpointCommandOutput>;
|
|
162
|
+
/**
|
|
163
|
+
* deserializeAws_restJson1DescribeSecurityConfigurationCommand
|
|
164
|
+
*/
|
|
165
|
+
export declare const de_DescribeSecurityConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeSecurityConfigurationCommandOutput>;
|
|
143
166
|
/**
|
|
144
167
|
* deserializeAws_restJson1DescribeVirtualClusterCommand
|
|
145
168
|
*/
|
|
@@ -160,6 +183,10 @@ export declare const de_ListJobTemplatesCommand: (output: __HttpResponse, contex
|
|
|
160
183
|
* deserializeAws_restJson1ListManagedEndpointsCommand
|
|
161
184
|
*/
|
|
162
185
|
export declare const de_ListManagedEndpointsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListManagedEndpointsCommandOutput>;
|
|
186
|
+
/**
|
|
187
|
+
* deserializeAws_restJson1ListSecurityConfigurationsCommand
|
|
188
|
+
*/
|
|
189
|
+
export declare const de_ListSecurityConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSecurityConfigurationsCommandOutput>;
|
|
163
190
|
/**
|
|
164
191
|
* deserializeAws_restJson1ListTagsForResourceCommand
|
|
165
192
|
*/
|
|
@@ -11,6 +11,10 @@ import {
|
|
|
11
11
|
CreateManagedEndpointCommandInput,
|
|
12
12
|
CreateManagedEndpointCommandOutput,
|
|
13
13
|
} from "./commands/CreateManagedEndpointCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateSecurityConfigurationCommandInput,
|
|
16
|
+
CreateSecurityConfigurationCommandOutput,
|
|
17
|
+
} from "./commands/CreateSecurityConfigurationCommand";
|
|
14
18
|
import {
|
|
15
19
|
CreateVirtualClusterCommandInput,
|
|
16
20
|
CreateVirtualClusterCommandOutput,
|
|
@@ -39,6 +43,10 @@ import {
|
|
|
39
43
|
DescribeManagedEndpointCommandInput,
|
|
40
44
|
DescribeManagedEndpointCommandOutput,
|
|
41
45
|
} from "./commands/DescribeManagedEndpointCommand";
|
|
46
|
+
import {
|
|
47
|
+
DescribeSecurityConfigurationCommandInput,
|
|
48
|
+
DescribeSecurityConfigurationCommandOutput,
|
|
49
|
+
} from "./commands/DescribeSecurityConfigurationCommand";
|
|
42
50
|
import {
|
|
43
51
|
DescribeVirtualClusterCommandInput,
|
|
44
52
|
DescribeVirtualClusterCommandOutput,
|
|
@@ -59,6 +67,10 @@ import {
|
|
|
59
67
|
ListManagedEndpointsCommandInput,
|
|
60
68
|
ListManagedEndpointsCommandOutput,
|
|
61
69
|
} from "./commands/ListManagedEndpointsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListSecurityConfigurationsCommandInput,
|
|
72
|
+
ListSecurityConfigurationsCommandOutput,
|
|
73
|
+
} from "./commands/ListSecurityConfigurationsCommand";
|
|
62
74
|
import {
|
|
63
75
|
ListTagsForResourceCommandInput,
|
|
64
76
|
ListTagsForResourceCommandOutput,
|
|
@@ -120,6 +132,19 @@ export interface EMRContainers {
|
|
|
120
132
|
options: __HttpHandlerOptions,
|
|
121
133
|
cb: (err: any, data?: CreateManagedEndpointCommandOutput) => void
|
|
122
134
|
): void;
|
|
135
|
+
createSecurityConfiguration(
|
|
136
|
+
args: CreateSecurityConfigurationCommandInput,
|
|
137
|
+
options?: __HttpHandlerOptions
|
|
138
|
+
): Promise<CreateSecurityConfigurationCommandOutput>;
|
|
139
|
+
createSecurityConfiguration(
|
|
140
|
+
args: CreateSecurityConfigurationCommandInput,
|
|
141
|
+
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void
|
|
142
|
+
): void;
|
|
143
|
+
createSecurityConfiguration(
|
|
144
|
+
args: CreateSecurityConfigurationCommandInput,
|
|
145
|
+
options: __HttpHandlerOptions,
|
|
146
|
+
cb: (err: any, data?: CreateSecurityConfigurationCommandOutput) => void
|
|
147
|
+
): void;
|
|
123
148
|
createVirtualCluster(
|
|
124
149
|
args: CreateVirtualClusterCommandInput,
|
|
125
150
|
options?: __HttpHandlerOptions
|
|
@@ -211,6 +236,19 @@ export interface EMRContainers {
|
|
|
211
236
|
options: __HttpHandlerOptions,
|
|
212
237
|
cb: (err: any, data?: DescribeManagedEndpointCommandOutput) => void
|
|
213
238
|
): void;
|
|
239
|
+
describeSecurityConfiguration(
|
|
240
|
+
args: DescribeSecurityConfigurationCommandInput,
|
|
241
|
+
options?: __HttpHandlerOptions
|
|
242
|
+
): Promise<DescribeSecurityConfigurationCommandOutput>;
|
|
243
|
+
describeSecurityConfiguration(
|
|
244
|
+
args: DescribeSecurityConfigurationCommandInput,
|
|
245
|
+
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void
|
|
246
|
+
): void;
|
|
247
|
+
describeSecurityConfiguration(
|
|
248
|
+
args: DescribeSecurityConfigurationCommandInput,
|
|
249
|
+
options: __HttpHandlerOptions,
|
|
250
|
+
cb: (err: any, data?: DescribeSecurityConfigurationCommandOutput) => void
|
|
251
|
+
): void;
|
|
214
252
|
describeVirtualCluster(
|
|
215
253
|
args: DescribeVirtualClusterCommandInput,
|
|
216
254
|
options?: __HttpHandlerOptions
|
|
@@ -283,6 +321,20 @@ export interface EMRContainers {
|
|
|
283
321
|
options: __HttpHandlerOptions,
|
|
284
322
|
cb: (err: any, data?: ListManagedEndpointsCommandOutput) => void
|
|
285
323
|
): void;
|
|
324
|
+
listSecurityConfigurations(): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
325
|
+
listSecurityConfigurations(
|
|
326
|
+
args: ListSecurityConfigurationsCommandInput,
|
|
327
|
+
options?: __HttpHandlerOptions
|
|
328
|
+
): Promise<ListSecurityConfigurationsCommandOutput>;
|
|
329
|
+
listSecurityConfigurations(
|
|
330
|
+
args: ListSecurityConfigurationsCommandInput,
|
|
331
|
+
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void
|
|
332
|
+
): void;
|
|
333
|
+
listSecurityConfigurations(
|
|
334
|
+
args: ListSecurityConfigurationsCommandInput,
|
|
335
|
+
options: __HttpHandlerOptions,
|
|
336
|
+
cb: (err: any, data?: ListSecurityConfigurationsCommandOutput) => void
|
|
337
|
+
): void;
|
|
286
338
|
listTagsForResource(
|
|
287
339
|
args: ListTagsForResourceCommandInput,
|
|
288
340
|
options?: __HttpHandlerOptions
|
|
@@ -57,6 +57,10 @@ import {
|
|
|
57
57
|
CreateManagedEndpointCommandInput,
|
|
58
58
|
CreateManagedEndpointCommandOutput,
|
|
59
59
|
} from "./commands/CreateManagedEndpointCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateSecurityConfigurationCommandInput,
|
|
62
|
+
CreateSecurityConfigurationCommandOutput,
|
|
63
|
+
} from "./commands/CreateSecurityConfigurationCommand";
|
|
60
64
|
import {
|
|
61
65
|
CreateVirtualClusterCommandInput,
|
|
62
66
|
CreateVirtualClusterCommandOutput,
|
|
@@ -85,6 +89,10 @@ import {
|
|
|
85
89
|
DescribeManagedEndpointCommandInput,
|
|
86
90
|
DescribeManagedEndpointCommandOutput,
|
|
87
91
|
} from "./commands/DescribeManagedEndpointCommand";
|
|
92
|
+
import {
|
|
93
|
+
DescribeSecurityConfigurationCommandInput,
|
|
94
|
+
DescribeSecurityConfigurationCommandOutput,
|
|
95
|
+
} from "./commands/DescribeSecurityConfigurationCommand";
|
|
88
96
|
import {
|
|
89
97
|
DescribeVirtualClusterCommandInput,
|
|
90
98
|
DescribeVirtualClusterCommandOutput,
|
|
@@ -105,6 +113,10 @@ import {
|
|
|
105
113
|
ListManagedEndpointsCommandInput,
|
|
106
114
|
ListManagedEndpointsCommandOutput,
|
|
107
115
|
} from "./commands/ListManagedEndpointsCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListSecurityConfigurationsCommandInput,
|
|
118
|
+
ListSecurityConfigurationsCommandOutput,
|
|
119
|
+
} from "./commands/ListSecurityConfigurationsCommand";
|
|
108
120
|
import {
|
|
109
121
|
ListTagsForResourceCommandInput,
|
|
110
122
|
ListTagsForResourceCommandOutput,
|
|
@@ -136,6 +148,7 @@ export type ServiceInputTypes =
|
|
|
136
148
|
| CancelJobRunCommandInput
|
|
137
149
|
| CreateJobTemplateCommandInput
|
|
138
150
|
| CreateManagedEndpointCommandInput
|
|
151
|
+
| CreateSecurityConfigurationCommandInput
|
|
139
152
|
| CreateVirtualClusterCommandInput
|
|
140
153
|
| DeleteJobTemplateCommandInput
|
|
141
154
|
| DeleteManagedEndpointCommandInput
|
|
@@ -143,11 +156,13 @@ export type ServiceInputTypes =
|
|
|
143
156
|
| DescribeJobRunCommandInput
|
|
144
157
|
| DescribeJobTemplateCommandInput
|
|
145
158
|
| DescribeManagedEndpointCommandInput
|
|
159
|
+
| DescribeSecurityConfigurationCommandInput
|
|
146
160
|
| DescribeVirtualClusterCommandInput
|
|
147
161
|
| GetManagedEndpointSessionCredentialsCommandInput
|
|
148
162
|
| ListJobRunsCommandInput
|
|
149
163
|
| ListJobTemplatesCommandInput
|
|
150
164
|
| ListManagedEndpointsCommandInput
|
|
165
|
+
| ListSecurityConfigurationsCommandInput
|
|
151
166
|
| ListTagsForResourceCommandInput
|
|
152
167
|
| ListVirtualClustersCommandInput
|
|
153
168
|
| StartJobRunCommandInput
|
|
@@ -157,6 +172,7 @@ export type ServiceOutputTypes =
|
|
|
157
172
|
| CancelJobRunCommandOutput
|
|
158
173
|
| CreateJobTemplateCommandOutput
|
|
159
174
|
| CreateManagedEndpointCommandOutput
|
|
175
|
+
| CreateSecurityConfigurationCommandOutput
|
|
160
176
|
| CreateVirtualClusterCommandOutput
|
|
161
177
|
| DeleteJobTemplateCommandOutput
|
|
162
178
|
| DeleteManagedEndpointCommandOutput
|
|
@@ -164,11 +180,13 @@ export type ServiceOutputTypes =
|
|
|
164
180
|
| DescribeJobRunCommandOutput
|
|
165
181
|
| DescribeJobTemplateCommandOutput
|
|
166
182
|
| DescribeManagedEndpointCommandOutput
|
|
183
|
+
| DescribeSecurityConfigurationCommandOutput
|
|
167
184
|
| DescribeVirtualClusterCommandOutput
|
|
168
185
|
| GetManagedEndpointSessionCredentialsCommandOutput
|
|
169
186
|
| ListJobRunsCommandOutput
|
|
170
187
|
| ListJobTemplatesCommandOutput
|
|
171
188
|
| ListManagedEndpointsCommandOutput
|
|
189
|
+
| ListSecurityConfigurationsCommandOutput
|
|
172
190
|
| ListTagsForResourceCommandOutput
|
|
173
191
|
| ListVirtualClustersCommandOutput
|
|
174
192
|
| StartJobRunCommandOutput
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EMRContainersClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EMRContainersClient";
|
|
8
|
+
import {
|
|
9
|
+
CreateSecurityConfigurationRequest,
|
|
10
|
+
CreateSecurityConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface CreateSecurityConfigurationCommandInput
|
|
14
|
+
extends CreateSecurityConfigurationRequest {}
|
|
15
|
+
export interface CreateSecurityConfigurationCommandOutput
|
|
16
|
+
extends CreateSecurityConfigurationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CreateSecurityConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CreateSecurityConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CreateSecurityConfigurationCommandInput,
|
|
23
|
+
CreateSecurityConfigurationCommandOutput,
|
|
24
|
+
EMRContainersClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: CreateSecurityConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CreateSecurityConfigurationCommandInput,
|
|
32
|
+
CreateSecurityConfigurationCommandOutput,
|
|
33
|
+
EMRContainersClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CreateSecurityConfigurationCommand extends CreateSecurityConfigurationCommand_base {}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
EMRContainersClientResolvedConfig,
|
|
5
|
+
ServiceInputTypes,
|
|
6
|
+
ServiceOutputTypes,
|
|
7
|
+
} from "../EMRContainersClient";
|
|
8
|
+
import {
|
|
9
|
+
DescribeSecurityConfigurationRequest,
|
|
10
|
+
DescribeSecurityConfigurationResponse,
|
|
11
|
+
} from "../models/models_0";
|
|
12
|
+
export { __MetadataBearer, $Command };
|
|
13
|
+
export interface DescribeSecurityConfigurationCommandInput
|
|
14
|
+
extends DescribeSecurityConfigurationRequest {}
|
|
15
|
+
export interface DescribeSecurityConfigurationCommandOutput
|
|
16
|
+
extends DescribeSecurityConfigurationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const DescribeSecurityConfigurationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: DescribeSecurityConfigurationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
DescribeSecurityConfigurationCommandInput,
|
|
23
|
+
DescribeSecurityConfigurationCommandOutput,
|
|
24
|
+
EMRContainersClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
__0_0: DescribeSecurityConfigurationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
DescribeSecurityConfigurationCommandInput,
|
|
32
|
+
DescribeSecurityConfigurationCommandOutput,
|
|
33
|
+
EMRContainersClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class DescribeSecurityConfigurationCommand extends DescribeSecurityConfigurationCommand_base {}
|