@aws-sdk/client-emr-containers 3.927.0 → 3.929.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-cjs/index.js +1233 -1263
- package/dist-cjs/runtimeConfig.shared.js +2 -0
- package/dist-es/EMRContainersClient.js +2 -0
- package/dist-es/commands/CancelJobRunCommand.js +3 -9
- package/dist-es/commands/CreateJobTemplateCommand.js +3 -10
- package/dist-es/commands/CreateManagedEndpointCommand.js +3 -10
- package/dist-es/commands/CreateSecurityConfigurationCommand.js +3 -9
- package/dist-es/commands/CreateVirtualClusterCommand.js +3 -9
- package/dist-es/commands/DeleteJobTemplateCommand.js +3 -9
- package/dist-es/commands/DeleteManagedEndpointCommand.js +3 -9
- package/dist-es/commands/DeleteVirtualClusterCommand.js +3 -9
- package/dist-es/commands/DescribeJobRunCommand.js +3 -10
- package/dist-es/commands/DescribeJobTemplateCommand.js +3 -10
- package/dist-es/commands/DescribeManagedEndpointCommand.js +3 -10
- package/dist-es/commands/DescribeSecurityConfigurationCommand.js +3 -9
- package/dist-es/commands/DescribeVirtualClusterCommand.js +3 -9
- package/dist-es/commands/GetManagedEndpointSessionCredentialsCommand.js +3 -10
- package/dist-es/commands/ListJobRunsCommand.js +3 -10
- package/dist-es/commands/ListJobTemplatesCommand.js +3 -10
- package/dist-es/commands/ListManagedEndpointsCommand.js +3 -10
- package/dist-es/commands/ListSecurityConfigurationsCommand.js +3 -9
- package/dist-es/commands/ListTagsForResourceCommand.js +3 -9
- package/dist-es/commands/ListVirtualClustersCommand.js +3 -9
- package/dist-es/commands/StartJobRunCommand.js +3 -10
- package/dist-es/commands/TagResourceCommand.js +3 -9
- package/dist-es/commands/UntagResourceCommand.js +3 -9
- package/dist-es/models/models_0.js +0 -112
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-es/schemas/schemas_0.js +1187 -0
- package/dist-types/EMRContainersClient.d.ts +10 -1
- package/dist-types/models/models_0.d.ts +0 -84
- package/dist-types/runtimeConfig.browser.d.ts +1 -0
- package/dist-types/runtimeConfig.d.ts +1 -0
- package/dist-types/runtimeConfig.native.d.ts +1 -0
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +134 -0
- package/dist-types/ts3.4/EMRContainersClient.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +0 -53
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +4 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +141 -0
- package/package.json +5 -6
- package/dist-es/protocols/Aws_restJson1.js +0 -964
- package/dist-types/protocols/Aws_restJson1.d.ts +0 -209
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +0 -281
|
@@ -5,7 +5,7 @@ import { EndpointInputConfig, EndpointResolvedConfig } from "@smithy/middleware-
|
|
|
5
5
|
import { RetryInputConfig, RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
|
-
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
8
|
+
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, ClientProtocol, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, HttpRequest, HttpResponse, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
10
|
import { CancelJobRunCommandInput, CancelJobRunCommandOutput } from "./commands/CancelJobRunCommand";
|
|
11
11
|
import { CreateJobTemplateCommandInput, CreateJobTemplateCommandOutput } from "./commands/CreateJobTemplateCommand";
|
|
@@ -164,6 +164,15 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
164
164
|
* Optional extensions
|
|
165
165
|
*/
|
|
166
166
|
extensions?: RuntimeExtension[];
|
|
167
|
+
/**
|
|
168
|
+
* The protocol controlling the message type (e.g. HTTP) and format (e.g. JSON)
|
|
169
|
+
* may be overridden. A default will always be set by the client.
|
|
170
|
+
* Available options depend on the service's supported protocols and will not be validated by
|
|
171
|
+
* the client.
|
|
172
|
+
* @alpha
|
|
173
|
+
*
|
|
174
|
+
*/
|
|
175
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
167
176
|
/**
|
|
168
177
|
* The {@link @smithy/smithy-client#DefaultsMode} that will be used to determine how certain default configuration options are resolved in the SDK.
|
|
169
178
|
*/
|
|
@@ -1989,87 +1989,3 @@ export interface ListJobTemplatesResponse {
|
|
|
1989
1989
|
*/
|
|
1990
1990
|
nextToken?: string | undefined;
|
|
1991
1991
|
}
|
|
1992
|
-
/**
|
|
1993
|
-
* @internal
|
|
1994
|
-
*/
|
|
1995
|
-
export declare const SparkSqlJobDriverFilterSensitiveLog: (obj: SparkSqlJobDriver) => any;
|
|
1996
|
-
/**
|
|
1997
|
-
* @internal
|
|
1998
|
-
*/
|
|
1999
|
-
export declare const SparkSubmitJobDriverFilterSensitiveLog: (obj: SparkSubmitJobDriver) => any;
|
|
2000
|
-
/**
|
|
2001
|
-
* @internal
|
|
2002
|
-
*/
|
|
2003
|
-
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
2004
|
-
/**
|
|
2005
|
-
* @internal
|
|
2006
|
-
*/
|
|
2007
|
-
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
2008
|
-
/**
|
|
2009
|
-
* @internal
|
|
2010
|
-
*/
|
|
2011
|
-
export declare const GetManagedEndpointSessionCredentialsResponseFilterSensitiveLog: (obj: GetManagedEndpointSessionCredentialsResponse) => any;
|
|
2012
|
-
/**
|
|
2013
|
-
* @internal
|
|
2014
|
-
*/
|
|
2015
|
-
export declare const ConfigurationFilterSensitiveLog: (obj: Configuration) => any;
|
|
2016
|
-
/**
|
|
2017
|
-
* @internal
|
|
2018
|
-
*/
|
|
2019
|
-
export declare const ConfigurationOverridesFilterSensitiveLog: (obj: ConfigurationOverrides) => any;
|
|
2020
|
-
/**
|
|
2021
|
-
* @internal
|
|
2022
|
-
*/
|
|
2023
|
-
export declare const ParametricConfigurationOverridesFilterSensitiveLog: (obj: ParametricConfigurationOverrides) => any;
|
|
2024
|
-
/**
|
|
2025
|
-
* @internal
|
|
2026
|
-
*/
|
|
2027
|
-
export declare const CreateManagedEndpointRequestFilterSensitiveLog: (obj: CreateManagedEndpointRequest) => any;
|
|
2028
|
-
/**
|
|
2029
|
-
* @internal
|
|
2030
|
-
*/
|
|
2031
|
-
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
2032
|
-
/**
|
|
2033
|
-
* @internal
|
|
2034
|
-
*/
|
|
2035
|
-
export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
|
|
2036
|
-
/**
|
|
2037
|
-
* @internal
|
|
2038
|
-
*/
|
|
2039
|
-
export declare const JobTemplateDataFilterSensitiveLog: (obj: JobTemplateData) => any;
|
|
2040
|
-
/**
|
|
2041
|
-
* @internal
|
|
2042
|
-
*/
|
|
2043
|
-
export declare const StartJobRunRequestFilterSensitiveLog: (obj: StartJobRunRequest) => any;
|
|
2044
|
-
/**
|
|
2045
|
-
* @internal
|
|
2046
|
-
*/
|
|
2047
|
-
export declare const CreateJobTemplateRequestFilterSensitiveLog: (obj: CreateJobTemplateRequest) => any;
|
|
2048
|
-
/**
|
|
2049
|
-
* @internal
|
|
2050
|
-
*/
|
|
2051
|
-
export declare const DescribeJobRunResponseFilterSensitiveLog: (obj: DescribeJobRunResponse) => any;
|
|
2052
|
-
/**
|
|
2053
|
-
* @internal
|
|
2054
|
-
*/
|
|
2055
|
-
export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (obj: DescribeManagedEndpointResponse) => any;
|
|
2056
|
-
/**
|
|
2057
|
-
* @internal
|
|
2058
|
-
*/
|
|
2059
|
-
export declare const JobTemplateFilterSensitiveLog: (obj: JobTemplate) => any;
|
|
2060
|
-
/**
|
|
2061
|
-
* @internal
|
|
2062
|
-
*/
|
|
2063
|
-
export declare const DescribeJobTemplateResponseFilterSensitiveLog: (obj: DescribeJobTemplateResponse) => any;
|
|
2064
|
-
/**
|
|
2065
|
-
* @internal
|
|
2066
|
-
*/
|
|
2067
|
-
export declare const ListJobRunsResponseFilterSensitiveLog: (obj: ListJobRunsResponse) => any;
|
|
2068
|
-
/**
|
|
2069
|
-
* @internal
|
|
2070
|
-
*/
|
|
2071
|
-
export declare const ListManagedEndpointsResponseFilterSensitiveLog: (obj: ListManagedEndpointsResponse) => any;
|
|
2072
|
-
/**
|
|
2073
|
-
* @internal
|
|
2074
|
-
*/
|
|
2075
|
-
export declare const ListJobTemplatesResponseFilterSensitiveLog: (obj: ListJobTemplatesResponse) => any;
|
|
@@ -29,6 +29,7 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
29
29
|
profile?: string;
|
|
30
30
|
logger: import("@smithy/types").Logger;
|
|
31
31
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
32
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
32
33
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
33
34
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
34
35
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
@@ -31,6 +31,7 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
31
31
|
profile?: string;
|
|
32
32
|
logger: import("@smithy/types").Logger;
|
|
33
33
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
34
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
34
35
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
35
36
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2;
|
|
36
37
|
endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
|
|
@@ -27,6 +27,7 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
29
29
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
30
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
30
31
|
defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
|
|
31
32
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
32
33
|
userAgentAppId?: string | undefined | import("@smithy/types").Provider<string | undefined>;
|
|
@@ -14,6 +14,7 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EMRContainersHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<import("@smithy/types").HttpRequest, import("@smithy/types").HttpResponse>;
|
|
17
18
|
serviceId: string;
|
|
18
19
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
20
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
|
+
export declare var EntryPointArgument: StaticSimpleSchema;
|
|
3
|
+
export declare var EntryPointPath: StaticSimpleSchema;
|
|
4
|
+
export declare var SparkSqlParameters: StaticSimpleSchema;
|
|
5
|
+
export declare var SparkSubmitParameters: StaticSimpleSchema;
|
|
6
|
+
export declare var Token: StaticSimpleSchema;
|
|
7
|
+
export declare var AuthorizationConfiguration: StaticStructureSchema;
|
|
8
|
+
export declare var CancelJobRunRequest: StaticStructureSchema;
|
|
9
|
+
export declare var CancelJobRunResponse: StaticStructureSchema;
|
|
10
|
+
export declare var Certificate: StaticStructureSchema;
|
|
11
|
+
export declare var CloudWatchMonitoringConfiguration: StaticStructureSchema;
|
|
12
|
+
export declare var Configuration: StaticStructureSchema;
|
|
13
|
+
export declare var ConfigurationOverrides: StaticStructureSchema;
|
|
14
|
+
export declare var ContainerLogRotationConfiguration: StaticStructureSchema;
|
|
15
|
+
export declare var ContainerProvider: StaticStructureSchema;
|
|
16
|
+
export declare var CreateJobTemplateRequest: StaticStructureSchema;
|
|
17
|
+
export declare var CreateJobTemplateResponse: StaticStructureSchema;
|
|
18
|
+
export declare var CreateManagedEndpointRequest: StaticStructureSchema;
|
|
19
|
+
export declare var CreateManagedEndpointResponse: StaticStructureSchema;
|
|
20
|
+
export declare var CreateSecurityConfigurationRequest: StaticStructureSchema;
|
|
21
|
+
export declare var CreateSecurityConfigurationResponse: StaticStructureSchema;
|
|
22
|
+
export declare var CreateVirtualClusterRequest: StaticStructureSchema;
|
|
23
|
+
export declare var CreateVirtualClusterResponse: StaticStructureSchema;
|
|
24
|
+
export declare var DeleteJobTemplateRequest: StaticStructureSchema;
|
|
25
|
+
export declare var DeleteJobTemplateResponse: StaticStructureSchema;
|
|
26
|
+
export declare var DeleteManagedEndpointRequest: StaticStructureSchema;
|
|
27
|
+
export declare var DeleteManagedEndpointResponse: StaticStructureSchema;
|
|
28
|
+
export declare var DeleteVirtualClusterRequest: StaticStructureSchema;
|
|
29
|
+
export declare var DeleteVirtualClusterResponse: StaticStructureSchema;
|
|
30
|
+
export declare var DescribeJobRunRequest: StaticStructureSchema;
|
|
31
|
+
export declare var DescribeJobRunResponse: StaticStructureSchema;
|
|
32
|
+
export declare var DescribeJobTemplateRequest: StaticStructureSchema;
|
|
33
|
+
export declare var DescribeJobTemplateResponse: StaticStructureSchema;
|
|
34
|
+
export declare var DescribeManagedEndpointRequest: StaticStructureSchema;
|
|
35
|
+
export declare var DescribeManagedEndpointResponse: StaticStructureSchema;
|
|
36
|
+
export declare var DescribeSecurityConfigurationRequest: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeSecurityConfigurationResponse: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeVirtualClusterRequest: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeVirtualClusterResponse: StaticStructureSchema;
|
|
40
|
+
export declare var EksInfo: StaticStructureSchema;
|
|
41
|
+
export declare var EKSRequestThrottledException: StaticErrorSchema;
|
|
42
|
+
export declare var EncryptionConfiguration: StaticStructureSchema;
|
|
43
|
+
export declare var Endpoint: StaticStructureSchema;
|
|
44
|
+
export declare var GetManagedEndpointSessionCredentialsRequest: StaticStructureSchema;
|
|
45
|
+
export declare var GetManagedEndpointSessionCredentialsResponse: StaticStructureSchema;
|
|
46
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
47
|
+
export declare var InTransitEncryptionConfiguration: StaticStructureSchema;
|
|
48
|
+
export declare var JobDriver: StaticStructureSchema;
|
|
49
|
+
export declare var JobRun: StaticStructureSchema;
|
|
50
|
+
export declare var JobTemplate: StaticStructureSchema;
|
|
51
|
+
export declare var JobTemplateData: StaticStructureSchema;
|
|
52
|
+
export declare var LakeFormationConfiguration: StaticStructureSchema;
|
|
53
|
+
export declare var ListJobRunsRequest: StaticStructureSchema;
|
|
54
|
+
export declare var ListJobRunsResponse: StaticStructureSchema;
|
|
55
|
+
export declare var ListJobTemplatesRequest: StaticStructureSchema;
|
|
56
|
+
export declare var ListJobTemplatesResponse: StaticStructureSchema;
|
|
57
|
+
export declare var ListManagedEndpointsRequest: StaticStructureSchema;
|
|
58
|
+
export declare var ListManagedEndpointsResponse: StaticStructureSchema;
|
|
59
|
+
export declare var ListSecurityConfigurationsRequest: StaticStructureSchema;
|
|
60
|
+
export declare var ListSecurityConfigurationsResponse: StaticStructureSchema;
|
|
61
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
62
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
63
|
+
export declare var ListVirtualClustersRequest: StaticStructureSchema;
|
|
64
|
+
export declare var ListVirtualClustersResponse: StaticStructureSchema;
|
|
65
|
+
export declare var ManagedLogs: StaticStructureSchema;
|
|
66
|
+
export declare var MonitoringConfiguration: StaticStructureSchema;
|
|
67
|
+
export declare var ParametricCloudWatchMonitoringConfiguration: StaticStructureSchema;
|
|
68
|
+
export declare var ParametricConfigurationOverrides: StaticStructureSchema;
|
|
69
|
+
export declare var ParametricMonitoringConfiguration: StaticStructureSchema;
|
|
70
|
+
export declare var ParametricS3MonitoringConfiguration: StaticStructureSchema;
|
|
71
|
+
export declare var RequestThrottledException: StaticErrorSchema;
|
|
72
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
73
|
+
export declare var RetryPolicyConfiguration: StaticStructureSchema;
|
|
74
|
+
export declare var RetryPolicyExecution: StaticStructureSchema;
|
|
75
|
+
export declare var S3MonitoringConfiguration: StaticStructureSchema;
|
|
76
|
+
export declare var SecureNamespaceInfo: StaticStructureSchema;
|
|
77
|
+
export declare var SecurityConfiguration: StaticStructureSchema;
|
|
78
|
+
export declare var SecurityConfigurationData: StaticStructureSchema;
|
|
79
|
+
export declare var SparkSqlJobDriver: StaticStructureSchema;
|
|
80
|
+
export declare var SparkSubmitJobDriver: StaticStructureSchema;
|
|
81
|
+
export declare var StartJobRunRequest: StaticStructureSchema;
|
|
82
|
+
export declare var StartJobRunResponse: StaticStructureSchema;
|
|
83
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
84
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
85
|
+
export declare var TemplateParameterConfiguration: StaticStructureSchema;
|
|
86
|
+
export declare var TLSCertificateConfiguration: StaticStructureSchema;
|
|
87
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
88
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
89
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
90
|
+
export declare var VirtualCluster: StaticStructureSchema;
|
|
91
|
+
export declare var __Unit: "unit";
|
|
92
|
+
export declare var EMRContainersServiceException: StaticErrorSchema;
|
|
93
|
+
export declare var ConfigurationList: StaticListSchema;
|
|
94
|
+
export declare var Endpoints: StaticListSchema;
|
|
95
|
+
export declare var EndpointStates: number;
|
|
96
|
+
export declare var EndpointTypes: number;
|
|
97
|
+
export declare var EntryPointArguments: StaticListSchema;
|
|
98
|
+
export declare var JobRuns: StaticListSchema;
|
|
99
|
+
export declare var JobRunStates: number;
|
|
100
|
+
export declare var JobTemplates: StaticListSchema;
|
|
101
|
+
export declare var SecurityConfigurations: StaticListSchema;
|
|
102
|
+
export declare var SubnetIds: number;
|
|
103
|
+
export declare var TagKeyList: number;
|
|
104
|
+
export declare var VirtualClusters: StaticListSchema;
|
|
105
|
+
export declare var VirtualClusterStates: number;
|
|
106
|
+
export declare var SensitivePropertiesMap: StaticMapSchema;
|
|
107
|
+
export declare var TagMap: number;
|
|
108
|
+
export declare var TemplateParameterConfigurationMap: StaticMapSchema;
|
|
109
|
+
export declare var TemplateParameterInputMap: number;
|
|
110
|
+
export declare var ContainerInfo: StaticStructureSchema;
|
|
111
|
+
export declare var Credentials: StaticStructureSchema;
|
|
112
|
+
export declare var CancelJobRun: StaticOperationSchema;
|
|
113
|
+
export declare var CreateJobTemplate: StaticOperationSchema;
|
|
114
|
+
export declare var CreateManagedEndpoint: StaticOperationSchema;
|
|
115
|
+
export declare var CreateSecurityConfiguration: StaticOperationSchema;
|
|
116
|
+
export declare var CreateVirtualCluster: StaticOperationSchema;
|
|
117
|
+
export declare var DeleteJobTemplate: StaticOperationSchema;
|
|
118
|
+
export declare var DeleteManagedEndpoint: StaticOperationSchema;
|
|
119
|
+
export declare var DeleteVirtualCluster: StaticOperationSchema;
|
|
120
|
+
export declare var DescribeJobRun: StaticOperationSchema;
|
|
121
|
+
export declare var DescribeJobTemplate: StaticOperationSchema;
|
|
122
|
+
export declare var DescribeManagedEndpoint: StaticOperationSchema;
|
|
123
|
+
export declare var DescribeSecurityConfiguration: StaticOperationSchema;
|
|
124
|
+
export declare var DescribeVirtualCluster: StaticOperationSchema;
|
|
125
|
+
export declare var GetManagedEndpointSessionCredentials: StaticOperationSchema;
|
|
126
|
+
export declare var ListJobRuns: StaticOperationSchema;
|
|
127
|
+
export declare var ListJobTemplates: StaticOperationSchema;
|
|
128
|
+
export declare var ListManagedEndpoints: StaticOperationSchema;
|
|
129
|
+
export declare var ListSecurityConfigurations: StaticOperationSchema;
|
|
130
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
131
|
+
export declare var ListVirtualClusters: StaticOperationSchema;
|
|
132
|
+
export declare var StartJobRun: StaticOperationSchema;
|
|
133
|
+
export declare var TagResource: StaticOperationSchema;
|
|
134
|
+
export declare var UntagResource: StaticOperationSchema;
|
|
@@ -30,10 +30,13 @@ import {
|
|
|
30
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
33
|
+
ClientProtocol,
|
|
33
34
|
Decoder as __Decoder,
|
|
34
35
|
Encoder as __Encoder,
|
|
35
36
|
HashConstructor as __HashConstructor,
|
|
36
37
|
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
37
40
|
Logger as __Logger,
|
|
38
41
|
Provider as __Provider,
|
|
39
42
|
Provider,
|
|
@@ -216,6 +219,7 @@ export interface ClientDefaults
|
|
|
216
219
|
retryMode?: string | __Provider<string>;
|
|
217
220
|
logger?: __Logger;
|
|
218
221
|
extensions?: RuntimeExtension[];
|
|
222
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
219
223
|
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
220
224
|
}
|
|
221
225
|
export type EMRContainersClientConfigType = Partial<
|
|
@@ -551,56 +551,3 @@ export interface ListJobTemplatesResponse {
|
|
|
551
551
|
templates?: JobTemplate[] | undefined;
|
|
552
552
|
nextToken?: string | undefined;
|
|
553
553
|
}
|
|
554
|
-
export declare const SparkSqlJobDriverFilterSensitiveLog: (
|
|
555
|
-
obj: SparkSqlJobDriver
|
|
556
|
-
) => any;
|
|
557
|
-
export declare const SparkSubmitJobDriverFilterSensitiveLog: (
|
|
558
|
-
obj: SparkSubmitJobDriver
|
|
559
|
-
) => any;
|
|
560
|
-
export declare const JobDriverFilterSensitiveLog: (obj: JobDriver) => any;
|
|
561
|
-
export declare const CredentialsFilterSensitiveLog: (obj: Credentials) => any;
|
|
562
|
-
export declare const GetManagedEndpointSessionCredentialsResponseFilterSensitiveLog: (
|
|
563
|
-
obj: GetManagedEndpointSessionCredentialsResponse
|
|
564
|
-
) => any;
|
|
565
|
-
export declare const ConfigurationFilterSensitiveLog: (
|
|
566
|
-
obj: Configuration
|
|
567
|
-
) => any;
|
|
568
|
-
export declare const ConfigurationOverridesFilterSensitiveLog: (
|
|
569
|
-
obj: ConfigurationOverrides
|
|
570
|
-
) => any;
|
|
571
|
-
export declare const ParametricConfigurationOverridesFilterSensitiveLog: (
|
|
572
|
-
obj: ParametricConfigurationOverrides
|
|
573
|
-
) => any;
|
|
574
|
-
export declare const CreateManagedEndpointRequestFilterSensitiveLog: (
|
|
575
|
-
obj: CreateManagedEndpointRequest
|
|
576
|
-
) => any;
|
|
577
|
-
export declare const EndpointFilterSensitiveLog: (obj: Endpoint) => any;
|
|
578
|
-
export declare const JobRunFilterSensitiveLog: (obj: JobRun) => any;
|
|
579
|
-
export declare const JobTemplateDataFilterSensitiveLog: (
|
|
580
|
-
obj: JobTemplateData
|
|
581
|
-
) => any;
|
|
582
|
-
export declare const StartJobRunRequestFilterSensitiveLog: (
|
|
583
|
-
obj: StartJobRunRequest
|
|
584
|
-
) => any;
|
|
585
|
-
export declare const CreateJobTemplateRequestFilterSensitiveLog: (
|
|
586
|
-
obj: CreateJobTemplateRequest
|
|
587
|
-
) => any;
|
|
588
|
-
export declare const DescribeJobRunResponseFilterSensitiveLog: (
|
|
589
|
-
obj: DescribeJobRunResponse
|
|
590
|
-
) => any;
|
|
591
|
-
export declare const DescribeManagedEndpointResponseFilterSensitiveLog: (
|
|
592
|
-
obj: DescribeManagedEndpointResponse
|
|
593
|
-
) => any;
|
|
594
|
-
export declare const JobTemplateFilterSensitiveLog: (obj: JobTemplate) => any;
|
|
595
|
-
export declare const DescribeJobTemplateResponseFilterSensitiveLog: (
|
|
596
|
-
obj: DescribeJobTemplateResponse
|
|
597
|
-
) => any;
|
|
598
|
-
export declare const ListJobRunsResponseFilterSensitiveLog: (
|
|
599
|
-
obj: ListJobRunsResponse
|
|
600
|
-
) => any;
|
|
601
|
-
export declare const ListManagedEndpointsResponseFilterSensitiveLog: (
|
|
602
|
-
obj: ListManagedEndpointsResponse
|
|
603
|
-
) => any;
|
|
604
|
-
export declare const ListJobTemplatesResponseFilterSensitiveLog: (
|
|
605
|
-
obj: ListJobTemplatesResponse
|
|
606
|
-
) => any;
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
userAgentAppId?:
|
|
43
47
|
| string
|
|
@@ -38,6 +38,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
38
38
|
profile?: string;
|
|
39
39
|
logger: import("@smithy/types").Logger;
|
|
40
40
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
41
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
42
|
+
import("@smithy/types").HttpRequest,
|
|
43
|
+
import("@smithy/types").HttpResponse
|
|
44
|
+
>;
|
|
41
45
|
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
42
46
|
retryStrategy?:
|
|
43
47
|
| import("@smithy/types").RetryStrategy
|
|
@@ -37,6 +37,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
37
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
38
38
|
logger: import("@smithy/types").Logger;
|
|
39
39
|
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
40
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
41
|
+
import("@smithy/types").HttpRequest,
|
|
42
|
+
import("@smithy/types").HttpResponse
|
|
43
|
+
>;
|
|
40
44
|
defaultsMode:
|
|
41
45
|
| import("@smithy/smithy-client").DefaultsMode
|
|
42
46
|
| import("@smithy/types").Provider<
|
|
@@ -14,6 +14,10 @@ export declare const getRuntimeConfig: (config: EMRContainersClientConfig) => {
|
|
|
14
14
|
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").EMRContainersHttpAuthSchemeProvider;
|
|
15
15
|
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
16
16
|
logger: import("@smithy/types").Logger;
|
|
17
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
18
|
+
import("@smithy/types").HttpRequest,
|
|
19
|
+
import("@smithy/types").HttpResponse
|
|
20
|
+
>;
|
|
17
21
|
serviceId: string;
|
|
18
22
|
urlParser: import("@smithy/types").UrlParser;
|
|
19
23
|
utf8Decoder: import("@smithy/types").Decoder;
|
|
@@ -0,0 +1,141 @@
|
|
|
1
|
+
import {
|
|
2
|
+
StaticErrorSchema,
|
|
3
|
+
StaticListSchema,
|
|
4
|
+
StaticMapSchema,
|
|
5
|
+
StaticOperationSchema,
|
|
6
|
+
StaticSimpleSchema,
|
|
7
|
+
StaticStructureSchema,
|
|
8
|
+
} from "@smithy/types";
|
|
9
|
+
export declare var EntryPointArgument: StaticSimpleSchema;
|
|
10
|
+
export declare var EntryPointPath: StaticSimpleSchema;
|
|
11
|
+
export declare var SparkSqlParameters: StaticSimpleSchema;
|
|
12
|
+
export declare var SparkSubmitParameters: StaticSimpleSchema;
|
|
13
|
+
export declare var Token: StaticSimpleSchema;
|
|
14
|
+
export declare var AuthorizationConfiguration: StaticStructureSchema;
|
|
15
|
+
export declare var CancelJobRunRequest: StaticStructureSchema;
|
|
16
|
+
export declare var CancelJobRunResponse: StaticStructureSchema;
|
|
17
|
+
export declare var Certificate: StaticStructureSchema;
|
|
18
|
+
export declare var CloudWatchMonitoringConfiguration: StaticStructureSchema;
|
|
19
|
+
export declare var Configuration: StaticStructureSchema;
|
|
20
|
+
export declare var ConfigurationOverrides: StaticStructureSchema;
|
|
21
|
+
export declare var ContainerLogRotationConfiguration: StaticStructureSchema;
|
|
22
|
+
export declare var ContainerProvider: StaticStructureSchema;
|
|
23
|
+
export declare var CreateJobTemplateRequest: StaticStructureSchema;
|
|
24
|
+
export declare var CreateJobTemplateResponse: StaticStructureSchema;
|
|
25
|
+
export declare var CreateManagedEndpointRequest: StaticStructureSchema;
|
|
26
|
+
export declare var CreateManagedEndpointResponse: StaticStructureSchema;
|
|
27
|
+
export declare var CreateSecurityConfigurationRequest: StaticStructureSchema;
|
|
28
|
+
export declare var CreateSecurityConfigurationResponse: StaticStructureSchema;
|
|
29
|
+
export declare var CreateVirtualClusterRequest: StaticStructureSchema;
|
|
30
|
+
export declare var CreateVirtualClusterResponse: StaticStructureSchema;
|
|
31
|
+
export declare var DeleteJobTemplateRequest: StaticStructureSchema;
|
|
32
|
+
export declare var DeleteJobTemplateResponse: StaticStructureSchema;
|
|
33
|
+
export declare var DeleteManagedEndpointRequest: StaticStructureSchema;
|
|
34
|
+
export declare var DeleteManagedEndpointResponse: StaticStructureSchema;
|
|
35
|
+
export declare var DeleteVirtualClusterRequest: StaticStructureSchema;
|
|
36
|
+
export declare var DeleteVirtualClusterResponse: StaticStructureSchema;
|
|
37
|
+
export declare var DescribeJobRunRequest: StaticStructureSchema;
|
|
38
|
+
export declare var DescribeJobRunResponse: StaticStructureSchema;
|
|
39
|
+
export declare var DescribeJobTemplateRequest: StaticStructureSchema;
|
|
40
|
+
export declare var DescribeJobTemplateResponse: StaticStructureSchema;
|
|
41
|
+
export declare var DescribeManagedEndpointRequest: StaticStructureSchema;
|
|
42
|
+
export declare var DescribeManagedEndpointResponse: StaticStructureSchema;
|
|
43
|
+
export declare var DescribeSecurityConfigurationRequest: StaticStructureSchema;
|
|
44
|
+
export declare var DescribeSecurityConfigurationResponse: StaticStructureSchema;
|
|
45
|
+
export declare var DescribeVirtualClusterRequest: StaticStructureSchema;
|
|
46
|
+
export declare var DescribeVirtualClusterResponse: StaticStructureSchema;
|
|
47
|
+
export declare var EksInfo: StaticStructureSchema;
|
|
48
|
+
export declare var EKSRequestThrottledException: StaticErrorSchema;
|
|
49
|
+
export declare var EncryptionConfiguration: StaticStructureSchema;
|
|
50
|
+
export declare var Endpoint: StaticStructureSchema;
|
|
51
|
+
export declare var GetManagedEndpointSessionCredentialsRequest: StaticStructureSchema;
|
|
52
|
+
export declare var GetManagedEndpointSessionCredentialsResponse: StaticStructureSchema;
|
|
53
|
+
export declare var InternalServerException: StaticErrorSchema;
|
|
54
|
+
export declare var InTransitEncryptionConfiguration: StaticStructureSchema;
|
|
55
|
+
export declare var JobDriver: StaticStructureSchema;
|
|
56
|
+
export declare var JobRun: StaticStructureSchema;
|
|
57
|
+
export declare var JobTemplate: StaticStructureSchema;
|
|
58
|
+
export declare var JobTemplateData: StaticStructureSchema;
|
|
59
|
+
export declare var LakeFormationConfiguration: StaticStructureSchema;
|
|
60
|
+
export declare var ListJobRunsRequest: StaticStructureSchema;
|
|
61
|
+
export declare var ListJobRunsResponse: StaticStructureSchema;
|
|
62
|
+
export declare var ListJobTemplatesRequest: StaticStructureSchema;
|
|
63
|
+
export declare var ListJobTemplatesResponse: StaticStructureSchema;
|
|
64
|
+
export declare var ListManagedEndpointsRequest: StaticStructureSchema;
|
|
65
|
+
export declare var ListManagedEndpointsResponse: StaticStructureSchema;
|
|
66
|
+
export declare var ListSecurityConfigurationsRequest: StaticStructureSchema;
|
|
67
|
+
export declare var ListSecurityConfigurationsResponse: StaticStructureSchema;
|
|
68
|
+
export declare var ListTagsForResourceRequest: StaticStructureSchema;
|
|
69
|
+
export declare var ListTagsForResourceResponse: StaticStructureSchema;
|
|
70
|
+
export declare var ListVirtualClustersRequest: StaticStructureSchema;
|
|
71
|
+
export declare var ListVirtualClustersResponse: StaticStructureSchema;
|
|
72
|
+
export declare var ManagedLogs: StaticStructureSchema;
|
|
73
|
+
export declare var MonitoringConfiguration: StaticStructureSchema;
|
|
74
|
+
export declare var ParametricCloudWatchMonitoringConfiguration: StaticStructureSchema;
|
|
75
|
+
export declare var ParametricConfigurationOverrides: StaticStructureSchema;
|
|
76
|
+
export declare var ParametricMonitoringConfiguration: StaticStructureSchema;
|
|
77
|
+
export declare var ParametricS3MonitoringConfiguration: StaticStructureSchema;
|
|
78
|
+
export declare var RequestThrottledException: StaticErrorSchema;
|
|
79
|
+
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
80
|
+
export declare var RetryPolicyConfiguration: StaticStructureSchema;
|
|
81
|
+
export declare var RetryPolicyExecution: StaticStructureSchema;
|
|
82
|
+
export declare var S3MonitoringConfiguration: StaticStructureSchema;
|
|
83
|
+
export declare var SecureNamespaceInfo: StaticStructureSchema;
|
|
84
|
+
export declare var SecurityConfiguration: StaticStructureSchema;
|
|
85
|
+
export declare var SecurityConfigurationData: StaticStructureSchema;
|
|
86
|
+
export declare var SparkSqlJobDriver: StaticStructureSchema;
|
|
87
|
+
export declare var SparkSubmitJobDriver: StaticStructureSchema;
|
|
88
|
+
export declare var StartJobRunRequest: StaticStructureSchema;
|
|
89
|
+
export declare var StartJobRunResponse: StaticStructureSchema;
|
|
90
|
+
export declare var TagResourceRequest: StaticStructureSchema;
|
|
91
|
+
export declare var TagResourceResponse: StaticStructureSchema;
|
|
92
|
+
export declare var TemplateParameterConfiguration: StaticStructureSchema;
|
|
93
|
+
export declare var TLSCertificateConfiguration: StaticStructureSchema;
|
|
94
|
+
export declare var UntagResourceRequest: StaticStructureSchema;
|
|
95
|
+
export declare var UntagResourceResponse: StaticStructureSchema;
|
|
96
|
+
export declare var ValidationException: StaticErrorSchema;
|
|
97
|
+
export declare var VirtualCluster: StaticStructureSchema;
|
|
98
|
+
export declare var __Unit: "unit";
|
|
99
|
+
export declare var EMRContainersServiceException: StaticErrorSchema;
|
|
100
|
+
export declare var ConfigurationList: StaticListSchema;
|
|
101
|
+
export declare var Endpoints: StaticListSchema;
|
|
102
|
+
export declare var EndpointStates: number;
|
|
103
|
+
export declare var EndpointTypes: number;
|
|
104
|
+
export declare var EntryPointArguments: StaticListSchema;
|
|
105
|
+
export declare var JobRuns: StaticListSchema;
|
|
106
|
+
export declare var JobRunStates: number;
|
|
107
|
+
export declare var JobTemplates: StaticListSchema;
|
|
108
|
+
export declare var SecurityConfigurations: StaticListSchema;
|
|
109
|
+
export declare var SubnetIds: number;
|
|
110
|
+
export declare var TagKeyList: number;
|
|
111
|
+
export declare var VirtualClusters: StaticListSchema;
|
|
112
|
+
export declare var VirtualClusterStates: number;
|
|
113
|
+
export declare var SensitivePropertiesMap: StaticMapSchema;
|
|
114
|
+
export declare var TagMap: number;
|
|
115
|
+
export declare var TemplateParameterConfigurationMap: StaticMapSchema;
|
|
116
|
+
export declare var TemplateParameterInputMap: number;
|
|
117
|
+
export declare var ContainerInfo: StaticStructureSchema;
|
|
118
|
+
export declare var Credentials: StaticStructureSchema;
|
|
119
|
+
export declare var CancelJobRun: StaticOperationSchema;
|
|
120
|
+
export declare var CreateJobTemplate: StaticOperationSchema;
|
|
121
|
+
export declare var CreateManagedEndpoint: StaticOperationSchema;
|
|
122
|
+
export declare var CreateSecurityConfiguration: StaticOperationSchema;
|
|
123
|
+
export declare var CreateVirtualCluster: StaticOperationSchema;
|
|
124
|
+
export declare var DeleteJobTemplate: StaticOperationSchema;
|
|
125
|
+
export declare var DeleteManagedEndpoint: StaticOperationSchema;
|
|
126
|
+
export declare var DeleteVirtualCluster: StaticOperationSchema;
|
|
127
|
+
export declare var DescribeJobRun: StaticOperationSchema;
|
|
128
|
+
export declare var DescribeJobTemplate: StaticOperationSchema;
|
|
129
|
+
export declare var DescribeManagedEndpoint: StaticOperationSchema;
|
|
130
|
+
export declare var DescribeSecurityConfiguration: StaticOperationSchema;
|
|
131
|
+
export declare var DescribeVirtualCluster: StaticOperationSchema;
|
|
132
|
+
export declare var GetManagedEndpointSessionCredentials: StaticOperationSchema;
|
|
133
|
+
export declare var ListJobRuns: StaticOperationSchema;
|
|
134
|
+
export declare var ListJobTemplates: StaticOperationSchema;
|
|
135
|
+
export declare var ListManagedEndpoints: StaticOperationSchema;
|
|
136
|
+
export declare var ListSecurityConfigurations: StaticOperationSchema;
|
|
137
|
+
export declare var ListTagsForResource: StaticOperationSchema;
|
|
138
|
+
export declare var ListVirtualClusters: StaticOperationSchema;
|
|
139
|
+
export declare var StartJobRun: StaticOperationSchema;
|
|
140
|
+
export declare var TagResource: StaticOperationSchema;
|
|
141
|
+
export declare var UntagResource: StaticOperationSchema;
|
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.929.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-emr-containers",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.928.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.929.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.922.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.922.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.922.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.928.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.925.0",
|
|
30
30
|
"@aws-sdk/types": "3.922.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.922.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.922.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.928.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.2",
|
|
35
35
|
"@smithy/core": "^3.17.2",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.5",
|
|
@@ -56,7 +56,6 @@
|
|
|
56
56
|
"@smithy/util-middleware": "^4.2.4",
|
|
57
57
|
"@smithy/util-retry": "^4.2.4",
|
|
58
58
|
"@smithy/util-utf8": "^4.2.0",
|
|
59
|
-
"@smithy/uuid": "^1.1.0",
|
|
60
59
|
"tslib": "^2.6.2"
|
|
61
60
|
},
|
|
62
61
|
"devDependencies": {
|