@aws-sdk/client-lakeformation 3.1075.0 → 3.1076.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 +2441 -15
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
- package/package.json +8 -8
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -46
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/LakeFormationServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -270
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -1923
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +1,57 @@
|
|
|
1
|
-
|
|
2
|
-
const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
1
|
+
const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
|
|
3
2
|
const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
|
|
4
|
-
const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, sdkStreamMixin, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultLakeFormationHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
18
|
+
return {
|
|
19
|
+
operation: getSmithyContext(context).operation,
|
|
20
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
21
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
22
|
+
})(),
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
26
|
+
return {
|
|
27
|
+
schemeId: "aws.auth#sigv4",
|
|
28
|
+
signingProperties: {
|
|
29
|
+
name: "lakeformation",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultLakeFormationHttpAuthSchemeProvider = (authParameters) => {
|
|
41
|
+
const options = [];
|
|
42
|
+
switch (authParameters.operation) {
|
|
43
|
+
default: {
|
|
44
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
return options;
|
|
48
|
+
};
|
|
49
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
50
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
51
|
+
return Object.assign(config_0, {
|
|
52
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
53
|
+
});
|
|
54
|
+
};
|
|
19
55
|
|
|
20
56
|
const resolveClientEndpointParameters = (options) => {
|
|
21
57
|
return Object.assign(options, {
|
|
@@ -31,6 +67,2118 @@ const commonParams = {
|
|
|
31
67
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
68
|
};
|
|
33
69
|
|
|
70
|
+
var version = "3.1075.0";
|
|
71
|
+
var packageInfo = {
|
|
72
|
+
version: version};
|
|
73
|
+
|
|
74
|
+
const k = "ref";
|
|
75
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
76
|
+
const _data = {
|
|
77
|
+
conditions: [
|
|
78
|
+
[c, [g]],
|
|
79
|
+
[c, j],
|
|
80
|
+
["aws.partition", j, d],
|
|
81
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
82
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
83
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]]
|
|
85
|
+
],
|
|
86
|
+
results: [
|
|
87
|
+
[a],
|
|
88
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
89
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
90
|
+
[g, i],
|
|
91
|
+
["https://lakeformation-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://lakeformation-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://lakeformation.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://lakeformation.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
98
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
99
|
+
]
|
|
100
|
+
};
|
|
101
|
+
const root = 2;
|
|
102
|
+
const r = 100_000_000;
|
|
103
|
+
const nodes = new Int32Array([
|
|
104
|
+
-1, 1, -1,
|
|
105
|
+
0, 12, 3,
|
|
106
|
+
1, 4, r + 11,
|
|
107
|
+
2, 5, r + 11,
|
|
108
|
+
3, 8, 6,
|
|
109
|
+
4, 7, r + 10,
|
|
110
|
+
5, r + 8, r + 9,
|
|
111
|
+
4, 10, 9,
|
|
112
|
+
6, r + 6, r + 7,
|
|
113
|
+
5, 11, r + 5,
|
|
114
|
+
6, r + 4, r + 5,
|
|
115
|
+
3, r + 1, 13,
|
|
116
|
+
4, r + 2, r + 3,
|
|
117
|
+
]);
|
|
118
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
119
|
+
|
|
120
|
+
const cache = new EndpointCache({
|
|
121
|
+
size: 50,
|
|
122
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
123
|
+
});
|
|
124
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
125
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
126
|
+
endpointParams: endpointParams,
|
|
127
|
+
logger: context.logger,
|
|
128
|
+
}));
|
|
129
|
+
};
|
|
130
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
131
|
+
|
|
132
|
+
class LakeFormationServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, LakeFormationServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class AccessDeniedException extends LakeFormationServiceException {
|
|
140
|
+
name = "AccessDeniedException";
|
|
141
|
+
$fault = "client";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "AccessDeniedException",
|
|
146
|
+
$fault: "client",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class ConcurrentModificationException extends LakeFormationServiceException {
|
|
154
|
+
name = "ConcurrentModificationException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
Message;
|
|
157
|
+
constructor(opts) {
|
|
158
|
+
super({
|
|
159
|
+
name: "ConcurrentModificationException",
|
|
160
|
+
$fault: "client",
|
|
161
|
+
...opts,
|
|
162
|
+
});
|
|
163
|
+
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
164
|
+
this.Message = opts.Message;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class EntityNotFoundException extends LakeFormationServiceException {
|
|
168
|
+
name = "EntityNotFoundException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
Message;
|
|
171
|
+
constructor(opts) {
|
|
172
|
+
super({
|
|
173
|
+
name: "EntityNotFoundException",
|
|
174
|
+
$fault: "client",
|
|
175
|
+
...opts,
|
|
176
|
+
});
|
|
177
|
+
Object.setPrototypeOf(this, EntityNotFoundException.prototype);
|
|
178
|
+
this.Message = opts.Message;
|
|
179
|
+
}
|
|
180
|
+
}
|
|
181
|
+
class InternalServiceException extends LakeFormationServiceException {
|
|
182
|
+
name = "InternalServiceException";
|
|
183
|
+
$fault = "server";
|
|
184
|
+
Message;
|
|
185
|
+
constructor(opts) {
|
|
186
|
+
super({
|
|
187
|
+
name: "InternalServiceException",
|
|
188
|
+
$fault: "server",
|
|
189
|
+
...opts,
|
|
190
|
+
});
|
|
191
|
+
Object.setPrototypeOf(this, InternalServiceException.prototype);
|
|
192
|
+
this.Message = opts.Message;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
class InvalidInputException extends LakeFormationServiceException {
|
|
196
|
+
name = "InvalidInputException";
|
|
197
|
+
$fault = "client";
|
|
198
|
+
Message;
|
|
199
|
+
constructor(opts) {
|
|
200
|
+
super({
|
|
201
|
+
name: "InvalidInputException",
|
|
202
|
+
$fault: "client",
|
|
203
|
+
...opts,
|
|
204
|
+
});
|
|
205
|
+
Object.setPrototypeOf(this, InvalidInputException.prototype);
|
|
206
|
+
this.Message = opts.Message;
|
|
207
|
+
}
|
|
208
|
+
}
|
|
209
|
+
class OperationTimeoutException extends LakeFormationServiceException {
|
|
210
|
+
name = "OperationTimeoutException";
|
|
211
|
+
$fault = "client";
|
|
212
|
+
Message;
|
|
213
|
+
constructor(opts) {
|
|
214
|
+
super({
|
|
215
|
+
name: "OperationTimeoutException",
|
|
216
|
+
$fault: "client",
|
|
217
|
+
...opts,
|
|
218
|
+
});
|
|
219
|
+
Object.setPrototypeOf(this, OperationTimeoutException.prototype);
|
|
220
|
+
this.Message = opts.Message;
|
|
221
|
+
}
|
|
222
|
+
}
|
|
223
|
+
class AlreadyExistsException extends LakeFormationServiceException {
|
|
224
|
+
name = "AlreadyExistsException";
|
|
225
|
+
$fault = "client";
|
|
226
|
+
Message;
|
|
227
|
+
constructor(opts) {
|
|
228
|
+
super({
|
|
229
|
+
name: "AlreadyExistsException",
|
|
230
|
+
$fault: "client",
|
|
231
|
+
...opts,
|
|
232
|
+
});
|
|
233
|
+
Object.setPrototypeOf(this, AlreadyExistsException.prototype);
|
|
234
|
+
this.Message = opts.Message;
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class TransactionCommitInProgressException extends LakeFormationServiceException {
|
|
238
|
+
name = "TransactionCommitInProgressException";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
Message;
|
|
241
|
+
constructor(opts) {
|
|
242
|
+
super({
|
|
243
|
+
name: "TransactionCommitInProgressException",
|
|
244
|
+
$fault: "client",
|
|
245
|
+
...opts,
|
|
246
|
+
});
|
|
247
|
+
Object.setPrototypeOf(this, TransactionCommitInProgressException.prototype);
|
|
248
|
+
this.Message = opts.Message;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class TransactionCommittedException extends LakeFormationServiceException {
|
|
252
|
+
name = "TransactionCommittedException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
Message;
|
|
255
|
+
constructor(opts) {
|
|
256
|
+
super({
|
|
257
|
+
name: "TransactionCommittedException",
|
|
258
|
+
$fault: "client",
|
|
259
|
+
...opts,
|
|
260
|
+
});
|
|
261
|
+
Object.setPrototypeOf(this, TransactionCommittedException.prototype);
|
|
262
|
+
this.Message = opts.Message;
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
class TransactionCanceledException extends LakeFormationServiceException {
|
|
266
|
+
name = "TransactionCanceledException";
|
|
267
|
+
$fault = "client";
|
|
268
|
+
Message;
|
|
269
|
+
constructor(opts) {
|
|
270
|
+
super({
|
|
271
|
+
name: "TransactionCanceledException",
|
|
272
|
+
$fault: "client",
|
|
273
|
+
...opts,
|
|
274
|
+
});
|
|
275
|
+
Object.setPrototypeOf(this, TransactionCanceledException.prototype);
|
|
276
|
+
this.Message = opts.Message;
|
|
277
|
+
}
|
|
278
|
+
}
|
|
279
|
+
class ResourceNumberLimitExceededException extends LakeFormationServiceException {
|
|
280
|
+
name = "ResourceNumberLimitExceededException";
|
|
281
|
+
$fault = "client";
|
|
282
|
+
Message;
|
|
283
|
+
constructor(opts) {
|
|
284
|
+
super({
|
|
285
|
+
name: "ResourceNumberLimitExceededException",
|
|
286
|
+
$fault: "client",
|
|
287
|
+
...opts,
|
|
288
|
+
});
|
|
289
|
+
Object.setPrototypeOf(this, ResourceNumberLimitExceededException.prototype);
|
|
290
|
+
this.Message = opts.Message;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
class ResourceNotReadyException extends LakeFormationServiceException {
|
|
294
|
+
name = "ResourceNotReadyException";
|
|
295
|
+
$fault = "client";
|
|
296
|
+
Message;
|
|
297
|
+
constructor(opts) {
|
|
298
|
+
super({
|
|
299
|
+
name: "ResourceNotReadyException",
|
|
300
|
+
$fault: "client",
|
|
301
|
+
...opts,
|
|
302
|
+
});
|
|
303
|
+
Object.setPrototypeOf(this, ResourceNotReadyException.prototype);
|
|
304
|
+
this.Message = opts.Message;
|
|
305
|
+
}
|
|
306
|
+
}
|
|
307
|
+
class ExpiredException extends LakeFormationServiceException {
|
|
308
|
+
name = "ExpiredException";
|
|
309
|
+
$fault = "client";
|
|
310
|
+
Message;
|
|
311
|
+
constructor(opts) {
|
|
312
|
+
super({
|
|
313
|
+
name: "ExpiredException",
|
|
314
|
+
$fault: "client",
|
|
315
|
+
...opts,
|
|
316
|
+
});
|
|
317
|
+
Object.setPrototypeOf(this, ExpiredException.prototype);
|
|
318
|
+
this.Message = opts.Message;
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
class StatisticsNotReadyYetException extends LakeFormationServiceException {
|
|
322
|
+
name = "StatisticsNotReadyYetException";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
Message;
|
|
325
|
+
constructor(opts) {
|
|
326
|
+
super({
|
|
327
|
+
name: "StatisticsNotReadyYetException",
|
|
328
|
+
$fault: "client",
|
|
329
|
+
...opts,
|
|
330
|
+
});
|
|
331
|
+
Object.setPrototypeOf(this, StatisticsNotReadyYetException.prototype);
|
|
332
|
+
this.Message = opts.Message;
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class ThrottledException extends LakeFormationServiceException {
|
|
336
|
+
name = "ThrottledException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
$retryable = {
|
|
339
|
+
throttling: true,
|
|
340
|
+
};
|
|
341
|
+
Message;
|
|
342
|
+
constructor(opts) {
|
|
343
|
+
super({
|
|
344
|
+
name: "ThrottledException",
|
|
345
|
+
$fault: "client",
|
|
346
|
+
...opts,
|
|
347
|
+
});
|
|
348
|
+
Object.setPrototypeOf(this, ThrottledException.prototype);
|
|
349
|
+
this.Message = opts.Message;
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
class GlueEncryptionException extends LakeFormationServiceException {
|
|
353
|
+
name = "GlueEncryptionException";
|
|
354
|
+
$fault = "client";
|
|
355
|
+
Message;
|
|
356
|
+
constructor(opts) {
|
|
357
|
+
super({
|
|
358
|
+
name: "GlueEncryptionException",
|
|
359
|
+
$fault: "client",
|
|
360
|
+
...opts,
|
|
361
|
+
});
|
|
362
|
+
Object.setPrototypeOf(this, GlueEncryptionException.prototype);
|
|
363
|
+
this.Message = opts.Message;
|
|
364
|
+
}
|
|
365
|
+
}
|
|
366
|
+
class ConflictException extends LakeFormationServiceException {
|
|
367
|
+
name = "ConflictException";
|
|
368
|
+
$fault = "client";
|
|
369
|
+
Message;
|
|
370
|
+
constructor(opts) {
|
|
371
|
+
super({
|
|
372
|
+
name: "ConflictException",
|
|
373
|
+
$fault: "client",
|
|
374
|
+
...opts,
|
|
375
|
+
});
|
|
376
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
377
|
+
this.Message = opts.Message;
|
|
378
|
+
}
|
|
379
|
+
}
|
|
380
|
+
class PermissionTypeMismatchException extends LakeFormationServiceException {
|
|
381
|
+
name = "PermissionTypeMismatchException";
|
|
382
|
+
$fault = "client";
|
|
383
|
+
Message;
|
|
384
|
+
constructor(opts) {
|
|
385
|
+
super({
|
|
386
|
+
name: "PermissionTypeMismatchException",
|
|
387
|
+
$fault: "client",
|
|
388
|
+
...opts,
|
|
389
|
+
});
|
|
390
|
+
Object.setPrototypeOf(this, PermissionTypeMismatchException.prototype);
|
|
391
|
+
this.Message = opts.Message;
|
|
392
|
+
}
|
|
393
|
+
}
|
|
394
|
+
class WorkUnitsNotReadyYetException extends LakeFormationServiceException {
|
|
395
|
+
name = "WorkUnitsNotReadyYetException";
|
|
396
|
+
$fault = "client";
|
|
397
|
+
Message;
|
|
398
|
+
constructor(opts) {
|
|
399
|
+
super({
|
|
400
|
+
name: "WorkUnitsNotReadyYetException",
|
|
401
|
+
$fault: "client",
|
|
402
|
+
...opts,
|
|
403
|
+
});
|
|
404
|
+
Object.setPrototypeOf(this, WorkUnitsNotReadyYetException.prototype);
|
|
405
|
+
this.Message = opts.Message;
|
|
406
|
+
}
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
const _A = "Authorization";
|
|
410
|
+
const _AA = "ApplicationArn";
|
|
411
|
+
const _AAC = "AdditionalAuditContext";
|
|
412
|
+
const _AC = "AuditContext";
|
|
413
|
+
const _ACd = "AdditionalContext";
|
|
414
|
+
const _AD = "AdditionalDetails";
|
|
415
|
+
const _ADE = "AccessDeniedException";
|
|
416
|
+
const _ADL = "AccessibleDataLocations";
|
|
417
|
+
const _ADRWSAML = "AssumeDecoratedRoleWithSAML";
|
|
418
|
+
const _ADRWSAMLR = "AssumeDecoratedRoleWithSAMLRequest";
|
|
419
|
+
const _ADRWSAMLRs = "AssumeDecoratedRoleWithSAMLResponse";
|
|
420
|
+
const _AEDF = "AllowExternalDataFiltering";
|
|
421
|
+
const _AEE = "AlreadyExistsException";
|
|
422
|
+
const _AETM = "AverageExecutionTimeMillis";
|
|
423
|
+
const _AFTEDA = "AllowFullTableExternalDataAccess";
|
|
424
|
+
const _AKI = "AccessKeyId";
|
|
425
|
+
const _ALFTTR = "AddLFTagsToResource";
|
|
426
|
+
const _ALFTTRR = "AddLFTagsToResourceRequest";
|
|
427
|
+
const _ALFTTRRd = "AddLFTagsToResourceResponse";
|
|
428
|
+
const _AO = "AddObject";
|
|
429
|
+
const _AOI = "AddObjectInput";
|
|
430
|
+
const _ARW = "AllRowsWildcard";
|
|
431
|
+
const _AS = "ApplicationStatus";
|
|
432
|
+
const _ASTVL = "AuthorizedSessionTagValueList";
|
|
433
|
+
const _AT = "AuthorizedTargets";
|
|
434
|
+
const _BGP = "BatchGrantPermissions";
|
|
435
|
+
const _BGPR = "BatchGrantPermissionsRequest";
|
|
436
|
+
const _BGPRa = "BatchGrantPermissionsResponse";
|
|
437
|
+
const _BPFE = "BatchPermissionsFailureEntry";
|
|
438
|
+
const _BPFL = "BatchPermissionsFailureList";
|
|
439
|
+
const _BPRE = "BatchPermissionsRequestEntry";
|
|
440
|
+
const _BPREL = "BatchPermissionsRequestEntryList";
|
|
441
|
+
const _BRP = "BatchRevokePermissions";
|
|
442
|
+
const _BRPR = "BatchRevokePermissionsRequest";
|
|
443
|
+
const _BRPRa = "BatchRevokePermissionsResponse";
|
|
444
|
+
const _C = "Condition";
|
|
445
|
+
const _CDCF = "CreateDataCellsFilter";
|
|
446
|
+
const _CDCFR = "CreateDataCellsFilterRequest";
|
|
447
|
+
const _CDCFRr = "CreateDataCellsFilterResponse";
|
|
448
|
+
const _CDDP = "CreateDatabaseDefaultPermissions";
|
|
449
|
+
const _CE = "ConflictException";
|
|
450
|
+
const _CI = "CatalogId";
|
|
451
|
+
const _CIl = "ClusterId";
|
|
452
|
+
const _CLFICC = "CreateLakeFormationIdentityCenterConfiguration";
|
|
453
|
+
const _CLFICCR = "CreateLakeFormationIdentityCenterConfigurationRequest";
|
|
454
|
+
const _CLFICCRr = "CreateLakeFormationIdentityCenterConfigurationResponse";
|
|
455
|
+
const _CLFOI = "CreateLakeFormationOptIn";
|
|
456
|
+
const _CLFOIR = "CreateLakeFormationOptInRequest";
|
|
457
|
+
const _CLFOIRr = "CreateLakeFormationOptInResponse";
|
|
458
|
+
const _CLFT = "ColumnLFTag";
|
|
459
|
+
const _CLFTE = "CreateLFTagExpression";
|
|
460
|
+
const _CLFTER = "CreateLFTagExpressionRequest";
|
|
461
|
+
const _CLFTERr = "CreateLFTagExpressionResponse";
|
|
462
|
+
const _CLFTL = "ColumnLFTagsList";
|
|
463
|
+
const _CLFTR = "CreateLFTagRequest";
|
|
464
|
+
const _CLFTRr = "CreateLFTagResponse";
|
|
465
|
+
const _CLFTr = "CreateLFTag";
|
|
466
|
+
const _CME = "ConcurrentModificationException";
|
|
467
|
+
const _CN = "ColumnNames";
|
|
468
|
+
const _CO = "ComparisonOperator";
|
|
469
|
+
const _CR = "CatalogResource";
|
|
470
|
+
const _CS = "CredentialsScope";
|
|
471
|
+
const _CT = "CancelTransaction";
|
|
472
|
+
const _CTDP = "CreateTableDefaultPermissions";
|
|
473
|
+
const _CTR = "CancelTransactionRequest";
|
|
474
|
+
const _CTRa = "CancelTransactionResponse";
|
|
475
|
+
const _CTRo = "CommitTransactionRequest";
|
|
476
|
+
const _CTRom = "CommitTransactionResponse";
|
|
477
|
+
const _CTo = "CommitTransaction";
|
|
478
|
+
const _CW = "ColumnWildcard";
|
|
479
|
+
const _Ca = "Catalog";
|
|
480
|
+
const _Co = "Config";
|
|
481
|
+
const _Cr = "Credentials";
|
|
482
|
+
const _D = "Description";
|
|
483
|
+
const _DCF = "DataCellsFilter";
|
|
484
|
+
const _DCFL = "DataCellsFilterList";
|
|
485
|
+
const _DCFR = "DataCellsFilterResource";
|
|
486
|
+
const _DCFa = "DataCellsFilters";
|
|
487
|
+
const _DDCF = "DeleteDataCellsFilter";
|
|
488
|
+
const _DDCFR = "DeleteDataCellsFilterRequest";
|
|
489
|
+
const _DDCFRe = "DeleteDataCellsFilterResponse";
|
|
490
|
+
const _DL = "DataLocations";
|
|
491
|
+
const _DLA = "DataLakeAdmins";
|
|
492
|
+
const _DLFICC = "DeleteLakeFormationIdentityCenterConfiguration";
|
|
493
|
+
const _DLFICCR = "DeleteLakeFormationIdentityCenterConfigurationRequest";
|
|
494
|
+
const _DLFICCRe = "DeleteLakeFormationIdentityCenterConfigurationResponse";
|
|
495
|
+
const _DLFICCRes = "DescribeLakeFormationIdentityCenterConfigurationRequest";
|
|
496
|
+
const _DLFICCResc = "DescribeLakeFormationIdentityCenterConfigurationResponse";
|
|
497
|
+
const _DLFICCe = "DescribeLakeFormationIdentityCenterConfiguration";
|
|
498
|
+
const _DLFOI = "DeleteLakeFormationOptIn";
|
|
499
|
+
const _DLFOIR = "DeleteLakeFormationOptInRequest";
|
|
500
|
+
const _DLFOIRe = "DeleteLakeFormationOptInResponse";
|
|
501
|
+
const _DLFT = "DeleteLFTag";
|
|
502
|
+
const _DLFTE = "DeleteLFTagExpression";
|
|
503
|
+
const _DLFTER = "DeleteLFTagExpressionRequest";
|
|
504
|
+
const _DLFTERe = "DeleteLFTagExpressionResponse";
|
|
505
|
+
const _DLFTL = "DatabaseLFTagsList";
|
|
506
|
+
const _DLFTR = "DeleteLFTagRequest";
|
|
507
|
+
const _DLFTRe = "DeleteLFTagResponse";
|
|
508
|
+
const _DLP = "DataLakePrincipal";
|
|
509
|
+
const _DLPI = "DataLakePrincipalIdentifier";
|
|
510
|
+
const _DLPL = "DataLakePrincipalList";
|
|
511
|
+
const _DLR = "DataLocationResource";
|
|
512
|
+
const _DLS = "DataLakeSettings";
|
|
513
|
+
const _DLa = "DataLocation";
|
|
514
|
+
const _DLat = "DatabaseList";
|
|
515
|
+
const _DM = "DetailsMap";
|
|
516
|
+
const _DN = "DatabaseName";
|
|
517
|
+
const _DO = "DeleteObject";
|
|
518
|
+
const _DOI = "DeleteObjectInput";
|
|
519
|
+
const _DOOC = "DeleteObjectsOnCancel";
|
|
520
|
+
const _DOOCR = "DeleteObjectsOnCancelRequest";
|
|
521
|
+
const _DOOCRe = "DeleteObjectsOnCancelResponse";
|
|
522
|
+
const _DR = "DatabaseResource";
|
|
523
|
+
const _DRR = "DeregisterResourceRequest";
|
|
524
|
+
const _DRRe = "DeregisterResourceResponse";
|
|
525
|
+
const _DRRes = "DescribeResourceRequest";
|
|
526
|
+
const _DRResc = "DescribeResourceResponse";
|
|
527
|
+
const _DRe = "DeregisterResource";
|
|
528
|
+
const _DRes = "DescribeResource";
|
|
529
|
+
const _DS = "DurationSeconds";
|
|
530
|
+
const _DSB = "DataScannedBytes";
|
|
531
|
+
const _DT = "DescribeTransaction";
|
|
532
|
+
const _DTR = "DescribeTransactionRequest";
|
|
533
|
+
const _DTRe = "DescribeTransactionResponse";
|
|
534
|
+
const _Da = "Database";
|
|
535
|
+
const _E = "Expiration";
|
|
536
|
+
const _EC = "ErrorCode";
|
|
537
|
+
const _ECN = "ExcludedColumnNames";
|
|
538
|
+
const _ED = "ErrorDetail";
|
|
539
|
+
const _EDFAL = "ExternalDataFilteringAllowList";
|
|
540
|
+
const _EDTSB = "EstimatedDataToScanBytes";
|
|
541
|
+
const _EE = "ExpiredException";
|
|
542
|
+
const _EF = "ExternalFiltering";
|
|
543
|
+
const _EFC = "ExternalFilteringConfiguration";
|
|
544
|
+
const _EM = "ErrorMessage";
|
|
545
|
+
const _EN = "ExpressionName";
|
|
546
|
+
const _ENFE = "EntityNotFoundException";
|
|
547
|
+
const _EROA = "ExpectedResourceOwnerAccount";
|
|
548
|
+
const _ES = "ExecutionStatistics";
|
|
549
|
+
const _ET = "ETag";
|
|
550
|
+
const _ETR = "ExtendTransactionRequest";
|
|
551
|
+
const _ETRx = "ExtendTransactionResponse";
|
|
552
|
+
const _ETx = "ExtendTransaction";
|
|
553
|
+
const _En = "Entries";
|
|
554
|
+
const _Er = "Error";
|
|
555
|
+
const _Ex = "Expression";
|
|
556
|
+
const _F = "Failures";
|
|
557
|
+
const _FC = "FilterCondition";
|
|
558
|
+
const _FCL = "FilterConditionList";
|
|
559
|
+
const _FE = "FilterExpression";
|
|
560
|
+
const _Fi = "Field";
|
|
561
|
+
const _GDCF = "GetDataCellsFilter";
|
|
562
|
+
const _GDCFR = "GetDataCellsFilterRequest";
|
|
563
|
+
const _GDCFRe = "GetDataCellsFilterResponse";
|
|
564
|
+
const _GDLP = "GetDataLakePrincipal";
|
|
565
|
+
const _GDLPR = "GetDataLakePrincipalRequest";
|
|
566
|
+
const _GDLPRe = "GetDataLakePrincipalResponse";
|
|
567
|
+
const _GDLS = "GetDataLakeSettings";
|
|
568
|
+
const _GDLSR = "GetDataLakeSettingsRequest";
|
|
569
|
+
const _GDLSRe = "GetDataLakeSettingsResponse";
|
|
570
|
+
const _GEE = "GlueEncryptionException";
|
|
571
|
+
const _GEPFP = "GetEffectivePermissionsForPath";
|
|
572
|
+
const _GEPFPR = "GetEffectivePermissionsForPathRequest";
|
|
573
|
+
const _GEPFPRe = "GetEffectivePermissionsForPathResponse";
|
|
574
|
+
const _GLFT = "GetLFTag";
|
|
575
|
+
const _GLFTE = "GetLFTagExpression";
|
|
576
|
+
const _GLFTER = "GetLFTagExpressionRequest";
|
|
577
|
+
const _GLFTERe = "GetLFTagExpressionResponse";
|
|
578
|
+
const _GLFTR = "GetLFTagRequest";
|
|
579
|
+
const _GLFTRe = "GetLFTagResponse";
|
|
580
|
+
const _GP = "GrantPermissions";
|
|
581
|
+
const _GPR = "GrantPermissionsRequest";
|
|
582
|
+
const _GPRr = "GrantPermissionsResponse";
|
|
583
|
+
const _GQS = "GetQueryState";
|
|
584
|
+
const _GQSR = "GetQueryStateRequest";
|
|
585
|
+
const _GQSRe = "GetQueryStateResponse";
|
|
586
|
+
const _GQSRet = "GetQueryStatisticsRequest";
|
|
587
|
+
const _GQSRetu = "GetQueryStatisticsResponse";
|
|
588
|
+
const _GQSe = "GetQueryStatistics";
|
|
589
|
+
const _GRLFT = "GetResourceLFTags";
|
|
590
|
+
const _GRLFTR = "GetResourceLFTagsRequest";
|
|
591
|
+
const _GRLFTRe = "GetResourceLFTagsResponse";
|
|
592
|
+
const _GTDLC = "GetTemporaryDataLocationCredentials";
|
|
593
|
+
const _GTDLCR = "GetTemporaryDataLocationCredentialsRequest";
|
|
594
|
+
const _GTDLCRe = "GetTemporaryDataLocationCredentialsResponse";
|
|
595
|
+
const _GTGPC = "GetTemporaryGluePartitionCredentials";
|
|
596
|
+
const _GTGPCR = "GetTemporaryGluePartitionCredentialsRequest";
|
|
597
|
+
const _GTGPCRe = "GetTemporaryGluePartitionCredentialsResponse";
|
|
598
|
+
const _GTGTC = "GetTemporaryGlueTableCredentials";
|
|
599
|
+
const _GTGTCR = "GetTemporaryGlueTableCredentialsRequest";
|
|
600
|
+
const _GTGTCRe = "GetTemporaryGlueTableCredentialsResponse";
|
|
601
|
+
const _GTO = "GetTableObjects";
|
|
602
|
+
const _GTOR = "GetTableObjectsRequest";
|
|
603
|
+
const _GTORe = "GetTableObjectsResponse";
|
|
604
|
+
const _GWU = "GetWorkUnits";
|
|
605
|
+
const _GWUR = "GetWorkUnitsRequest";
|
|
606
|
+
const _GWURR = "GetWorkUnitResultsRequest";
|
|
607
|
+
const _GWURRe = "GetWorkUnitResultsResponse";
|
|
608
|
+
const _GWURe = "GetWorkUnitsResponse";
|
|
609
|
+
const _GWURet = "GetWorkUnitResults";
|
|
610
|
+
const _HAE = "HybridAccessEnabled";
|
|
611
|
+
const _I = "Id";
|
|
612
|
+
const _IA = "InstanceArn";
|
|
613
|
+
const _IIE = "InvalidInputException";
|
|
614
|
+
const _IR = "IncludeRelated";
|
|
615
|
+
const _ISE = "InternalServiceException";
|
|
616
|
+
const _Id = "Identity";
|
|
617
|
+
const _LDCF = "ListDataCellsFilter";
|
|
618
|
+
const _LDCFR = "ListDataCellsFilterRequest";
|
|
619
|
+
const _LDCFRi = "ListDataCellsFilterResponse";
|
|
620
|
+
const _LFOII = "LakeFormationOptInsInfo";
|
|
621
|
+
const _LFOIIL = "LakeFormationOptInsInfoList";
|
|
622
|
+
const _LFT = "LFTags";
|
|
623
|
+
const _LFTE = "LFTagError";
|
|
624
|
+
const _LFTEL = "LFTagExpressionsList";
|
|
625
|
+
const _LFTER = "LFTagExpressionResource";
|
|
626
|
+
const _LFTEa = "LFTagExpression";
|
|
627
|
+
const _LFTEag = "LFTagExpressions";
|
|
628
|
+
const _LFTEagr = "LFTagErrors";
|
|
629
|
+
const _LFTKR = "LFTagKeyResource";
|
|
630
|
+
const _LFTL = "LFTagsList";
|
|
631
|
+
const _LFTOC = "LFTagsOnColumns";
|
|
632
|
+
const _LFTOD = "LFTagOnDatabase";
|
|
633
|
+
const _LFTOT = "LFTagsOnTable";
|
|
634
|
+
const _LFTP = "LFTagPair";
|
|
635
|
+
const _LFTPR = "LFTagPolicyResource";
|
|
636
|
+
const _LFTPa = "LFTagPolicy";
|
|
637
|
+
const _LFTa = "LFTag";
|
|
638
|
+
const _LLFOI = "ListLakeFormationOptIns";
|
|
639
|
+
const _LLFOIR = "ListLakeFormationOptInsRequest";
|
|
640
|
+
const _LLFOIRi = "ListLakeFormationOptInsResponse";
|
|
641
|
+
const _LLFT = "ListLFTags";
|
|
642
|
+
const _LLFTE = "ListLFTagExpressions";
|
|
643
|
+
const _LLFTER = "ListLFTagExpressionsRequest";
|
|
644
|
+
const _LLFTERi = "ListLFTagExpressionsResponse";
|
|
645
|
+
const _LLFTR = "ListLFTagsRequest";
|
|
646
|
+
const _LLFTRi = "ListLFTagsResponse";
|
|
647
|
+
const _LM = "LastModified";
|
|
648
|
+
const _LP = "ListPermissions";
|
|
649
|
+
const _LPR = "ListPermissionsRequest";
|
|
650
|
+
const _LPRi = "ListPermissionsResponse";
|
|
651
|
+
const _LR = "ListResources";
|
|
652
|
+
const _LRD = "LastRunDetails";
|
|
653
|
+
const _LRR = "ListResourcesRequest";
|
|
654
|
+
const _LRRi = "ListResourcesResponse";
|
|
655
|
+
const _LT = "ListTransactions";
|
|
656
|
+
const _LTR = "ListTransactionsRequest";
|
|
657
|
+
const _LTRi = "ListTransactionsResponse";
|
|
658
|
+
const _LTSO = "ListTableStorageOptimizers";
|
|
659
|
+
const _LTSOR = "ListTableStorageOptimizersRequest";
|
|
660
|
+
const _LTSORi = "ListTableStorageOptimizersResponse";
|
|
661
|
+
const _LU = "LastUpdated";
|
|
662
|
+
const _LUB = "LastUpdatedBy";
|
|
663
|
+
const _M = "Message";
|
|
664
|
+
const _MR = "MaxResults";
|
|
665
|
+
const _N = "Name";
|
|
666
|
+
const _NT = "NextToken";
|
|
667
|
+
const _O = "Objects";
|
|
668
|
+
const _OTE = "OperationTimeoutException";
|
|
669
|
+
const _P = "Principal";
|
|
670
|
+
const _PA = "PrincipalArn";
|
|
671
|
+
const _PDLS = "PutDataLakeSettings";
|
|
672
|
+
const _PDLSR = "PutDataLakeSettingsRequest";
|
|
673
|
+
const _PDLSRu = "PutDataLakeSettingsResponse";
|
|
674
|
+
const _PO = "PartitionObjects";
|
|
675
|
+
const _PP = "PartitionPredicate";
|
|
676
|
+
const _PPL = "PrincipalPermissionsList";
|
|
677
|
+
const _PPr = "PrincipalPermissions";
|
|
678
|
+
const _PRP = "PrincipalResourcePermissions";
|
|
679
|
+
const _PRPL = "PrincipalResourcePermissionsList";
|
|
680
|
+
const _PS = "PlanningStatistics";
|
|
681
|
+
const _PSa = "PageSize";
|
|
682
|
+
const _PTM = "PlanningTimeMillis";
|
|
683
|
+
const _PTME = "PermissionTypeMismatchException";
|
|
684
|
+
const _PTOL = "PartitionedTableObjectsList";
|
|
685
|
+
const _PV = "PartitionValues";
|
|
686
|
+
const _PVL = "PartitionValueList";
|
|
687
|
+
const _PWGO = "PermissionsWithGrantOption";
|
|
688
|
+
const _Pa = "Parameters";
|
|
689
|
+
const _Par = "Partition";
|
|
690
|
+
const _Pe = "Permissions";
|
|
691
|
+
const _QAI = "QueryAuthorizationId";
|
|
692
|
+
const _QAOT = "QueryAsOfTime";
|
|
693
|
+
const _QI = "QueryId";
|
|
694
|
+
const _QP = "QueryParameters";
|
|
695
|
+
const _QPC = "QueryPlanningContext";
|
|
696
|
+
const _QS = "QueryString";
|
|
697
|
+
const _QSC = "QuerySessionContext";
|
|
698
|
+
const _QST = "QuerySubmissionTime";
|
|
699
|
+
const _QSTu = "QueryStartTime";
|
|
700
|
+
const _QTM = "QueueTimeMillis";
|
|
701
|
+
const _R = "Resource";
|
|
702
|
+
const _RA = "RoleArn";
|
|
703
|
+
const _RAe = "ResourceArn";
|
|
704
|
+
const _RC = "RedshiftConnect";
|
|
705
|
+
const _RE = "RequestEntry";
|
|
706
|
+
const _RF = "RowFilter";
|
|
707
|
+
const _RI = "ResourceInfo";
|
|
708
|
+
const _RIL = "ResourceInfoList";
|
|
709
|
+
const _RLFTFR = "RemoveLFTagsFromResource";
|
|
710
|
+
const _RLFTFRR = "RemoveLFTagsFromResourceRequest";
|
|
711
|
+
const _RLFTFRRe = "RemoveLFTagsFromResourceResponse";
|
|
712
|
+
const _RNLEE = "ResourceNumberLimitExceededException";
|
|
713
|
+
const _RNRE = "ResourceNotReadyException";
|
|
714
|
+
const _ROA = "ReadOnlyAdmins";
|
|
715
|
+
const _RP = "RevokePermissions";
|
|
716
|
+
const _RPR = "RevokePermissionsRequest";
|
|
717
|
+
const _RPRe = "RevokePermissionsResponse";
|
|
718
|
+
const _RR = "RegisterResource";
|
|
719
|
+
const _RRR = "RegisterResourceRequest";
|
|
720
|
+
const _RRRe = "RegisterResourceResponse";
|
|
721
|
+
const _RS = "ResultStream";
|
|
722
|
+
const _RSI = "RedshiftServiceIntegrations";
|
|
723
|
+
const _RST = "ResourceShareType";
|
|
724
|
+
const _RSU = "RedshiftScopeUnion";
|
|
725
|
+
const _RSe = "ResourceShare";
|
|
726
|
+
const _RT = "ResourceType";
|
|
727
|
+
const _Re = "Result";
|
|
728
|
+
const _Red = "Redshift";
|
|
729
|
+
const _S = "Size";
|
|
730
|
+
const _SAK = "SecretAccessKey";
|
|
731
|
+
const _SALFT = "ShowAssignedLFTags";
|
|
732
|
+
const _SAMLA = "SAMLAssertion";
|
|
733
|
+
const _SDBLFT = "SearchDatabasesByLFTags";
|
|
734
|
+
const _SDBLFTR = "SearchDatabasesByLFTagsRequest";
|
|
735
|
+
const _SDBLFTRe = "SearchDatabasesByLFTagsResponse";
|
|
736
|
+
const _SF = "StatusFilter";
|
|
737
|
+
const _SGWURRWUTS = "SyntheticGetWorkUnitResultsRequestWorkUnitTokenString";
|
|
738
|
+
const _SI = "ServiceIntegrations";
|
|
739
|
+
const _SIL = "ServiceIntegrationList";
|
|
740
|
+
const _SIU = "ServiceIntegrationUnion";
|
|
741
|
+
const _SNRYE = "StatisticsNotReadyYetException";
|
|
742
|
+
const _SO = "StorageOptimizer";
|
|
743
|
+
const _SOC = "StorageOptimizerConfig";
|
|
744
|
+
const _SOCM = "StorageOptimizerConfigMap";
|
|
745
|
+
const _SOL = "StorageOptimizerList";
|
|
746
|
+
const _SOT = "StorageOptimizerType";
|
|
747
|
+
const _SP = "S3Path";
|
|
748
|
+
const _SPT = "SupportedPermissionTypes";
|
|
749
|
+
const _SQP = "StartQueryPlanning";
|
|
750
|
+
const _SQPR = "StartQueryPlanningRequest";
|
|
751
|
+
const _SQPRt = "StartQueryPlanningResponse";
|
|
752
|
+
const _SR = "ShareRecipients";
|
|
753
|
+
const _SSQPRQS = "SyntheticStartQueryPlanningRequestQueryString";
|
|
754
|
+
const _ST = "SessionToken";
|
|
755
|
+
const _STBLFT = "SearchTablesByLFTags";
|
|
756
|
+
const _STBLFTR = "SearchTablesByLFTagsRequest";
|
|
757
|
+
const _STBLFTRe = "SearchTablesByLFTagsResponse";
|
|
758
|
+
const _STR = "StartTransactionRequest";
|
|
759
|
+
const _STRt = "StartTransactionResponse";
|
|
760
|
+
const _STt = "StartTransaction";
|
|
761
|
+
const _SVL = "StringValueList";
|
|
762
|
+
const _St = "Status";
|
|
763
|
+
const _Sta = "State";
|
|
764
|
+
const _T = "Table";
|
|
765
|
+
const _TA = "TableArn";
|
|
766
|
+
const _TC = "TemporaryCredentials";
|
|
767
|
+
const _TCE = "TransactionCanceledException";
|
|
768
|
+
const _TCEr = "TransactionCommittedException";
|
|
769
|
+
const _TCI = "TableCatalogId";
|
|
770
|
+
const _TCIPE = "TransactionCommitInProgressException";
|
|
771
|
+
const _TD = "TableData";
|
|
772
|
+
const _TDL = "TransactionDescriptionList";
|
|
773
|
+
const _TDa = "TaggedDatabase";
|
|
774
|
+
const _TDr = "TransactionDescription";
|
|
775
|
+
const _TE = "ThrottledException";
|
|
776
|
+
const _TET = "TransactionEndTime";
|
|
777
|
+
const _TI = "TransactionId";
|
|
778
|
+
const _TK = "TagKey";
|
|
779
|
+
const _TL = "TableList";
|
|
780
|
+
const _TLFTL = "TableLFTagsList";
|
|
781
|
+
const _TN = "TableName";
|
|
782
|
+
const _TO = "TableObject";
|
|
783
|
+
const _TOL = "TableObjectList";
|
|
784
|
+
const _TR = "TableResource";
|
|
785
|
+
const _TRO = "TrustedResourceOwners";
|
|
786
|
+
const _TS = "TransactionStatus";
|
|
787
|
+
const _TST = "TransactionStartTime";
|
|
788
|
+
const _TT = "TransactionType";
|
|
789
|
+
const _TTa = "TaggedTable";
|
|
790
|
+
const _TV = "TagValues";
|
|
791
|
+
const _TVTA = "TagValuesToAdd";
|
|
792
|
+
const _TVTD = "TagValuesToDelete";
|
|
793
|
+
const _TW = "TableWildcard";
|
|
794
|
+
const _TWC = "TableWithColumns";
|
|
795
|
+
const _TWCR = "TableWithColumnsResource";
|
|
796
|
+
const _Tr = "Transactions";
|
|
797
|
+
const _U = "Uri";
|
|
798
|
+
const _UDCF = "UpdateDataCellsFilter";
|
|
799
|
+
const _UDCFR = "UpdateDataCellsFilterRequest";
|
|
800
|
+
const _UDCFRp = "UpdateDataCellsFilterResponse";
|
|
801
|
+
const _ULFICC = "UpdateLakeFormationIdentityCenterConfiguration";
|
|
802
|
+
const _ULFICCR = "UpdateLakeFormationIdentityCenterConfigurationRequest";
|
|
803
|
+
const _ULFICCRp = "UpdateLakeFormationIdentityCenterConfigurationResponse";
|
|
804
|
+
const _ULFT = "UpdateLFTag";
|
|
805
|
+
const _ULFTE = "UpdateLFTagExpression";
|
|
806
|
+
const _ULFTER = "UpdateLFTagExpressionRequest";
|
|
807
|
+
const _ULFTERp = "UpdateLFTagExpressionResponse";
|
|
808
|
+
const _ULFTR = "UpdateLFTagRequest";
|
|
809
|
+
const _ULFTRp = "UpdateLFTagResponse";
|
|
810
|
+
const _UR = "UpdateResource";
|
|
811
|
+
const _URR = "UpdateResourceRequest";
|
|
812
|
+
const _URRp = "UpdateResourceResponse";
|
|
813
|
+
const _USLR = "UseServiceLinkedRole";
|
|
814
|
+
const _UTO = "UpdateTableObjects";
|
|
815
|
+
const _UTOR = "UpdateTableObjectsRequest";
|
|
816
|
+
const _UTORp = "UpdateTableObjectsResponse";
|
|
817
|
+
const _UTSO = "UpdateTableStorageOptimizer";
|
|
818
|
+
const _UTSOR = "UpdateTableStorageOptimizerRequest";
|
|
819
|
+
const _UTSORp = "UpdateTableStorageOptimizerResponse";
|
|
820
|
+
const _V = "Values";
|
|
821
|
+
const _VI = "VersionId";
|
|
822
|
+
const _VO = "VirtualObject";
|
|
823
|
+
const _VOL = "VirtualObjectList";
|
|
824
|
+
const _VS = "VerificationStatus";
|
|
825
|
+
const _VSP = "VendedS3Path";
|
|
826
|
+
const _W = "Warnings";
|
|
827
|
+
const _WF = "WithFederation";
|
|
828
|
+
const _WO = "WriteOperations";
|
|
829
|
+
const _WOL = "WriteOperationList";
|
|
830
|
+
const _WOr = "WriteOperation";
|
|
831
|
+
const _WPA = "WithPrivilegedAccess";
|
|
832
|
+
const _WUEC = "WorkUnitsExecutedCount";
|
|
833
|
+
const _WUGC = "WorkUnitsGeneratedCount";
|
|
834
|
+
const _WUI = "WorkUnitId";
|
|
835
|
+
const _WUIM = "WorkUnitIdMax";
|
|
836
|
+
const _WUIMo = "WorkUnitIdMin";
|
|
837
|
+
const _WUNRYE = "WorkUnitsNotReadyYetException";
|
|
838
|
+
const _WUR = "WorkUnitRanges";
|
|
839
|
+
const _WURL = "WorkUnitRangeList";
|
|
840
|
+
const _WURo = "WorkUnitRange";
|
|
841
|
+
const _WUT = "WorkUnitToken";
|
|
842
|
+
const _c = "client";
|
|
843
|
+
const _e = "error";
|
|
844
|
+
const _en = "endpoint";
|
|
845
|
+
const _h = "http";
|
|
846
|
+
const _hE = "httpError";
|
|
847
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.lakeformation";
|
|
848
|
+
const _se = "server";
|
|
849
|
+
const _st = "streaming";
|
|
850
|
+
const n0 = "com.amazonaws.lakeformation";
|
|
851
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
852
|
+
var LakeFormationServiceException$ = [-3, _s, "LakeFormationServiceException", 0, [], []];
|
|
853
|
+
_s_registry.registerError(LakeFormationServiceException$, LakeFormationServiceException);
|
|
854
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
855
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
856
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
857
|
+
[_M],
|
|
858
|
+
[0]
|
|
859
|
+
];
|
|
860
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
861
|
+
var AlreadyExistsException$ = [-3, n0, _AEE,
|
|
862
|
+
{ [_e]: _c },
|
|
863
|
+
[_M],
|
|
864
|
+
[0]
|
|
865
|
+
];
|
|
866
|
+
n0_registry.registerError(AlreadyExistsException$, AlreadyExistsException);
|
|
867
|
+
var ConcurrentModificationException$ = [-3, n0, _CME,
|
|
868
|
+
{ [_e]: _c },
|
|
869
|
+
[_M],
|
|
870
|
+
[0]
|
|
871
|
+
];
|
|
872
|
+
n0_registry.registerError(ConcurrentModificationException$, ConcurrentModificationException);
|
|
873
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
874
|
+
{ [_e]: _c },
|
|
875
|
+
[_M],
|
|
876
|
+
[0]
|
|
877
|
+
];
|
|
878
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
879
|
+
var EntityNotFoundException$ = [-3, n0, _ENFE,
|
|
880
|
+
{ [_e]: _c },
|
|
881
|
+
[_M],
|
|
882
|
+
[0]
|
|
883
|
+
];
|
|
884
|
+
n0_registry.registerError(EntityNotFoundException$, EntityNotFoundException);
|
|
885
|
+
var ExpiredException$ = [-3, n0, _EE,
|
|
886
|
+
{ [_e]: _c, [_hE]: 410 },
|
|
887
|
+
[_M],
|
|
888
|
+
[0]
|
|
889
|
+
];
|
|
890
|
+
n0_registry.registerError(ExpiredException$, ExpiredException);
|
|
891
|
+
var GlueEncryptionException$ = [-3, n0, _GEE,
|
|
892
|
+
{ [_e]: _c },
|
|
893
|
+
[_M],
|
|
894
|
+
[0]
|
|
895
|
+
];
|
|
896
|
+
n0_registry.registerError(GlueEncryptionException$, GlueEncryptionException);
|
|
897
|
+
var InternalServiceException$ = [-3, n0, _ISE,
|
|
898
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
899
|
+
[_M],
|
|
900
|
+
[0]
|
|
901
|
+
];
|
|
902
|
+
n0_registry.registerError(InternalServiceException$, InternalServiceException);
|
|
903
|
+
var InvalidInputException$ = [-3, n0, _IIE,
|
|
904
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
905
|
+
[_M],
|
|
906
|
+
[0]
|
|
907
|
+
];
|
|
908
|
+
n0_registry.registerError(InvalidInputException$, InvalidInputException);
|
|
909
|
+
var OperationTimeoutException$ = [-3, n0, _OTE,
|
|
910
|
+
{ [_e]: _c },
|
|
911
|
+
[_M],
|
|
912
|
+
[0]
|
|
913
|
+
];
|
|
914
|
+
n0_registry.registerError(OperationTimeoutException$, OperationTimeoutException);
|
|
915
|
+
var PermissionTypeMismatchException$ = [-3, n0, _PTME,
|
|
916
|
+
{ [_e]: _c },
|
|
917
|
+
[_M],
|
|
918
|
+
[0]
|
|
919
|
+
];
|
|
920
|
+
n0_registry.registerError(PermissionTypeMismatchException$, PermissionTypeMismatchException);
|
|
921
|
+
var ResourceNotReadyException$ = [-3, n0, _RNRE,
|
|
922
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
923
|
+
[_M],
|
|
924
|
+
[0]
|
|
925
|
+
];
|
|
926
|
+
n0_registry.registerError(ResourceNotReadyException$, ResourceNotReadyException);
|
|
927
|
+
var ResourceNumberLimitExceededException$ = [-3, n0, _RNLEE,
|
|
928
|
+
{ [_e]: _c },
|
|
929
|
+
[_M],
|
|
930
|
+
[0]
|
|
931
|
+
];
|
|
932
|
+
n0_registry.registerError(ResourceNumberLimitExceededException$, ResourceNumberLimitExceededException);
|
|
933
|
+
var StatisticsNotReadyYetException$ = [-3, n0, _SNRYE,
|
|
934
|
+
{ [_e]: _c, [_hE]: 420 },
|
|
935
|
+
[_M],
|
|
936
|
+
[0]
|
|
937
|
+
];
|
|
938
|
+
n0_registry.registerError(StatisticsNotReadyYetException$, StatisticsNotReadyYetException);
|
|
939
|
+
var ThrottledException$ = [-3, n0, _TE,
|
|
940
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
941
|
+
[_M],
|
|
942
|
+
[0]
|
|
943
|
+
];
|
|
944
|
+
n0_registry.registerError(ThrottledException$, ThrottledException);
|
|
945
|
+
var TransactionCanceledException$ = [-3, n0, _TCE,
|
|
946
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
947
|
+
[_M],
|
|
948
|
+
[0]
|
|
949
|
+
];
|
|
950
|
+
n0_registry.registerError(TransactionCanceledException$, TransactionCanceledException);
|
|
951
|
+
var TransactionCommitInProgressException$ = [-3, n0, _TCIPE,
|
|
952
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
953
|
+
[_M],
|
|
954
|
+
[0]
|
|
955
|
+
];
|
|
956
|
+
n0_registry.registerError(TransactionCommitInProgressException$, TransactionCommitInProgressException);
|
|
957
|
+
var TransactionCommittedException$ = [-3, n0, _TCEr,
|
|
958
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
959
|
+
[_M],
|
|
960
|
+
[0]
|
|
961
|
+
];
|
|
962
|
+
n0_registry.registerError(TransactionCommittedException$, TransactionCommittedException);
|
|
963
|
+
var WorkUnitsNotReadyYetException$ = [-3, n0, _WUNRYE,
|
|
964
|
+
{ [_e]: _c, [_hE]: 420 },
|
|
965
|
+
[_M],
|
|
966
|
+
[0]
|
|
967
|
+
];
|
|
968
|
+
n0_registry.registerError(WorkUnitsNotReadyYetException$, WorkUnitsNotReadyYetException);
|
|
969
|
+
const errorTypeRegistries = [
|
|
970
|
+
_s_registry,
|
|
971
|
+
n0_registry,
|
|
972
|
+
];
|
|
973
|
+
var ResultStream = [0, n0, _RS, { [_st]: 1 }, 42];
|
|
974
|
+
var SyntheticGetWorkUnitResultsRequestWorkUnitTokenString = [0, n0, _SGWURRWUTS, 8, 0];
|
|
975
|
+
var SyntheticStartQueryPlanningRequestQueryString = [0, n0, _SSQPRQS, 8, 0];
|
|
976
|
+
var AddLFTagsToResourceRequest$ = [3, n0, _ALFTTRR,
|
|
977
|
+
0,
|
|
978
|
+
[_R, _LFT, _CI],
|
|
979
|
+
[() => Resource$, () => LFTagsList, 0], 2
|
|
980
|
+
];
|
|
981
|
+
var AddLFTagsToResourceResponse$ = [3, n0, _ALFTTRRd,
|
|
982
|
+
0,
|
|
983
|
+
[_F],
|
|
984
|
+
[() => LFTagErrors]
|
|
985
|
+
];
|
|
986
|
+
var AddObjectInput$ = [3, n0, _AOI,
|
|
987
|
+
0,
|
|
988
|
+
[_U, _ET, _S, _PV],
|
|
989
|
+
[0, 0, 1, 64 | 0], 3
|
|
990
|
+
];
|
|
991
|
+
var AllRowsWildcard$ = [3, n0, _ARW,
|
|
992
|
+
0,
|
|
993
|
+
[],
|
|
994
|
+
[]
|
|
995
|
+
];
|
|
996
|
+
var AssumeDecoratedRoleWithSAMLRequest$ = [3, n0, _ADRWSAMLR,
|
|
997
|
+
0,
|
|
998
|
+
[_SAMLA, _RA, _PA, _DS],
|
|
999
|
+
[0, 0, 0, 1], 3
|
|
1000
|
+
];
|
|
1001
|
+
var AssumeDecoratedRoleWithSAMLResponse$ = [3, n0, _ADRWSAMLRs,
|
|
1002
|
+
0,
|
|
1003
|
+
[_AKI, _SAK, _ST, _E],
|
|
1004
|
+
[0, 0, 0, 4]
|
|
1005
|
+
];
|
|
1006
|
+
var AuditContext$ = [3, n0, _AC,
|
|
1007
|
+
0,
|
|
1008
|
+
[_AAC],
|
|
1009
|
+
[0]
|
|
1010
|
+
];
|
|
1011
|
+
var BatchGrantPermissionsRequest$ = [3, n0, _BGPR,
|
|
1012
|
+
0,
|
|
1013
|
+
[_En, _CI],
|
|
1014
|
+
[() => BatchPermissionsRequestEntryList, 0], 1
|
|
1015
|
+
];
|
|
1016
|
+
var BatchGrantPermissionsResponse$ = [3, n0, _BGPRa,
|
|
1017
|
+
0,
|
|
1018
|
+
[_F],
|
|
1019
|
+
[() => BatchPermissionsFailureList]
|
|
1020
|
+
];
|
|
1021
|
+
var BatchPermissionsFailureEntry$ = [3, n0, _BPFE,
|
|
1022
|
+
0,
|
|
1023
|
+
[_RE, _Er],
|
|
1024
|
+
[() => BatchPermissionsRequestEntry$, () => ErrorDetail$]
|
|
1025
|
+
];
|
|
1026
|
+
var BatchPermissionsRequestEntry$ = [3, n0, _BPRE,
|
|
1027
|
+
0,
|
|
1028
|
+
[_I, _P, _R, _Pe, _C, _PWGO],
|
|
1029
|
+
[0, () => DataLakePrincipal$, () => Resource$, 64 | 0, () => Condition$, 64 | 0], 1
|
|
1030
|
+
];
|
|
1031
|
+
var BatchRevokePermissionsRequest$ = [3, n0, _BRPR,
|
|
1032
|
+
0,
|
|
1033
|
+
[_En, _CI],
|
|
1034
|
+
[() => BatchPermissionsRequestEntryList, 0], 1
|
|
1035
|
+
];
|
|
1036
|
+
var BatchRevokePermissionsResponse$ = [3, n0, _BRPRa,
|
|
1037
|
+
0,
|
|
1038
|
+
[_F],
|
|
1039
|
+
[() => BatchPermissionsFailureList]
|
|
1040
|
+
];
|
|
1041
|
+
var CancelTransactionRequest$ = [3, n0, _CTR,
|
|
1042
|
+
0,
|
|
1043
|
+
[_TI],
|
|
1044
|
+
[0], 1
|
|
1045
|
+
];
|
|
1046
|
+
var CancelTransactionResponse$ = [3, n0, _CTRa,
|
|
1047
|
+
0,
|
|
1048
|
+
[],
|
|
1049
|
+
[]
|
|
1050
|
+
];
|
|
1051
|
+
var CatalogResource$ = [3, n0, _CR,
|
|
1052
|
+
0,
|
|
1053
|
+
[_I],
|
|
1054
|
+
[0]
|
|
1055
|
+
];
|
|
1056
|
+
var ColumnLFTag$ = [3, n0, _CLFT,
|
|
1057
|
+
0,
|
|
1058
|
+
[_N, _LFT],
|
|
1059
|
+
[0, () => LFTagsList]
|
|
1060
|
+
];
|
|
1061
|
+
var ColumnWildcard$ = [3, n0, _CW,
|
|
1062
|
+
0,
|
|
1063
|
+
[_ECN],
|
|
1064
|
+
[64 | 0]
|
|
1065
|
+
];
|
|
1066
|
+
var CommitTransactionRequest$ = [3, n0, _CTRo,
|
|
1067
|
+
0,
|
|
1068
|
+
[_TI],
|
|
1069
|
+
[0], 1
|
|
1070
|
+
];
|
|
1071
|
+
var CommitTransactionResponse$ = [3, n0, _CTRom,
|
|
1072
|
+
0,
|
|
1073
|
+
[_TS],
|
|
1074
|
+
[0]
|
|
1075
|
+
];
|
|
1076
|
+
var Condition$ = [3, n0, _C,
|
|
1077
|
+
0,
|
|
1078
|
+
[_Ex],
|
|
1079
|
+
[0]
|
|
1080
|
+
];
|
|
1081
|
+
var CreateDataCellsFilterRequest$ = [3, n0, _CDCFR,
|
|
1082
|
+
0,
|
|
1083
|
+
[_TD],
|
|
1084
|
+
[() => DataCellsFilter$], 1
|
|
1085
|
+
];
|
|
1086
|
+
var CreateDataCellsFilterResponse$ = [3, n0, _CDCFRr,
|
|
1087
|
+
0,
|
|
1088
|
+
[],
|
|
1089
|
+
[]
|
|
1090
|
+
];
|
|
1091
|
+
var CreateLakeFormationIdentityCenterConfigurationRequest$ = [3, n0, _CLFICCR,
|
|
1092
|
+
0,
|
|
1093
|
+
[_CI, _IA, _EF, _SR, _SI],
|
|
1094
|
+
[0, 0, () => ExternalFilteringConfiguration$, () => DataLakePrincipalList, () => ServiceIntegrationList]
|
|
1095
|
+
];
|
|
1096
|
+
var CreateLakeFormationIdentityCenterConfigurationResponse$ = [3, n0, _CLFICCRr,
|
|
1097
|
+
0,
|
|
1098
|
+
[_AA],
|
|
1099
|
+
[0]
|
|
1100
|
+
];
|
|
1101
|
+
var CreateLakeFormationOptInRequest$ = [3, n0, _CLFOIR,
|
|
1102
|
+
0,
|
|
1103
|
+
[_P, _R, _C],
|
|
1104
|
+
[() => DataLakePrincipal$, () => Resource$, () => Condition$], 2
|
|
1105
|
+
];
|
|
1106
|
+
var CreateLakeFormationOptInResponse$ = [3, n0, _CLFOIRr,
|
|
1107
|
+
0,
|
|
1108
|
+
[],
|
|
1109
|
+
[]
|
|
1110
|
+
];
|
|
1111
|
+
var CreateLFTagExpressionRequest$ = [3, n0, _CLFTER,
|
|
1112
|
+
0,
|
|
1113
|
+
[_N, _Ex, _D, _CI],
|
|
1114
|
+
[0, () => Expression, 0, 0], 2
|
|
1115
|
+
];
|
|
1116
|
+
var CreateLFTagExpressionResponse$ = [3, n0, _CLFTERr,
|
|
1117
|
+
0,
|
|
1118
|
+
[],
|
|
1119
|
+
[]
|
|
1120
|
+
];
|
|
1121
|
+
var CreateLFTagRequest$ = [3, n0, _CLFTR,
|
|
1122
|
+
0,
|
|
1123
|
+
[_TK, _TV, _CI],
|
|
1124
|
+
[0, 64 | 0, 0], 2
|
|
1125
|
+
];
|
|
1126
|
+
var CreateLFTagResponse$ = [3, n0, _CLFTRr,
|
|
1127
|
+
0,
|
|
1128
|
+
[],
|
|
1129
|
+
[]
|
|
1130
|
+
];
|
|
1131
|
+
var DatabaseResource$ = [3, n0, _DR,
|
|
1132
|
+
0,
|
|
1133
|
+
[_N, _CI],
|
|
1134
|
+
[0, 0], 1
|
|
1135
|
+
];
|
|
1136
|
+
var DataCellsFilter$ = [3, n0, _DCF,
|
|
1137
|
+
0,
|
|
1138
|
+
[_TCI, _DN, _TN, _N, _RF, _CN, _CW, _VI],
|
|
1139
|
+
[0, 0, 0, 0, () => RowFilter$, 64 | 0, () => ColumnWildcard$, 0], 4
|
|
1140
|
+
];
|
|
1141
|
+
var DataCellsFilterResource$ = [3, n0, _DCFR,
|
|
1142
|
+
0,
|
|
1143
|
+
[_TCI, _DN, _TN, _N],
|
|
1144
|
+
[0, 0, 0, 0]
|
|
1145
|
+
];
|
|
1146
|
+
var DataLakePrincipal$ = [3, n0, _DLP,
|
|
1147
|
+
0,
|
|
1148
|
+
[_DLPI],
|
|
1149
|
+
[0]
|
|
1150
|
+
];
|
|
1151
|
+
var DataLakeSettings$ = [3, n0, _DLS,
|
|
1152
|
+
0,
|
|
1153
|
+
[_DLA, _ROA, _CDDP, _CTDP, _Pa, _TRO, _AEDF, _AFTEDA, _EDFAL, _ASTVL],
|
|
1154
|
+
[() => DataLakePrincipalList, () => DataLakePrincipalList, () => PrincipalPermissionsList, () => PrincipalPermissionsList, 128 | 0, 64 | 0, 2, 2, () => DataLakePrincipalList, 64 | 0]
|
|
1155
|
+
];
|
|
1156
|
+
var DataLocationResource$ = [3, n0, _DLR,
|
|
1157
|
+
0,
|
|
1158
|
+
[_RAe, _CI],
|
|
1159
|
+
[0, 0], 1
|
|
1160
|
+
];
|
|
1161
|
+
var DeleteDataCellsFilterRequest$ = [3, n0, _DDCFR,
|
|
1162
|
+
0,
|
|
1163
|
+
[_TCI, _DN, _TN, _N],
|
|
1164
|
+
[0, 0, 0, 0]
|
|
1165
|
+
];
|
|
1166
|
+
var DeleteDataCellsFilterResponse$ = [3, n0, _DDCFRe,
|
|
1167
|
+
0,
|
|
1168
|
+
[],
|
|
1169
|
+
[]
|
|
1170
|
+
];
|
|
1171
|
+
var DeleteLakeFormationIdentityCenterConfigurationRequest$ = [3, n0, _DLFICCR,
|
|
1172
|
+
0,
|
|
1173
|
+
[_CI],
|
|
1174
|
+
[0]
|
|
1175
|
+
];
|
|
1176
|
+
var DeleteLakeFormationIdentityCenterConfigurationResponse$ = [3, n0, _DLFICCRe,
|
|
1177
|
+
0,
|
|
1178
|
+
[],
|
|
1179
|
+
[]
|
|
1180
|
+
];
|
|
1181
|
+
var DeleteLakeFormationOptInRequest$ = [3, n0, _DLFOIR,
|
|
1182
|
+
0,
|
|
1183
|
+
[_P, _R, _C],
|
|
1184
|
+
[() => DataLakePrincipal$, () => Resource$, () => Condition$], 2
|
|
1185
|
+
];
|
|
1186
|
+
var DeleteLakeFormationOptInResponse$ = [3, n0, _DLFOIRe,
|
|
1187
|
+
0,
|
|
1188
|
+
[],
|
|
1189
|
+
[]
|
|
1190
|
+
];
|
|
1191
|
+
var DeleteLFTagExpressionRequest$ = [3, n0, _DLFTER,
|
|
1192
|
+
0,
|
|
1193
|
+
[_N, _CI],
|
|
1194
|
+
[0, 0], 1
|
|
1195
|
+
];
|
|
1196
|
+
var DeleteLFTagExpressionResponse$ = [3, n0, _DLFTERe,
|
|
1197
|
+
0,
|
|
1198
|
+
[],
|
|
1199
|
+
[]
|
|
1200
|
+
];
|
|
1201
|
+
var DeleteLFTagRequest$ = [3, n0, _DLFTR,
|
|
1202
|
+
0,
|
|
1203
|
+
[_TK, _CI],
|
|
1204
|
+
[0, 0], 1
|
|
1205
|
+
];
|
|
1206
|
+
var DeleteLFTagResponse$ = [3, n0, _DLFTRe,
|
|
1207
|
+
0,
|
|
1208
|
+
[],
|
|
1209
|
+
[]
|
|
1210
|
+
];
|
|
1211
|
+
var DeleteObjectInput$ = [3, n0, _DOI,
|
|
1212
|
+
0,
|
|
1213
|
+
[_U, _ET, _PV],
|
|
1214
|
+
[0, 0, 64 | 0], 1
|
|
1215
|
+
];
|
|
1216
|
+
var DeleteObjectsOnCancelRequest$ = [3, n0, _DOOCR,
|
|
1217
|
+
0,
|
|
1218
|
+
[_DN, _TN, _TI, _O, _CI],
|
|
1219
|
+
[0, 0, 0, () => VirtualObjectList, 0], 4
|
|
1220
|
+
];
|
|
1221
|
+
var DeleteObjectsOnCancelResponse$ = [3, n0, _DOOCRe,
|
|
1222
|
+
0,
|
|
1223
|
+
[],
|
|
1224
|
+
[]
|
|
1225
|
+
];
|
|
1226
|
+
var DeregisterResourceRequest$ = [3, n0, _DRR,
|
|
1227
|
+
0,
|
|
1228
|
+
[_RAe],
|
|
1229
|
+
[0], 1
|
|
1230
|
+
];
|
|
1231
|
+
var DeregisterResourceResponse$ = [3, n0, _DRRe,
|
|
1232
|
+
0,
|
|
1233
|
+
[],
|
|
1234
|
+
[]
|
|
1235
|
+
];
|
|
1236
|
+
var DescribeLakeFormationIdentityCenterConfigurationRequest$ = [3, n0, _DLFICCRes,
|
|
1237
|
+
0,
|
|
1238
|
+
[_CI],
|
|
1239
|
+
[0]
|
|
1240
|
+
];
|
|
1241
|
+
var DescribeLakeFormationIdentityCenterConfigurationResponse$ = [3, n0, _DLFICCResc,
|
|
1242
|
+
0,
|
|
1243
|
+
[_CI, _IA, _AA, _EF, _SR, _SI, _RSe],
|
|
1244
|
+
[0, 0, 0, () => ExternalFilteringConfiguration$, () => DataLakePrincipalList, () => ServiceIntegrationList, 0]
|
|
1245
|
+
];
|
|
1246
|
+
var DescribeResourceRequest$ = [3, n0, _DRRes,
|
|
1247
|
+
0,
|
|
1248
|
+
[_RAe],
|
|
1249
|
+
[0], 1
|
|
1250
|
+
];
|
|
1251
|
+
var DescribeResourceResponse$ = [3, n0, _DRResc,
|
|
1252
|
+
0,
|
|
1253
|
+
[_RI],
|
|
1254
|
+
[() => ResourceInfo$]
|
|
1255
|
+
];
|
|
1256
|
+
var DescribeTransactionRequest$ = [3, n0, _DTR,
|
|
1257
|
+
0,
|
|
1258
|
+
[_TI],
|
|
1259
|
+
[0], 1
|
|
1260
|
+
];
|
|
1261
|
+
var DescribeTransactionResponse$ = [3, n0, _DTRe,
|
|
1262
|
+
0,
|
|
1263
|
+
[_TDr],
|
|
1264
|
+
[() => TransactionDescription$]
|
|
1265
|
+
];
|
|
1266
|
+
var DetailsMap$ = [3, n0, _DM,
|
|
1267
|
+
0,
|
|
1268
|
+
[_RSe],
|
|
1269
|
+
[64 | 0]
|
|
1270
|
+
];
|
|
1271
|
+
var ErrorDetail$ = [3, n0, _ED,
|
|
1272
|
+
0,
|
|
1273
|
+
[_EC, _EM],
|
|
1274
|
+
[0, 0]
|
|
1275
|
+
];
|
|
1276
|
+
var ExecutionStatistics$ = [3, n0, _ES,
|
|
1277
|
+
0,
|
|
1278
|
+
[_AETM, _DSB, _WUEC],
|
|
1279
|
+
[1, 1, 1]
|
|
1280
|
+
];
|
|
1281
|
+
var ExtendTransactionRequest$ = [3, n0, _ETR,
|
|
1282
|
+
0,
|
|
1283
|
+
[_TI],
|
|
1284
|
+
[0]
|
|
1285
|
+
];
|
|
1286
|
+
var ExtendTransactionResponse$ = [3, n0, _ETRx,
|
|
1287
|
+
0,
|
|
1288
|
+
[],
|
|
1289
|
+
[]
|
|
1290
|
+
];
|
|
1291
|
+
var ExternalFilteringConfiguration$ = [3, n0, _EFC,
|
|
1292
|
+
0,
|
|
1293
|
+
[_St, _AT],
|
|
1294
|
+
[0, 64 | 0], 2
|
|
1295
|
+
];
|
|
1296
|
+
var FilterCondition$ = [3, n0, _FC,
|
|
1297
|
+
0,
|
|
1298
|
+
[_Fi, _CO, _SVL],
|
|
1299
|
+
[0, 0, 64 | 0]
|
|
1300
|
+
];
|
|
1301
|
+
var GetDataCellsFilterRequest$ = [3, n0, _GDCFR,
|
|
1302
|
+
0,
|
|
1303
|
+
[_TCI, _DN, _TN, _N],
|
|
1304
|
+
[0, 0, 0, 0], 4
|
|
1305
|
+
];
|
|
1306
|
+
var GetDataCellsFilterResponse$ = [3, n0, _GDCFRe,
|
|
1307
|
+
0,
|
|
1308
|
+
[_DCF],
|
|
1309
|
+
[() => DataCellsFilter$]
|
|
1310
|
+
];
|
|
1311
|
+
var GetDataLakePrincipalRequest$ = [3, n0, _GDLPR,
|
|
1312
|
+
0,
|
|
1313
|
+
[],
|
|
1314
|
+
[]
|
|
1315
|
+
];
|
|
1316
|
+
var GetDataLakePrincipalResponse$ = [3, n0, _GDLPRe,
|
|
1317
|
+
0,
|
|
1318
|
+
[_Id],
|
|
1319
|
+
[0]
|
|
1320
|
+
];
|
|
1321
|
+
var GetDataLakeSettingsRequest$ = [3, n0, _GDLSR,
|
|
1322
|
+
0,
|
|
1323
|
+
[_CI],
|
|
1324
|
+
[0]
|
|
1325
|
+
];
|
|
1326
|
+
var GetDataLakeSettingsResponse$ = [3, n0, _GDLSRe,
|
|
1327
|
+
0,
|
|
1328
|
+
[_DLS],
|
|
1329
|
+
[() => DataLakeSettings$]
|
|
1330
|
+
];
|
|
1331
|
+
var GetEffectivePermissionsForPathRequest$ = [3, n0, _GEPFPR,
|
|
1332
|
+
0,
|
|
1333
|
+
[_RAe, _CI, _NT, _MR],
|
|
1334
|
+
[0, 0, 0, 1], 1
|
|
1335
|
+
];
|
|
1336
|
+
var GetEffectivePermissionsForPathResponse$ = [3, n0, _GEPFPRe,
|
|
1337
|
+
0,
|
|
1338
|
+
[_Pe, _NT],
|
|
1339
|
+
[() => PrincipalResourcePermissionsList, 0]
|
|
1340
|
+
];
|
|
1341
|
+
var GetLFTagExpressionRequest$ = [3, n0, _GLFTER,
|
|
1342
|
+
0,
|
|
1343
|
+
[_N, _CI],
|
|
1344
|
+
[0, 0], 1
|
|
1345
|
+
];
|
|
1346
|
+
var GetLFTagExpressionResponse$ = [3, n0, _GLFTERe,
|
|
1347
|
+
0,
|
|
1348
|
+
[_N, _D, _CI, _Ex],
|
|
1349
|
+
[0, 0, 0, () => Expression]
|
|
1350
|
+
];
|
|
1351
|
+
var GetLFTagRequest$ = [3, n0, _GLFTR,
|
|
1352
|
+
0,
|
|
1353
|
+
[_TK, _CI],
|
|
1354
|
+
[0, 0], 1
|
|
1355
|
+
];
|
|
1356
|
+
var GetLFTagResponse$ = [3, n0, _GLFTRe,
|
|
1357
|
+
0,
|
|
1358
|
+
[_CI, _TK, _TV],
|
|
1359
|
+
[0, 0, 64 | 0]
|
|
1360
|
+
];
|
|
1361
|
+
var GetQueryStateRequest$ = [3, n0, _GQSR,
|
|
1362
|
+
0,
|
|
1363
|
+
[_QI],
|
|
1364
|
+
[0], 1
|
|
1365
|
+
];
|
|
1366
|
+
var GetQueryStateResponse$ = [3, n0, _GQSRe,
|
|
1367
|
+
0,
|
|
1368
|
+
[_Sta, _Er],
|
|
1369
|
+
[0, 0], 1
|
|
1370
|
+
];
|
|
1371
|
+
var GetQueryStatisticsRequest$ = [3, n0, _GQSRet,
|
|
1372
|
+
0,
|
|
1373
|
+
[_QI],
|
|
1374
|
+
[0], 1
|
|
1375
|
+
];
|
|
1376
|
+
var GetQueryStatisticsResponse$ = [3, n0, _GQSRetu,
|
|
1377
|
+
0,
|
|
1378
|
+
[_ES, _PS, _QST],
|
|
1379
|
+
[() => ExecutionStatistics$, () => PlanningStatistics$, 5]
|
|
1380
|
+
];
|
|
1381
|
+
var GetResourceLFTagsRequest$ = [3, n0, _GRLFTR,
|
|
1382
|
+
0,
|
|
1383
|
+
[_R, _CI, _SALFT],
|
|
1384
|
+
[() => Resource$, 0, 2], 1
|
|
1385
|
+
];
|
|
1386
|
+
var GetResourceLFTagsResponse$ = [3, n0, _GRLFTRe,
|
|
1387
|
+
0,
|
|
1388
|
+
[_LFTOD, _LFTOT, _LFTOC],
|
|
1389
|
+
[() => LFTagsList, () => LFTagsList, () => ColumnLFTagsList]
|
|
1390
|
+
];
|
|
1391
|
+
var GetTableObjectsRequest$ = [3, n0, _GTOR,
|
|
1392
|
+
0,
|
|
1393
|
+
[_DN, _TN, _CI, _TI, _QAOT, _PP, _MR, _NT],
|
|
1394
|
+
[0, 0, 0, 0, 4, 0, 1, 0], 2
|
|
1395
|
+
];
|
|
1396
|
+
var GetTableObjectsResponse$ = [3, n0, _GTORe,
|
|
1397
|
+
0,
|
|
1398
|
+
[_O, _NT],
|
|
1399
|
+
[() => PartitionedTableObjectsList, 0]
|
|
1400
|
+
];
|
|
1401
|
+
var GetTemporaryDataLocationCredentialsRequest$ = [3, n0, _GTDLCR,
|
|
1402
|
+
0,
|
|
1403
|
+
[_DS, _AC, _DL, _CS],
|
|
1404
|
+
[1, () => AuditContext$, 64 | 0, 0]
|
|
1405
|
+
];
|
|
1406
|
+
var GetTemporaryDataLocationCredentialsResponse$ = [3, n0, _GTDLCRe,
|
|
1407
|
+
0,
|
|
1408
|
+
[_Cr, _ADL, _CS],
|
|
1409
|
+
[() => TemporaryCredentials$, 64 | 0, 0]
|
|
1410
|
+
];
|
|
1411
|
+
var GetTemporaryGluePartitionCredentialsRequest$ = [3, n0, _GTGPCR,
|
|
1412
|
+
0,
|
|
1413
|
+
[_TA, _Par, _Pe, _DS, _AC, _SPT],
|
|
1414
|
+
[0, () => PartitionValueList$, 64 | 0, 1, () => AuditContext$, 64 | 0], 2
|
|
1415
|
+
];
|
|
1416
|
+
var GetTemporaryGluePartitionCredentialsResponse$ = [3, n0, _GTGPCRe,
|
|
1417
|
+
0,
|
|
1418
|
+
[_AKI, _SAK, _ST, _E],
|
|
1419
|
+
[0, 0, 0, 4]
|
|
1420
|
+
];
|
|
1421
|
+
var GetTemporaryGlueTableCredentialsRequest$ = [3, n0, _GTGTCR,
|
|
1422
|
+
0,
|
|
1423
|
+
[_TA, _Pe, _DS, _AC, _SPT, _SP, _QSC],
|
|
1424
|
+
[0, 64 | 0, 1, () => AuditContext$, 64 | 0, 0, () => QuerySessionContext$], 1
|
|
1425
|
+
];
|
|
1426
|
+
var GetTemporaryGlueTableCredentialsResponse$ = [3, n0, _GTGTCRe,
|
|
1427
|
+
0,
|
|
1428
|
+
[_AKI, _SAK, _ST, _E, _VSP],
|
|
1429
|
+
[0, 0, 0, 4, 64 | 0]
|
|
1430
|
+
];
|
|
1431
|
+
var GetWorkUnitResultsRequest$ = [3, n0, _GWURR,
|
|
1432
|
+
0,
|
|
1433
|
+
[_QI, _WUI, _WUT],
|
|
1434
|
+
[0, 1, [() => SyntheticGetWorkUnitResultsRequestWorkUnitTokenString, 0]], 3
|
|
1435
|
+
];
|
|
1436
|
+
var GetWorkUnitResultsResponse$ = [3, n0, _GWURRe,
|
|
1437
|
+
0,
|
|
1438
|
+
[_RS],
|
|
1439
|
+
[[() => ResultStream, 16]]
|
|
1440
|
+
];
|
|
1441
|
+
var GetWorkUnitsRequest$ = [3, n0, _GWUR,
|
|
1442
|
+
0,
|
|
1443
|
+
[_QI, _NT, _PSa],
|
|
1444
|
+
[0, 0, 1], 1
|
|
1445
|
+
];
|
|
1446
|
+
var GetWorkUnitsResponse$ = [3, n0, _GWURe,
|
|
1447
|
+
0,
|
|
1448
|
+
[_QI, _WUR, _NT],
|
|
1449
|
+
[0, () => WorkUnitRangeList, 0], 2
|
|
1450
|
+
];
|
|
1451
|
+
var GrantPermissionsRequest$ = [3, n0, _GPR,
|
|
1452
|
+
0,
|
|
1453
|
+
[_P, _R, _Pe, _CI, _C, _PWGO],
|
|
1454
|
+
[() => DataLakePrincipal$, () => Resource$, 64 | 0, 0, () => Condition$, 64 | 0], 3
|
|
1455
|
+
];
|
|
1456
|
+
var GrantPermissionsResponse$ = [3, n0, _GPRr,
|
|
1457
|
+
0,
|
|
1458
|
+
[],
|
|
1459
|
+
[]
|
|
1460
|
+
];
|
|
1461
|
+
var LakeFormationOptInsInfo$ = [3, n0, _LFOII,
|
|
1462
|
+
0,
|
|
1463
|
+
[_R, _P, _C, _LM, _LUB],
|
|
1464
|
+
[() => Resource$, () => DataLakePrincipal$, () => Condition$, 4, 0]
|
|
1465
|
+
];
|
|
1466
|
+
var LFTag$ = [3, n0, _LFTa,
|
|
1467
|
+
0,
|
|
1468
|
+
[_TK, _TV],
|
|
1469
|
+
[0, 64 | 0], 2
|
|
1470
|
+
];
|
|
1471
|
+
var LFTagError$ = [3, n0, _LFTE,
|
|
1472
|
+
0,
|
|
1473
|
+
[_LFTa, _Er],
|
|
1474
|
+
[() => LFTagPair$, () => ErrorDetail$]
|
|
1475
|
+
];
|
|
1476
|
+
var LFTagExpression$ = [3, n0, _LFTEa,
|
|
1477
|
+
0,
|
|
1478
|
+
[_N, _D, _CI, _Ex],
|
|
1479
|
+
[0, 0, 0, () => Expression]
|
|
1480
|
+
];
|
|
1481
|
+
var LFTagExpressionResource$ = [3, n0, _LFTER,
|
|
1482
|
+
0,
|
|
1483
|
+
[_N, _CI],
|
|
1484
|
+
[0, 0], 1
|
|
1485
|
+
];
|
|
1486
|
+
var LFTagKeyResource$ = [3, n0, _LFTKR,
|
|
1487
|
+
0,
|
|
1488
|
+
[_TK, _TV, _CI],
|
|
1489
|
+
[0, 64 | 0, 0], 2
|
|
1490
|
+
];
|
|
1491
|
+
var LFTagPair$ = [3, n0, _LFTP,
|
|
1492
|
+
0,
|
|
1493
|
+
[_TK, _TV, _CI],
|
|
1494
|
+
[0, 64 | 0, 0], 2
|
|
1495
|
+
];
|
|
1496
|
+
var LFTagPolicyResource$ = [3, n0, _LFTPR,
|
|
1497
|
+
0,
|
|
1498
|
+
[_RT, _CI, _Ex, _EN],
|
|
1499
|
+
[0, 0, () => Expression, 0], 1
|
|
1500
|
+
];
|
|
1501
|
+
var ListDataCellsFilterRequest$ = [3, n0, _LDCFR,
|
|
1502
|
+
0,
|
|
1503
|
+
[_T, _NT, _MR],
|
|
1504
|
+
[() => TableResource$, 0, 1]
|
|
1505
|
+
];
|
|
1506
|
+
var ListDataCellsFilterResponse$ = [3, n0, _LDCFRi,
|
|
1507
|
+
0,
|
|
1508
|
+
[_DCFa, _NT],
|
|
1509
|
+
[() => DataCellsFilterList, 0]
|
|
1510
|
+
];
|
|
1511
|
+
var ListLakeFormationOptInsRequest$ = [3, n0, _LLFOIR,
|
|
1512
|
+
0,
|
|
1513
|
+
[_P, _R, _MR, _NT],
|
|
1514
|
+
[() => DataLakePrincipal$, () => Resource$, 1, 0]
|
|
1515
|
+
];
|
|
1516
|
+
var ListLakeFormationOptInsResponse$ = [3, n0, _LLFOIRi,
|
|
1517
|
+
0,
|
|
1518
|
+
[_LFOIIL, _NT],
|
|
1519
|
+
[() => LakeFormationOptInsInfoList, 0]
|
|
1520
|
+
];
|
|
1521
|
+
var ListLFTagExpressionsRequest$ = [3, n0, _LLFTER,
|
|
1522
|
+
0,
|
|
1523
|
+
[_CI, _MR, _NT],
|
|
1524
|
+
[0, 1, 0]
|
|
1525
|
+
];
|
|
1526
|
+
var ListLFTagExpressionsResponse$ = [3, n0, _LLFTERi,
|
|
1527
|
+
0,
|
|
1528
|
+
[_LFTEag, _NT],
|
|
1529
|
+
[() => LFTagExpressionsList, 0]
|
|
1530
|
+
];
|
|
1531
|
+
var ListLFTagsRequest$ = [3, n0, _LLFTR,
|
|
1532
|
+
0,
|
|
1533
|
+
[_CI, _RST, _MR, _NT],
|
|
1534
|
+
[0, 0, 1, 0]
|
|
1535
|
+
];
|
|
1536
|
+
var ListLFTagsResponse$ = [3, n0, _LLFTRi,
|
|
1537
|
+
0,
|
|
1538
|
+
[_LFT, _NT],
|
|
1539
|
+
[() => LFTagsList, 0]
|
|
1540
|
+
];
|
|
1541
|
+
var ListPermissionsRequest$ = [3, n0, _LPR,
|
|
1542
|
+
0,
|
|
1543
|
+
[_CI, _P, _RT, _R, _NT, _MR, _IR],
|
|
1544
|
+
[0, () => DataLakePrincipal$, 0, () => Resource$, 0, 1, 0]
|
|
1545
|
+
];
|
|
1546
|
+
var ListPermissionsResponse$ = [3, n0, _LPRi,
|
|
1547
|
+
0,
|
|
1548
|
+
[_PRP, _NT],
|
|
1549
|
+
[() => PrincipalResourcePermissionsList, 0]
|
|
1550
|
+
];
|
|
1551
|
+
var ListResourcesRequest$ = [3, n0, _LRR,
|
|
1552
|
+
0,
|
|
1553
|
+
[_FCL, _MR, _NT],
|
|
1554
|
+
[() => FilterConditionList, 1, 0]
|
|
1555
|
+
];
|
|
1556
|
+
var ListResourcesResponse$ = [3, n0, _LRRi,
|
|
1557
|
+
0,
|
|
1558
|
+
[_RIL, _NT],
|
|
1559
|
+
[() => ResourceInfoList, 0]
|
|
1560
|
+
];
|
|
1561
|
+
var ListTableStorageOptimizersRequest$ = [3, n0, _LTSOR,
|
|
1562
|
+
0,
|
|
1563
|
+
[_DN, _TN, _CI, _SOT, _MR, _NT],
|
|
1564
|
+
[0, 0, 0, 0, 1, 0], 2
|
|
1565
|
+
];
|
|
1566
|
+
var ListTableStorageOptimizersResponse$ = [3, n0, _LTSORi,
|
|
1567
|
+
0,
|
|
1568
|
+
[_SOL, _NT],
|
|
1569
|
+
[() => StorageOptimizerList, 0]
|
|
1570
|
+
];
|
|
1571
|
+
var ListTransactionsRequest$ = [3, n0, _LTR,
|
|
1572
|
+
0,
|
|
1573
|
+
[_CI, _SF, _MR, _NT],
|
|
1574
|
+
[0, 0, 1, 0]
|
|
1575
|
+
];
|
|
1576
|
+
var ListTransactionsResponse$ = [3, n0, _LTRi,
|
|
1577
|
+
0,
|
|
1578
|
+
[_Tr, _NT],
|
|
1579
|
+
[() => TransactionDescriptionList, 0]
|
|
1580
|
+
];
|
|
1581
|
+
var PartitionObjects$ = [3, n0, _PO,
|
|
1582
|
+
0,
|
|
1583
|
+
[_PV, _O],
|
|
1584
|
+
[64 | 0, () => TableObjectList]
|
|
1585
|
+
];
|
|
1586
|
+
var PartitionValueList$ = [3, n0, _PVL,
|
|
1587
|
+
0,
|
|
1588
|
+
[_V],
|
|
1589
|
+
[64 | 0], 1
|
|
1590
|
+
];
|
|
1591
|
+
var PlanningStatistics$ = [3, n0, _PS,
|
|
1592
|
+
0,
|
|
1593
|
+
[_EDTSB, _PTM, _QTM, _WUGC],
|
|
1594
|
+
[1, 1, 1, 1]
|
|
1595
|
+
];
|
|
1596
|
+
var PrincipalPermissions$ = [3, n0, _PPr,
|
|
1597
|
+
0,
|
|
1598
|
+
[_P, _Pe],
|
|
1599
|
+
[() => DataLakePrincipal$, 64 | 0]
|
|
1600
|
+
];
|
|
1601
|
+
var PrincipalResourcePermissions$ = [3, n0, _PRP,
|
|
1602
|
+
0,
|
|
1603
|
+
[_P, _R, _C, _Pe, _PWGO, _AD, _LU, _LUB],
|
|
1604
|
+
[() => DataLakePrincipal$, () => Resource$, () => Condition$, 64 | 0, 64 | 0, () => DetailsMap$, 4, 0]
|
|
1605
|
+
];
|
|
1606
|
+
var PutDataLakeSettingsRequest$ = [3, n0, _PDLSR,
|
|
1607
|
+
0,
|
|
1608
|
+
[_DLS, _CI],
|
|
1609
|
+
[() => DataLakeSettings$, 0], 1
|
|
1610
|
+
];
|
|
1611
|
+
var PutDataLakeSettingsResponse$ = [3, n0, _PDLSRu,
|
|
1612
|
+
0,
|
|
1613
|
+
[],
|
|
1614
|
+
[]
|
|
1615
|
+
];
|
|
1616
|
+
var QueryPlanningContext$ = [3, n0, _QPC,
|
|
1617
|
+
0,
|
|
1618
|
+
[_DN, _CI, _QAOT, _QP, _TI],
|
|
1619
|
+
[0, 0, 4, 128 | 0, 0], 1
|
|
1620
|
+
];
|
|
1621
|
+
var QuerySessionContext$ = [3, n0, _QSC,
|
|
1622
|
+
0,
|
|
1623
|
+
[_QI, _QSTu, _CIl, _QAI, _ACd],
|
|
1624
|
+
[0, 4, 0, 0, 128 | 0]
|
|
1625
|
+
];
|
|
1626
|
+
var RedshiftConnect$ = [3, n0, _RC,
|
|
1627
|
+
0,
|
|
1628
|
+
[_A],
|
|
1629
|
+
[0], 1
|
|
1630
|
+
];
|
|
1631
|
+
var RegisterResourceRequest$ = [3, n0, _RRR,
|
|
1632
|
+
0,
|
|
1633
|
+
[_RAe, _USLR, _RA, _WF, _HAE, _WPA, _EROA],
|
|
1634
|
+
[0, 2, 0, 2, 2, 2, 0], 1
|
|
1635
|
+
];
|
|
1636
|
+
var RegisterResourceResponse$ = [3, n0, _RRRe,
|
|
1637
|
+
0,
|
|
1638
|
+
[],
|
|
1639
|
+
[]
|
|
1640
|
+
];
|
|
1641
|
+
var RemoveLFTagsFromResourceRequest$ = [3, n0, _RLFTFRR,
|
|
1642
|
+
0,
|
|
1643
|
+
[_R, _LFT, _CI],
|
|
1644
|
+
[() => Resource$, () => LFTagsList, 0], 2
|
|
1645
|
+
];
|
|
1646
|
+
var RemoveLFTagsFromResourceResponse$ = [3, n0, _RLFTFRRe,
|
|
1647
|
+
0,
|
|
1648
|
+
[_F],
|
|
1649
|
+
[() => LFTagErrors]
|
|
1650
|
+
];
|
|
1651
|
+
var Resource$ = [3, n0, _R,
|
|
1652
|
+
0,
|
|
1653
|
+
[_Ca, _Da, _T, _TWC, _DLa, _DCF, _LFTa, _LFTPa, _LFTEa],
|
|
1654
|
+
[() => CatalogResource$, () => DatabaseResource$, () => TableResource$, () => TableWithColumnsResource$, () => DataLocationResource$, () => DataCellsFilterResource$, () => LFTagKeyResource$, () => LFTagPolicyResource$, () => LFTagExpressionResource$]
|
|
1655
|
+
];
|
|
1656
|
+
var ResourceInfo$ = [3, n0, _RI,
|
|
1657
|
+
0,
|
|
1658
|
+
[_RAe, _RA, _LM, _WF, _HAE, _WPA, _VS, _EROA],
|
|
1659
|
+
[0, 0, 4, 2, 2, 2, 0, 0]
|
|
1660
|
+
];
|
|
1661
|
+
var RevokePermissionsRequest$ = [3, n0, _RPR,
|
|
1662
|
+
0,
|
|
1663
|
+
[_P, _R, _Pe, _CI, _C, _PWGO],
|
|
1664
|
+
[() => DataLakePrincipal$, () => Resource$, 64 | 0, 0, () => Condition$, 64 | 0], 3
|
|
1665
|
+
];
|
|
1666
|
+
var RevokePermissionsResponse$ = [3, n0, _RPRe,
|
|
1667
|
+
0,
|
|
1668
|
+
[],
|
|
1669
|
+
[]
|
|
1670
|
+
];
|
|
1671
|
+
var RowFilter$ = [3, n0, _RF,
|
|
1672
|
+
0,
|
|
1673
|
+
[_FE, _ARW],
|
|
1674
|
+
[0, () => AllRowsWildcard$]
|
|
1675
|
+
];
|
|
1676
|
+
var SearchDatabasesByLFTagsRequest$ = [3, n0, _SDBLFTR,
|
|
1677
|
+
0,
|
|
1678
|
+
[_Ex, _NT, _MR, _CI],
|
|
1679
|
+
[() => Expression, 0, 1, 0], 1
|
|
1680
|
+
];
|
|
1681
|
+
var SearchDatabasesByLFTagsResponse$ = [3, n0, _SDBLFTRe,
|
|
1682
|
+
0,
|
|
1683
|
+
[_NT, _DLat],
|
|
1684
|
+
[0, () => DatabaseLFTagsList]
|
|
1685
|
+
];
|
|
1686
|
+
var SearchTablesByLFTagsRequest$ = [3, n0, _STBLFTR,
|
|
1687
|
+
0,
|
|
1688
|
+
[_Ex, _NT, _MR, _CI],
|
|
1689
|
+
[() => Expression, 0, 1, 0], 1
|
|
1690
|
+
];
|
|
1691
|
+
var SearchTablesByLFTagsResponse$ = [3, n0, _STBLFTRe,
|
|
1692
|
+
0,
|
|
1693
|
+
[_NT, _TL],
|
|
1694
|
+
[0, () => TableLFTagsList]
|
|
1695
|
+
];
|
|
1696
|
+
var StartQueryPlanningRequest$ = [3, n0, _SQPR,
|
|
1697
|
+
0,
|
|
1698
|
+
[_QPC, _QS],
|
|
1699
|
+
[() => QueryPlanningContext$, [() => SyntheticStartQueryPlanningRequestQueryString, 0]], 2
|
|
1700
|
+
];
|
|
1701
|
+
var StartQueryPlanningResponse$ = [3, n0, _SQPRt,
|
|
1702
|
+
0,
|
|
1703
|
+
[_QI],
|
|
1704
|
+
[0], 1
|
|
1705
|
+
];
|
|
1706
|
+
var StartTransactionRequest$ = [3, n0, _STR,
|
|
1707
|
+
0,
|
|
1708
|
+
[_TT],
|
|
1709
|
+
[0]
|
|
1710
|
+
];
|
|
1711
|
+
var StartTransactionResponse$ = [3, n0, _STRt,
|
|
1712
|
+
0,
|
|
1713
|
+
[_TI],
|
|
1714
|
+
[0]
|
|
1715
|
+
];
|
|
1716
|
+
var StorageOptimizer$ = [3, n0, _SO,
|
|
1717
|
+
0,
|
|
1718
|
+
[_SOT, _Co, _EM, _W, _LRD],
|
|
1719
|
+
[0, 128 | 0, 0, 0, 0]
|
|
1720
|
+
];
|
|
1721
|
+
var TableObject$ = [3, n0, _TO,
|
|
1722
|
+
0,
|
|
1723
|
+
[_U, _ET, _S],
|
|
1724
|
+
[0, 0, 1]
|
|
1725
|
+
];
|
|
1726
|
+
var TableResource$ = [3, n0, _TR,
|
|
1727
|
+
0,
|
|
1728
|
+
[_DN, _CI, _N, _TW],
|
|
1729
|
+
[0, 0, 0, () => TableWildcard$], 1
|
|
1730
|
+
];
|
|
1731
|
+
var TableWildcard$ = [3, n0, _TW,
|
|
1732
|
+
0,
|
|
1733
|
+
[],
|
|
1734
|
+
[]
|
|
1735
|
+
];
|
|
1736
|
+
var TableWithColumnsResource$ = [3, n0, _TWCR,
|
|
1737
|
+
0,
|
|
1738
|
+
[_DN, _N, _CI, _CN, _CW],
|
|
1739
|
+
[0, 0, 0, 64 | 0, () => ColumnWildcard$], 2
|
|
1740
|
+
];
|
|
1741
|
+
var TaggedDatabase$ = [3, n0, _TDa,
|
|
1742
|
+
0,
|
|
1743
|
+
[_Da, _LFT],
|
|
1744
|
+
[() => DatabaseResource$, () => LFTagsList]
|
|
1745
|
+
];
|
|
1746
|
+
var TaggedTable$ = [3, n0, _TTa,
|
|
1747
|
+
0,
|
|
1748
|
+
[_T, _LFTOD, _LFTOT, _LFTOC],
|
|
1749
|
+
[() => TableResource$, () => LFTagsList, () => LFTagsList, () => ColumnLFTagsList]
|
|
1750
|
+
];
|
|
1751
|
+
var TemporaryCredentials$ = [3, n0, _TC,
|
|
1752
|
+
0,
|
|
1753
|
+
[_AKI, _SAK, _ST, _E],
|
|
1754
|
+
[0, 0, 0, 4]
|
|
1755
|
+
];
|
|
1756
|
+
var TransactionDescription$ = [3, n0, _TDr,
|
|
1757
|
+
0,
|
|
1758
|
+
[_TI, _TS, _TST, _TET],
|
|
1759
|
+
[0, 0, 4, 4]
|
|
1760
|
+
];
|
|
1761
|
+
var UpdateDataCellsFilterRequest$ = [3, n0, _UDCFR,
|
|
1762
|
+
0,
|
|
1763
|
+
[_TD],
|
|
1764
|
+
[() => DataCellsFilter$], 1
|
|
1765
|
+
];
|
|
1766
|
+
var UpdateDataCellsFilterResponse$ = [3, n0, _UDCFRp,
|
|
1767
|
+
0,
|
|
1768
|
+
[],
|
|
1769
|
+
[]
|
|
1770
|
+
];
|
|
1771
|
+
var UpdateLakeFormationIdentityCenterConfigurationRequest$ = [3, n0, _ULFICCR,
|
|
1772
|
+
0,
|
|
1773
|
+
[_CI, _SR, _SI, _AS, _EF],
|
|
1774
|
+
[0, () => DataLakePrincipalList, () => ServiceIntegrationList, 0, () => ExternalFilteringConfiguration$]
|
|
1775
|
+
];
|
|
1776
|
+
var UpdateLakeFormationIdentityCenterConfigurationResponse$ = [3, n0, _ULFICCRp,
|
|
1777
|
+
0,
|
|
1778
|
+
[],
|
|
1779
|
+
[]
|
|
1780
|
+
];
|
|
1781
|
+
var UpdateLFTagExpressionRequest$ = [3, n0, _ULFTER,
|
|
1782
|
+
0,
|
|
1783
|
+
[_N, _Ex, _D, _CI],
|
|
1784
|
+
[0, () => Expression, 0, 0], 2
|
|
1785
|
+
];
|
|
1786
|
+
var UpdateLFTagExpressionResponse$ = [3, n0, _ULFTERp,
|
|
1787
|
+
0,
|
|
1788
|
+
[],
|
|
1789
|
+
[]
|
|
1790
|
+
];
|
|
1791
|
+
var UpdateLFTagRequest$ = [3, n0, _ULFTR,
|
|
1792
|
+
0,
|
|
1793
|
+
[_TK, _CI, _TVTD, _TVTA],
|
|
1794
|
+
[0, 0, 64 | 0, 64 | 0], 1
|
|
1795
|
+
];
|
|
1796
|
+
var UpdateLFTagResponse$ = [3, n0, _ULFTRp,
|
|
1797
|
+
0,
|
|
1798
|
+
[],
|
|
1799
|
+
[]
|
|
1800
|
+
];
|
|
1801
|
+
var UpdateResourceRequest$ = [3, n0, _URR,
|
|
1802
|
+
0,
|
|
1803
|
+
[_RA, _RAe, _WF, _HAE, _EROA],
|
|
1804
|
+
[0, 0, 2, 2, 0], 2
|
|
1805
|
+
];
|
|
1806
|
+
var UpdateResourceResponse$ = [3, n0, _URRp,
|
|
1807
|
+
0,
|
|
1808
|
+
[],
|
|
1809
|
+
[]
|
|
1810
|
+
];
|
|
1811
|
+
var UpdateTableObjectsRequest$ = [3, n0, _UTOR,
|
|
1812
|
+
0,
|
|
1813
|
+
[_DN, _TN, _WO, _CI, _TI],
|
|
1814
|
+
[0, 0, () => WriteOperationList, 0, 0], 3
|
|
1815
|
+
];
|
|
1816
|
+
var UpdateTableObjectsResponse$ = [3, n0, _UTORp,
|
|
1817
|
+
0,
|
|
1818
|
+
[],
|
|
1819
|
+
[]
|
|
1820
|
+
];
|
|
1821
|
+
var UpdateTableStorageOptimizerRequest$ = [3, n0, _UTSOR,
|
|
1822
|
+
0,
|
|
1823
|
+
[_DN, _TN, _SOC, _CI],
|
|
1824
|
+
[0, 0, [2, n0, _SOCM, 0, 0, 128 | 0], 0], 3
|
|
1825
|
+
];
|
|
1826
|
+
var UpdateTableStorageOptimizerResponse$ = [3, n0, _UTSORp,
|
|
1827
|
+
0,
|
|
1828
|
+
[_Re],
|
|
1829
|
+
[0]
|
|
1830
|
+
];
|
|
1831
|
+
var VirtualObject$ = [3, n0, _VO,
|
|
1832
|
+
0,
|
|
1833
|
+
[_U, _ET],
|
|
1834
|
+
[0, 0], 1
|
|
1835
|
+
];
|
|
1836
|
+
var WorkUnitRange$ = [3, n0, _WURo,
|
|
1837
|
+
0,
|
|
1838
|
+
[_WUIM, _WUIMo, _WUT],
|
|
1839
|
+
[1, 1, 0], 3
|
|
1840
|
+
];
|
|
1841
|
+
var WriteOperation$ = [3, n0, _WOr,
|
|
1842
|
+
0,
|
|
1843
|
+
[_AO, _DO],
|
|
1844
|
+
[() => AddObjectInput$, () => DeleteObjectInput$]
|
|
1845
|
+
];
|
|
1846
|
+
var BatchPermissionsFailureList = [1, n0, _BPFL,
|
|
1847
|
+
0, () => BatchPermissionsFailureEntry$
|
|
1848
|
+
];
|
|
1849
|
+
var BatchPermissionsRequestEntryList = [1, n0, _BPREL,
|
|
1850
|
+
0, () => BatchPermissionsRequestEntry$
|
|
1851
|
+
];
|
|
1852
|
+
var ColumnLFTagsList = [1, n0, _CLFTL,
|
|
1853
|
+
0, () => ColumnLFTag$
|
|
1854
|
+
];
|
|
1855
|
+
var DatabaseLFTagsList = [1, n0, _DLFTL,
|
|
1856
|
+
0, () => TaggedDatabase$
|
|
1857
|
+
];
|
|
1858
|
+
var DataCellsFilterList = [1, n0, _DCFL,
|
|
1859
|
+
0, () => DataCellsFilter$
|
|
1860
|
+
];
|
|
1861
|
+
var DataLakePrincipalList = [1, n0, _DLPL,
|
|
1862
|
+
0, () => DataLakePrincipal$
|
|
1863
|
+
];
|
|
1864
|
+
var Expression = [1, n0, _Ex,
|
|
1865
|
+
0, () => LFTag$
|
|
1866
|
+
];
|
|
1867
|
+
var FilterConditionList = [1, n0, _FCL,
|
|
1868
|
+
0, () => FilterCondition$
|
|
1869
|
+
];
|
|
1870
|
+
var LakeFormationOptInsInfoList = [1, n0, _LFOIIL,
|
|
1871
|
+
0, () => LakeFormationOptInsInfo$
|
|
1872
|
+
];
|
|
1873
|
+
var LFTagErrors = [1, n0, _LFTEagr,
|
|
1874
|
+
0, () => LFTagError$
|
|
1875
|
+
];
|
|
1876
|
+
var LFTagExpressionsList = [1, n0, _LFTEL,
|
|
1877
|
+
0, () => LFTagExpression$
|
|
1878
|
+
];
|
|
1879
|
+
var LFTagsList = [1, n0, _LFTL,
|
|
1880
|
+
0, () => LFTagPair$
|
|
1881
|
+
];
|
|
1882
|
+
var PartitionedTableObjectsList = [1, n0, _PTOL,
|
|
1883
|
+
0, () => PartitionObjects$
|
|
1884
|
+
];
|
|
1885
|
+
var PrincipalPermissionsList = [1, n0, _PPL,
|
|
1886
|
+
0, () => PrincipalPermissions$
|
|
1887
|
+
];
|
|
1888
|
+
var PrincipalResourcePermissionsList = [1, n0, _PRPL,
|
|
1889
|
+
0, () => PrincipalResourcePermissions$
|
|
1890
|
+
];
|
|
1891
|
+
var RedshiftServiceIntegrations = [1, n0, _RSI,
|
|
1892
|
+
0, () => RedshiftScopeUnion$
|
|
1893
|
+
];
|
|
1894
|
+
var ResourceInfoList = [1, n0, _RIL,
|
|
1895
|
+
0, () => ResourceInfo$
|
|
1896
|
+
];
|
|
1897
|
+
var ServiceIntegrationList = [1, n0, _SIL,
|
|
1898
|
+
0, () => ServiceIntegrationUnion$
|
|
1899
|
+
];
|
|
1900
|
+
var StorageOptimizerList = [1, n0, _SOL,
|
|
1901
|
+
0, () => StorageOptimizer$
|
|
1902
|
+
];
|
|
1903
|
+
var TableLFTagsList = [1, n0, _TLFTL,
|
|
1904
|
+
0, () => TaggedTable$
|
|
1905
|
+
];
|
|
1906
|
+
var TableObjectList = [1, n0, _TOL,
|
|
1907
|
+
0, () => TableObject$
|
|
1908
|
+
];
|
|
1909
|
+
var TransactionDescriptionList = [1, n0, _TDL,
|
|
1910
|
+
0, () => TransactionDescription$
|
|
1911
|
+
];
|
|
1912
|
+
var VirtualObjectList = [1, n0, _VOL,
|
|
1913
|
+
0, () => VirtualObject$
|
|
1914
|
+
];
|
|
1915
|
+
var WorkUnitRangeList = [1, n0, _WURL,
|
|
1916
|
+
0, () => WorkUnitRange$
|
|
1917
|
+
];
|
|
1918
|
+
var WriteOperationList = [1, n0, _WOL,
|
|
1919
|
+
0, () => WriteOperation$
|
|
1920
|
+
];
|
|
1921
|
+
var RedshiftScopeUnion$ = [4, n0, _RSU,
|
|
1922
|
+
0,
|
|
1923
|
+
[_RC],
|
|
1924
|
+
[() => RedshiftConnect$]
|
|
1925
|
+
];
|
|
1926
|
+
var ServiceIntegrationUnion$ = [4, n0, _SIU,
|
|
1927
|
+
0,
|
|
1928
|
+
[_Red],
|
|
1929
|
+
[() => RedshiftServiceIntegrations]
|
|
1930
|
+
];
|
|
1931
|
+
var AddLFTagsToResource$ = [9, n0, _ALFTTR,
|
|
1932
|
+
{ [_h]: ["POST", "/AddLFTagsToResource", 200] }, () => AddLFTagsToResourceRequest$, () => AddLFTagsToResourceResponse$
|
|
1933
|
+
];
|
|
1934
|
+
var AssumeDecoratedRoleWithSAML$ = [9, n0, _ADRWSAML,
|
|
1935
|
+
{ [_h]: ["POST", "/AssumeDecoratedRoleWithSAML", 200] }, () => AssumeDecoratedRoleWithSAMLRequest$, () => AssumeDecoratedRoleWithSAMLResponse$
|
|
1936
|
+
];
|
|
1937
|
+
var BatchGrantPermissions$ = [9, n0, _BGP,
|
|
1938
|
+
{ [_h]: ["POST", "/BatchGrantPermissions", 200] }, () => BatchGrantPermissionsRequest$, () => BatchGrantPermissionsResponse$
|
|
1939
|
+
];
|
|
1940
|
+
var BatchRevokePermissions$ = [9, n0, _BRP,
|
|
1941
|
+
{ [_h]: ["POST", "/BatchRevokePermissions", 200] }, () => BatchRevokePermissionsRequest$, () => BatchRevokePermissionsResponse$
|
|
1942
|
+
];
|
|
1943
|
+
var CancelTransaction$ = [9, n0, _CT,
|
|
1944
|
+
{ [_h]: ["POST", "/CancelTransaction", 200] }, () => CancelTransactionRequest$, () => CancelTransactionResponse$
|
|
1945
|
+
];
|
|
1946
|
+
var CommitTransaction$ = [9, n0, _CTo,
|
|
1947
|
+
{ [_h]: ["POST", "/CommitTransaction", 200] }, () => CommitTransactionRequest$, () => CommitTransactionResponse$
|
|
1948
|
+
];
|
|
1949
|
+
var CreateDataCellsFilter$ = [9, n0, _CDCF,
|
|
1950
|
+
{ [_h]: ["POST", "/CreateDataCellsFilter", 200] }, () => CreateDataCellsFilterRequest$, () => CreateDataCellsFilterResponse$
|
|
1951
|
+
];
|
|
1952
|
+
var CreateLakeFormationIdentityCenterConfiguration$ = [9, n0, _CLFICC,
|
|
1953
|
+
{ [_h]: ["POST", "/CreateLakeFormationIdentityCenterConfiguration", 200] }, () => CreateLakeFormationIdentityCenterConfigurationRequest$, () => CreateLakeFormationIdentityCenterConfigurationResponse$
|
|
1954
|
+
];
|
|
1955
|
+
var CreateLakeFormationOptIn$ = [9, n0, _CLFOI,
|
|
1956
|
+
{ [_h]: ["POST", "/CreateLakeFormationOptIn", 200] }, () => CreateLakeFormationOptInRequest$, () => CreateLakeFormationOptInResponse$
|
|
1957
|
+
];
|
|
1958
|
+
var CreateLFTag$ = [9, n0, _CLFTr,
|
|
1959
|
+
{ [_h]: ["POST", "/CreateLFTag", 200] }, () => CreateLFTagRequest$, () => CreateLFTagResponse$
|
|
1960
|
+
];
|
|
1961
|
+
var CreateLFTagExpression$ = [9, n0, _CLFTE,
|
|
1962
|
+
{ [_h]: ["POST", "/CreateLFTagExpression", 200] }, () => CreateLFTagExpressionRequest$, () => CreateLFTagExpressionResponse$
|
|
1963
|
+
];
|
|
1964
|
+
var DeleteDataCellsFilter$ = [9, n0, _DDCF,
|
|
1965
|
+
{ [_h]: ["POST", "/DeleteDataCellsFilter", 200] }, () => DeleteDataCellsFilterRequest$, () => DeleteDataCellsFilterResponse$
|
|
1966
|
+
];
|
|
1967
|
+
var DeleteLakeFormationIdentityCenterConfiguration$ = [9, n0, _DLFICC,
|
|
1968
|
+
{ [_h]: ["POST", "/DeleteLakeFormationIdentityCenterConfiguration", 200] }, () => DeleteLakeFormationIdentityCenterConfigurationRequest$, () => DeleteLakeFormationIdentityCenterConfigurationResponse$
|
|
1969
|
+
];
|
|
1970
|
+
var DeleteLakeFormationOptIn$ = [9, n0, _DLFOI,
|
|
1971
|
+
{ [_h]: ["POST", "/DeleteLakeFormationOptIn", 200] }, () => DeleteLakeFormationOptInRequest$, () => DeleteLakeFormationOptInResponse$
|
|
1972
|
+
];
|
|
1973
|
+
var DeleteLFTag$ = [9, n0, _DLFT,
|
|
1974
|
+
{ [_h]: ["POST", "/DeleteLFTag", 200] }, () => DeleteLFTagRequest$, () => DeleteLFTagResponse$
|
|
1975
|
+
];
|
|
1976
|
+
var DeleteLFTagExpression$ = [9, n0, _DLFTE,
|
|
1977
|
+
{ [_h]: ["POST", "/DeleteLFTagExpression", 200] }, () => DeleteLFTagExpressionRequest$, () => DeleteLFTagExpressionResponse$
|
|
1978
|
+
];
|
|
1979
|
+
var DeleteObjectsOnCancel$ = [9, n0, _DOOC,
|
|
1980
|
+
{ [_h]: ["POST", "/DeleteObjectsOnCancel", 200] }, () => DeleteObjectsOnCancelRequest$, () => DeleteObjectsOnCancelResponse$
|
|
1981
|
+
];
|
|
1982
|
+
var DeregisterResource$ = [9, n0, _DRe,
|
|
1983
|
+
{ [_h]: ["POST", "/DeregisterResource", 200] }, () => DeregisterResourceRequest$, () => DeregisterResourceResponse$
|
|
1984
|
+
];
|
|
1985
|
+
var DescribeLakeFormationIdentityCenterConfiguration$ = [9, n0, _DLFICCe,
|
|
1986
|
+
{ [_h]: ["POST", "/DescribeLakeFormationIdentityCenterConfiguration", 200] }, () => DescribeLakeFormationIdentityCenterConfigurationRequest$, () => DescribeLakeFormationIdentityCenterConfigurationResponse$
|
|
1987
|
+
];
|
|
1988
|
+
var DescribeResource$ = [9, n0, _DRes,
|
|
1989
|
+
{ [_h]: ["POST", "/DescribeResource", 200] }, () => DescribeResourceRequest$, () => DescribeResourceResponse$
|
|
1990
|
+
];
|
|
1991
|
+
var DescribeTransaction$ = [9, n0, _DT,
|
|
1992
|
+
{ [_h]: ["POST", "/DescribeTransaction", 200] }, () => DescribeTransactionRequest$, () => DescribeTransactionResponse$
|
|
1993
|
+
];
|
|
1994
|
+
var ExtendTransaction$ = [9, n0, _ETx,
|
|
1995
|
+
{ [_h]: ["POST", "/ExtendTransaction", 200] }, () => ExtendTransactionRequest$, () => ExtendTransactionResponse$
|
|
1996
|
+
];
|
|
1997
|
+
var GetDataCellsFilter$ = [9, n0, _GDCF,
|
|
1998
|
+
{ [_h]: ["POST", "/GetDataCellsFilter", 200] }, () => GetDataCellsFilterRequest$, () => GetDataCellsFilterResponse$
|
|
1999
|
+
];
|
|
2000
|
+
var GetDataLakePrincipal$ = [9, n0, _GDLP,
|
|
2001
|
+
{ [_h]: ["POST", "/GetDataLakePrincipal", 200] }, () => GetDataLakePrincipalRequest$, () => GetDataLakePrincipalResponse$
|
|
2002
|
+
];
|
|
2003
|
+
var GetDataLakeSettings$ = [9, n0, _GDLS,
|
|
2004
|
+
{ [_h]: ["POST", "/GetDataLakeSettings", 200] }, () => GetDataLakeSettingsRequest$, () => GetDataLakeSettingsResponse$
|
|
2005
|
+
];
|
|
2006
|
+
var GetEffectivePermissionsForPath$ = [9, n0, _GEPFP,
|
|
2007
|
+
{ [_h]: ["POST", "/GetEffectivePermissionsForPath", 200] }, () => GetEffectivePermissionsForPathRequest$, () => GetEffectivePermissionsForPathResponse$
|
|
2008
|
+
];
|
|
2009
|
+
var GetLFTag$ = [9, n0, _GLFT,
|
|
2010
|
+
{ [_h]: ["POST", "/GetLFTag", 200] }, () => GetLFTagRequest$, () => GetLFTagResponse$
|
|
2011
|
+
];
|
|
2012
|
+
var GetLFTagExpression$ = [9, n0, _GLFTE,
|
|
2013
|
+
{ [_h]: ["POST", "/GetLFTagExpression", 200] }, () => GetLFTagExpressionRequest$, () => GetLFTagExpressionResponse$
|
|
2014
|
+
];
|
|
2015
|
+
var GetQueryState$ = [9, n0, _GQS,
|
|
2016
|
+
{ [_en]: ["query-"], [_h]: ["POST", "/GetQueryState", 200] }, () => GetQueryStateRequest$, () => GetQueryStateResponse$
|
|
2017
|
+
];
|
|
2018
|
+
var GetQueryStatistics$ = [9, n0, _GQSe,
|
|
2019
|
+
{ [_en]: ["query-"], [_h]: ["POST", "/GetQueryStatistics", 200] }, () => GetQueryStatisticsRequest$, () => GetQueryStatisticsResponse$
|
|
2020
|
+
];
|
|
2021
|
+
var GetResourceLFTags$ = [9, n0, _GRLFT,
|
|
2022
|
+
{ [_h]: ["POST", "/GetResourceLFTags", 200] }, () => GetResourceLFTagsRequest$, () => GetResourceLFTagsResponse$
|
|
2023
|
+
];
|
|
2024
|
+
var GetTableObjects$ = [9, n0, _GTO,
|
|
2025
|
+
{ [_h]: ["POST", "/GetTableObjects", 200] }, () => GetTableObjectsRequest$, () => GetTableObjectsResponse$
|
|
2026
|
+
];
|
|
2027
|
+
var GetTemporaryDataLocationCredentials$ = [9, n0, _GTDLC,
|
|
2028
|
+
{ [_h]: ["POST", "/GetTemporaryDataLocationCredentials", 200] }, () => GetTemporaryDataLocationCredentialsRequest$, () => GetTemporaryDataLocationCredentialsResponse$
|
|
2029
|
+
];
|
|
2030
|
+
var GetTemporaryGluePartitionCredentials$ = [9, n0, _GTGPC,
|
|
2031
|
+
{ [_h]: ["POST", "/GetTemporaryGluePartitionCredentials", 200] }, () => GetTemporaryGluePartitionCredentialsRequest$, () => GetTemporaryGluePartitionCredentialsResponse$
|
|
2032
|
+
];
|
|
2033
|
+
var GetTemporaryGlueTableCredentials$ = [9, n0, _GTGTC,
|
|
2034
|
+
{ [_h]: ["POST", "/GetTemporaryGlueTableCredentials", 200] }, () => GetTemporaryGlueTableCredentialsRequest$, () => GetTemporaryGlueTableCredentialsResponse$
|
|
2035
|
+
];
|
|
2036
|
+
var GetWorkUnitResults$ = [9, n0, _GWURet,
|
|
2037
|
+
{ [_en]: ["data-"], [_h]: ["POST", "/GetWorkUnitResults", 200] }, () => GetWorkUnitResultsRequest$, () => GetWorkUnitResultsResponse$
|
|
2038
|
+
];
|
|
2039
|
+
var GetWorkUnits$ = [9, n0, _GWU,
|
|
2040
|
+
{ [_en]: ["query-"], [_h]: ["POST", "/GetWorkUnits", 200] }, () => GetWorkUnitsRequest$, () => GetWorkUnitsResponse$
|
|
2041
|
+
];
|
|
2042
|
+
var GrantPermissions$ = [9, n0, _GP,
|
|
2043
|
+
{ [_h]: ["POST", "/GrantPermissions", 200] }, () => GrantPermissionsRequest$, () => GrantPermissionsResponse$
|
|
2044
|
+
];
|
|
2045
|
+
var ListDataCellsFilter$ = [9, n0, _LDCF,
|
|
2046
|
+
{ [_h]: ["POST", "/ListDataCellsFilter", 200] }, () => ListDataCellsFilterRequest$, () => ListDataCellsFilterResponse$
|
|
2047
|
+
];
|
|
2048
|
+
var ListLakeFormationOptIns$ = [9, n0, _LLFOI,
|
|
2049
|
+
{ [_h]: ["POST", "/ListLakeFormationOptIns", 200] }, () => ListLakeFormationOptInsRequest$, () => ListLakeFormationOptInsResponse$
|
|
2050
|
+
];
|
|
2051
|
+
var ListLFTagExpressions$ = [9, n0, _LLFTE,
|
|
2052
|
+
{ [_h]: ["POST", "/ListLFTagExpressions", 200] }, () => ListLFTagExpressionsRequest$, () => ListLFTagExpressionsResponse$
|
|
2053
|
+
];
|
|
2054
|
+
var ListLFTags$ = [9, n0, _LLFT,
|
|
2055
|
+
{ [_h]: ["POST", "/ListLFTags", 200] }, () => ListLFTagsRequest$, () => ListLFTagsResponse$
|
|
2056
|
+
];
|
|
2057
|
+
var ListPermissions$ = [9, n0, _LP,
|
|
2058
|
+
{ [_h]: ["POST", "/ListPermissions", 200] }, () => ListPermissionsRequest$, () => ListPermissionsResponse$
|
|
2059
|
+
];
|
|
2060
|
+
var ListResources$ = [9, n0, _LR,
|
|
2061
|
+
{ [_h]: ["POST", "/ListResources", 200] }, () => ListResourcesRequest$, () => ListResourcesResponse$
|
|
2062
|
+
];
|
|
2063
|
+
var ListTableStorageOptimizers$ = [9, n0, _LTSO,
|
|
2064
|
+
{ [_h]: ["POST", "/ListTableStorageOptimizers", 200] }, () => ListTableStorageOptimizersRequest$, () => ListTableStorageOptimizersResponse$
|
|
2065
|
+
];
|
|
2066
|
+
var ListTransactions$ = [9, n0, _LT,
|
|
2067
|
+
{ [_h]: ["POST", "/ListTransactions", 200] }, () => ListTransactionsRequest$, () => ListTransactionsResponse$
|
|
2068
|
+
];
|
|
2069
|
+
var PutDataLakeSettings$ = [9, n0, _PDLS,
|
|
2070
|
+
{ [_h]: ["POST", "/PutDataLakeSettings", 200] }, () => PutDataLakeSettingsRequest$, () => PutDataLakeSettingsResponse$
|
|
2071
|
+
];
|
|
2072
|
+
var RegisterResource$ = [9, n0, _RR,
|
|
2073
|
+
{ [_h]: ["POST", "/RegisterResource", 200] }, () => RegisterResourceRequest$, () => RegisterResourceResponse$
|
|
2074
|
+
];
|
|
2075
|
+
var RemoveLFTagsFromResource$ = [9, n0, _RLFTFR,
|
|
2076
|
+
{ [_h]: ["POST", "/RemoveLFTagsFromResource", 200] }, () => RemoveLFTagsFromResourceRequest$, () => RemoveLFTagsFromResourceResponse$
|
|
2077
|
+
];
|
|
2078
|
+
var RevokePermissions$ = [9, n0, _RP,
|
|
2079
|
+
{ [_h]: ["POST", "/RevokePermissions", 200] }, () => RevokePermissionsRequest$, () => RevokePermissionsResponse$
|
|
2080
|
+
];
|
|
2081
|
+
var SearchDatabasesByLFTags$ = [9, n0, _SDBLFT,
|
|
2082
|
+
{ [_h]: ["POST", "/SearchDatabasesByLFTags", 200] }, () => SearchDatabasesByLFTagsRequest$, () => SearchDatabasesByLFTagsResponse$
|
|
2083
|
+
];
|
|
2084
|
+
var SearchTablesByLFTags$ = [9, n0, _STBLFT,
|
|
2085
|
+
{ [_h]: ["POST", "/SearchTablesByLFTags", 200] }, () => SearchTablesByLFTagsRequest$, () => SearchTablesByLFTagsResponse$
|
|
2086
|
+
];
|
|
2087
|
+
var StartQueryPlanning$ = [9, n0, _SQP,
|
|
2088
|
+
{ [_en]: ["query-"], [_h]: ["POST", "/StartQueryPlanning", 200] }, () => StartQueryPlanningRequest$, () => StartQueryPlanningResponse$
|
|
2089
|
+
];
|
|
2090
|
+
var StartTransaction$ = [9, n0, _STt,
|
|
2091
|
+
{ [_h]: ["POST", "/StartTransaction", 200] }, () => StartTransactionRequest$, () => StartTransactionResponse$
|
|
2092
|
+
];
|
|
2093
|
+
var UpdateDataCellsFilter$ = [9, n0, _UDCF,
|
|
2094
|
+
{ [_h]: ["POST", "/UpdateDataCellsFilter", 200] }, () => UpdateDataCellsFilterRequest$, () => UpdateDataCellsFilterResponse$
|
|
2095
|
+
];
|
|
2096
|
+
var UpdateLakeFormationIdentityCenterConfiguration$ = [9, n0, _ULFICC,
|
|
2097
|
+
{ [_h]: ["POST", "/UpdateLakeFormationIdentityCenterConfiguration", 200] }, () => UpdateLakeFormationIdentityCenterConfigurationRequest$, () => UpdateLakeFormationIdentityCenterConfigurationResponse$
|
|
2098
|
+
];
|
|
2099
|
+
var UpdateLFTag$ = [9, n0, _ULFT,
|
|
2100
|
+
{ [_h]: ["POST", "/UpdateLFTag", 200] }, () => UpdateLFTagRequest$, () => UpdateLFTagResponse$
|
|
2101
|
+
];
|
|
2102
|
+
var UpdateLFTagExpression$ = [9, n0, _ULFTE,
|
|
2103
|
+
{ [_h]: ["POST", "/UpdateLFTagExpression", 200] }, () => UpdateLFTagExpressionRequest$, () => UpdateLFTagExpressionResponse$
|
|
2104
|
+
];
|
|
2105
|
+
var UpdateResource$ = [9, n0, _UR,
|
|
2106
|
+
{ [_h]: ["POST", "/UpdateResource", 200] }, () => UpdateResourceRequest$, () => UpdateResourceResponse$
|
|
2107
|
+
];
|
|
2108
|
+
var UpdateTableObjects$ = [9, n0, _UTO,
|
|
2109
|
+
{ [_h]: ["POST", "/UpdateTableObjects", 200] }, () => UpdateTableObjectsRequest$, () => UpdateTableObjectsResponse$
|
|
2110
|
+
];
|
|
2111
|
+
var UpdateTableStorageOptimizer$ = [9, n0, _UTSO,
|
|
2112
|
+
{ [_h]: ["POST", "/UpdateTableStorageOptimizer", 200] }, () => UpdateTableStorageOptimizerRequest$, () => UpdateTableStorageOptimizerResponse$
|
|
2113
|
+
];
|
|
2114
|
+
|
|
2115
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2116
|
+
return {
|
|
2117
|
+
apiVersion: "2017-03-31",
|
|
2118
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2119
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2120
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2121
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2122
|
+
extensions: config?.extensions ?? [],
|
|
2123
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultLakeFormationHttpAuthSchemeProvider,
|
|
2124
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2125
|
+
{
|
|
2126
|
+
schemeId: "aws.auth#sigv4",
|
|
2127
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2128
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2129
|
+
},
|
|
2130
|
+
],
|
|
2131
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2132
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
2133
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2134
|
+
defaultNamespace: "com.amazonaws.lakeformation",
|
|
2135
|
+
errorTypeRegistries,
|
|
2136
|
+
version: "2017-03-31",
|
|
2137
|
+
serviceTarget: "AWSLakeFormation",
|
|
2138
|
+
},
|
|
2139
|
+
sdkStreamMixin: config?.sdkStreamMixin ?? sdkStreamMixin,
|
|
2140
|
+
serviceId: config?.serviceId ?? "LakeFormation",
|
|
2141
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2142
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2143
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2144
|
+
};
|
|
2145
|
+
};
|
|
2146
|
+
|
|
2147
|
+
const getRuntimeConfig = (config) => {
|
|
2148
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2149
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2150
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2151
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2152
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2153
|
+
const loaderConfig = {
|
|
2154
|
+
profile: config?.profile,
|
|
2155
|
+
logger: clientSharedValues.logger,
|
|
2156
|
+
};
|
|
2157
|
+
return {
|
|
2158
|
+
...clientSharedValues,
|
|
2159
|
+
...config,
|
|
2160
|
+
runtime: "node",
|
|
2161
|
+
defaultsMode,
|
|
2162
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2163
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2164
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2165
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2166
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2167
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2168
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2169
|
+
retryMode: config?.retryMode ??
|
|
2170
|
+
loadConfig({
|
|
2171
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2172
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2173
|
+
}, config),
|
|
2174
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2175
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2176
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2177
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2178
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2179
|
+
};
|
|
2180
|
+
};
|
|
2181
|
+
|
|
34
2182
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2183
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2184
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1063,86 +3211,364 @@ const TransactionType = {
|
|
|
1063
3211
|
READ_ONLY: "READ_ONLY",
|
|
1064
3212
|
};
|
|
1065
3213
|
|
|
3214
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
3215
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
3216
|
+
exports.AddLFTagsToResource$ = AddLFTagsToResource$;
|
|
1066
3217
|
exports.AddLFTagsToResourceCommand = AddLFTagsToResourceCommand;
|
|
3218
|
+
exports.AddLFTagsToResourceRequest$ = AddLFTagsToResourceRequest$;
|
|
3219
|
+
exports.AddLFTagsToResourceResponse$ = AddLFTagsToResourceResponse$;
|
|
3220
|
+
exports.AddObjectInput$ = AddObjectInput$;
|
|
3221
|
+
exports.AllRowsWildcard$ = AllRowsWildcard$;
|
|
3222
|
+
exports.AlreadyExistsException = AlreadyExistsException;
|
|
3223
|
+
exports.AlreadyExistsException$ = AlreadyExistsException$;
|
|
1067
3224
|
exports.ApplicationStatus = ApplicationStatus;
|
|
3225
|
+
exports.AssumeDecoratedRoleWithSAML$ = AssumeDecoratedRoleWithSAML$;
|
|
1068
3226
|
exports.AssumeDecoratedRoleWithSAMLCommand = AssumeDecoratedRoleWithSAMLCommand;
|
|
3227
|
+
exports.AssumeDecoratedRoleWithSAMLRequest$ = AssumeDecoratedRoleWithSAMLRequest$;
|
|
3228
|
+
exports.AssumeDecoratedRoleWithSAMLResponse$ = AssumeDecoratedRoleWithSAMLResponse$;
|
|
3229
|
+
exports.AuditContext$ = AuditContext$;
|
|
3230
|
+
exports.BatchGrantPermissions$ = BatchGrantPermissions$;
|
|
1069
3231
|
exports.BatchGrantPermissionsCommand = BatchGrantPermissionsCommand;
|
|
3232
|
+
exports.BatchGrantPermissionsRequest$ = BatchGrantPermissionsRequest$;
|
|
3233
|
+
exports.BatchGrantPermissionsResponse$ = BatchGrantPermissionsResponse$;
|
|
3234
|
+
exports.BatchPermissionsFailureEntry$ = BatchPermissionsFailureEntry$;
|
|
3235
|
+
exports.BatchPermissionsRequestEntry$ = BatchPermissionsRequestEntry$;
|
|
3236
|
+
exports.BatchRevokePermissions$ = BatchRevokePermissions$;
|
|
1070
3237
|
exports.BatchRevokePermissionsCommand = BatchRevokePermissionsCommand;
|
|
3238
|
+
exports.BatchRevokePermissionsRequest$ = BatchRevokePermissionsRequest$;
|
|
3239
|
+
exports.BatchRevokePermissionsResponse$ = BatchRevokePermissionsResponse$;
|
|
3240
|
+
exports.CancelTransaction$ = CancelTransaction$;
|
|
1071
3241
|
exports.CancelTransactionCommand = CancelTransactionCommand;
|
|
3242
|
+
exports.CancelTransactionRequest$ = CancelTransactionRequest$;
|
|
3243
|
+
exports.CancelTransactionResponse$ = CancelTransactionResponse$;
|
|
3244
|
+
exports.CatalogResource$ = CatalogResource$;
|
|
3245
|
+
exports.ColumnLFTag$ = ColumnLFTag$;
|
|
3246
|
+
exports.ColumnWildcard$ = ColumnWildcard$;
|
|
3247
|
+
exports.CommitTransaction$ = CommitTransaction$;
|
|
1072
3248
|
exports.CommitTransactionCommand = CommitTransactionCommand;
|
|
3249
|
+
exports.CommitTransactionRequest$ = CommitTransactionRequest$;
|
|
3250
|
+
exports.CommitTransactionResponse$ = CommitTransactionResponse$;
|
|
1073
3251
|
exports.ComparisonOperator = ComparisonOperator;
|
|
3252
|
+
exports.ConcurrentModificationException = ConcurrentModificationException;
|
|
3253
|
+
exports.ConcurrentModificationException$ = ConcurrentModificationException$;
|
|
3254
|
+
exports.Condition$ = Condition$;
|
|
3255
|
+
exports.ConflictException = ConflictException;
|
|
3256
|
+
exports.ConflictException$ = ConflictException$;
|
|
3257
|
+
exports.CreateDataCellsFilter$ = CreateDataCellsFilter$;
|
|
1074
3258
|
exports.CreateDataCellsFilterCommand = CreateDataCellsFilterCommand;
|
|
3259
|
+
exports.CreateDataCellsFilterRequest$ = CreateDataCellsFilterRequest$;
|
|
3260
|
+
exports.CreateDataCellsFilterResponse$ = CreateDataCellsFilterResponse$;
|
|
3261
|
+
exports.CreateLFTag$ = CreateLFTag$;
|
|
1075
3262
|
exports.CreateLFTagCommand = CreateLFTagCommand;
|
|
3263
|
+
exports.CreateLFTagExpression$ = CreateLFTagExpression$;
|
|
1076
3264
|
exports.CreateLFTagExpressionCommand = CreateLFTagExpressionCommand;
|
|
3265
|
+
exports.CreateLFTagExpressionRequest$ = CreateLFTagExpressionRequest$;
|
|
3266
|
+
exports.CreateLFTagExpressionResponse$ = CreateLFTagExpressionResponse$;
|
|
3267
|
+
exports.CreateLFTagRequest$ = CreateLFTagRequest$;
|
|
3268
|
+
exports.CreateLFTagResponse$ = CreateLFTagResponse$;
|
|
3269
|
+
exports.CreateLakeFormationIdentityCenterConfiguration$ = CreateLakeFormationIdentityCenterConfiguration$;
|
|
1077
3270
|
exports.CreateLakeFormationIdentityCenterConfigurationCommand = CreateLakeFormationIdentityCenterConfigurationCommand;
|
|
3271
|
+
exports.CreateLakeFormationIdentityCenterConfigurationRequest$ = CreateLakeFormationIdentityCenterConfigurationRequest$;
|
|
3272
|
+
exports.CreateLakeFormationIdentityCenterConfigurationResponse$ = CreateLakeFormationIdentityCenterConfigurationResponse$;
|
|
3273
|
+
exports.CreateLakeFormationOptIn$ = CreateLakeFormationOptIn$;
|
|
1078
3274
|
exports.CreateLakeFormationOptInCommand = CreateLakeFormationOptInCommand;
|
|
3275
|
+
exports.CreateLakeFormationOptInRequest$ = CreateLakeFormationOptInRequest$;
|
|
3276
|
+
exports.CreateLakeFormationOptInResponse$ = CreateLakeFormationOptInResponse$;
|
|
1079
3277
|
exports.CredentialsScope = CredentialsScope;
|
|
3278
|
+
exports.DataCellsFilter$ = DataCellsFilter$;
|
|
3279
|
+
exports.DataCellsFilterResource$ = DataCellsFilterResource$;
|
|
3280
|
+
exports.DataLakePrincipal$ = DataLakePrincipal$;
|
|
1080
3281
|
exports.DataLakeResourceType = DataLakeResourceType;
|
|
3282
|
+
exports.DataLakeSettings$ = DataLakeSettings$;
|
|
3283
|
+
exports.DataLocationResource$ = DataLocationResource$;
|
|
3284
|
+
exports.DatabaseResource$ = DatabaseResource$;
|
|
3285
|
+
exports.DeleteDataCellsFilter$ = DeleteDataCellsFilter$;
|
|
1081
3286
|
exports.DeleteDataCellsFilterCommand = DeleteDataCellsFilterCommand;
|
|
3287
|
+
exports.DeleteDataCellsFilterRequest$ = DeleteDataCellsFilterRequest$;
|
|
3288
|
+
exports.DeleteDataCellsFilterResponse$ = DeleteDataCellsFilterResponse$;
|
|
3289
|
+
exports.DeleteLFTag$ = DeleteLFTag$;
|
|
1082
3290
|
exports.DeleteLFTagCommand = DeleteLFTagCommand;
|
|
3291
|
+
exports.DeleteLFTagExpression$ = DeleteLFTagExpression$;
|
|
1083
3292
|
exports.DeleteLFTagExpressionCommand = DeleteLFTagExpressionCommand;
|
|
3293
|
+
exports.DeleteLFTagExpressionRequest$ = DeleteLFTagExpressionRequest$;
|
|
3294
|
+
exports.DeleteLFTagExpressionResponse$ = DeleteLFTagExpressionResponse$;
|
|
3295
|
+
exports.DeleteLFTagRequest$ = DeleteLFTagRequest$;
|
|
3296
|
+
exports.DeleteLFTagResponse$ = DeleteLFTagResponse$;
|
|
3297
|
+
exports.DeleteLakeFormationIdentityCenterConfiguration$ = DeleteLakeFormationIdentityCenterConfiguration$;
|
|
1084
3298
|
exports.DeleteLakeFormationIdentityCenterConfigurationCommand = DeleteLakeFormationIdentityCenterConfigurationCommand;
|
|
3299
|
+
exports.DeleteLakeFormationIdentityCenterConfigurationRequest$ = DeleteLakeFormationIdentityCenterConfigurationRequest$;
|
|
3300
|
+
exports.DeleteLakeFormationIdentityCenterConfigurationResponse$ = DeleteLakeFormationIdentityCenterConfigurationResponse$;
|
|
3301
|
+
exports.DeleteLakeFormationOptIn$ = DeleteLakeFormationOptIn$;
|
|
1085
3302
|
exports.DeleteLakeFormationOptInCommand = DeleteLakeFormationOptInCommand;
|
|
3303
|
+
exports.DeleteLakeFormationOptInRequest$ = DeleteLakeFormationOptInRequest$;
|
|
3304
|
+
exports.DeleteLakeFormationOptInResponse$ = DeleteLakeFormationOptInResponse$;
|
|
3305
|
+
exports.DeleteObjectInput$ = DeleteObjectInput$;
|
|
3306
|
+
exports.DeleteObjectsOnCancel$ = DeleteObjectsOnCancel$;
|
|
1086
3307
|
exports.DeleteObjectsOnCancelCommand = DeleteObjectsOnCancelCommand;
|
|
3308
|
+
exports.DeleteObjectsOnCancelRequest$ = DeleteObjectsOnCancelRequest$;
|
|
3309
|
+
exports.DeleteObjectsOnCancelResponse$ = DeleteObjectsOnCancelResponse$;
|
|
3310
|
+
exports.DeregisterResource$ = DeregisterResource$;
|
|
1087
3311
|
exports.DeregisterResourceCommand = DeregisterResourceCommand;
|
|
3312
|
+
exports.DeregisterResourceRequest$ = DeregisterResourceRequest$;
|
|
3313
|
+
exports.DeregisterResourceResponse$ = DeregisterResourceResponse$;
|
|
3314
|
+
exports.DescribeLakeFormationIdentityCenterConfiguration$ = DescribeLakeFormationIdentityCenterConfiguration$;
|
|
1088
3315
|
exports.DescribeLakeFormationIdentityCenterConfigurationCommand = DescribeLakeFormationIdentityCenterConfigurationCommand;
|
|
3316
|
+
exports.DescribeLakeFormationIdentityCenterConfigurationRequest$ = DescribeLakeFormationIdentityCenterConfigurationRequest$;
|
|
3317
|
+
exports.DescribeLakeFormationIdentityCenterConfigurationResponse$ = DescribeLakeFormationIdentityCenterConfigurationResponse$;
|
|
3318
|
+
exports.DescribeResource$ = DescribeResource$;
|
|
1089
3319
|
exports.DescribeResourceCommand = DescribeResourceCommand;
|
|
3320
|
+
exports.DescribeResourceRequest$ = DescribeResourceRequest$;
|
|
3321
|
+
exports.DescribeResourceResponse$ = DescribeResourceResponse$;
|
|
3322
|
+
exports.DescribeTransaction$ = DescribeTransaction$;
|
|
1090
3323
|
exports.DescribeTransactionCommand = DescribeTransactionCommand;
|
|
3324
|
+
exports.DescribeTransactionRequest$ = DescribeTransactionRequest$;
|
|
3325
|
+
exports.DescribeTransactionResponse$ = DescribeTransactionResponse$;
|
|
3326
|
+
exports.DetailsMap$ = DetailsMap$;
|
|
1091
3327
|
exports.EnableStatus = EnableStatus;
|
|
3328
|
+
exports.EntityNotFoundException = EntityNotFoundException;
|
|
3329
|
+
exports.EntityNotFoundException$ = EntityNotFoundException$;
|
|
3330
|
+
exports.ErrorDetail$ = ErrorDetail$;
|
|
3331
|
+
exports.ExecutionStatistics$ = ExecutionStatistics$;
|
|
3332
|
+
exports.ExpiredException = ExpiredException;
|
|
3333
|
+
exports.ExpiredException$ = ExpiredException$;
|
|
3334
|
+
exports.ExtendTransaction$ = ExtendTransaction$;
|
|
1092
3335
|
exports.ExtendTransactionCommand = ExtendTransactionCommand;
|
|
3336
|
+
exports.ExtendTransactionRequest$ = ExtendTransactionRequest$;
|
|
3337
|
+
exports.ExtendTransactionResponse$ = ExtendTransactionResponse$;
|
|
3338
|
+
exports.ExternalFilteringConfiguration$ = ExternalFilteringConfiguration$;
|
|
1093
3339
|
exports.FieldNameString = FieldNameString;
|
|
3340
|
+
exports.FilterCondition$ = FilterCondition$;
|
|
3341
|
+
exports.GetDataCellsFilter$ = GetDataCellsFilter$;
|
|
1094
3342
|
exports.GetDataCellsFilterCommand = GetDataCellsFilterCommand;
|
|
3343
|
+
exports.GetDataCellsFilterRequest$ = GetDataCellsFilterRequest$;
|
|
3344
|
+
exports.GetDataCellsFilterResponse$ = GetDataCellsFilterResponse$;
|
|
3345
|
+
exports.GetDataLakePrincipal$ = GetDataLakePrincipal$;
|
|
1095
3346
|
exports.GetDataLakePrincipalCommand = GetDataLakePrincipalCommand;
|
|
3347
|
+
exports.GetDataLakePrincipalRequest$ = GetDataLakePrincipalRequest$;
|
|
3348
|
+
exports.GetDataLakePrincipalResponse$ = GetDataLakePrincipalResponse$;
|
|
3349
|
+
exports.GetDataLakeSettings$ = GetDataLakeSettings$;
|
|
1096
3350
|
exports.GetDataLakeSettingsCommand = GetDataLakeSettingsCommand;
|
|
3351
|
+
exports.GetDataLakeSettingsRequest$ = GetDataLakeSettingsRequest$;
|
|
3352
|
+
exports.GetDataLakeSettingsResponse$ = GetDataLakeSettingsResponse$;
|
|
3353
|
+
exports.GetEffectivePermissionsForPath$ = GetEffectivePermissionsForPath$;
|
|
1097
3354
|
exports.GetEffectivePermissionsForPathCommand = GetEffectivePermissionsForPathCommand;
|
|
3355
|
+
exports.GetEffectivePermissionsForPathRequest$ = GetEffectivePermissionsForPathRequest$;
|
|
3356
|
+
exports.GetEffectivePermissionsForPathResponse$ = GetEffectivePermissionsForPathResponse$;
|
|
3357
|
+
exports.GetLFTag$ = GetLFTag$;
|
|
1098
3358
|
exports.GetLFTagCommand = GetLFTagCommand;
|
|
3359
|
+
exports.GetLFTagExpression$ = GetLFTagExpression$;
|
|
1099
3360
|
exports.GetLFTagExpressionCommand = GetLFTagExpressionCommand;
|
|
3361
|
+
exports.GetLFTagExpressionRequest$ = GetLFTagExpressionRequest$;
|
|
3362
|
+
exports.GetLFTagExpressionResponse$ = GetLFTagExpressionResponse$;
|
|
3363
|
+
exports.GetLFTagRequest$ = GetLFTagRequest$;
|
|
3364
|
+
exports.GetLFTagResponse$ = GetLFTagResponse$;
|
|
3365
|
+
exports.GetQueryState$ = GetQueryState$;
|
|
1100
3366
|
exports.GetQueryStateCommand = GetQueryStateCommand;
|
|
3367
|
+
exports.GetQueryStateRequest$ = GetQueryStateRequest$;
|
|
3368
|
+
exports.GetQueryStateResponse$ = GetQueryStateResponse$;
|
|
3369
|
+
exports.GetQueryStatistics$ = GetQueryStatistics$;
|
|
1101
3370
|
exports.GetQueryStatisticsCommand = GetQueryStatisticsCommand;
|
|
3371
|
+
exports.GetQueryStatisticsRequest$ = GetQueryStatisticsRequest$;
|
|
3372
|
+
exports.GetQueryStatisticsResponse$ = GetQueryStatisticsResponse$;
|
|
3373
|
+
exports.GetResourceLFTags$ = GetResourceLFTags$;
|
|
1102
3374
|
exports.GetResourceLFTagsCommand = GetResourceLFTagsCommand;
|
|
3375
|
+
exports.GetResourceLFTagsRequest$ = GetResourceLFTagsRequest$;
|
|
3376
|
+
exports.GetResourceLFTagsResponse$ = GetResourceLFTagsResponse$;
|
|
3377
|
+
exports.GetTableObjects$ = GetTableObjects$;
|
|
1103
3378
|
exports.GetTableObjectsCommand = GetTableObjectsCommand;
|
|
3379
|
+
exports.GetTableObjectsRequest$ = GetTableObjectsRequest$;
|
|
3380
|
+
exports.GetTableObjectsResponse$ = GetTableObjectsResponse$;
|
|
3381
|
+
exports.GetTemporaryDataLocationCredentials$ = GetTemporaryDataLocationCredentials$;
|
|
1104
3382
|
exports.GetTemporaryDataLocationCredentialsCommand = GetTemporaryDataLocationCredentialsCommand;
|
|
3383
|
+
exports.GetTemporaryDataLocationCredentialsRequest$ = GetTemporaryDataLocationCredentialsRequest$;
|
|
3384
|
+
exports.GetTemporaryDataLocationCredentialsResponse$ = GetTemporaryDataLocationCredentialsResponse$;
|
|
3385
|
+
exports.GetTemporaryGluePartitionCredentials$ = GetTemporaryGluePartitionCredentials$;
|
|
1105
3386
|
exports.GetTemporaryGluePartitionCredentialsCommand = GetTemporaryGluePartitionCredentialsCommand;
|
|
3387
|
+
exports.GetTemporaryGluePartitionCredentialsRequest$ = GetTemporaryGluePartitionCredentialsRequest$;
|
|
3388
|
+
exports.GetTemporaryGluePartitionCredentialsResponse$ = GetTemporaryGluePartitionCredentialsResponse$;
|
|
3389
|
+
exports.GetTemporaryGlueTableCredentials$ = GetTemporaryGlueTableCredentials$;
|
|
1106
3390
|
exports.GetTemporaryGlueTableCredentialsCommand = GetTemporaryGlueTableCredentialsCommand;
|
|
3391
|
+
exports.GetTemporaryGlueTableCredentialsRequest$ = GetTemporaryGlueTableCredentialsRequest$;
|
|
3392
|
+
exports.GetTemporaryGlueTableCredentialsResponse$ = GetTemporaryGlueTableCredentialsResponse$;
|
|
3393
|
+
exports.GetWorkUnitResults$ = GetWorkUnitResults$;
|
|
1107
3394
|
exports.GetWorkUnitResultsCommand = GetWorkUnitResultsCommand;
|
|
3395
|
+
exports.GetWorkUnitResultsRequest$ = GetWorkUnitResultsRequest$;
|
|
3396
|
+
exports.GetWorkUnitResultsResponse$ = GetWorkUnitResultsResponse$;
|
|
3397
|
+
exports.GetWorkUnits$ = GetWorkUnits$;
|
|
1108
3398
|
exports.GetWorkUnitsCommand = GetWorkUnitsCommand;
|
|
3399
|
+
exports.GetWorkUnitsRequest$ = GetWorkUnitsRequest$;
|
|
3400
|
+
exports.GetWorkUnitsResponse$ = GetWorkUnitsResponse$;
|
|
3401
|
+
exports.GlueEncryptionException = GlueEncryptionException;
|
|
3402
|
+
exports.GlueEncryptionException$ = GlueEncryptionException$;
|
|
3403
|
+
exports.GrantPermissions$ = GrantPermissions$;
|
|
1109
3404
|
exports.GrantPermissionsCommand = GrantPermissionsCommand;
|
|
3405
|
+
exports.GrantPermissionsRequest$ = GrantPermissionsRequest$;
|
|
3406
|
+
exports.GrantPermissionsResponse$ = GrantPermissionsResponse$;
|
|
3407
|
+
exports.InternalServiceException = InternalServiceException;
|
|
3408
|
+
exports.InternalServiceException$ = InternalServiceException$;
|
|
3409
|
+
exports.InvalidInputException = InvalidInputException;
|
|
3410
|
+
exports.InvalidInputException$ = InvalidInputException$;
|
|
3411
|
+
exports.LFTag$ = LFTag$;
|
|
3412
|
+
exports.LFTagError$ = LFTagError$;
|
|
3413
|
+
exports.LFTagExpression$ = LFTagExpression$;
|
|
3414
|
+
exports.LFTagExpressionResource$ = LFTagExpressionResource$;
|
|
3415
|
+
exports.LFTagKeyResource$ = LFTagKeyResource$;
|
|
3416
|
+
exports.LFTagPair$ = LFTagPair$;
|
|
3417
|
+
exports.LFTagPolicyResource$ = LFTagPolicyResource$;
|
|
1110
3418
|
exports.LakeFormation = LakeFormation;
|
|
1111
3419
|
exports.LakeFormationClient = LakeFormationClient;
|
|
3420
|
+
exports.LakeFormationOptInsInfo$ = LakeFormationOptInsInfo$;
|
|
3421
|
+
exports.LakeFormationServiceException = LakeFormationServiceException;
|
|
3422
|
+
exports.LakeFormationServiceException$ = LakeFormationServiceException$;
|
|
3423
|
+
exports.ListDataCellsFilter$ = ListDataCellsFilter$;
|
|
1112
3424
|
exports.ListDataCellsFilterCommand = ListDataCellsFilterCommand;
|
|
3425
|
+
exports.ListDataCellsFilterRequest$ = ListDataCellsFilterRequest$;
|
|
3426
|
+
exports.ListDataCellsFilterResponse$ = ListDataCellsFilterResponse$;
|
|
3427
|
+
exports.ListLFTagExpressions$ = ListLFTagExpressions$;
|
|
1113
3428
|
exports.ListLFTagExpressionsCommand = ListLFTagExpressionsCommand;
|
|
3429
|
+
exports.ListLFTagExpressionsRequest$ = ListLFTagExpressionsRequest$;
|
|
3430
|
+
exports.ListLFTagExpressionsResponse$ = ListLFTagExpressionsResponse$;
|
|
3431
|
+
exports.ListLFTags$ = ListLFTags$;
|
|
1114
3432
|
exports.ListLFTagsCommand = ListLFTagsCommand;
|
|
3433
|
+
exports.ListLFTagsRequest$ = ListLFTagsRequest$;
|
|
3434
|
+
exports.ListLFTagsResponse$ = ListLFTagsResponse$;
|
|
3435
|
+
exports.ListLakeFormationOptIns$ = ListLakeFormationOptIns$;
|
|
1115
3436
|
exports.ListLakeFormationOptInsCommand = ListLakeFormationOptInsCommand;
|
|
3437
|
+
exports.ListLakeFormationOptInsRequest$ = ListLakeFormationOptInsRequest$;
|
|
3438
|
+
exports.ListLakeFormationOptInsResponse$ = ListLakeFormationOptInsResponse$;
|
|
3439
|
+
exports.ListPermissions$ = ListPermissions$;
|
|
1116
3440
|
exports.ListPermissionsCommand = ListPermissionsCommand;
|
|
3441
|
+
exports.ListPermissionsRequest$ = ListPermissionsRequest$;
|
|
3442
|
+
exports.ListPermissionsResponse$ = ListPermissionsResponse$;
|
|
3443
|
+
exports.ListResources$ = ListResources$;
|
|
1117
3444
|
exports.ListResourcesCommand = ListResourcesCommand;
|
|
3445
|
+
exports.ListResourcesRequest$ = ListResourcesRequest$;
|
|
3446
|
+
exports.ListResourcesResponse$ = ListResourcesResponse$;
|
|
3447
|
+
exports.ListTableStorageOptimizers$ = ListTableStorageOptimizers$;
|
|
1118
3448
|
exports.ListTableStorageOptimizersCommand = ListTableStorageOptimizersCommand;
|
|
3449
|
+
exports.ListTableStorageOptimizersRequest$ = ListTableStorageOptimizersRequest$;
|
|
3450
|
+
exports.ListTableStorageOptimizersResponse$ = ListTableStorageOptimizersResponse$;
|
|
3451
|
+
exports.ListTransactions$ = ListTransactions$;
|
|
1119
3452
|
exports.ListTransactionsCommand = ListTransactionsCommand;
|
|
3453
|
+
exports.ListTransactionsRequest$ = ListTransactionsRequest$;
|
|
3454
|
+
exports.ListTransactionsResponse$ = ListTransactionsResponse$;
|
|
3455
|
+
exports.OperationTimeoutException = OperationTimeoutException;
|
|
3456
|
+
exports.OperationTimeoutException$ = OperationTimeoutException$;
|
|
1120
3457
|
exports.OptimizerType = OptimizerType;
|
|
3458
|
+
exports.PartitionObjects$ = PartitionObjects$;
|
|
3459
|
+
exports.PartitionValueList$ = PartitionValueList$;
|
|
1121
3460
|
exports.Permission = Permission;
|
|
1122
3461
|
exports.PermissionType = PermissionType;
|
|
3462
|
+
exports.PermissionTypeMismatchException = PermissionTypeMismatchException;
|
|
3463
|
+
exports.PermissionTypeMismatchException$ = PermissionTypeMismatchException$;
|
|
3464
|
+
exports.PlanningStatistics$ = PlanningStatistics$;
|
|
3465
|
+
exports.PrincipalPermissions$ = PrincipalPermissions$;
|
|
3466
|
+
exports.PrincipalResourcePermissions$ = PrincipalResourcePermissions$;
|
|
3467
|
+
exports.PutDataLakeSettings$ = PutDataLakeSettings$;
|
|
1123
3468
|
exports.PutDataLakeSettingsCommand = PutDataLakeSettingsCommand;
|
|
3469
|
+
exports.PutDataLakeSettingsRequest$ = PutDataLakeSettingsRequest$;
|
|
3470
|
+
exports.PutDataLakeSettingsResponse$ = PutDataLakeSettingsResponse$;
|
|
3471
|
+
exports.QueryPlanningContext$ = QueryPlanningContext$;
|
|
3472
|
+
exports.QuerySessionContext$ = QuerySessionContext$;
|
|
1124
3473
|
exports.QueryStateString = QueryStateString;
|
|
3474
|
+
exports.RedshiftConnect$ = RedshiftConnect$;
|
|
3475
|
+
exports.RedshiftScopeUnion$ = RedshiftScopeUnion$;
|
|
3476
|
+
exports.RegisterResource$ = RegisterResource$;
|
|
1125
3477
|
exports.RegisterResourceCommand = RegisterResourceCommand;
|
|
3478
|
+
exports.RegisterResourceRequest$ = RegisterResourceRequest$;
|
|
3479
|
+
exports.RegisterResourceResponse$ = RegisterResourceResponse$;
|
|
3480
|
+
exports.RemoveLFTagsFromResource$ = RemoveLFTagsFromResource$;
|
|
1126
3481
|
exports.RemoveLFTagsFromResourceCommand = RemoveLFTagsFromResourceCommand;
|
|
3482
|
+
exports.RemoveLFTagsFromResourceRequest$ = RemoveLFTagsFromResourceRequest$;
|
|
3483
|
+
exports.RemoveLFTagsFromResourceResponse$ = RemoveLFTagsFromResourceResponse$;
|
|
3484
|
+
exports.Resource$ = Resource$;
|
|
3485
|
+
exports.ResourceInfo$ = ResourceInfo$;
|
|
3486
|
+
exports.ResourceNotReadyException = ResourceNotReadyException;
|
|
3487
|
+
exports.ResourceNotReadyException$ = ResourceNotReadyException$;
|
|
3488
|
+
exports.ResourceNumberLimitExceededException = ResourceNumberLimitExceededException;
|
|
3489
|
+
exports.ResourceNumberLimitExceededException$ = ResourceNumberLimitExceededException$;
|
|
1127
3490
|
exports.ResourceShareType = ResourceShareType;
|
|
1128
3491
|
exports.ResourceType = ResourceType;
|
|
3492
|
+
exports.RevokePermissions$ = RevokePermissions$;
|
|
1129
3493
|
exports.RevokePermissionsCommand = RevokePermissionsCommand;
|
|
3494
|
+
exports.RevokePermissionsRequest$ = RevokePermissionsRequest$;
|
|
3495
|
+
exports.RevokePermissionsResponse$ = RevokePermissionsResponse$;
|
|
3496
|
+
exports.RowFilter$ = RowFilter$;
|
|
3497
|
+
exports.SearchDatabasesByLFTags$ = SearchDatabasesByLFTags$;
|
|
1130
3498
|
exports.SearchDatabasesByLFTagsCommand = SearchDatabasesByLFTagsCommand;
|
|
3499
|
+
exports.SearchDatabasesByLFTagsRequest$ = SearchDatabasesByLFTagsRequest$;
|
|
3500
|
+
exports.SearchDatabasesByLFTagsResponse$ = SearchDatabasesByLFTagsResponse$;
|
|
3501
|
+
exports.SearchTablesByLFTags$ = SearchTablesByLFTags$;
|
|
1131
3502
|
exports.SearchTablesByLFTagsCommand = SearchTablesByLFTagsCommand;
|
|
3503
|
+
exports.SearchTablesByLFTagsRequest$ = SearchTablesByLFTagsRequest$;
|
|
3504
|
+
exports.SearchTablesByLFTagsResponse$ = SearchTablesByLFTagsResponse$;
|
|
1132
3505
|
exports.ServiceAuthorization = ServiceAuthorization;
|
|
3506
|
+
exports.ServiceIntegrationUnion$ = ServiceIntegrationUnion$;
|
|
3507
|
+
exports.StartQueryPlanning$ = StartQueryPlanning$;
|
|
1133
3508
|
exports.StartQueryPlanningCommand = StartQueryPlanningCommand;
|
|
3509
|
+
exports.StartQueryPlanningRequest$ = StartQueryPlanningRequest$;
|
|
3510
|
+
exports.StartQueryPlanningResponse$ = StartQueryPlanningResponse$;
|
|
3511
|
+
exports.StartTransaction$ = StartTransaction$;
|
|
1134
3512
|
exports.StartTransactionCommand = StartTransactionCommand;
|
|
3513
|
+
exports.StartTransactionRequest$ = StartTransactionRequest$;
|
|
3514
|
+
exports.StartTransactionResponse$ = StartTransactionResponse$;
|
|
3515
|
+
exports.StatisticsNotReadyYetException = StatisticsNotReadyYetException;
|
|
3516
|
+
exports.StatisticsNotReadyYetException$ = StatisticsNotReadyYetException$;
|
|
3517
|
+
exports.StorageOptimizer$ = StorageOptimizer$;
|
|
3518
|
+
exports.TableObject$ = TableObject$;
|
|
3519
|
+
exports.TableResource$ = TableResource$;
|
|
3520
|
+
exports.TableWildcard$ = TableWildcard$;
|
|
3521
|
+
exports.TableWithColumnsResource$ = TableWithColumnsResource$;
|
|
3522
|
+
exports.TaggedDatabase$ = TaggedDatabase$;
|
|
3523
|
+
exports.TaggedTable$ = TaggedTable$;
|
|
3524
|
+
exports.TemporaryCredentials$ = TemporaryCredentials$;
|
|
3525
|
+
exports.ThrottledException = ThrottledException;
|
|
3526
|
+
exports.ThrottledException$ = ThrottledException$;
|
|
3527
|
+
exports.TransactionCanceledException = TransactionCanceledException;
|
|
3528
|
+
exports.TransactionCanceledException$ = TransactionCanceledException$;
|
|
3529
|
+
exports.TransactionCommitInProgressException = TransactionCommitInProgressException;
|
|
3530
|
+
exports.TransactionCommitInProgressException$ = TransactionCommitInProgressException$;
|
|
3531
|
+
exports.TransactionCommittedException = TransactionCommittedException;
|
|
3532
|
+
exports.TransactionCommittedException$ = TransactionCommittedException$;
|
|
3533
|
+
exports.TransactionDescription$ = TransactionDescription$;
|
|
1135
3534
|
exports.TransactionStatus = TransactionStatus;
|
|
1136
3535
|
exports.TransactionStatusFilter = TransactionStatusFilter;
|
|
1137
3536
|
exports.TransactionType = TransactionType;
|
|
3537
|
+
exports.UpdateDataCellsFilter$ = UpdateDataCellsFilter$;
|
|
1138
3538
|
exports.UpdateDataCellsFilterCommand = UpdateDataCellsFilterCommand;
|
|
3539
|
+
exports.UpdateDataCellsFilterRequest$ = UpdateDataCellsFilterRequest$;
|
|
3540
|
+
exports.UpdateDataCellsFilterResponse$ = UpdateDataCellsFilterResponse$;
|
|
3541
|
+
exports.UpdateLFTag$ = UpdateLFTag$;
|
|
1139
3542
|
exports.UpdateLFTagCommand = UpdateLFTagCommand;
|
|
3543
|
+
exports.UpdateLFTagExpression$ = UpdateLFTagExpression$;
|
|
1140
3544
|
exports.UpdateLFTagExpressionCommand = UpdateLFTagExpressionCommand;
|
|
3545
|
+
exports.UpdateLFTagExpressionRequest$ = UpdateLFTagExpressionRequest$;
|
|
3546
|
+
exports.UpdateLFTagExpressionResponse$ = UpdateLFTagExpressionResponse$;
|
|
3547
|
+
exports.UpdateLFTagRequest$ = UpdateLFTagRequest$;
|
|
3548
|
+
exports.UpdateLFTagResponse$ = UpdateLFTagResponse$;
|
|
3549
|
+
exports.UpdateLakeFormationIdentityCenterConfiguration$ = UpdateLakeFormationIdentityCenterConfiguration$;
|
|
1141
3550
|
exports.UpdateLakeFormationIdentityCenterConfigurationCommand = UpdateLakeFormationIdentityCenterConfigurationCommand;
|
|
3551
|
+
exports.UpdateLakeFormationIdentityCenterConfigurationRequest$ = UpdateLakeFormationIdentityCenterConfigurationRequest$;
|
|
3552
|
+
exports.UpdateLakeFormationIdentityCenterConfigurationResponse$ = UpdateLakeFormationIdentityCenterConfigurationResponse$;
|
|
3553
|
+
exports.UpdateResource$ = UpdateResource$;
|
|
1142
3554
|
exports.UpdateResourceCommand = UpdateResourceCommand;
|
|
3555
|
+
exports.UpdateResourceRequest$ = UpdateResourceRequest$;
|
|
3556
|
+
exports.UpdateResourceResponse$ = UpdateResourceResponse$;
|
|
3557
|
+
exports.UpdateTableObjects$ = UpdateTableObjects$;
|
|
1143
3558
|
exports.UpdateTableObjectsCommand = UpdateTableObjectsCommand;
|
|
3559
|
+
exports.UpdateTableObjectsRequest$ = UpdateTableObjectsRequest$;
|
|
3560
|
+
exports.UpdateTableObjectsResponse$ = UpdateTableObjectsResponse$;
|
|
3561
|
+
exports.UpdateTableStorageOptimizer$ = UpdateTableStorageOptimizer$;
|
|
1144
3562
|
exports.UpdateTableStorageOptimizerCommand = UpdateTableStorageOptimizerCommand;
|
|
3563
|
+
exports.UpdateTableStorageOptimizerRequest$ = UpdateTableStorageOptimizerRequest$;
|
|
3564
|
+
exports.UpdateTableStorageOptimizerResponse$ = UpdateTableStorageOptimizerResponse$;
|
|
1145
3565
|
exports.VerificationStatus = VerificationStatus;
|
|
3566
|
+
exports.VirtualObject$ = VirtualObject$;
|
|
3567
|
+
exports.WorkUnitRange$ = WorkUnitRange$;
|
|
3568
|
+
exports.WorkUnitsNotReadyYetException = WorkUnitsNotReadyYetException;
|
|
3569
|
+
exports.WorkUnitsNotReadyYetException$ = WorkUnitsNotReadyYetException$;
|
|
3570
|
+
exports.WriteOperation$ = WriteOperation$;
|
|
3571
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1146
3572
|
exports.paginateGetEffectivePermissionsForPath = paginateGetEffectivePermissionsForPath;
|
|
1147
3573
|
exports.paginateGetTableObjects = paginateGetTableObjects;
|
|
1148
3574
|
exports.paginateGetWorkUnits = paginateGetWorkUnits;
|