@aws-sdk/client-lakeformation 3.721.0 → 3.723.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 +458 -283
- package/dist-es/LakeFormationClient.js +1 -0
- package/dist-es/models/models_0.js +57 -39
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +5 -3
- package/dist-types/ts3.4/runtimeConfig.d.ts +9 -7
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +20 -8
- package/package.json +44 -44
|
@@ -14,6 +14,7 @@ import { getRuntimeConfig as __getRuntimeConfig } from "./runtimeConfig";
|
|
|
14
14
|
import { resolveRuntimeExtensions } from "./runtimeExtensions";
|
|
15
15
|
export { __Client };
|
|
16
16
|
export class LakeFormationClient extends __Client {
|
|
17
|
+
config;
|
|
17
18
|
constructor(...[configuration]) {
|
|
18
19
|
const _config_0 = __getRuntimeConfig(configuration || {});
|
|
19
20
|
const _config_1 = resolveClientEndpointParameters(_config_0);
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { SENSITIVE_STRING } from "@smithy/smithy-client";
|
|
2
2
|
import { LakeFormationServiceException as __BaseException } from "./LakeFormationServiceException";
|
|
3
3
|
export class AccessDeniedException extends __BaseException {
|
|
4
|
+
name = "AccessDeniedException";
|
|
5
|
+
$fault = "client";
|
|
6
|
+
Message;
|
|
4
7
|
constructor(opts) {
|
|
5
8
|
super({
|
|
6
9
|
name: "AccessDeniedException",
|
|
7
10
|
$fault: "client",
|
|
8
11
|
...opts,
|
|
9
12
|
});
|
|
10
|
-
this.name = "AccessDeniedException";
|
|
11
|
-
this.$fault = "client";
|
|
12
13
|
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
13
14
|
this.Message = opts.Message;
|
|
14
15
|
}
|
|
@@ -18,79 +19,85 @@ export const ResourceType = {
|
|
|
18
19
|
TABLE: "TABLE",
|
|
19
20
|
};
|
|
20
21
|
export class ConcurrentModificationException extends __BaseException {
|
|
22
|
+
name = "ConcurrentModificationException";
|
|
23
|
+
$fault = "client";
|
|
24
|
+
Message;
|
|
21
25
|
constructor(opts) {
|
|
22
26
|
super({
|
|
23
27
|
name: "ConcurrentModificationException",
|
|
24
28
|
$fault: "client",
|
|
25
29
|
...opts,
|
|
26
30
|
});
|
|
27
|
-
this.name = "ConcurrentModificationException";
|
|
28
|
-
this.$fault = "client";
|
|
29
31
|
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
30
32
|
this.Message = opts.Message;
|
|
31
33
|
}
|
|
32
34
|
}
|
|
33
35
|
export class EntityNotFoundException extends __BaseException {
|
|
36
|
+
name = "EntityNotFoundException";
|
|
37
|
+
$fault = "client";
|
|
38
|
+
Message;
|
|
34
39
|
constructor(opts) {
|
|
35
40
|
super({
|
|
36
41
|
name: "EntityNotFoundException",
|
|
37
42
|
$fault: "client",
|
|
38
43
|
...opts,
|
|
39
44
|
});
|
|
40
|
-
this.name = "EntityNotFoundException";
|
|
41
|
-
this.$fault = "client";
|
|
42
45
|
Object.setPrototypeOf(this, EntityNotFoundException.prototype);
|
|
43
46
|
this.Message = opts.Message;
|
|
44
47
|
}
|
|
45
48
|
}
|
|
46
49
|
export class InternalServiceException extends __BaseException {
|
|
50
|
+
name = "InternalServiceException";
|
|
51
|
+
$fault = "server";
|
|
52
|
+
Message;
|
|
47
53
|
constructor(opts) {
|
|
48
54
|
super({
|
|
49
55
|
name: "InternalServiceException",
|
|
50
56
|
$fault: "server",
|
|
51
57
|
...opts,
|
|
52
58
|
});
|
|
53
|
-
this.name = "InternalServiceException";
|
|
54
|
-
this.$fault = "server";
|
|
55
59
|
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
56
60
|
this.Message = opts.Message;
|
|
57
61
|
}
|
|
58
62
|
}
|
|
59
63
|
export class InvalidInputException extends __BaseException {
|
|
64
|
+
name = "InvalidInputException";
|
|
65
|
+
$fault = "client";
|
|
66
|
+
Message;
|
|
60
67
|
constructor(opts) {
|
|
61
68
|
super({
|
|
62
69
|
name: "InvalidInputException",
|
|
63
70
|
$fault: "client",
|
|
64
71
|
...opts,
|
|
65
72
|
});
|
|
66
|
-
this.name = "InvalidInputException";
|
|
67
|
-
this.$fault = "client";
|
|
68
73
|
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
69
74
|
this.Message = opts.Message;
|
|
70
75
|
}
|
|
71
76
|
}
|
|
72
77
|
export class OperationTimeoutException extends __BaseException {
|
|
78
|
+
name = "OperationTimeoutException";
|
|
79
|
+
$fault = "client";
|
|
80
|
+
Message;
|
|
73
81
|
constructor(opts) {
|
|
74
82
|
super({
|
|
75
83
|
name: "OperationTimeoutException",
|
|
76
84
|
$fault: "client",
|
|
77
85
|
...opts,
|
|
78
86
|
});
|
|
79
|
-
this.name = "OperationTimeoutException";
|
|
80
|
-
this.$fault = "client";
|
|
81
87
|
Object.setPrototypeOf(this, OperationTimeoutException.prototype);
|
|
82
88
|
this.Message = opts.Message;
|
|
83
89
|
}
|
|
84
90
|
}
|
|
85
91
|
export class AlreadyExistsException extends __BaseException {
|
|
92
|
+
name = "AlreadyExistsException";
|
|
93
|
+
$fault = "client";
|
|
94
|
+
Message;
|
|
86
95
|
constructor(opts) {
|
|
87
96
|
super({
|
|
88
97
|
name: "AlreadyExistsException",
|
|
89
98
|
$fault: "client",
|
|
90
99
|
...opts,
|
|
91
100
|
});
|
|
92
|
-
this.name = "AlreadyExistsException";
|
|
93
|
-
this.$fault = "client";
|
|
94
101
|
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
95
102
|
this.Message = opts.Message;
|
|
96
103
|
}
|
|
@@ -118,27 +125,29 @@ export const Permission = {
|
|
|
118
125
|
SUPER_USER: "SUPER_USER",
|
|
119
126
|
};
|
|
120
127
|
export class TransactionCommitInProgressException extends __BaseException {
|
|
128
|
+
name = "TransactionCommitInProgressException";
|
|
129
|
+
$fault = "client";
|
|
130
|
+
Message;
|
|
121
131
|
constructor(opts) {
|
|
122
132
|
super({
|
|
123
133
|
name: "TransactionCommitInProgressException",
|
|
124
134
|
$fault: "client",
|
|
125
135
|
...opts,
|
|
126
136
|
});
|
|
127
|
-
this.name = "TransactionCommitInProgressException";
|
|
128
|
-
this.$fault = "client";
|
|
129
137
|
Object.setPrototypeOf(this, TransactionCommitInProgressException.prototype);
|
|
130
138
|
this.Message = opts.Message;
|
|
131
139
|
}
|
|
132
140
|
}
|
|
133
141
|
export class TransactionCommittedException extends __BaseException {
|
|
142
|
+
name = "TransactionCommittedException";
|
|
143
|
+
$fault = "client";
|
|
144
|
+
Message;
|
|
134
145
|
constructor(opts) {
|
|
135
146
|
super({
|
|
136
147
|
name: "TransactionCommittedException",
|
|
137
148
|
$fault: "client",
|
|
138
149
|
...opts,
|
|
139
150
|
});
|
|
140
|
-
this.name = "TransactionCommittedException";
|
|
141
|
-
this.$fault = "client";
|
|
142
151
|
Object.setPrototypeOf(this, TransactionCommittedException.prototype);
|
|
143
152
|
this.Message = opts.Message;
|
|
144
153
|
}
|
|
@@ -150,27 +159,29 @@ export const TransactionStatus = {
|
|
|
150
159
|
COMMIT_IN_PROGRESS: "COMMIT_IN_PROGRESS",
|
|
151
160
|
};
|
|
152
161
|
export class TransactionCanceledException extends __BaseException {
|
|
162
|
+
name = "TransactionCanceledException";
|
|
163
|
+
$fault = "client";
|
|
164
|
+
Message;
|
|
153
165
|
constructor(opts) {
|
|
154
166
|
super({
|
|
155
167
|
name: "TransactionCanceledException",
|
|
156
168
|
$fault: "client",
|
|
157
169
|
...opts,
|
|
158
170
|
});
|
|
159
|
-
this.name = "TransactionCanceledException";
|
|
160
|
-
this.$fault = "client";
|
|
161
171
|
Object.setPrototypeOf(this, TransactionCanceledException.prototype);
|
|
162
172
|
this.Message = opts.Message;
|
|
163
173
|
}
|
|
164
174
|
}
|
|
165
175
|
export class ResourceNumberLimitExceededException extends __BaseException {
|
|
176
|
+
name = "ResourceNumberLimitExceededException";
|
|
177
|
+
$fault = "client";
|
|
178
|
+
Message;
|
|
166
179
|
constructor(opts) {
|
|
167
180
|
super({
|
|
168
181
|
name: "ResourceNumberLimitExceededException",
|
|
169
182
|
$fault: "client",
|
|
170
183
|
...opts,
|
|
171
184
|
});
|
|
172
|
-
this.name = "ResourceNumberLimitExceededException";
|
|
173
|
-
this.$fault = "client";
|
|
174
185
|
Object.setPrototypeOf(this, ResourceNumberLimitExceededException.prototype);
|
|
175
186
|
this.Message = opts.Message;
|
|
176
187
|
}
|
|
@@ -180,14 +191,15 @@ export const EnableStatus = {
|
|
|
180
191
|
ENABLED: "ENABLED",
|
|
181
192
|
};
|
|
182
193
|
export class ResourceNotReadyException extends __BaseException {
|
|
194
|
+
name = "ResourceNotReadyException";
|
|
195
|
+
$fault = "client";
|
|
196
|
+
Message;
|
|
183
197
|
constructor(opts) {
|
|
184
198
|
super({
|
|
185
199
|
name: "ResourceNotReadyException",
|
|
186
200
|
$fault: "client",
|
|
187
201
|
...opts,
|
|
188
202
|
});
|
|
189
|
-
this.name = "ResourceNotReadyException";
|
|
190
|
-
this.$fault = "client";
|
|
191
203
|
Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
|
|
192
204
|
this.Message = opts.Message;
|
|
193
205
|
}
|
|
@@ -200,56 +212,60 @@ export const QueryStateString = {
|
|
|
200
212
|
WORKUNITS_AVAILABLE: "WORKUNITS_AVAILABLE",
|
|
201
213
|
};
|
|
202
214
|
export class ExpiredException extends __BaseException {
|
|
215
|
+
name = "ExpiredException";
|
|
216
|
+
$fault = "client";
|
|
217
|
+
Message;
|
|
203
218
|
constructor(opts) {
|
|
204
219
|
super({
|
|
205
220
|
name: "ExpiredException",
|
|
206
221
|
$fault: "client",
|
|
207
222
|
...opts,
|
|
208
223
|
});
|
|
209
|
-
this.name = "ExpiredException";
|
|
210
|
-
this.$fault = "client";
|
|
211
224
|
Object.setPrototypeOf(this, ExpiredException.prototype);
|
|
212
225
|
this.Message = opts.Message;
|
|
213
226
|
}
|
|
214
227
|
}
|
|
215
228
|
export class StatisticsNotReadyYetException extends __BaseException {
|
|
229
|
+
name = "StatisticsNotReadyYetException";
|
|
230
|
+
$fault = "client";
|
|
231
|
+
Message;
|
|
216
232
|
constructor(opts) {
|
|
217
233
|
super({
|
|
218
234
|
name: "StatisticsNotReadyYetException",
|
|
219
235
|
$fault: "client",
|
|
220
236
|
...opts,
|
|
221
237
|
});
|
|
222
|
-
this.name = "StatisticsNotReadyYetException";
|
|
223
|
-
this.$fault = "client";
|
|
224
238
|
Object.setPrototypeOf(this, StatisticsNotReadyYetException.prototype);
|
|
225
239
|
this.Message = opts.Message;
|
|
226
240
|
}
|
|
227
241
|
}
|
|
228
242
|
export class ThrottledException extends __BaseException {
|
|
243
|
+
name = "ThrottledException";
|
|
244
|
+
$fault = "client";
|
|
245
|
+
$retryable = {
|
|
246
|
+
throttling: true,
|
|
247
|
+
};
|
|
248
|
+
Message;
|
|
229
249
|
constructor(opts) {
|
|
230
250
|
super({
|
|
231
251
|
name: "ThrottledException",
|
|
232
252
|
$fault: "client",
|
|
233
253
|
...opts,
|
|
234
254
|
});
|
|
235
|
-
this.name = "ThrottledException";
|
|
236
|
-
this.$fault = "client";
|
|
237
|
-
this.$retryable = {
|
|
238
|
-
throttling: true,
|
|
239
|
-
};
|
|
240
255
|
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
241
256
|
this.Message = opts.Message;
|
|
242
257
|
}
|
|
243
258
|
}
|
|
244
259
|
export class GlueEncryptionException extends __BaseException {
|
|
260
|
+
name = "GlueEncryptionException";
|
|
261
|
+
$fault = "client";
|
|
262
|
+
Message;
|
|
245
263
|
constructor(opts) {
|
|
246
264
|
super({
|
|
247
265
|
name: "GlueEncryptionException",
|
|
248
266
|
$fault: "client",
|
|
249
267
|
...opts,
|
|
250
268
|
});
|
|
251
|
-
this.name = "GlueEncryptionException";
|
|
252
|
-
this.$fault = "client";
|
|
253
269
|
Object.setPrototypeOf(this, GlueEncryptionException.prototype);
|
|
254
270
|
this.Message = opts.Message;
|
|
255
271
|
}
|
|
@@ -261,27 +277,29 @@ export const PermissionType = {
|
|
|
261
277
|
NESTED_PERMISSION: "NESTED_PERMISSION",
|
|
262
278
|
};
|
|
263
279
|
export class PermissionTypeMismatchException extends __BaseException {
|
|
280
|
+
name = "PermissionTypeMismatchException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
264
283
|
constructor(opts) {
|
|
265
284
|
super({
|
|
266
285
|
name: "PermissionTypeMismatchException",
|
|
267
286
|
$fault: "client",
|
|
268
287
|
...opts,
|
|
269
288
|
});
|
|
270
|
-
this.name = "PermissionTypeMismatchException";
|
|
271
|
-
this.$fault = "client";
|
|
272
289
|
Object.setPrototypeOf(this, PermissionTypeMismatchException.prototype);
|
|
273
290
|
this.Message = opts.Message;
|
|
274
291
|
}
|
|
275
292
|
}
|
|
276
293
|
export class WorkUnitsNotReadyYetException extends __BaseException {
|
|
294
|
+
name = "WorkUnitsNotReadyYetException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
277
297
|
constructor(opts) {
|
|
278
298
|
super({
|
|
279
299
|
name: "WorkUnitsNotReadyYetException",
|
|
280
300
|
$fault: "client",
|
|
281
301
|
...opts,
|
|
282
302
|
});
|
|
283
|
-
this.name = "WorkUnitsNotReadyYetException";
|
|
284
|
-
this.$fault = "client";
|
|
285
303
|
Object.setPrototypeOf(this, WorkUnitsNotReadyYetException.prototype);
|
|
286
304
|
this.Message = opts.Message;
|
|
287
305
|
}
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<any>;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
7
7
|
runtime: string;
|
|
8
8
|
defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
|
|
9
9
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
10
|
-
credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity
|
|
10
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>);
|
|
11
11
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-node").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
12
12
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
13
13
|
region: string | import("@smithy/types").Provider<string>;
|
|
@@ -22,7 +22,7 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
22
22
|
region: string | import("@smithy/types").Provider<any>;
|
|
23
23
|
profile?: string | undefined;
|
|
24
24
|
defaultUserAgentProvider: (config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved | undefined) => Promise<import("@smithy/types").UserAgent>;
|
|
25
|
-
credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
|
|
25
|
+
credentialDefaultProvider: ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider) | ((_: unknown) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
26
26
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
27
27
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
28
28
|
logger: import("@smithy/types").Logger;
|
|
@@ -32,7 +32,7 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
32
32
|
customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
|
|
33
33
|
userAgentAppId?: string | import("@smithy/types").Provider<string | undefined> | undefined;
|
|
34
34
|
retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
|
|
35
|
-
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> | undefined;
|
|
35
|
+
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;
|
|
36
36
|
endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
|
|
37
37
|
logger?: import("@smithy/types").Logger | undefined;
|
|
38
38
|
}) => import("@smithy/types").EndpointV2;
|
|
@@ -6,9 +6,11 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
input: any
|
|
11
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
_: unknown
|
|
13
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
12
14
|
defaultUserAgentProvider: (
|
|
13
15
|
config?:
|
|
14
16
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
@@ -6,13 +6,15 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
6
6
|
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
7
7
|
>;
|
|
8
8
|
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
9
|
-
credentialDefaultProvider:
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
credentialDefaultProvider:
|
|
10
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
11
|
+
| ((
|
|
12
|
+
init?:
|
|
13
|
+
| import("@aws-sdk/credential-provider-node").DefaultProviderInit
|
|
14
|
+
| undefined
|
|
15
|
+
) => import("@smithy/types").MemoizedProvider<
|
|
16
|
+
import("@smithy/types").AwsCredentialIdentity
|
|
17
|
+
>);
|
|
16
18
|
defaultUserAgentProvider: (
|
|
17
19
|
config?:
|
|
18
20
|
| import("@aws-sdk/util-user-agent-node").PreviouslyResolved
|
|
@@ -28,9 +28,11 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
28
28
|
| import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
29
29
|
| undefined
|
|
30
30
|
) => Promise<import("@smithy/types").UserAgent>;
|
|
31
|
-
credentialDefaultProvider:
|
|
32
|
-
input: any
|
|
33
|
-
|
|
31
|
+
credentialDefaultProvider:
|
|
32
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
33
|
+
| ((
|
|
34
|
+
_: unknown
|
|
35
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
34
36
|
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
35
37
|
retryMode: string | import("@smithy/types").Provider<string>;
|
|
36
38
|
logger: import("@smithy/types").Logger;
|
|
@@ -51,11 +53,21 @@ export declare const getRuntimeConfig: (config: LakeFormationClientConfig) => {
|
|
|
51
53
|
| import("@smithy/types").RetryStrategyV2
|
|
52
54
|
| undefined;
|
|
53
55
|
endpoint?:
|
|
54
|
-
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
| ((
|
|
57
|
+
| string
|
|
58
|
+
| import("@smithy/types").Endpoint
|
|
59
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
60
|
+
| import("@smithy/types").EndpointV2
|
|
61
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
62
|
+
) &
|
|
63
|
+
(
|
|
64
|
+
| string
|
|
65
|
+
| import("@smithy/types").Provider<string>
|
|
66
|
+
| import("@smithy/types").Endpoint
|
|
67
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
68
|
+
| import("@smithy/types").EndpointV2
|
|
69
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
70
|
+
))
|
|
59
71
|
| undefined;
|
|
60
72
|
endpointProvider: (
|
|
61
73
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-lakeformation",
|
|
3
3
|
"description": "AWS SDK for JavaScript Lakeformation Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.723.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-lakeformation",
|
|
@@ -20,57 +20,57 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
27
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
28
|
-
"@aws-sdk/middleware-logger": "3.
|
|
29
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
31
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
32
|
-
"@aws-sdk/types": "3.
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
34
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
36
|
-
"@smithy/config-resolver": "^
|
|
37
|
-
"@smithy/core": "^
|
|
38
|
-
"@smithy/fetch-http-handler": "^
|
|
39
|
-
"@smithy/hash-node": "^
|
|
40
|
-
"@smithy/invalid-dependency": "^
|
|
41
|
-
"@smithy/middleware-content-length": "^
|
|
42
|
-
"@smithy/middleware-endpoint": "^
|
|
43
|
-
"@smithy/middleware-retry": "^
|
|
44
|
-
"@smithy/middleware-serde": "^
|
|
45
|
-
"@smithy/middleware-stack": "^
|
|
46
|
-
"@smithy/node-config-provider": "^
|
|
47
|
-
"@smithy/node-http-handler": "^
|
|
48
|
-
"@smithy/protocol-http": "^
|
|
49
|
-
"@smithy/smithy-client": "^
|
|
50
|
-
"@smithy/types": "^
|
|
51
|
-
"@smithy/url-parser": "^
|
|
52
|
-
"@smithy/util-base64": "^
|
|
53
|
-
"@smithy/util-body-length-browser": "^
|
|
54
|
-
"@smithy/util-body-length-node": "^
|
|
55
|
-
"@smithy/util-defaults-mode-browser": "^
|
|
56
|
-
"@smithy/util-defaults-mode-node": "^
|
|
57
|
-
"@smithy/util-endpoints": "^
|
|
58
|
-
"@smithy/util-middleware": "^
|
|
59
|
-
"@smithy/util-retry": "^
|
|
60
|
-
"@smithy/util-stream": "^
|
|
61
|
-
"@smithy/util-utf8": "^
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.723.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.723.0",
|
|
25
|
+
"@aws-sdk/core": "3.723.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.723.0",
|
|
27
|
+
"@aws-sdk/middleware-host-header": "3.723.0",
|
|
28
|
+
"@aws-sdk/middleware-logger": "3.723.0",
|
|
29
|
+
"@aws-sdk/middleware-recursion-detection": "3.723.0",
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.723.0",
|
|
31
|
+
"@aws-sdk/region-config-resolver": "3.723.0",
|
|
32
|
+
"@aws-sdk/types": "3.723.0",
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.723.0",
|
|
34
|
+
"@aws-sdk/util-user-agent-browser": "3.723.0",
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.723.0",
|
|
36
|
+
"@smithy/config-resolver": "^4.0.0",
|
|
37
|
+
"@smithy/core": "^3.0.0",
|
|
38
|
+
"@smithy/fetch-http-handler": "^5.0.0",
|
|
39
|
+
"@smithy/hash-node": "^4.0.0",
|
|
40
|
+
"@smithy/invalid-dependency": "^4.0.0",
|
|
41
|
+
"@smithy/middleware-content-length": "^4.0.0",
|
|
42
|
+
"@smithy/middleware-endpoint": "^4.0.0",
|
|
43
|
+
"@smithy/middleware-retry": "^4.0.0",
|
|
44
|
+
"@smithy/middleware-serde": "^4.0.0",
|
|
45
|
+
"@smithy/middleware-stack": "^4.0.0",
|
|
46
|
+
"@smithy/node-config-provider": "^4.0.0",
|
|
47
|
+
"@smithy/node-http-handler": "^4.0.0",
|
|
48
|
+
"@smithy/protocol-http": "^5.0.0",
|
|
49
|
+
"@smithy/smithy-client": "^4.0.0",
|
|
50
|
+
"@smithy/types": "^4.0.0",
|
|
51
|
+
"@smithy/url-parser": "^4.0.0",
|
|
52
|
+
"@smithy/util-base64": "^4.0.0",
|
|
53
|
+
"@smithy/util-body-length-browser": "^4.0.0",
|
|
54
|
+
"@smithy/util-body-length-node": "^4.0.0",
|
|
55
|
+
"@smithy/util-defaults-mode-browser": "^4.0.0",
|
|
56
|
+
"@smithy/util-defaults-mode-node": "^4.0.0",
|
|
57
|
+
"@smithy/util-endpoints": "^3.0.0",
|
|
58
|
+
"@smithy/util-middleware": "^4.0.0",
|
|
59
|
+
"@smithy/util-retry": "^4.0.0",
|
|
60
|
+
"@smithy/util-stream": "^4.0.0",
|
|
61
|
+
"@smithy/util-utf8": "^4.0.0",
|
|
62
62
|
"tslib": "^2.6.2"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@tsconfig/
|
|
66
|
-
"@types/node": "^
|
|
65
|
+
"@tsconfig/node18": "18.2.4",
|
|
66
|
+
"@types/node": "^18.19.69",
|
|
67
67
|
"concurrently": "7.0.0",
|
|
68
68
|
"downlevel-dts": "0.10.1",
|
|
69
69
|
"rimraf": "3.0.2",
|
|
70
|
-
"typescript": "~
|
|
70
|
+
"typescript": "~5.2.2"
|
|
71
71
|
},
|
|
72
72
|
"engines": {
|
|
73
|
-
"node": ">=
|
|
73
|
+
"node": ">=18.0.0"
|
|
74
74
|
},
|
|
75
75
|
"typesVersions": {
|
|
76
76
|
"<4.0": {
|