@aws-sdk/client-athena 3.1074.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 +2466 -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/AthenaServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -91
- 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 -38
- package/dist-cjs/schemas/schemas_0.js +0 -2126
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, toBase64, fromBase64, Hash, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
|
|
17
|
+
const defaultAthenaHttpAuthSchemeParametersProvider = 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: "athena",
|
|
30
|
+
region: authParameters.region,
|
|
31
|
+
},
|
|
32
|
+
propertiesExtractor: (config, context) => ({
|
|
33
|
+
signingProperties: {
|
|
34
|
+
config,
|
|
35
|
+
context,
|
|
36
|
+
},
|
|
37
|
+
}),
|
|
38
|
+
};
|
|
39
|
+
}
|
|
40
|
+
const defaultAthenaHttpAuthSchemeProvider = (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,2127 @@ 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://athena-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
92
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
93
|
+
["https://athena-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
94
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
95
|
+
["https://athena.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
96
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
97
|
+
["https://athena.{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 AthenaServiceException extends ServiceException {
|
|
133
|
+
constructor(options) {
|
|
134
|
+
super(options);
|
|
135
|
+
Object.setPrototypeOf(this, AthenaServiceException.prototype);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
class InternalServerException extends AthenaServiceException {
|
|
140
|
+
name = "InternalServerException";
|
|
141
|
+
$fault = "server";
|
|
142
|
+
Message;
|
|
143
|
+
constructor(opts) {
|
|
144
|
+
super({
|
|
145
|
+
name: "InternalServerException",
|
|
146
|
+
$fault: "server",
|
|
147
|
+
...opts,
|
|
148
|
+
});
|
|
149
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
150
|
+
this.Message = opts.Message;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
class InvalidRequestException extends AthenaServiceException {
|
|
154
|
+
name = "InvalidRequestException";
|
|
155
|
+
$fault = "client";
|
|
156
|
+
AthenaErrorCode;
|
|
157
|
+
Message;
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "InvalidRequestException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, InvalidRequestException.prototype);
|
|
165
|
+
this.AthenaErrorCode = opts.AthenaErrorCode;
|
|
166
|
+
this.Message = opts.Message;
|
|
167
|
+
}
|
|
168
|
+
}
|
|
169
|
+
class TooManyRequestsException extends AthenaServiceException {
|
|
170
|
+
name = "TooManyRequestsException";
|
|
171
|
+
$fault = "client";
|
|
172
|
+
Message;
|
|
173
|
+
Reason;
|
|
174
|
+
constructor(opts) {
|
|
175
|
+
super({
|
|
176
|
+
name: "TooManyRequestsException",
|
|
177
|
+
$fault: "client",
|
|
178
|
+
...opts,
|
|
179
|
+
});
|
|
180
|
+
Object.setPrototypeOf(this, TooManyRequestsException.prototype);
|
|
181
|
+
this.Message = opts.Message;
|
|
182
|
+
this.Reason = opts.Reason;
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
class ResourceNotFoundException extends AthenaServiceException {
|
|
186
|
+
name = "ResourceNotFoundException";
|
|
187
|
+
$fault = "client";
|
|
188
|
+
Message;
|
|
189
|
+
ResourceName;
|
|
190
|
+
constructor(opts) {
|
|
191
|
+
super({
|
|
192
|
+
name: "ResourceNotFoundException",
|
|
193
|
+
$fault: "client",
|
|
194
|
+
...opts,
|
|
195
|
+
});
|
|
196
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
197
|
+
this.Message = opts.Message;
|
|
198
|
+
this.ResourceName = opts.ResourceName;
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class MetadataException extends AthenaServiceException {
|
|
202
|
+
name = "MetadataException";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
Message;
|
|
205
|
+
constructor(opts) {
|
|
206
|
+
super({
|
|
207
|
+
name: "MetadataException",
|
|
208
|
+
$fault: "client",
|
|
209
|
+
...opts,
|
|
210
|
+
});
|
|
211
|
+
Object.setPrototypeOf(this, MetadataException.prototype);
|
|
212
|
+
this.Message = opts.Message;
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class SessionAlreadyExistsException extends AthenaServiceException {
|
|
216
|
+
name = "SessionAlreadyExistsException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
Message;
|
|
219
|
+
constructor(opts) {
|
|
220
|
+
super({
|
|
221
|
+
name: "SessionAlreadyExistsException",
|
|
222
|
+
$fault: "client",
|
|
223
|
+
...opts,
|
|
224
|
+
});
|
|
225
|
+
Object.setPrototypeOf(this, SessionAlreadyExistsException.prototype);
|
|
226
|
+
this.Message = opts.Message;
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
const _AC = "AclConfiguration";
|
|
231
|
+
const _ACd = "AdditionalConfigs";
|
|
232
|
+
const _ACdd = "AdditionalConfiguration";
|
|
233
|
+
const _AD = "AllocatedDpus";
|
|
234
|
+
const _ADPUS = "ApplicationDPUSizes";
|
|
235
|
+
const _ADPUSL = "ApplicationDPUSizesList";
|
|
236
|
+
const _AE = "AthenaError";
|
|
237
|
+
const _AEC = "AthenaErrorCode";
|
|
238
|
+
const _ARI = "ApplicationRuntimeId";
|
|
239
|
+
const _AT = "AuthToken";
|
|
240
|
+
const _ATET = "AuthTokenExpirationTime";
|
|
241
|
+
const _ATu = "AuthenticationType";
|
|
242
|
+
const _BGNQ = "BatchGetNamedQuery";
|
|
243
|
+
const _BGNQI = "BatchGetNamedQueryInput";
|
|
244
|
+
const _BGNQO = "BatchGetNamedQueryOutput";
|
|
245
|
+
const _BGPS = "BatchGetPreparedStatement";
|
|
246
|
+
const _BGPSI = "BatchGetPreparedStatementInput";
|
|
247
|
+
const _BGPSO = "BatchGetPreparedStatementOutput";
|
|
248
|
+
const _BGQE = "BatchGetQueryExecution";
|
|
249
|
+
const _BGQEI = "BatchGetQueryExecutionInput";
|
|
250
|
+
const _BGQEO = "BatchGetQueryExecutionOutput";
|
|
251
|
+
const _BSCPQ = "BytesScannedCutoffPerQuery";
|
|
252
|
+
const _C = "Classification";
|
|
253
|
+
const _CA = "CapacityAllocation";
|
|
254
|
+
const _CAC = "CapacityAssignmentConfiguration";
|
|
255
|
+
const _CAL = "CapacityAssignmentsList";
|
|
256
|
+
const _CAa = "CapacityAssignment";
|
|
257
|
+
const _CAap = "CapacityAssignments";
|
|
258
|
+
const _CB = "CodeBlock";
|
|
259
|
+
const _CC = "CalculationConfiguration";
|
|
260
|
+
const _CCEC = "CustomerContentEncryptionConfiguration";
|
|
261
|
+
const _CCR = "CancelCapacityReservation";
|
|
262
|
+
const _CCRI = "CancelCapacityReservationInput";
|
|
263
|
+
const _CCRIr = "CreateCapacityReservationInput";
|
|
264
|
+
const _CCRO = "CancelCapacityReservationOutput";
|
|
265
|
+
const _CCROr = "CreateCapacityReservationOutput";
|
|
266
|
+
const _CCRr = "CreateCapacityReservation";
|
|
267
|
+
const _CDC = "CreateDataCatalog";
|
|
268
|
+
const _CDCI = "CreateDataCatalogInput";
|
|
269
|
+
const _CDCO = "CreateDataCatalogOutput";
|
|
270
|
+
const _CDS = "CoordinatorDpuSize";
|
|
271
|
+
const _CDT = "CompletionDateTime";
|
|
272
|
+
const _CEI = "CalculationExecutionId";
|
|
273
|
+
const _CI = "ColumnInfo";
|
|
274
|
+
const _CIL = "ColumnInfoList";
|
|
275
|
+
const _CL = "CalculationsList";
|
|
276
|
+
const _CLl = "ClassificationList";
|
|
277
|
+
const _CLo = "ColumnList";
|
|
278
|
+
const _CN = "CatalogName";
|
|
279
|
+
const _CNI = "CreateNotebookInput";
|
|
280
|
+
const _CNO = "CreateNotebookOutput";
|
|
281
|
+
const _CNQ = "CreateNamedQuery";
|
|
282
|
+
const _CNQI = "CreateNamedQueryInput";
|
|
283
|
+
const _CNQO = "CreateNamedQueryOutput";
|
|
284
|
+
const _CNr = "CreateNotebook";
|
|
285
|
+
const _CPNU = "CreatePresignedNotebookUrl";
|
|
286
|
+
const _CPNUR = "CreatePresignedNotebookUrlRequest";
|
|
287
|
+
const _CPNURr = "CreatePresignedNotebookUrlResponse";
|
|
288
|
+
const _CPS = "CreatePreparedStatement";
|
|
289
|
+
const _CPSI = "CreatePreparedStatementInput";
|
|
290
|
+
const _CPSO = "CreatePreparedStatementOutput";
|
|
291
|
+
const _CR = "CalculationResult";
|
|
292
|
+
const _CRL = "CapacityReservationsList";
|
|
293
|
+
const _CRN = "CapacityReservationName";
|
|
294
|
+
const _CRT = "ClientRequestToken";
|
|
295
|
+
const _CRa = "CapacityReservation";
|
|
296
|
+
const _CRap = "CapacityReservations";
|
|
297
|
+
const _CS = "CalculationStatistics";
|
|
298
|
+
const _CSa = "CalculationStatus";
|
|
299
|
+
const _CSal = "CalculationSummary";
|
|
300
|
+
const _CSas = "CaseSensitive";
|
|
301
|
+
const _CT = "CreationTime";
|
|
302
|
+
const _CTo = "ConnectionType";
|
|
303
|
+
const _CTr = "CreateTime";
|
|
304
|
+
const _CU = "ConfigurationUpdates";
|
|
305
|
+
const _CULP = "CreateUserLevelPrefix";
|
|
306
|
+
const _CWG = "CreateWorkGroup";
|
|
307
|
+
const _CWGI = "CreateWorkGroupInput";
|
|
308
|
+
const _CWGO = "CreateWorkGroupOutput";
|
|
309
|
+
const _CWGT = "CopyWorkGroupTags";
|
|
310
|
+
const _CWLC = "CloudWatchLoggingConfiguration";
|
|
311
|
+
const _Ca = "Calculations";
|
|
312
|
+
const _Cat = "Catalog";
|
|
313
|
+
const _Ch = "Children";
|
|
314
|
+
const _Cl = "Classifications";
|
|
315
|
+
const _Co = "Column";
|
|
316
|
+
const _Col = "Columns";
|
|
317
|
+
const _Com = "Comment";
|
|
318
|
+
const _Con = "Configuration";
|
|
319
|
+
const _D = "Description";
|
|
320
|
+
const _DC = "DataCatalog";
|
|
321
|
+
const _DCO = "DeleteCatalogOnly";
|
|
322
|
+
const _DCR = "DeleteCapacityReservation";
|
|
323
|
+
const _DCRI = "DeleteCapacityReservationInput";
|
|
324
|
+
const _DCRO = "DeleteCapacityReservationOutput";
|
|
325
|
+
const _DCS = "DataCatalogSummary";
|
|
326
|
+
const _DCSL = "DataCatalogSummaryList";
|
|
327
|
+
const _DCSa = "DataCatalogsSummary";
|
|
328
|
+
const _DCp = "DpuCount";
|
|
329
|
+
const _DDC = "DeleteDataCatalog";
|
|
330
|
+
const _DDCI = "DeleteDataCatalogInput";
|
|
331
|
+
const _DDCO = "DeleteDataCatalogOutput";
|
|
332
|
+
const _DEDS = "DefaultExecutorDpuSize";
|
|
333
|
+
const _DEIM = "DpuExecutionInMillis";
|
|
334
|
+
const _DL = "DatabaseList";
|
|
335
|
+
const _DML = "DataManifestLocation";
|
|
336
|
+
const _DN = "DatabaseName";
|
|
337
|
+
const _DNI = "DeleteNotebookInput";
|
|
338
|
+
const _DNO = "DeleteNotebookOutput";
|
|
339
|
+
const _DNQ = "DeleteNamedQuery";
|
|
340
|
+
const _DNQI = "DeleteNamedQueryInput";
|
|
341
|
+
const _DNQO = "DeleteNamedQueryOutput";
|
|
342
|
+
const _DNe = "DeleteNotebook";
|
|
343
|
+
const _DPS = "DeletePreparedStatement";
|
|
344
|
+
const _DPSI = "DeletePreparedStatementInput";
|
|
345
|
+
const _DPSO = "DeletePreparedStatementOutput";
|
|
346
|
+
const _DSIB = "DataScannedInBytes";
|
|
347
|
+
const _DWG = "DeleteWorkGroup";
|
|
348
|
+
const _DWGI = "DeleteWorkGroupInput";
|
|
349
|
+
const _DWGO = "DeleteWorkGroupOutput";
|
|
350
|
+
const _Da = "Database";
|
|
351
|
+
const _Dat = "Datum";
|
|
352
|
+
const _Data = "Data";
|
|
353
|
+
const _E = "Enabled";
|
|
354
|
+
const _EBO = "ExpectedBucketOwner";
|
|
355
|
+
const _EC = "ErrorCategory";
|
|
356
|
+
const _ECn = "EncryptionConfiguration";
|
|
357
|
+
const _ECng = "EngineConfiguration";
|
|
358
|
+
const _ECr = "ErrorCode";
|
|
359
|
+
const _EDT = "EndDateTime";
|
|
360
|
+
const _EETIM = "EngineExecutionTimeInMillis";
|
|
361
|
+
const _EEV = "EffectiveEngineVersion";
|
|
362
|
+
const _EI = "ExecutorId";
|
|
363
|
+
const _EIC = "EnableIdentityCenter";
|
|
364
|
+
const _EM = "ErrorMessage";
|
|
365
|
+
const _EMEC = "EnableMinimumEncryptionConfiguration";
|
|
366
|
+
const _EN = "ExportNotebook";
|
|
367
|
+
const _ENI = "ExportNotebookInput";
|
|
368
|
+
const _ENO = "ExportNotebookOutput";
|
|
369
|
+
const _EO = "EncryptionOption";
|
|
370
|
+
const _EP = "ExecutionParameters";
|
|
371
|
+
const _ER = "ExecutionRole";
|
|
372
|
+
const _ES = "ExecutorsSummary";
|
|
373
|
+
const _ESAG = "EnableS3AccessGrants";
|
|
374
|
+
const _ESF = "ExecutorStateFilter";
|
|
375
|
+
const _ESL = "ExecutorsSummaryList";
|
|
376
|
+
const _ESx = "ExecutorState";
|
|
377
|
+
const _ESxe = "ExecutorSize";
|
|
378
|
+
const _ET = "ErrorType";
|
|
379
|
+
const _ETx = "ExecutorType";
|
|
380
|
+
const _ETxe = "ExecutionTime";
|
|
381
|
+
const _EU = "EndpointUrl";
|
|
382
|
+
const _EV = "EngineVersion";
|
|
383
|
+
const _EVL = "EngineVersionsList";
|
|
384
|
+
const _EVn = "EngineVersions";
|
|
385
|
+
const _EWGC = "EnforceWorkGroupConfiguration";
|
|
386
|
+
const _Er = "Error";
|
|
387
|
+
const _Ex = "Expression";
|
|
388
|
+
const _F = "Filters";
|
|
389
|
+
const _FD = "FilterDefinition";
|
|
390
|
+
const _GCAC = "GetCapacityAssignmentConfiguration";
|
|
391
|
+
const _GCACI = "GetCapacityAssignmentConfigurationInput";
|
|
392
|
+
const _GCACO = "GetCapacityAssignmentConfigurationOutput";
|
|
393
|
+
const _GCE = "GetCalculationExecution";
|
|
394
|
+
const _GCEC = "GetCalculationExecutionCode";
|
|
395
|
+
const _GCECR = "GetCalculationExecutionCodeRequest";
|
|
396
|
+
const _GCECRe = "GetCalculationExecutionCodeResponse";
|
|
397
|
+
const _GCER = "GetCalculationExecutionRequest";
|
|
398
|
+
const _GCERe = "GetCalculationExecutionResponse";
|
|
399
|
+
const _GCES = "GetCalculationExecutionStatus";
|
|
400
|
+
const _GCESR = "GetCalculationExecutionStatusRequest";
|
|
401
|
+
const _GCESRe = "GetCalculationExecutionStatusResponse";
|
|
402
|
+
const _GCR = "GetCapacityReservation";
|
|
403
|
+
const _GCRI = "GetCapacityReservationInput";
|
|
404
|
+
const _GCRO = "GetCapacityReservationOutput";
|
|
405
|
+
const _GD = "GetDatabase";
|
|
406
|
+
const _GDC = "GetDataCatalog";
|
|
407
|
+
const _GDCI = "GetDataCatalogInput";
|
|
408
|
+
const _GDCO = "GetDataCatalogOutput";
|
|
409
|
+
const _GDI = "GetDatabaseInput";
|
|
410
|
+
const _GDO = "GetDatabaseOutput";
|
|
411
|
+
const _GNM = "GetNotebookMetadata";
|
|
412
|
+
const _GNMI = "GetNotebookMetadataInput";
|
|
413
|
+
const _GNMO = "GetNotebookMetadataOutput";
|
|
414
|
+
const _GNQ = "GetNamedQuery";
|
|
415
|
+
const _GNQI = "GetNamedQueryInput";
|
|
416
|
+
const _GNQO = "GetNamedQueryOutput";
|
|
417
|
+
const _GPS = "GetPreparedStatement";
|
|
418
|
+
const _GPSI = "GetPreparedStatementInput";
|
|
419
|
+
const _GPSO = "GetPreparedStatementOutput";
|
|
420
|
+
const _GQE = "GetQueryExecution";
|
|
421
|
+
const _GQEI = "GetQueryExecutionInput";
|
|
422
|
+
const _GQEO = "GetQueryExecutionOutput";
|
|
423
|
+
const _GQR = "GetQueryResults";
|
|
424
|
+
const _GQRI = "GetQueryResultsInput";
|
|
425
|
+
const _GQRO = "GetQueryResultsOutput";
|
|
426
|
+
const _GQRS = "GetQueryRuntimeStatistics";
|
|
427
|
+
const _GQRSI = "GetQueryRuntimeStatisticsInput";
|
|
428
|
+
const _GQRSO = "GetQueryRuntimeStatisticsOutput";
|
|
429
|
+
const _GRD = "GetResourceDashboard";
|
|
430
|
+
const _GRDR = "GetResourceDashboardRequest";
|
|
431
|
+
const _GRDRe = "GetResourceDashboardResponse";
|
|
432
|
+
const _GS = "GetSession";
|
|
433
|
+
const _GSE = "GetSessionEndpoint";
|
|
434
|
+
const _GSER = "GetSessionEndpointRequest";
|
|
435
|
+
const _GSERe = "GetSessionEndpointResponse";
|
|
436
|
+
const _GSR = "GetSessionRequest";
|
|
437
|
+
const _GSRe = "GetSessionResponse";
|
|
438
|
+
const _GSS = "GetSessionStatus";
|
|
439
|
+
const _GSSR = "GetSessionStatusRequest";
|
|
440
|
+
const _GSSRe = "GetSessionStatusResponse";
|
|
441
|
+
const _GTM = "GetTableMetadata";
|
|
442
|
+
const _GTMI = "GetTableMetadataInput";
|
|
443
|
+
const _GTMO = "GetTableMetadataOutput";
|
|
444
|
+
const _GWG = "GetWorkGroup";
|
|
445
|
+
const _GWGI = "GetWorkGroupInput";
|
|
446
|
+
const _GWGO = "GetWorkGroupOutput";
|
|
447
|
+
const _I = "Identifier";
|
|
448
|
+
const _IB = "InputBytes";
|
|
449
|
+
const _ICAA = "IdentityCenterApplicationArn";
|
|
450
|
+
const _ICC = "IdentityCenterConfiguration";
|
|
451
|
+
const _ICIA = "IdentityCenterInstanceArn";
|
|
452
|
+
const _IN = "ImportNotebook";
|
|
453
|
+
const _INI = "ImportNotebookInput";
|
|
454
|
+
const _INO = "ImportNotebookOutput";
|
|
455
|
+
const _IR = "InputRows";
|
|
456
|
+
const _IRE = "InvalidRequestException";
|
|
457
|
+
const _ISDT = "IdleSinceDateTime";
|
|
458
|
+
const _ISE = "InternalServerException";
|
|
459
|
+
const _ITS = "IdleTimeoutSeconds";
|
|
460
|
+
const _K = "Key";
|
|
461
|
+
const _KK = "KmsKey";
|
|
462
|
+
const _L = "Label";
|
|
463
|
+
const _LA = "LastAllocation";
|
|
464
|
+
const _LADPUS = "ListApplicationDPUSizes";
|
|
465
|
+
const _LADPUSI = "ListApplicationDPUSizesInput";
|
|
466
|
+
const _LADPUSO = "ListApplicationDPUSizesOutput";
|
|
467
|
+
const _LAT = "LastAccessTime";
|
|
468
|
+
const _LCE = "ListCalculationExecutions";
|
|
469
|
+
const _LCER = "ListCalculationExecutionsRequest";
|
|
470
|
+
const _LCERi = "ListCalculationExecutionsResponse";
|
|
471
|
+
const _LCR = "ListCapacityReservations";
|
|
472
|
+
const _LCRI = "ListCapacityReservationsInput";
|
|
473
|
+
const _LCRO = "ListCapacityReservationsOutput";
|
|
474
|
+
const _LD = "ListDatabases";
|
|
475
|
+
const _LDC = "ListDataCatalogs";
|
|
476
|
+
const _LDCI = "ListDataCatalogsInput";
|
|
477
|
+
const _LDCO = "ListDataCatalogsOutput";
|
|
478
|
+
const _LDI = "ListDatabasesInput";
|
|
479
|
+
const _LDO = "ListDatabasesOutput";
|
|
480
|
+
const _LE = "ListExecutors";
|
|
481
|
+
const _LER = "ListExecutorsRequest";
|
|
482
|
+
const _LERi = "ListExecutorsResponse";
|
|
483
|
+
const _LEV = "ListEngineVersions";
|
|
484
|
+
const _LEVI = "ListEngineVersionsInput";
|
|
485
|
+
const _LEVO = "ListEngineVersionsOutput";
|
|
486
|
+
const _LG = "LogGroup";
|
|
487
|
+
const _LL = "LogLocation";
|
|
488
|
+
const _LMDT = "LastModifiedDateTime";
|
|
489
|
+
const _LMT = "LastModifiedTime";
|
|
490
|
+
const _LNM = "ListNotebookMetadata";
|
|
491
|
+
const _LNMI = "ListNotebookMetadataInput";
|
|
492
|
+
const _LNMO = "ListNotebookMetadataOutput";
|
|
493
|
+
const _LNQ = "ListNamedQueries";
|
|
494
|
+
const _LNQI = "ListNamedQueriesInput";
|
|
495
|
+
const _LNQO = "ListNamedQueriesOutput";
|
|
496
|
+
const _LNS = "ListNotebookSessions";
|
|
497
|
+
const _LNSR = "ListNotebookSessionsRequest";
|
|
498
|
+
const _LNSRi = "ListNotebookSessionsResponse";
|
|
499
|
+
const _LPS = "ListPreparedStatements";
|
|
500
|
+
const _LPSI = "ListPreparedStatementsInput";
|
|
501
|
+
const _LPSO = "ListPreparedStatementsOutput";
|
|
502
|
+
const _LQE = "ListQueryExecutions";
|
|
503
|
+
const _LQEI = "ListQueryExecutionsInput";
|
|
504
|
+
const _LQEO = "ListQueryExecutionsOutput";
|
|
505
|
+
const _LS = "ListSessions";
|
|
506
|
+
const _LSAT = "LastSuccessfulAllocationTime";
|
|
507
|
+
const _LSNP = "LogStreamNamePrefix";
|
|
508
|
+
const _LSR = "ListSessionsRequest";
|
|
509
|
+
const _LSRi = "ListSessionsResponse";
|
|
510
|
+
const _LT = "LogTypes";
|
|
511
|
+
const _LTFR = "ListTagsForResource";
|
|
512
|
+
const _LTFRI = "ListTagsForResourceInput";
|
|
513
|
+
const _LTFRO = "ListTagsForResourceOutput";
|
|
514
|
+
const _LTM = "LogTypesMap";
|
|
515
|
+
const _LTMI = "ListTableMetadataInput";
|
|
516
|
+
const _LTMO = "ListTableMetadataOutput";
|
|
517
|
+
const _LTMi = "ListTableMetadata";
|
|
518
|
+
const _LWG = "ListWorkGroups";
|
|
519
|
+
const _LWGI = "ListWorkGroupsInput";
|
|
520
|
+
const _LWGO = "ListWorkGroupsOutput";
|
|
521
|
+
const _M = "Message";
|
|
522
|
+
const _MAIM = "MaxAgeInMinutes";
|
|
523
|
+
const _MC = "MonitoringConfiguration";
|
|
524
|
+
const _MCD = "MaxConcurrentDpus";
|
|
525
|
+
const _ME = "MetadataException";
|
|
526
|
+
const _MLC = "ManagedLoggingConfiguration";
|
|
527
|
+
const _MQRC = "ManagedQueryResultsConfiguration";
|
|
528
|
+
const _MQRCU = "ManagedQueryResultsConfigurationUpdates";
|
|
529
|
+
const _MQREC = "ManagedQueryResultsEncryptionConfiguration";
|
|
530
|
+
const _MR = "MaxResults";
|
|
531
|
+
const _N = "Name";
|
|
532
|
+
const _NI = "NotebookId";
|
|
533
|
+
const _NM = "NotebookMetadata";
|
|
534
|
+
const _NMA = "NotebookMetadataArray";
|
|
535
|
+
const _NML = "NotebookMetadataList";
|
|
536
|
+
const _NQ = "NamedQueries";
|
|
537
|
+
const _NQI = "NamedQueryIds";
|
|
538
|
+
const _NQIa = "NamedQueryId";
|
|
539
|
+
const _NQL = "NamedQueryList";
|
|
540
|
+
const _NQa = "NamedQuery";
|
|
541
|
+
const _NSL = "NotebookSessionsList";
|
|
542
|
+
const _NSLU = "NotebookS3LocationUri";
|
|
543
|
+
const _NSS = "NotebookSessionSummary";
|
|
544
|
+
const _NT = "NextToken";
|
|
545
|
+
const _NU = "NotebookUrl";
|
|
546
|
+
const _NV = "NotebookVersion";
|
|
547
|
+
const _Nu = "Nullable";
|
|
548
|
+
const _OB = "OutputBytes";
|
|
549
|
+
const _OL = "OutputLocation";
|
|
550
|
+
const _OR = "OutputRows";
|
|
551
|
+
const _OS = "OutputStage";
|
|
552
|
+
const _P = "Progress";
|
|
553
|
+
const _PCAC = "PutCapacityAssignmentConfiguration";
|
|
554
|
+
const _PCACI = "PutCapacityAssignmentConfigurationInput";
|
|
555
|
+
const _PCACO = "PutCapacityAssignmentConfigurationOutput";
|
|
556
|
+
const _PCWME = "PublishCloudWatchMetricsEnabled";
|
|
557
|
+
const _PK = "PartitionKeys";
|
|
558
|
+
const _PS = "PreparedStatements";
|
|
559
|
+
const _PSDL = "PreparedStatementDetailsList";
|
|
560
|
+
const _PSL = "PreparedStatementsList";
|
|
561
|
+
const _PSN = "PreparedStatementNames";
|
|
562
|
+
const _PSS = "PreparedStatementSummary";
|
|
563
|
+
const _PSr = "PreparedStatement";
|
|
564
|
+
const _Pa = "Parameters";
|
|
565
|
+
const _Pay = "Payload";
|
|
566
|
+
const _Pr = "Properties";
|
|
567
|
+
const _Pre = "Precision";
|
|
568
|
+
const _Q = "Query";
|
|
569
|
+
const _QE = "QueryExecutions";
|
|
570
|
+
const _QEC = "QueryExecutionContext";
|
|
571
|
+
const _QEI = "QueryExecutionIds";
|
|
572
|
+
const _QEIu = "QueryExecutionId";
|
|
573
|
+
const _QEL = "QueryExecutionList";
|
|
574
|
+
const _QES = "QueryExecutionStatistics";
|
|
575
|
+
const _QESu = "QueryExecutionStatus";
|
|
576
|
+
const _QEu = "QueryExecution";
|
|
577
|
+
const _QPTIM = "QueryPlanningTimeInMillis";
|
|
578
|
+
const _QQTIM = "QueryQueueTimeInMillis";
|
|
579
|
+
const _QRS = "QueryRuntimeStatistics";
|
|
580
|
+
const _QRSAGC = "QueryResultsS3AccessGrantsConfiguration";
|
|
581
|
+
const _QRSR = "QueryRuntimeStatisticsRows";
|
|
582
|
+
const _QRST = "QueryRuntimeStatisticsTimeline";
|
|
583
|
+
const _QRT = "QueryResultType";
|
|
584
|
+
const _QS = "QueryString";
|
|
585
|
+
const _QSP = "QueryStagePlan";
|
|
586
|
+
const _QSPN = "QueryStagePlanNode";
|
|
587
|
+
const _QSPNu = "QueryStagePlanNodes";
|
|
588
|
+
const _QSu = "QueryStatement";
|
|
589
|
+
const _QSue = "QueryStage";
|
|
590
|
+
const _QSuer = "QueryStages";
|
|
591
|
+
const _R = "Reason";
|
|
592
|
+
const _RAC = "RemoveAclConfiguration";
|
|
593
|
+
const _RARN = "ResourceARN";
|
|
594
|
+
const _RBSCPQ = "RemoveBytesScannedCutoffPerQuery";
|
|
595
|
+
const _RC = "ResultConfiguration";
|
|
596
|
+
const _RCCEC = "RemoveCustomerContentEncryptionConfiguration";
|
|
597
|
+
const _RCT = "RequestCompletionTime";
|
|
598
|
+
const _RCU = "ResultConfigurationUpdates";
|
|
599
|
+
const _RDO = "RecursiveDeleteOption";
|
|
600
|
+
const _REBO = "RemoveExpectedBucketOwner";
|
|
601
|
+
const _REC = "RemoveEncryptionConfiguration";
|
|
602
|
+
const _RL = "RowList";
|
|
603
|
+
const _RN = "ResourceName";
|
|
604
|
+
const _RNFE = "ResourceNotFoundException";
|
|
605
|
+
const _ROL = "RemoveOutputLocation";
|
|
606
|
+
const _RPE = "RequesterPaysEnabled";
|
|
607
|
+
const _RPR = "ReusedPreviousResult";
|
|
608
|
+
const _RRBAC = "ResultReuseByAgeConfiguration";
|
|
609
|
+
const _RRC = "ResultReuseConfiguration";
|
|
610
|
+
const _RRI = "ResultReuseInformation";
|
|
611
|
+
const _RS = "ResultSet";
|
|
612
|
+
const _RSM = "ResultSetMetadata";
|
|
613
|
+
const _RSU = "ResultS3Uri";
|
|
614
|
+
const _RSe = "RemoteSources";
|
|
615
|
+
const _RT = "ResultType";
|
|
616
|
+
const _RTe = "RequestTime";
|
|
617
|
+
const _Re = "Retryable";
|
|
618
|
+
const _Res = "Result";
|
|
619
|
+
const _Ro = "Rows";
|
|
620
|
+
const _Row = "Row";
|
|
621
|
+
const _S = "State";
|
|
622
|
+
const _SAEE = "SessionAlreadyExistsException";
|
|
623
|
+
const _SAO = "S3AclOption";
|
|
624
|
+
const _SC = "SessionConfiguration";
|
|
625
|
+
const _SCE = "StartCalculationExecution";
|
|
626
|
+
const _SCER = "StartCalculationExecutionRequest";
|
|
627
|
+
const _SCERt = "StartCalculationExecutionResponse";
|
|
628
|
+
const _SCERto = "StopCalculationExecutionRequest";
|
|
629
|
+
const _SCERtop = "StopCalculationExecutionResponse";
|
|
630
|
+
const _SCEt = "StopCalculationExecution";
|
|
631
|
+
const _SCR = "StateChangeReason";
|
|
632
|
+
const _SDPUS = "SupportedDPUSizes";
|
|
633
|
+
const _SDT = "SubmissionDateTime";
|
|
634
|
+
const _SDTt = "StartDateTime";
|
|
635
|
+
const _SESU = "StdErrorS3Uri";
|
|
636
|
+
const _SEV = "SelectedEngineVersion";
|
|
637
|
+
const _SF = "StateFilter";
|
|
638
|
+
const _SI = "SessionId";
|
|
639
|
+
const _SITIM = "SessionIdleTimeoutInMinutes";
|
|
640
|
+
const _SIt = "StageId";
|
|
641
|
+
const _SL = "SessionsList";
|
|
642
|
+
const _SLC = "S3LoggingConfiguration";
|
|
643
|
+
const _SM = "StatusMessage";
|
|
644
|
+
const _SN = "SchemaName";
|
|
645
|
+
const _SNt = "StatementName";
|
|
646
|
+
const _SOSU = "StdOutS3Uri";
|
|
647
|
+
const _SP = "SparkProperties";
|
|
648
|
+
const _SPPTIM = "ServicePreProcessingTimeInMillis";
|
|
649
|
+
const _SPTIM = "ServiceProcessingTimeInMillis";
|
|
650
|
+
const _SQE = "StartQueryExecution";
|
|
651
|
+
const _SQEI = "StartQueryExecutionInput";
|
|
652
|
+
const _SQEIt = "StopQueryExecutionInput";
|
|
653
|
+
const _SQEO = "StartQueryExecutionOutput";
|
|
654
|
+
const _SQEOt = "StopQueryExecutionOutput";
|
|
655
|
+
const _SQEt = "StopQueryExecution";
|
|
656
|
+
const _SS = "SubStages";
|
|
657
|
+
const _SSR = "StartSessionRequest";
|
|
658
|
+
const _SSRt = "StartSessionResponse";
|
|
659
|
+
const _SSe = "SessionStatistics";
|
|
660
|
+
const _SSes = "SessionStatus";
|
|
661
|
+
const _SSess = "SessionSummary";
|
|
662
|
+
const _SSt = "StartSession";
|
|
663
|
+
const _ST = "StatementType";
|
|
664
|
+
const _STu = "SubstatementType";
|
|
665
|
+
const _Sc = "Scale";
|
|
666
|
+
const _Se = "Sessions";
|
|
667
|
+
const _St = "Status";
|
|
668
|
+
const _Sta = "Statistics";
|
|
669
|
+
const _T = "Type";
|
|
670
|
+
const _TD = "TargetDpus";
|
|
671
|
+
const _TDT = "TerminationDateTime";
|
|
672
|
+
const _TETIM = "TotalExecutionTimeInMillis";
|
|
673
|
+
const _TK = "TagKeys";
|
|
674
|
+
const _TL = "TagList";
|
|
675
|
+
const _TM = "TableMetadata";
|
|
676
|
+
const _TML = "TableMetadataList";
|
|
677
|
+
const _TMRE = "TooManyRequestsException";
|
|
678
|
+
const _TN = "TableName";
|
|
679
|
+
const _TR = "TagResource";
|
|
680
|
+
const _TRI = "TagResourceInput";
|
|
681
|
+
const _TRO = "TagResourceOutput";
|
|
682
|
+
const _TS = "TerminateSession";
|
|
683
|
+
const _TSR = "TerminateSessionRequest";
|
|
684
|
+
const _TSRe = "TerminateSessionResponse";
|
|
685
|
+
const _TT = "TableType";
|
|
686
|
+
const _Ta = "Tags";
|
|
687
|
+
const _Tag = "Tag";
|
|
688
|
+
const _Ti = "Timeline";
|
|
689
|
+
const _U = "Url";
|
|
690
|
+
const _UC = "UpdateCount";
|
|
691
|
+
const _UCR = "UpdateCapacityReservation";
|
|
692
|
+
const _UCRI = "UpdateCapacityReservationInput";
|
|
693
|
+
const _UCRO = "UpdateCapacityReservationOutput";
|
|
694
|
+
const _UDC = "UpdateDataCatalog";
|
|
695
|
+
const _UDCI = "UpdateDataCatalogInput";
|
|
696
|
+
const _UDCO = "UpdateDataCatalogOutput";
|
|
697
|
+
const _UN = "UpdateNotebook";
|
|
698
|
+
const _UNI = "UpdateNotebookInput";
|
|
699
|
+
const _UNM = "UpdateNotebookMetadata";
|
|
700
|
+
const _UNMI = "UpdateNotebookMetadataInput";
|
|
701
|
+
const _UNMO = "UpdateNotebookMetadataOutput";
|
|
702
|
+
const _UNO = "UpdateNotebookOutput";
|
|
703
|
+
const _UNQ = "UpdateNamedQuery";
|
|
704
|
+
const _UNQI = "UnprocessedNamedQueryIds";
|
|
705
|
+
const _UNQIL = "UnprocessedNamedQueryIdList";
|
|
706
|
+
const _UNQIn = "UnprocessedNamedQueryId";
|
|
707
|
+
const _UNQIp = "UpdateNamedQueryInput";
|
|
708
|
+
const _UNQO = "UpdateNamedQueryOutput";
|
|
709
|
+
const _UPS = "UpdatePreparedStatement";
|
|
710
|
+
const _UPSI = "UpdatePreparedStatementInput";
|
|
711
|
+
const _UPSN = "UnprocessedPreparedStatementNames";
|
|
712
|
+
const _UPSNL = "UnprocessedPreparedStatementNameList";
|
|
713
|
+
const _UPSNn = "UnprocessedPreparedStatementName";
|
|
714
|
+
const _UPSO = "UpdatePreparedStatementOutput";
|
|
715
|
+
const _UQEI = "UnprocessedQueryExecutionIds";
|
|
716
|
+
const _UQEIL = "UnprocessedQueryExecutionIdList";
|
|
717
|
+
const _UQEIn = "UnprocessedQueryExecutionId";
|
|
718
|
+
const _UR = "UntagResource";
|
|
719
|
+
const _URI = "UntagResourceInput";
|
|
720
|
+
const _URO = "UntagResourceOutput";
|
|
721
|
+
const _UWG = "UpdateWorkGroup";
|
|
722
|
+
const _UWGI = "UpdateWorkGroupInput";
|
|
723
|
+
const _UWGO = "UpdateWorkGroupOutput";
|
|
724
|
+
const _V = "Value";
|
|
725
|
+
const _VCV = "VarCharValue";
|
|
726
|
+
const _WD = "WorkingDirectory";
|
|
727
|
+
const _WG = "WorkGroup";
|
|
728
|
+
const _WGC = "WorkGroupConfiguration";
|
|
729
|
+
const _WGCU = "WorkGroupConfigurationUpdates";
|
|
730
|
+
const _WGL = "WorkGroupsList";
|
|
731
|
+
const _WGN = "WorkGroupNames";
|
|
732
|
+
const _WGNo = "WorkGroupName";
|
|
733
|
+
const _WGS = "WorkGroupSummary";
|
|
734
|
+
const _WGo = "WorkGroups";
|
|
735
|
+
const _c = "client";
|
|
736
|
+
const _dL = "datumList";
|
|
737
|
+
const _e = "error";
|
|
738
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.athena";
|
|
739
|
+
const _se = "server";
|
|
740
|
+
const n0 = "com.amazonaws.athena";
|
|
741
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
742
|
+
var AthenaServiceException$ = [-3, _s, "AthenaServiceException", 0, [], []];
|
|
743
|
+
_s_registry.registerError(AthenaServiceException$, AthenaServiceException);
|
|
744
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
745
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
746
|
+
{ [_e]: _se },
|
|
747
|
+
[_M],
|
|
748
|
+
[0]
|
|
749
|
+
];
|
|
750
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
751
|
+
var InvalidRequestException$ = [-3, n0, _IRE,
|
|
752
|
+
{ [_e]: _c },
|
|
753
|
+
[_AEC, _M],
|
|
754
|
+
[0, 0]
|
|
755
|
+
];
|
|
756
|
+
n0_registry.registerError(InvalidRequestException$, InvalidRequestException);
|
|
757
|
+
var MetadataException$ = [-3, n0, _ME,
|
|
758
|
+
{ [_e]: _c },
|
|
759
|
+
[_M],
|
|
760
|
+
[0]
|
|
761
|
+
];
|
|
762
|
+
n0_registry.registerError(MetadataException$, MetadataException);
|
|
763
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
764
|
+
{ [_e]: _c },
|
|
765
|
+
[_M, _RN],
|
|
766
|
+
[0, 0]
|
|
767
|
+
];
|
|
768
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
769
|
+
var SessionAlreadyExistsException$ = [-3, n0, _SAEE,
|
|
770
|
+
{ [_e]: _c },
|
|
771
|
+
[_M],
|
|
772
|
+
[0]
|
|
773
|
+
];
|
|
774
|
+
n0_registry.registerError(SessionAlreadyExistsException$, SessionAlreadyExistsException);
|
|
775
|
+
var TooManyRequestsException$ = [-3, n0, _TMRE,
|
|
776
|
+
{ [_e]: _c },
|
|
777
|
+
[_M, _R],
|
|
778
|
+
[0, 0]
|
|
779
|
+
];
|
|
780
|
+
n0_registry.registerError(TooManyRequestsException$, TooManyRequestsException);
|
|
781
|
+
const errorTypeRegistries = [
|
|
782
|
+
_s_registry,
|
|
783
|
+
n0_registry,
|
|
784
|
+
];
|
|
785
|
+
var AclConfiguration$ = [3, n0, _AC,
|
|
786
|
+
0,
|
|
787
|
+
[_SAO],
|
|
788
|
+
[0], 1
|
|
789
|
+
];
|
|
790
|
+
var ApplicationDPUSizes$ = [3, n0, _ADPUS,
|
|
791
|
+
0,
|
|
792
|
+
[_ARI, _SDPUS],
|
|
793
|
+
[0, 64 | 1]
|
|
794
|
+
];
|
|
795
|
+
var AthenaError$ = [3, n0, _AE,
|
|
796
|
+
0,
|
|
797
|
+
[_EC, _ET, _Re, _EM],
|
|
798
|
+
[1, 1, 2, 0]
|
|
799
|
+
];
|
|
800
|
+
var BatchGetNamedQueryInput$ = [3, n0, _BGNQI,
|
|
801
|
+
0,
|
|
802
|
+
[_NQI],
|
|
803
|
+
[64 | 0], 1
|
|
804
|
+
];
|
|
805
|
+
var BatchGetNamedQueryOutput$ = [3, n0, _BGNQO,
|
|
806
|
+
0,
|
|
807
|
+
[_NQ, _UNQI],
|
|
808
|
+
[() => NamedQueryList, () => UnprocessedNamedQueryIdList]
|
|
809
|
+
];
|
|
810
|
+
var BatchGetPreparedStatementInput$ = [3, n0, _BGPSI,
|
|
811
|
+
0,
|
|
812
|
+
[_PSN, _WG],
|
|
813
|
+
[64 | 0, 0], 2
|
|
814
|
+
];
|
|
815
|
+
var BatchGetPreparedStatementOutput$ = [3, n0, _BGPSO,
|
|
816
|
+
0,
|
|
817
|
+
[_PS, _UPSN],
|
|
818
|
+
[() => PreparedStatementDetailsList, () => UnprocessedPreparedStatementNameList]
|
|
819
|
+
];
|
|
820
|
+
var BatchGetQueryExecutionInput$ = [3, n0, _BGQEI,
|
|
821
|
+
0,
|
|
822
|
+
[_QEI],
|
|
823
|
+
[64 | 0], 1
|
|
824
|
+
];
|
|
825
|
+
var BatchGetQueryExecutionOutput$ = [3, n0, _BGQEO,
|
|
826
|
+
0,
|
|
827
|
+
[_QE, _UQEI],
|
|
828
|
+
[() => QueryExecutionList, () => UnprocessedQueryExecutionIdList]
|
|
829
|
+
];
|
|
830
|
+
var CalculationConfiguration$ = [3, n0, _CC,
|
|
831
|
+
0,
|
|
832
|
+
[_CB],
|
|
833
|
+
[0]
|
|
834
|
+
];
|
|
835
|
+
var CalculationResult$ = [3, n0, _CR,
|
|
836
|
+
0,
|
|
837
|
+
[_SOSU, _SESU, _RSU, _RT],
|
|
838
|
+
[0, 0, 0, 0]
|
|
839
|
+
];
|
|
840
|
+
var CalculationStatistics$ = [3, n0, _CS,
|
|
841
|
+
0,
|
|
842
|
+
[_DEIM, _P],
|
|
843
|
+
[1, 0]
|
|
844
|
+
];
|
|
845
|
+
var CalculationStatus$ = [3, n0, _CSa,
|
|
846
|
+
0,
|
|
847
|
+
[_SDT, _CDT, _S, _SCR],
|
|
848
|
+
[4, 4, 0, 0]
|
|
849
|
+
];
|
|
850
|
+
var CalculationSummary$ = [3, n0, _CSal,
|
|
851
|
+
0,
|
|
852
|
+
[_CEI, _D, _St],
|
|
853
|
+
[0, 0, () => CalculationStatus$]
|
|
854
|
+
];
|
|
855
|
+
var CancelCapacityReservationInput$ = [3, n0, _CCRI,
|
|
856
|
+
0,
|
|
857
|
+
[_N],
|
|
858
|
+
[0], 1
|
|
859
|
+
];
|
|
860
|
+
var CancelCapacityReservationOutput$ = [3, n0, _CCRO,
|
|
861
|
+
0,
|
|
862
|
+
[],
|
|
863
|
+
[]
|
|
864
|
+
];
|
|
865
|
+
var CapacityAllocation$ = [3, n0, _CA,
|
|
866
|
+
0,
|
|
867
|
+
[_St, _RTe, _SM, _RCT],
|
|
868
|
+
[0, 4, 0, 4], 2
|
|
869
|
+
];
|
|
870
|
+
var CapacityAssignment$ = [3, n0, _CAa,
|
|
871
|
+
0,
|
|
872
|
+
[_WGN],
|
|
873
|
+
[64 | 0]
|
|
874
|
+
];
|
|
875
|
+
var CapacityAssignmentConfiguration$ = [3, n0, _CAC,
|
|
876
|
+
0,
|
|
877
|
+
[_CRN, _CAap],
|
|
878
|
+
[0, () => CapacityAssignmentsList]
|
|
879
|
+
];
|
|
880
|
+
var CapacityReservation$ = [3, n0, _CRa,
|
|
881
|
+
0,
|
|
882
|
+
[_N, _St, _TD, _AD, _CT, _LA, _LSAT],
|
|
883
|
+
[0, 0, 1, 1, 4, () => CapacityAllocation$, 4], 5
|
|
884
|
+
];
|
|
885
|
+
var Classification$ = [3, n0, _C,
|
|
886
|
+
0,
|
|
887
|
+
[_N, _Pr],
|
|
888
|
+
[0, 128 | 0]
|
|
889
|
+
];
|
|
890
|
+
var CloudWatchLoggingConfiguration$ = [3, n0, _CWLC,
|
|
891
|
+
0,
|
|
892
|
+
[_E, _LG, _LSNP, _LT],
|
|
893
|
+
[2, 0, 0, [2, n0, _LTM, 0, 0, 64 | 0]], 1
|
|
894
|
+
];
|
|
895
|
+
var Column$ = [3, n0, _Co,
|
|
896
|
+
0,
|
|
897
|
+
[_N, _T, _Com],
|
|
898
|
+
[0, 0, 0], 1
|
|
899
|
+
];
|
|
900
|
+
var ColumnInfo$ = [3, n0, _CI,
|
|
901
|
+
0,
|
|
902
|
+
[_N, _T, _CN, _SN, _TN, _L, _Pre, _Sc, _Nu, _CSas],
|
|
903
|
+
[0, 0, 0, 0, 0, 0, 1, 1, 0, 2], 2
|
|
904
|
+
];
|
|
905
|
+
var CreateCapacityReservationInput$ = [3, n0, _CCRIr,
|
|
906
|
+
0,
|
|
907
|
+
[_TD, _N, _Ta],
|
|
908
|
+
[1, 0, () => TagList], 2
|
|
909
|
+
];
|
|
910
|
+
var CreateCapacityReservationOutput$ = [3, n0, _CCROr,
|
|
911
|
+
0,
|
|
912
|
+
[],
|
|
913
|
+
[]
|
|
914
|
+
];
|
|
915
|
+
var CreateDataCatalogInput$ = [3, n0, _CDCI,
|
|
916
|
+
0,
|
|
917
|
+
[_N, _T, _D, _Pa, _Ta],
|
|
918
|
+
[0, 0, 0, 128 | 0, () => TagList], 2
|
|
919
|
+
];
|
|
920
|
+
var CreateDataCatalogOutput$ = [3, n0, _CDCO,
|
|
921
|
+
0,
|
|
922
|
+
[_DC],
|
|
923
|
+
[() => DataCatalog$]
|
|
924
|
+
];
|
|
925
|
+
var CreateNamedQueryInput$ = [3, n0, _CNQI,
|
|
926
|
+
0,
|
|
927
|
+
[_N, _Da, _QS, _D, _CRT, _WG],
|
|
928
|
+
[0, 0, 0, 0, [0, 4], 0], 3
|
|
929
|
+
];
|
|
930
|
+
var CreateNamedQueryOutput$ = [3, n0, _CNQO,
|
|
931
|
+
0,
|
|
932
|
+
[_NQIa],
|
|
933
|
+
[0]
|
|
934
|
+
];
|
|
935
|
+
var CreateNotebookInput$ = [3, n0, _CNI,
|
|
936
|
+
0,
|
|
937
|
+
[_WG, _N, _CRT],
|
|
938
|
+
[0, 0, 0], 2
|
|
939
|
+
];
|
|
940
|
+
var CreateNotebookOutput$ = [3, n0, _CNO,
|
|
941
|
+
0,
|
|
942
|
+
[_NI],
|
|
943
|
+
[0]
|
|
944
|
+
];
|
|
945
|
+
var CreatePreparedStatementInput$ = [3, n0, _CPSI,
|
|
946
|
+
0,
|
|
947
|
+
[_SNt, _WG, _QSu, _D],
|
|
948
|
+
[0, 0, 0, 0], 3
|
|
949
|
+
];
|
|
950
|
+
var CreatePreparedStatementOutput$ = [3, n0, _CPSO,
|
|
951
|
+
0,
|
|
952
|
+
[],
|
|
953
|
+
[]
|
|
954
|
+
];
|
|
955
|
+
var CreatePresignedNotebookUrlRequest$ = [3, n0, _CPNUR,
|
|
956
|
+
0,
|
|
957
|
+
[_SI],
|
|
958
|
+
[0], 1
|
|
959
|
+
];
|
|
960
|
+
var CreatePresignedNotebookUrlResponse$ = [3, n0, _CPNURr,
|
|
961
|
+
0,
|
|
962
|
+
[_NU, _AT, _ATET],
|
|
963
|
+
[0, 0, 1], 3
|
|
964
|
+
];
|
|
965
|
+
var CreateWorkGroupInput$ = [3, n0, _CWGI,
|
|
966
|
+
0,
|
|
967
|
+
[_N, _Con, _D, _Ta],
|
|
968
|
+
[0, () => WorkGroupConfiguration$, 0, () => TagList], 1
|
|
969
|
+
];
|
|
970
|
+
var CreateWorkGroupOutput$ = [3, n0, _CWGO,
|
|
971
|
+
0,
|
|
972
|
+
[],
|
|
973
|
+
[]
|
|
974
|
+
];
|
|
975
|
+
var CustomerContentEncryptionConfiguration$ = [3, n0, _CCEC,
|
|
976
|
+
0,
|
|
977
|
+
[_KK],
|
|
978
|
+
[0], 1
|
|
979
|
+
];
|
|
980
|
+
var Database$ = [3, n0, _Da,
|
|
981
|
+
0,
|
|
982
|
+
[_N, _D, _Pa],
|
|
983
|
+
[0, 0, 128 | 0], 1
|
|
984
|
+
];
|
|
985
|
+
var DataCatalog$ = [3, n0, _DC,
|
|
986
|
+
0,
|
|
987
|
+
[_N, _T, _D, _Pa, _St, _CTo, _Er],
|
|
988
|
+
[0, 0, 0, 128 | 0, 0, 0, 0], 2
|
|
989
|
+
];
|
|
990
|
+
var DataCatalogSummary$ = [3, n0, _DCS,
|
|
991
|
+
0,
|
|
992
|
+
[_CN, _T, _St, _CTo, _Er],
|
|
993
|
+
[0, 0, 0, 0, 0]
|
|
994
|
+
];
|
|
995
|
+
var Datum$ = [3, n0, _Dat,
|
|
996
|
+
0,
|
|
997
|
+
[_VCV],
|
|
998
|
+
[0]
|
|
999
|
+
];
|
|
1000
|
+
var DeleteCapacityReservationInput$ = [3, n0, _DCRI,
|
|
1001
|
+
0,
|
|
1002
|
+
[_N],
|
|
1003
|
+
[0], 1
|
|
1004
|
+
];
|
|
1005
|
+
var DeleteCapacityReservationOutput$ = [3, n0, _DCRO,
|
|
1006
|
+
0,
|
|
1007
|
+
[],
|
|
1008
|
+
[]
|
|
1009
|
+
];
|
|
1010
|
+
var DeleteDataCatalogInput$ = [3, n0, _DDCI,
|
|
1011
|
+
0,
|
|
1012
|
+
[_N, _DCO],
|
|
1013
|
+
[0, 2], 1
|
|
1014
|
+
];
|
|
1015
|
+
var DeleteDataCatalogOutput$ = [3, n0, _DDCO,
|
|
1016
|
+
0,
|
|
1017
|
+
[_DC],
|
|
1018
|
+
[() => DataCatalog$]
|
|
1019
|
+
];
|
|
1020
|
+
var DeleteNamedQueryInput$ = [3, n0, _DNQI,
|
|
1021
|
+
0,
|
|
1022
|
+
[_NQIa],
|
|
1023
|
+
[[0, 4]]
|
|
1024
|
+
];
|
|
1025
|
+
var DeleteNamedQueryOutput$ = [3, n0, _DNQO,
|
|
1026
|
+
0,
|
|
1027
|
+
[],
|
|
1028
|
+
[]
|
|
1029
|
+
];
|
|
1030
|
+
var DeleteNotebookInput$ = [3, n0, _DNI,
|
|
1031
|
+
0,
|
|
1032
|
+
[_NI],
|
|
1033
|
+
[0], 1
|
|
1034
|
+
];
|
|
1035
|
+
var DeleteNotebookOutput$ = [3, n0, _DNO,
|
|
1036
|
+
0,
|
|
1037
|
+
[],
|
|
1038
|
+
[]
|
|
1039
|
+
];
|
|
1040
|
+
var DeletePreparedStatementInput$ = [3, n0, _DPSI,
|
|
1041
|
+
0,
|
|
1042
|
+
[_SNt, _WG],
|
|
1043
|
+
[0, 0], 2
|
|
1044
|
+
];
|
|
1045
|
+
var DeletePreparedStatementOutput$ = [3, n0, _DPSO,
|
|
1046
|
+
0,
|
|
1047
|
+
[],
|
|
1048
|
+
[]
|
|
1049
|
+
];
|
|
1050
|
+
var DeleteWorkGroupInput$ = [3, n0, _DWGI,
|
|
1051
|
+
0,
|
|
1052
|
+
[_WG, _RDO],
|
|
1053
|
+
[0, 2], 1
|
|
1054
|
+
];
|
|
1055
|
+
var DeleteWorkGroupOutput$ = [3, n0, _DWGO,
|
|
1056
|
+
0,
|
|
1057
|
+
[],
|
|
1058
|
+
[]
|
|
1059
|
+
];
|
|
1060
|
+
var EncryptionConfiguration$ = [3, n0, _ECn,
|
|
1061
|
+
0,
|
|
1062
|
+
[_EO, _KK],
|
|
1063
|
+
[0, 0], 1
|
|
1064
|
+
];
|
|
1065
|
+
var EngineConfiguration$ = [3, n0, _ECng,
|
|
1066
|
+
0,
|
|
1067
|
+
[_CDS, _MCD, _DEDS, _ACd, _SP, _Cl],
|
|
1068
|
+
[1, 1, 1, 128 | 0, 128 | 0, () => ClassificationList]
|
|
1069
|
+
];
|
|
1070
|
+
var EngineVersion$ = [3, n0, _EV,
|
|
1071
|
+
0,
|
|
1072
|
+
[_SEV, _EEV],
|
|
1073
|
+
[0, 0]
|
|
1074
|
+
];
|
|
1075
|
+
var ExecutorsSummary$ = [3, n0, _ES,
|
|
1076
|
+
0,
|
|
1077
|
+
[_EI, _ETx, _SDTt, _TDT, _ESx, _ESxe],
|
|
1078
|
+
[0, 0, 1, 1, 0, 1], 1
|
|
1079
|
+
];
|
|
1080
|
+
var ExportNotebookInput$ = [3, n0, _ENI,
|
|
1081
|
+
0,
|
|
1082
|
+
[_NI],
|
|
1083
|
+
[0], 1
|
|
1084
|
+
];
|
|
1085
|
+
var ExportNotebookOutput$ = [3, n0, _ENO,
|
|
1086
|
+
0,
|
|
1087
|
+
[_NM, _Pay],
|
|
1088
|
+
[() => NotebookMetadata$, 0]
|
|
1089
|
+
];
|
|
1090
|
+
var FilterDefinition$ = [3, n0, _FD,
|
|
1091
|
+
0,
|
|
1092
|
+
[_N],
|
|
1093
|
+
[0]
|
|
1094
|
+
];
|
|
1095
|
+
var GetCalculationExecutionCodeRequest$ = [3, n0, _GCECR,
|
|
1096
|
+
0,
|
|
1097
|
+
[_CEI],
|
|
1098
|
+
[0], 1
|
|
1099
|
+
];
|
|
1100
|
+
var GetCalculationExecutionCodeResponse$ = [3, n0, _GCECRe,
|
|
1101
|
+
0,
|
|
1102
|
+
[_CB],
|
|
1103
|
+
[0]
|
|
1104
|
+
];
|
|
1105
|
+
var GetCalculationExecutionRequest$ = [3, n0, _GCER,
|
|
1106
|
+
0,
|
|
1107
|
+
[_CEI],
|
|
1108
|
+
[0], 1
|
|
1109
|
+
];
|
|
1110
|
+
var GetCalculationExecutionResponse$ = [3, n0, _GCERe,
|
|
1111
|
+
0,
|
|
1112
|
+
[_CEI, _SI, _D, _WD, _St, _Sta, _Res],
|
|
1113
|
+
[0, 0, 0, 0, () => CalculationStatus$, () => CalculationStatistics$, () => CalculationResult$]
|
|
1114
|
+
];
|
|
1115
|
+
var GetCalculationExecutionStatusRequest$ = [3, n0, _GCESR,
|
|
1116
|
+
0,
|
|
1117
|
+
[_CEI],
|
|
1118
|
+
[0], 1
|
|
1119
|
+
];
|
|
1120
|
+
var GetCalculationExecutionStatusResponse$ = [3, n0, _GCESRe,
|
|
1121
|
+
0,
|
|
1122
|
+
[_St, _Sta],
|
|
1123
|
+
[() => CalculationStatus$, () => CalculationStatistics$]
|
|
1124
|
+
];
|
|
1125
|
+
var GetCapacityAssignmentConfigurationInput$ = [3, n0, _GCACI,
|
|
1126
|
+
0,
|
|
1127
|
+
[_CRN],
|
|
1128
|
+
[0], 1
|
|
1129
|
+
];
|
|
1130
|
+
var GetCapacityAssignmentConfigurationOutput$ = [3, n0, _GCACO,
|
|
1131
|
+
0,
|
|
1132
|
+
[_CAC],
|
|
1133
|
+
[() => CapacityAssignmentConfiguration$], 1
|
|
1134
|
+
];
|
|
1135
|
+
var GetCapacityReservationInput$ = [3, n0, _GCRI,
|
|
1136
|
+
0,
|
|
1137
|
+
[_N],
|
|
1138
|
+
[0], 1
|
|
1139
|
+
];
|
|
1140
|
+
var GetCapacityReservationOutput$ = [3, n0, _GCRO,
|
|
1141
|
+
0,
|
|
1142
|
+
[_CRa],
|
|
1143
|
+
[() => CapacityReservation$], 1
|
|
1144
|
+
];
|
|
1145
|
+
var GetDatabaseInput$ = [3, n0, _GDI,
|
|
1146
|
+
0,
|
|
1147
|
+
[_CN, _DN, _WG],
|
|
1148
|
+
[0, 0, 0], 2
|
|
1149
|
+
];
|
|
1150
|
+
var GetDatabaseOutput$ = [3, n0, _GDO,
|
|
1151
|
+
0,
|
|
1152
|
+
[_Da],
|
|
1153
|
+
[() => Database$]
|
|
1154
|
+
];
|
|
1155
|
+
var GetDataCatalogInput$ = [3, n0, _GDCI,
|
|
1156
|
+
0,
|
|
1157
|
+
[_N, _WG],
|
|
1158
|
+
[0, 0], 1
|
|
1159
|
+
];
|
|
1160
|
+
var GetDataCatalogOutput$ = [3, n0, _GDCO,
|
|
1161
|
+
0,
|
|
1162
|
+
[_DC],
|
|
1163
|
+
[() => DataCatalog$]
|
|
1164
|
+
];
|
|
1165
|
+
var GetNamedQueryInput$ = [3, n0, _GNQI,
|
|
1166
|
+
0,
|
|
1167
|
+
[_NQIa],
|
|
1168
|
+
[0], 1
|
|
1169
|
+
];
|
|
1170
|
+
var GetNamedQueryOutput$ = [3, n0, _GNQO,
|
|
1171
|
+
0,
|
|
1172
|
+
[_NQa],
|
|
1173
|
+
[() => NamedQuery$]
|
|
1174
|
+
];
|
|
1175
|
+
var GetNotebookMetadataInput$ = [3, n0, _GNMI,
|
|
1176
|
+
0,
|
|
1177
|
+
[_NI],
|
|
1178
|
+
[0], 1
|
|
1179
|
+
];
|
|
1180
|
+
var GetNotebookMetadataOutput$ = [3, n0, _GNMO,
|
|
1181
|
+
0,
|
|
1182
|
+
[_NM],
|
|
1183
|
+
[() => NotebookMetadata$]
|
|
1184
|
+
];
|
|
1185
|
+
var GetPreparedStatementInput$ = [3, n0, _GPSI,
|
|
1186
|
+
0,
|
|
1187
|
+
[_SNt, _WG],
|
|
1188
|
+
[0, 0], 2
|
|
1189
|
+
];
|
|
1190
|
+
var GetPreparedStatementOutput$ = [3, n0, _GPSO,
|
|
1191
|
+
0,
|
|
1192
|
+
[_PSr],
|
|
1193
|
+
[() => PreparedStatement$]
|
|
1194
|
+
];
|
|
1195
|
+
var GetQueryExecutionInput$ = [3, n0, _GQEI,
|
|
1196
|
+
0,
|
|
1197
|
+
[_QEIu],
|
|
1198
|
+
[0], 1
|
|
1199
|
+
];
|
|
1200
|
+
var GetQueryExecutionOutput$ = [3, n0, _GQEO,
|
|
1201
|
+
0,
|
|
1202
|
+
[_QEu],
|
|
1203
|
+
[() => QueryExecution$]
|
|
1204
|
+
];
|
|
1205
|
+
var GetQueryResultsInput$ = [3, n0, _GQRI,
|
|
1206
|
+
0,
|
|
1207
|
+
[_QEIu, _NT, _MR, _QRT],
|
|
1208
|
+
[0, 0, 1, 0], 1
|
|
1209
|
+
];
|
|
1210
|
+
var GetQueryResultsOutput$ = [3, n0, _GQRO,
|
|
1211
|
+
0,
|
|
1212
|
+
[_UC, _RS, _NT],
|
|
1213
|
+
[1, () => ResultSet$, 0]
|
|
1214
|
+
];
|
|
1215
|
+
var GetQueryRuntimeStatisticsInput$ = [3, n0, _GQRSI,
|
|
1216
|
+
0,
|
|
1217
|
+
[_QEIu],
|
|
1218
|
+
[0], 1
|
|
1219
|
+
];
|
|
1220
|
+
var GetQueryRuntimeStatisticsOutput$ = [3, n0, _GQRSO,
|
|
1221
|
+
0,
|
|
1222
|
+
[_QRS],
|
|
1223
|
+
[() => QueryRuntimeStatistics$]
|
|
1224
|
+
];
|
|
1225
|
+
var GetResourceDashboardRequest$ = [3, n0, _GRDR,
|
|
1226
|
+
0,
|
|
1227
|
+
[_RARN],
|
|
1228
|
+
[0], 1
|
|
1229
|
+
];
|
|
1230
|
+
var GetResourceDashboardResponse$ = [3, n0, _GRDRe,
|
|
1231
|
+
0,
|
|
1232
|
+
[_U],
|
|
1233
|
+
[0], 1
|
|
1234
|
+
];
|
|
1235
|
+
var GetSessionEndpointRequest$ = [3, n0, _GSER,
|
|
1236
|
+
0,
|
|
1237
|
+
[_SI],
|
|
1238
|
+
[0], 1
|
|
1239
|
+
];
|
|
1240
|
+
var GetSessionEndpointResponse$ = [3, n0, _GSERe,
|
|
1241
|
+
0,
|
|
1242
|
+
[_EU, _AT, _ATET],
|
|
1243
|
+
[0, 0, 4], 3
|
|
1244
|
+
];
|
|
1245
|
+
var GetSessionRequest$ = [3, n0, _GSR,
|
|
1246
|
+
0,
|
|
1247
|
+
[_SI],
|
|
1248
|
+
[0], 1
|
|
1249
|
+
];
|
|
1250
|
+
var GetSessionResponse$ = [3, n0, _GSRe,
|
|
1251
|
+
0,
|
|
1252
|
+
[_SI, _D, _WG, _EV, _ECng, _NV, _MC, _SC, _St, _Sta],
|
|
1253
|
+
[0, 0, 0, 0, () => EngineConfiguration$, 0, () => MonitoringConfiguration$, () => SessionConfiguration$, () => SessionStatus$, () => SessionStatistics$]
|
|
1254
|
+
];
|
|
1255
|
+
var GetSessionStatusRequest$ = [3, n0, _GSSR,
|
|
1256
|
+
0,
|
|
1257
|
+
[_SI],
|
|
1258
|
+
[0], 1
|
|
1259
|
+
];
|
|
1260
|
+
var GetSessionStatusResponse$ = [3, n0, _GSSRe,
|
|
1261
|
+
0,
|
|
1262
|
+
[_SI, _St],
|
|
1263
|
+
[0, () => SessionStatus$]
|
|
1264
|
+
];
|
|
1265
|
+
var GetTableMetadataInput$ = [3, n0, _GTMI,
|
|
1266
|
+
0,
|
|
1267
|
+
[_CN, _DN, _TN, _WG],
|
|
1268
|
+
[0, 0, 0, 0], 3
|
|
1269
|
+
];
|
|
1270
|
+
var GetTableMetadataOutput$ = [3, n0, _GTMO,
|
|
1271
|
+
0,
|
|
1272
|
+
[_TM],
|
|
1273
|
+
[() => TableMetadata$]
|
|
1274
|
+
];
|
|
1275
|
+
var GetWorkGroupInput$ = [3, n0, _GWGI,
|
|
1276
|
+
0,
|
|
1277
|
+
[_WG],
|
|
1278
|
+
[0], 1
|
|
1279
|
+
];
|
|
1280
|
+
var GetWorkGroupOutput$ = [3, n0, _GWGO,
|
|
1281
|
+
0,
|
|
1282
|
+
[_WG],
|
|
1283
|
+
[() => WorkGroup$]
|
|
1284
|
+
];
|
|
1285
|
+
var IdentityCenterConfiguration$ = [3, n0, _ICC,
|
|
1286
|
+
0,
|
|
1287
|
+
[_EIC, _ICIA],
|
|
1288
|
+
[2, 0]
|
|
1289
|
+
];
|
|
1290
|
+
var ImportNotebookInput$ = [3, n0, _INI,
|
|
1291
|
+
0,
|
|
1292
|
+
[_WG, _N, _T, _Pay, _NSLU, _CRT],
|
|
1293
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
1294
|
+
];
|
|
1295
|
+
var ImportNotebookOutput$ = [3, n0, _INO,
|
|
1296
|
+
0,
|
|
1297
|
+
[_NI],
|
|
1298
|
+
[0]
|
|
1299
|
+
];
|
|
1300
|
+
var ListApplicationDPUSizesInput$ = [3, n0, _LADPUSI,
|
|
1301
|
+
0,
|
|
1302
|
+
[_MR, _NT],
|
|
1303
|
+
[1, 0]
|
|
1304
|
+
];
|
|
1305
|
+
var ListApplicationDPUSizesOutput$ = [3, n0, _LADPUSO,
|
|
1306
|
+
0,
|
|
1307
|
+
[_ADPUS, _NT],
|
|
1308
|
+
[() => ApplicationDPUSizesList, 0]
|
|
1309
|
+
];
|
|
1310
|
+
var ListCalculationExecutionsRequest$ = [3, n0, _LCER,
|
|
1311
|
+
0,
|
|
1312
|
+
[_SI, _SF, _MR, _NT],
|
|
1313
|
+
[0, 0, 1, 0], 1
|
|
1314
|
+
];
|
|
1315
|
+
var ListCalculationExecutionsResponse$ = [3, n0, _LCERi,
|
|
1316
|
+
0,
|
|
1317
|
+
[_NT, _Ca],
|
|
1318
|
+
[0, () => CalculationsList]
|
|
1319
|
+
];
|
|
1320
|
+
var ListCapacityReservationsInput$ = [3, n0, _LCRI,
|
|
1321
|
+
0,
|
|
1322
|
+
[_NT, _MR],
|
|
1323
|
+
[0, 1]
|
|
1324
|
+
];
|
|
1325
|
+
var ListCapacityReservationsOutput$ = [3, n0, _LCRO,
|
|
1326
|
+
0,
|
|
1327
|
+
[_CRap, _NT],
|
|
1328
|
+
[() => CapacityReservationsList, 0], 1
|
|
1329
|
+
];
|
|
1330
|
+
var ListDatabasesInput$ = [3, n0, _LDI,
|
|
1331
|
+
0,
|
|
1332
|
+
[_CN, _NT, _MR, _WG],
|
|
1333
|
+
[0, 0, 1, 0], 1
|
|
1334
|
+
];
|
|
1335
|
+
var ListDatabasesOutput$ = [3, n0, _LDO,
|
|
1336
|
+
0,
|
|
1337
|
+
[_DL, _NT],
|
|
1338
|
+
[() => DatabaseList, 0]
|
|
1339
|
+
];
|
|
1340
|
+
var ListDataCatalogsInput$ = [3, n0, _LDCI,
|
|
1341
|
+
0,
|
|
1342
|
+
[_NT, _MR, _WG],
|
|
1343
|
+
[0, 1, 0]
|
|
1344
|
+
];
|
|
1345
|
+
var ListDataCatalogsOutput$ = [3, n0, _LDCO,
|
|
1346
|
+
0,
|
|
1347
|
+
[_DCSa, _NT],
|
|
1348
|
+
[() => DataCatalogSummaryList, 0]
|
|
1349
|
+
];
|
|
1350
|
+
var ListEngineVersionsInput$ = [3, n0, _LEVI,
|
|
1351
|
+
0,
|
|
1352
|
+
[_NT, _MR],
|
|
1353
|
+
[0, 1]
|
|
1354
|
+
];
|
|
1355
|
+
var ListEngineVersionsOutput$ = [3, n0, _LEVO,
|
|
1356
|
+
0,
|
|
1357
|
+
[_EVn, _NT],
|
|
1358
|
+
[() => EngineVersionsList, 0]
|
|
1359
|
+
];
|
|
1360
|
+
var ListExecutorsRequest$ = [3, n0, _LER,
|
|
1361
|
+
0,
|
|
1362
|
+
[_SI, _ESF, _MR, _NT],
|
|
1363
|
+
[0, 0, 1, 0], 1
|
|
1364
|
+
];
|
|
1365
|
+
var ListExecutorsResponse$ = [3, n0, _LERi,
|
|
1366
|
+
0,
|
|
1367
|
+
[_SI, _NT, _ES],
|
|
1368
|
+
[0, 0, () => ExecutorsSummaryList], 1
|
|
1369
|
+
];
|
|
1370
|
+
var ListNamedQueriesInput$ = [3, n0, _LNQI,
|
|
1371
|
+
0,
|
|
1372
|
+
[_NT, _MR, _WG],
|
|
1373
|
+
[0, 1, 0]
|
|
1374
|
+
];
|
|
1375
|
+
var ListNamedQueriesOutput$ = [3, n0, _LNQO,
|
|
1376
|
+
0,
|
|
1377
|
+
[_NQI, _NT],
|
|
1378
|
+
[64 | 0, 0]
|
|
1379
|
+
];
|
|
1380
|
+
var ListNotebookMetadataInput$ = [3, n0, _LNMI,
|
|
1381
|
+
0,
|
|
1382
|
+
[_WG, _F, _NT, _MR],
|
|
1383
|
+
[0, () => FilterDefinition$, 0, 1], 1
|
|
1384
|
+
];
|
|
1385
|
+
var ListNotebookMetadataOutput$ = [3, n0, _LNMO,
|
|
1386
|
+
0,
|
|
1387
|
+
[_NT, _NML],
|
|
1388
|
+
[0, () => NotebookMetadataArray]
|
|
1389
|
+
];
|
|
1390
|
+
var ListNotebookSessionsRequest$ = [3, n0, _LNSR,
|
|
1391
|
+
0,
|
|
1392
|
+
[_NI, _MR, _NT],
|
|
1393
|
+
[0, 1, 0], 1
|
|
1394
|
+
];
|
|
1395
|
+
var ListNotebookSessionsResponse$ = [3, n0, _LNSRi,
|
|
1396
|
+
0,
|
|
1397
|
+
[_NSL, _NT],
|
|
1398
|
+
[() => NotebookSessionsList, 0], 1
|
|
1399
|
+
];
|
|
1400
|
+
var ListPreparedStatementsInput$ = [3, n0, _LPSI,
|
|
1401
|
+
0,
|
|
1402
|
+
[_WG, _NT, _MR],
|
|
1403
|
+
[0, 0, 1], 1
|
|
1404
|
+
];
|
|
1405
|
+
var ListPreparedStatementsOutput$ = [3, n0, _LPSO,
|
|
1406
|
+
0,
|
|
1407
|
+
[_PS, _NT],
|
|
1408
|
+
[() => PreparedStatementsList, 0]
|
|
1409
|
+
];
|
|
1410
|
+
var ListQueryExecutionsInput$ = [3, n0, _LQEI,
|
|
1411
|
+
0,
|
|
1412
|
+
[_NT, _MR, _WG],
|
|
1413
|
+
[0, 1, 0]
|
|
1414
|
+
];
|
|
1415
|
+
var ListQueryExecutionsOutput$ = [3, n0, _LQEO,
|
|
1416
|
+
0,
|
|
1417
|
+
[_QEI, _NT],
|
|
1418
|
+
[64 | 0, 0]
|
|
1419
|
+
];
|
|
1420
|
+
var ListSessionsRequest$ = [3, n0, _LSR,
|
|
1421
|
+
0,
|
|
1422
|
+
[_WG, _SF, _MR, _NT],
|
|
1423
|
+
[0, 0, 1, 0], 1
|
|
1424
|
+
];
|
|
1425
|
+
var ListSessionsResponse$ = [3, n0, _LSRi,
|
|
1426
|
+
0,
|
|
1427
|
+
[_NT, _Se],
|
|
1428
|
+
[0, () => SessionsList]
|
|
1429
|
+
];
|
|
1430
|
+
var ListTableMetadataInput$ = [3, n0, _LTMI,
|
|
1431
|
+
0,
|
|
1432
|
+
[_CN, _DN, _Ex, _NT, _MR, _WG],
|
|
1433
|
+
[0, 0, 0, 0, 1, 0], 2
|
|
1434
|
+
];
|
|
1435
|
+
var ListTableMetadataOutput$ = [3, n0, _LTMO,
|
|
1436
|
+
0,
|
|
1437
|
+
[_TML, _NT],
|
|
1438
|
+
[() => TableMetadataList, 0]
|
|
1439
|
+
];
|
|
1440
|
+
var ListTagsForResourceInput$ = [3, n0, _LTFRI,
|
|
1441
|
+
0,
|
|
1442
|
+
[_RARN, _NT, _MR],
|
|
1443
|
+
[0, 0, 1], 1
|
|
1444
|
+
];
|
|
1445
|
+
var ListTagsForResourceOutput$ = [3, n0, _LTFRO,
|
|
1446
|
+
0,
|
|
1447
|
+
[_Ta, _NT],
|
|
1448
|
+
[() => TagList, 0]
|
|
1449
|
+
];
|
|
1450
|
+
var ListWorkGroupsInput$ = [3, n0, _LWGI,
|
|
1451
|
+
0,
|
|
1452
|
+
[_NT, _MR],
|
|
1453
|
+
[0, 1]
|
|
1454
|
+
];
|
|
1455
|
+
var ListWorkGroupsOutput$ = [3, n0, _LWGO,
|
|
1456
|
+
0,
|
|
1457
|
+
[_WGo, _NT],
|
|
1458
|
+
[() => WorkGroupsList, 0]
|
|
1459
|
+
];
|
|
1460
|
+
var ManagedLoggingConfiguration$ = [3, n0, _MLC,
|
|
1461
|
+
0,
|
|
1462
|
+
[_E, _KK],
|
|
1463
|
+
[2, 0], 1
|
|
1464
|
+
];
|
|
1465
|
+
var ManagedQueryResultsConfiguration$ = [3, n0, _MQRC,
|
|
1466
|
+
0,
|
|
1467
|
+
[_E, _ECn],
|
|
1468
|
+
[2, () => ManagedQueryResultsEncryptionConfiguration$], 1
|
|
1469
|
+
];
|
|
1470
|
+
var ManagedQueryResultsConfigurationUpdates$ = [3, n0, _MQRCU,
|
|
1471
|
+
0,
|
|
1472
|
+
[_E, _ECn, _REC],
|
|
1473
|
+
[2, () => ManagedQueryResultsEncryptionConfiguration$, 2]
|
|
1474
|
+
];
|
|
1475
|
+
var ManagedQueryResultsEncryptionConfiguration$ = [3, n0, _MQREC,
|
|
1476
|
+
0,
|
|
1477
|
+
[_KK],
|
|
1478
|
+
[0], 1
|
|
1479
|
+
];
|
|
1480
|
+
var MonitoringConfiguration$ = [3, n0, _MC,
|
|
1481
|
+
0,
|
|
1482
|
+
[_CWLC, _MLC, _SLC],
|
|
1483
|
+
[() => CloudWatchLoggingConfiguration$, () => ManagedLoggingConfiguration$, () => S3LoggingConfiguration$]
|
|
1484
|
+
];
|
|
1485
|
+
var NamedQuery$ = [3, n0, _NQa,
|
|
1486
|
+
0,
|
|
1487
|
+
[_N, _Da, _QS, _D, _NQIa, _WG],
|
|
1488
|
+
[0, 0, 0, 0, 0, 0], 3
|
|
1489
|
+
];
|
|
1490
|
+
var NotebookMetadata$ = [3, n0, _NM,
|
|
1491
|
+
0,
|
|
1492
|
+
[_NI, _N, _WG, _CT, _T, _LMT],
|
|
1493
|
+
[0, 0, 0, 4, 0, 4]
|
|
1494
|
+
];
|
|
1495
|
+
var NotebookSessionSummary$ = [3, n0, _NSS,
|
|
1496
|
+
0,
|
|
1497
|
+
[_SI, _CT],
|
|
1498
|
+
[0, 4]
|
|
1499
|
+
];
|
|
1500
|
+
var PreparedStatement$ = [3, n0, _PSr,
|
|
1501
|
+
0,
|
|
1502
|
+
[_SNt, _QSu, _WGNo, _D, _LMT],
|
|
1503
|
+
[0, 0, 0, 0, 4]
|
|
1504
|
+
];
|
|
1505
|
+
var PreparedStatementSummary$ = [3, n0, _PSS,
|
|
1506
|
+
0,
|
|
1507
|
+
[_SNt, _LMT],
|
|
1508
|
+
[0, 4]
|
|
1509
|
+
];
|
|
1510
|
+
var PutCapacityAssignmentConfigurationInput$ = [3, n0, _PCACI,
|
|
1511
|
+
0,
|
|
1512
|
+
[_CRN, _CAap],
|
|
1513
|
+
[0, () => CapacityAssignmentsList], 2
|
|
1514
|
+
];
|
|
1515
|
+
var PutCapacityAssignmentConfigurationOutput$ = [3, n0, _PCACO,
|
|
1516
|
+
0,
|
|
1517
|
+
[],
|
|
1518
|
+
[]
|
|
1519
|
+
];
|
|
1520
|
+
var QueryExecution$ = [3, n0, _QEu,
|
|
1521
|
+
0,
|
|
1522
|
+
[_QEIu, _Q, _ST, _MQRC, _RC, _RRC, _QEC, _St, _Sta, _WG, _EV, _EP, _STu, _QRSAGC],
|
|
1523
|
+
[0, 0, 0, () => ManagedQueryResultsConfiguration$, () => ResultConfiguration$, () => ResultReuseConfiguration$, () => QueryExecutionContext$, () => QueryExecutionStatus$, () => QueryExecutionStatistics$, 0, () => EngineVersion$, 64 | 0, 0, () => QueryResultsS3AccessGrantsConfiguration$]
|
|
1524
|
+
];
|
|
1525
|
+
var QueryExecutionContext$ = [3, n0, _QEC,
|
|
1526
|
+
0,
|
|
1527
|
+
[_Da, _Cat],
|
|
1528
|
+
[0, 0]
|
|
1529
|
+
];
|
|
1530
|
+
var QueryExecutionStatistics$ = [3, n0, _QES,
|
|
1531
|
+
0,
|
|
1532
|
+
[_EETIM, _DSIB, _DML, _TETIM, _QQTIM, _SPPTIM, _QPTIM, _SPTIM, _RRI, _DCp],
|
|
1533
|
+
[1, 1, 0, 1, 1, 1, 1, 1, () => ResultReuseInformation$, 1]
|
|
1534
|
+
];
|
|
1535
|
+
var QueryExecutionStatus$ = [3, n0, _QESu,
|
|
1536
|
+
0,
|
|
1537
|
+
[_S, _SCR, _SDT, _CDT, _AE],
|
|
1538
|
+
[0, 0, 4, 4, () => AthenaError$]
|
|
1539
|
+
];
|
|
1540
|
+
var QueryResultsS3AccessGrantsConfiguration$ = [3, n0, _QRSAGC,
|
|
1541
|
+
0,
|
|
1542
|
+
[_ESAG, _ATu, _CULP],
|
|
1543
|
+
[2, 0, 2], 2
|
|
1544
|
+
];
|
|
1545
|
+
var QueryRuntimeStatistics$ = [3, n0, _QRS,
|
|
1546
|
+
0,
|
|
1547
|
+
[_Ti, _Ro, _OS],
|
|
1548
|
+
[() => QueryRuntimeStatisticsTimeline$, () => QueryRuntimeStatisticsRows$, () => QueryStage$]
|
|
1549
|
+
];
|
|
1550
|
+
var QueryRuntimeStatisticsRows$ = [3, n0, _QRSR,
|
|
1551
|
+
0,
|
|
1552
|
+
[_IR, _IB, _OB, _OR],
|
|
1553
|
+
[1, 1, 1, 1]
|
|
1554
|
+
];
|
|
1555
|
+
var QueryRuntimeStatisticsTimeline$ = [3, n0, _QRST,
|
|
1556
|
+
0,
|
|
1557
|
+
[_QQTIM, _SPPTIM, _QPTIM, _EETIM, _SPTIM, _TETIM],
|
|
1558
|
+
[1, 1, 1, 1, 1, 1]
|
|
1559
|
+
];
|
|
1560
|
+
var QueryStage$ = [3, n0, _QSue,
|
|
1561
|
+
0,
|
|
1562
|
+
[_SIt, _S, _OB, _OR, _IB, _IR, _ETxe, _QSP, _SS],
|
|
1563
|
+
[1, 0, 1, 1, 1, 1, 1, () => QueryStagePlanNode$, () => QueryStages]
|
|
1564
|
+
];
|
|
1565
|
+
var QueryStagePlanNode$ = [3, n0, _QSPN,
|
|
1566
|
+
0,
|
|
1567
|
+
[_N, _I, _Ch, _RSe],
|
|
1568
|
+
[0, 0, () => QueryStagePlanNodes, 64 | 0]
|
|
1569
|
+
];
|
|
1570
|
+
var ResultConfiguration$ = [3, n0, _RC,
|
|
1571
|
+
0,
|
|
1572
|
+
[_OL, _ECn, _EBO, _AC],
|
|
1573
|
+
[0, () => EncryptionConfiguration$, 0, () => AclConfiguration$]
|
|
1574
|
+
];
|
|
1575
|
+
var ResultConfigurationUpdates$ = [3, n0, _RCU,
|
|
1576
|
+
0,
|
|
1577
|
+
[_OL, _ROL, _ECn, _REC, _EBO, _REBO, _AC, _RAC],
|
|
1578
|
+
[0, 2, () => EncryptionConfiguration$, 2, 0, 2, () => AclConfiguration$, 2]
|
|
1579
|
+
];
|
|
1580
|
+
var ResultReuseByAgeConfiguration$ = [3, n0, _RRBAC,
|
|
1581
|
+
0,
|
|
1582
|
+
[_E, _MAIM],
|
|
1583
|
+
[2, 1], 1
|
|
1584
|
+
];
|
|
1585
|
+
var ResultReuseConfiguration$ = [3, n0, _RRC,
|
|
1586
|
+
0,
|
|
1587
|
+
[_RRBAC],
|
|
1588
|
+
[() => ResultReuseByAgeConfiguration$]
|
|
1589
|
+
];
|
|
1590
|
+
var ResultReuseInformation$ = [3, n0, _RRI,
|
|
1591
|
+
0,
|
|
1592
|
+
[_RPR],
|
|
1593
|
+
[2], 1
|
|
1594
|
+
];
|
|
1595
|
+
var ResultSet$ = [3, n0, _RS,
|
|
1596
|
+
0,
|
|
1597
|
+
[_Ro, _RSM],
|
|
1598
|
+
[() => RowList, () => ResultSetMetadata$]
|
|
1599
|
+
];
|
|
1600
|
+
var ResultSetMetadata$ = [3, n0, _RSM,
|
|
1601
|
+
0,
|
|
1602
|
+
[_CI],
|
|
1603
|
+
[() => ColumnInfoList]
|
|
1604
|
+
];
|
|
1605
|
+
var Row$ = [3, n0, _Row,
|
|
1606
|
+
0,
|
|
1607
|
+
[_Data],
|
|
1608
|
+
[() => datumList]
|
|
1609
|
+
];
|
|
1610
|
+
var S3LoggingConfiguration$ = [3, n0, _SLC,
|
|
1611
|
+
0,
|
|
1612
|
+
[_E, _KK, _LL],
|
|
1613
|
+
[2, 0, 0], 1
|
|
1614
|
+
];
|
|
1615
|
+
var SessionConfiguration$ = [3, n0, _SC,
|
|
1616
|
+
0,
|
|
1617
|
+
[_ER, _WD, _ITS, _SITIM, _ECn],
|
|
1618
|
+
[0, 0, 1, 1, () => EncryptionConfiguration$]
|
|
1619
|
+
];
|
|
1620
|
+
var SessionStatistics$ = [3, n0, _SSe,
|
|
1621
|
+
0,
|
|
1622
|
+
[_DEIM],
|
|
1623
|
+
[1]
|
|
1624
|
+
];
|
|
1625
|
+
var SessionStatus$ = [3, n0, _SSes,
|
|
1626
|
+
0,
|
|
1627
|
+
[_SDTt, _LMDT, _EDT, _ISDT, _S, _SCR],
|
|
1628
|
+
[4, 4, 4, 4, 0, 0]
|
|
1629
|
+
];
|
|
1630
|
+
var SessionSummary$ = [3, n0, _SSess,
|
|
1631
|
+
0,
|
|
1632
|
+
[_SI, _D, _EV, _NV, _St],
|
|
1633
|
+
[0, 0, () => EngineVersion$, 0, () => SessionStatus$]
|
|
1634
|
+
];
|
|
1635
|
+
var StartCalculationExecutionRequest$ = [3, n0, _SCER,
|
|
1636
|
+
0,
|
|
1637
|
+
[_SI, _D, _CC, _CB, _CRT],
|
|
1638
|
+
[0, 0, () => CalculationConfiguration$, 0, 0], 1
|
|
1639
|
+
];
|
|
1640
|
+
var StartCalculationExecutionResponse$ = [3, n0, _SCERt,
|
|
1641
|
+
0,
|
|
1642
|
+
[_CEI, _S],
|
|
1643
|
+
[0, 0]
|
|
1644
|
+
];
|
|
1645
|
+
var StartQueryExecutionInput$ = [3, n0, _SQEI,
|
|
1646
|
+
0,
|
|
1647
|
+
[_QS, _CRT, _QEC, _RC, _WG, _EP, _RRC, _ECng],
|
|
1648
|
+
[0, [0, 4], () => QueryExecutionContext$, () => ResultConfiguration$, 0, 64 | 0, () => ResultReuseConfiguration$, () => EngineConfiguration$], 1
|
|
1649
|
+
];
|
|
1650
|
+
var StartQueryExecutionOutput$ = [3, n0, _SQEO,
|
|
1651
|
+
0,
|
|
1652
|
+
[_QEIu],
|
|
1653
|
+
[0]
|
|
1654
|
+
];
|
|
1655
|
+
var StartSessionRequest$ = [3, n0, _SSR,
|
|
1656
|
+
0,
|
|
1657
|
+
[_WG, _ECng, _D, _ER, _MC, _NV, _SITIM, _CRT, _Ta, _CWGT],
|
|
1658
|
+
[0, () => EngineConfiguration$, 0, 0, () => MonitoringConfiguration$, 0, 1, 0, () => TagList, 2], 2
|
|
1659
|
+
];
|
|
1660
|
+
var StartSessionResponse$ = [3, n0, _SSRt,
|
|
1661
|
+
0,
|
|
1662
|
+
[_SI, _S],
|
|
1663
|
+
[0, 0]
|
|
1664
|
+
];
|
|
1665
|
+
var StopCalculationExecutionRequest$ = [3, n0, _SCERto,
|
|
1666
|
+
0,
|
|
1667
|
+
[_CEI],
|
|
1668
|
+
[0], 1
|
|
1669
|
+
];
|
|
1670
|
+
var StopCalculationExecutionResponse$ = [3, n0, _SCERtop,
|
|
1671
|
+
0,
|
|
1672
|
+
[_S],
|
|
1673
|
+
[0]
|
|
1674
|
+
];
|
|
1675
|
+
var StopQueryExecutionInput$ = [3, n0, _SQEIt,
|
|
1676
|
+
0,
|
|
1677
|
+
[_QEIu],
|
|
1678
|
+
[[0, 4]]
|
|
1679
|
+
];
|
|
1680
|
+
var StopQueryExecutionOutput$ = [3, n0, _SQEOt,
|
|
1681
|
+
0,
|
|
1682
|
+
[],
|
|
1683
|
+
[]
|
|
1684
|
+
];
|
|
1685
|
+
var TableMetadata$ = [3, n0, _TM,
|
|
1686
|
+
0,
|
|
1687
|
+
[_N, _CTr, _LAT, _TT, _Col, _PK, _Pa],
|
|
1688
|
+
[0, 4, 4, 0, () => ColumnList, () => ColumnList, 128 | 0], 1
|
|
1689
|
+
];
|
|
1690
|
+
var Tag$ = [3, n0, _Tag,
|
|
1691
|
+
0,
|
|
1692
|
+
[_K, _V],
|
|
1693
|
+
[0, 0]
|
|
1694
|
+
];
|
|
1695
|
+
var TagResourceInput$ = [3, n0, _TRI,
|
|
1696
|
+
0,
|
|
1697
|
+
[_RARN, _Ta],
|
|
1698
|
+
[0, () => TagList], 2
|
|
1699
|
+
];
|
|
1700
|
+
var TagResourceOutput$ = [3, n0, _TRO,
|
|
1701
|
+
0,
|
|
1702
|
+
[],
|
|
1703
|
+
[]
|
|
1704
|
+
];
|
|
1705
|
+
var TerminateSessionRequest$ = [3, n0, _TSR,
|
|
1706
|
+
0,
|
|
1707
|
+
[_SI],
|
|
1708
|
+
[0], 1
|
|
1709
|
+
];
|
|
1710
|
+
var TerminateSessionResponse$ = [3, n0, _TSRe,
|
|
1711
|
+
0,
|
|
1712
|
+
[_S],
|
|
1713
|
+
[0]
|
|
1714
|
+
];
|
|
1715
|
+
var UnprocessedNamedQueryId$ = [3, n0, _UNQIn,
|
|
1716
|
+
0,
|
|
1717
|
+
[_NQIa, _ECr, _EM],
|
|
1718
|
+
[0, 0, 0]
|
|
1719
|
+
];
|
|
1720
|
+
var UnprocessedPreparedStatementName$ = [3, n0, _UPSNn,
|
|
1721
|
+
0,
|
|
1722
|
+
[_SNt, _ECr, _EM],
|
|
1723
|
+
[0, 0, 0]
|
|
1724
|
+
];
|
|
1725
|
+
var UnprocessedQueryExecutionId$ = [3, n0, _UQEIn,
|
|
1726
|
+
0,
|
|
1727
|
+
[_QEIu, _ECr, _EM],
|
|
1728
|
+
[0, 0, 0]
|
|
1729
|
+
];
|
|
1730
|
+
var UntagResourceInput$ = [3, n0, _URI,
|
|
1731
|
+
0,
|
|
1732
|
+
[_RARN, _TK],
|
|
1733
|
+
[0, 64 | 0], 2
|
|
1734
|
+
];
|
|
1735
|
+
var UntagResourceOutput$ = [3, n0, _URO,
|
|
1736
|
+
0,
|
|
1737
|
+
[],
|
|
1738
|
+
[]
|
|
1739
|
+
];
|
|
1740
|
+
var UpdateCapacityReservationInput$ = [3, n0, _UCRI,
|
|
1741
|
+
0,
|
|
1742
|
+
[_TD, _N],
|
|
1743
|
+
[1, 0], 2
|
|
1744
|
+
];
|
|
1745
|
+
var UpdateCapacityReservationOutput$ = [3, n0, _UCRO,
|
|
1746
|
+
0,
|
|
1747
|
+
[],
|
|
1748
|
+
[]
|
|
1749
|
+
];
|
|
1750
|
+
var UpdateDataCatalogInput$ = [3, n0, _UDCI,
|
|
1751
|
+
0,
|
|
1752
|
+
[_N, _T, _D, _Pa],
|
|
1753
|
+
[0, 0, 0, 128 | 0], 2
|
|
1754
|
+
];
|
|
1755
|
+
var UpdateDataCatalogOutput$ = [3, n0, _UDCO,
|
|
1756
|
+
0,
|
|
1757
|
+
[],
|
|
1758
|
+
[]
|
|
1759
|
+
];
|
|
1760
|
+
var UpdateNamedQueryInput$ = [3, n0, _UNQIp,
|
|
1761
|
+
0,
|
|
1762
|
+
[_NQIa, _N, _QS, _D],
|
|
1763
|
+
[0, 0, 0, 0], 3
|
|
1764
|
+
];
|
|
1765
|
+
var UpdateNamedQueryOutput$ = [3, n0, _UNQO,
|
|
1766
|
+
0,
|
|
1767
|
+
[],
|
|
1768
|
+
[]
|
|
1769
|
+
];
|
|
1770
|
+
var UpdateNotebookInput$ = [3, n0, _UNI,
|
|
1771
|
+
0,
|
|
1772
|
+
[_NI, _Pay, _T, _SI, _CRT],
|
|
1773
|
+
[0, 0, 0, 0, 0], 3
|
|
1774
|
+
];
|
|
1775
|
+
var UpdateNotebookMetadataInput$ = [3, n0, _UNMI,
|
|
1776
|
+
0,
|
|
1777
|
+
[_NI, _N, _CRT],
|
|
1778
|
+
[0, 0, 0], 2
|
|
1779
|
+
];
|
|
1780
|
+
var UpdateNotebookMetadataOutput$ = [3, n0, _UNMO,
|
|
1781
|
+
0,
|
|
1782
|
+
[],
|
|
1783
|
+
[]
|
|
1784
|
+
];
|
|
1785
|
+
var UpdateNotebookOutput$ = [3, n0, _UNO,
|
|
1786
|
+
0,
|
|
1787
|
+
[],
|
|
1788
|
+
[]
|
|
1789
|
+
];
|
|
1790
|
+
var UpdatePreparedStatementInput$ = [3, n0, _UPSI,
|
|
1791
|
+
0,
|
|
1792
|
+
[_SNt, _WG, _QSu, _D],
|
|
1793
|
+
[0, 0, 0, 0], 3
|
|
1794
|
+
];
|
|
1795
|
+
var UpdatePreparedStatementOutput$ = [3, n0, _UPSO,
|
|
1796
|
+
0,
|
|
1797
|
+
[],
|
|
1798
|
+
[]
|
|
1799
|
+
];
|
|
1800
|
+
var UpdateWorkGroupInput$ = [3, n0, _UWGI,
|
|
1801
|
+
0,
|
|
1802
|
+
[_WG, _D, _CU, _S],
|
|
1803
|
+
[0, 0, () => WorkGroupConfigurationUpdates$, 0], 1
|
|
1804
|
+
];
|
|
1805
|
+
var UpdateWorkGroupOutput$ = [3, n0, _UWGO,
|
|
1806
|
+
0,
|
|
1807
|
+
[],
|
|
1808
|
+
[]
|
|
1809
|
+
];
|
|
1810
|
+
var WorkGroup$ = [3, n0, _WG,
|
|
1811
|
+
0,
|
|
1812
|
+
[_N, _S, _Con, _D, _CT, _ICAA],
|
|
1813
|
+
[0, 0, () => WorkGroupConfiguration$, 0, 4, 0], 1
|
|
1814
|
+
];
|
|
1815
|
+
var WorkGroupConfiguration$ = [3, n0, _WGC,
|
|
1816
|
+
0,
|
|
1817
|
+
[_RC, _MQRC, _EWGC, _PCWME, _BSCPQ, _RPE, _EV, _ACdd, _ER, _MC, _ECng, _CCEC, _EMEC, _ICC, _QRSAGC],
|
|
1818
|
+
[() => ResultConfiguration$, () => ManagedQueryResultsConfiguration$, 2, 2, 1, 2, () => EngineVersion$, 0, 0, () => MonitoringConfiguration$, () => EngineConfiguration$, () => CustomerContentEncryptionConfiguration$, 2, () => IdentityCenterConfiguration$, () => QueryResultsS3AccessGrantsConfiguration$]
|
|
1819
|
+
];
|
|
1820
|
+
var WorkGroupConfigurationUpdates$ = [3, n0, _WGCU,
|
|
1821
|
+
0,
|
|
1822
|
+
[_EWGC, _RCU, _MQRCU, _PCWME, _BSCPQ, _RBSCPQ, _RPE, _EV, _RCCEC, _ACdd, _ER, _CCEC, _EMEC, _QRSAGC, _MC, _ECng],
|
|
1823
|
+
[2, () => ResultConfigurationUpdates$, () => ManagedQueryResultsConfigurationUpdates$, 2, 1, 2, 2, () => EngineVersion$, 2, 0, 0, () => CustomerContentEncryptionConfiguration$, 2, () => QueryResultsS3AccessGrantsConfiguration$, () => MonitoringConfiguration$, () => EngineConfiguration$]
|
|
1824
|
+
];
|
|
1825
|
+
var WorkGroupSummary$ = [3, n0, _WGS,
|
|
1826
|
+
0,
|
|
1827
|
+
[_N, _S, _D, _CT, _EV, _ICAA],
|
|
1828
|
+
[0, 0, 0, 4, () => EngineVersion$, 0]
|
|
1829
|
+
];
|
|
1830
|
+
var ApplicationDPUSizesList = [1, n0, _ADPUSL,
|
|
1831
|
+
0, () => ApplicationDPUSizes$
|
|
1832
|
+
];
|
|
1833
|
+
var CalculationsList = [1, n0, _CL,
|
|
1834
|
+
0, () => CalculationSummary$
|
|
1835
|
+
];
|
|
1836
|
+
var CapacityAssignmentsList = [1, n0, _CAL,
|
|
1837
|
+
0, () => CapacityAssignment$
|
|
1838
|
+
];
|
|
1839
|
+
var CapacityReservationsList = [1, n0, _CRL,
|
|
1840
|
+
0, () => CapacityReservation$
|
|
1841
|
+
];
|
|
1842
|
+
var ClassificationList = [1, n0, _CLl,
|
|
1843
|
+
0, () => Classification$
|
|
1844
|
+
];
|
|
1845
|
+
var ColumnInfoList = [1, n0, _CIL,
|
|
1846
|
+
0, () => ColumnInfo$
|
|
1847
|
+
];
|
|
1848
|
+
var ColumnList = [1, n0, _CLo,
|
|
1849
|
+
0, () => Column$
|
|
1850
|
+
];
|
|
1851
|
+
var DatabaseList = [1, n0, _DL,
|
|
1852
|
+
0, () => Database$
|
|
1853
|
+
];
|
|
1854
|
+
var DataCatalogSummaryList = [1, n0, _DCSL,
|
|
1855
|
+
0, () => DataCatalogSummary$
|
|
1856
|
+
];
|
|
1857
|
+
var datumList = [1, n0, _dL,
|
|
1858
|
+
0, () => Datum$
|
|
1859
|
+
];
|
|
1860
|
+
var EngineVersionsList = [1, n0, _EVL,
|
|
1861
|
+
0, () => EngineVersion$
|
|
1862
|
+
];
|
|
1863
|
+
var ExecutorsSummaryList = [1, n0, _ESL,
|
|
1864
|
+
0, () => ExecutorsSummary$
|
|
1865
|
+
];
|
|
1866
|
+
var NamedQueryList = [1, n0, _NQL,
|
|
1867
|
+
0, () => NamedQuery$
|
|
1868
|
+
];
|
|
1869
|
+
var NotebookMetadataArray = [1, n0, _NMA,
|
|
1870
|
+
0, () => NotebookMetadata$
|
|
1871
|
+
];
|
|
1872
|
+
var NotebookSessionsList = [1, n0, _NSL,
|
|
1873
|
+
0, () => NotebookSessionSummary$
|
|
1874
|
+
];
|
|
1875
|
+
var PreparedStatementDetailsList = [1, n0, _PSDL,
|
|
1876
|
+
0, () => PreparedStatement$
|
|
1877
|
+
];
|
|
1878
|
+
var PreparedStatementsList = [1, n0, _PSL,
|
|
1879
|
+
0, () => PreparedStatementSummary$
|
|
1880
|
+
];
|
|
1881
|
+
var QueryExecutionList = [1, n0, _QEL,
|
|
1882
|
+
0, () => QueryExecution$
|
|
1883
|
+
];
|
|
1884
|
+
var QueryStagePlanNodes = [1, n0, _QSPNu,
|
|
1885
|
+
0, () => QueryStagePlanNode$
|
|
1886
|
+
];
|
|
1887
|
+
var QueryStages = [1, n0, _QSuer,
|
|
1888
|
+
0, () => QueryStage$
|
|
1889
|
+
];
|
|
1890
|
+
var RowList = [1, n0, _RL,
|
|
1891
|
+
0, () => Row$
|
|
1892
|
+
];
|
|
1893
|
+
var SessionsList = [1, n0, _SL,
|
|
1894
|
+
0, () => SessionSummary$
|
|
1895
|
+
];
|
|
1896
|
+
var TableMetadataList = [1, n0, _TML,
|
|
1897
|
+
0, () => TableMetadata$
|
|
1898
|
+
];
|
|
1899
|
+
var TagList = [1, n0, _TL,
|
|
1900
|
+
0, () => Tag$
|
|
1901
|
+
];
|
|
1902
|
+
var UnprocessedNamedQueryIdList = [1, n0, _UNQIL,
|
|
1903
|
+
0, () => UnprocessedNamedQueryId$
|
|
1904
|
+
];
|
|
1905
|
+
var UnprocessedPreparedStatementNameList = [1, n0, _UPSNL,
|
|
1906
|
+
0, () => UnprocessedPreparedStatementName$
|
|
1907
|
+
];
|
|
1908
|
+
var UnprocessedQueryExecutionIdList = [1, n0, _UQEIL,
|
|
1909
|
+
0, () => UnprocessedQueryExecutionId$
|
|
1910
|
+
];
|
|
1911
|
+
var WorkGroupsList = [1, n0, _WGL,
|
|
1912
|
+
0, () => WorkGroupSummary$
|
|
1913
|
+
];
|
|
1914
|
+
var BatchGetNamedQuery$ = [9, n0, _BGNQ,
|
|
1915
|
+
0, () => BatchGetNamedQueryInput$, () => BatchGetNamedQueryOutput$
|
|
1916
|
+
];
|
|
1917
|
+
var BatchGetPreparedStatement$ = [9, n0, _BGPS,
|
|
1918
|
+
0, () => BatchGetPreparedStatementInput$, () => BatchGetPreparedStatementOutput$
|
|
1919
|
+
];
|
|
1920
|
+
var BatchGetQueryExecution$ = [9, n0, _BGQE,
|
|
1921
|
+
0, () => BatchGetQueryExecutionInput$, () => BatchGetQueryExecutionOutput$
|
|
1922
|
+
];
|
|
1923
|
+
var CancelCapacityReservation$ = [9, n0, _CCR,
|
|
1924
|
+
2, () => CancelCapacityReservationInput$, () => CancelCapacityReservationOutput$
|
|
1925
|
+
];
|
|
1926
|
+
var CreateCapacityReservation$ = [9, n0, _CCRr,
|
|
1927
|
+
2, () => CreateCapacityReservationInput$, () => CreateCapacityReservationOutput$
|
|
1928
|
+
];
|
|
1929
|
+
var CreateDataCatalog$ = [9, n0, _CDC,
|
|
1930
|
+
0, () => CreateDataCatalogInput$, () => CreateDataCatalogOutput$
|
|
1931
|
+
];
|
|
1932
|
+
var CreateNamedQuery$ = [9, n0, _CNQ,
|
|
1933
|
+
2, () => CreateNamedQueryInput$, () => CreateNamedQueryOutput$
|
|
1934
|
+
];
|
|
1935
|
+
var CreateNotebook$ = [9, n0, _CNr,
|
|
1936
|
+
0, () => CreateNotebookInput$, () => CreateNotebookOutput$
|
|
1937
|
+
];
|
|
1938
|
+
var CreatePreparedStatement$ = [9, n0, _CPS,
|
|
1939
|
+
0, () => CreatePreparedStatementInput$, () => CreatePreparedStatementOutput$
|
|
1940
|
+
];
|
|
1941
|
+
var CreatePresignedNotebookUrl$ = [9, n0, _CPNU,
|
|
1942
|
+
0, () => CreatePresignedNotebookUrlRequest$, () => CreatePresignedNotebookUrlResponse$
|
|
1943
|
+
];
|
|
1944
|
+
var CreateWorkGroup$ = [9, n0, _CWG,
|
|
1945
|
+
0, () => CreateWorkGroupInput$, () => CreateWorkGroupOutput$
|
|
1946
|
+
];
|
|
1947
|
+
var DeleteCapacityReservation$ = [9, n0, _DCR,
|
|
1948
|
+
2, () => DeleteCapacityReservationInput$, () => DeleteCapacityReservationOutput$
|
|
1949
|
+
];
|
|
1950
|
+
var DeleteDataCatalog$ = [9, n0, _DDC,
|
|
1951
|
+
0, () => DeleteDataCatalogInput$, () => DeleteDataCatalogOutput$
|
|
1952
|
+
];
|
|
1953
|
+
var DeleteNamedQuery$ = [9, n0, _DNQ,
|
|
1954
|
+
2, () => DeleteNamedQueryInput$, () => DeleteNamedQueryOutput$
|
|
1955
|
+
];
|
|
1956
|
+
var DeleteNotebook$ = [9, n0, _DNe,
|
|
1957
|
+
0, () => DeleteNotebookInput$, () => DeleteNotebookOutput$
|
|
1958
|
+
];
|
|
1959
|
+
var DeletePreparedStatement$ = [9, n0, _DPS,
|
|
1960
|
+
0, () => DeletePreparedStatementInput$, () => DeletePreparedStatementOutput$
|
|
1961
|
+
];
|
|
1962
|
+
var DeleteWorkGroup$ = [9, n0, _DWG,
|
|
1963
|
+
2, () => DeleteWorkGroupInput$, () => DeleteWorkGroupOutput$
|
|
1964
|
+
];
|
|
1965
|
+
var ExportNotebook$ = [9, n0, _EN,
|
|
1966
|
+
0, () => ExportNotebookInput$, () => ExportNotebookOutput$
|
|
1967
|
+
];
|
|
1968
|
+
var GetCalculationExecution$ = [9, n0, _GCE,
|
|
1969
|
+
0, () => GetCalculationExecutionRequest$, () => GetCalculationExecutionResponse$
|
|
1970
|
+
];
|
|
1971
|
+
var GetCalculationExecutionCode$ = [9, n0, _GCEC,
|
|
1972
|
+
0, () => GetCalculationExecutionCodeRequest$, () => GetCalculationExecutionCodeResponse$
|
|
1973
|
+
];
|
|
1974
|
+
var GetCalculationExecutionStatus$ = [9, n0, _GCES,
|
|
1975
|
+
0, () => GetCalculationExecutionStatusRequest$, () => GetCalculationExecutionStatusResponse$
|
|
1976
|
+
];
|
|
1977
|
+
var GetCapacityAssignmentConfiguration$ = [9, n0, _GCAC,
|
|
1978
|
+
0, () => GetCapacityAssignmentConfigurationInput$, () => GetCapacityAssignmentConfigurationOutput$
|
|
1979
|
+
];
|
|
1980
|
+
var GetCapacityReservation$ = [9, n0, _GCR,
|
|
1981
|
+
0, () => GetCapacityReservationInput$, () => GetCapacityReservationOutput$
|
|
1982
|
+
];
|
|
1983
|
+
var GetDatabase$ = [9, n0, _GD,
|
|
1984
|
+
0, () => GetDatabaseInput$, () => GetDatabaseOutput$
|
|
1985
|
+
];
|
|
1986
|
+
var GetDataCatalog$ = [9, n0, _GDC,
|
|
1987
|
+
0, () => GetDataCatalogInput$, () => GetDataCatalogOutput$
|
|
1988
|
+
];
|
|
1989
|
+
var GetNamedQuery$ = [9, n0, _GNQ,
|
|
1990
|
+
0, () => GetNamedQueryInput$, () => GetNamedQueryOutput$
|
|
1991
|
+
];
|
|
1992
|
+
var GetNotebookMetadata$ = [9, n0, _GNM,
|
|
1993
|
+
0, () => GetNotebookMetadataInput$, () => GetNotebookMetadataOutput$
|
|
1994
|
+
];
|
|
1995
|
+
var GetPreparedStatement$ = [9, n0, _GPS,
|
|
1996
|
+
0, () => GetPreparedStatementInput$, () => GetPreparedStatementOutput$
|
|
1997
|
+
];
|
|
1998
|
+
var GetQueryExecution$ = [9, n0, _GQE,
|
|
1999
|
+
0, () => GetQueryExecutionInput$, () => GetQueryExecutionOutput$
|
|
2000
|
+
];
|
|
2001
|
+
var GetQueryResults$ = [9, n0, _GQR,
|
|
2002
|
+
0, () => GetQueryResultsInput$, () => GetQueryResultsOutput$
|
|
2003
|
+
];
|
|
2004
|
+
var GetQueryRuntimeStatistics$ = [9, n0, _GQRS,
|
|
2005
|
+
0, () => GetQueryRuntimeStatisticsInput$, () => GetQueryRuntimeStatisticsOutput$
|
|
2006
|
+
];
|
|
2007
|
+
var GetResourceDashboard$ = [9, n0, _GRD,
|
|
2008
|
+
0, () => GetResourceDashboardRequest$, () => GetResourceDashboardResponse$
|
|
2009
|
+
];
|
|
2010
|
+
var GetSession$ = [9, n0, _GS,
|
|
2011
|
+
0, () => GetSessionRequest$, () => GetSessionResponse$
|
|
2012
|
+
];
|
|
2013
|
+
var GetSessionEndpoint$ = [9, n0, _GSE,
|
|
2014
|
+
0, () => GetSessionEndpointRequest$, () => GetSessionEndpointResponse$
|
|
2015
|
+
];
|
|
2016
|
+
var GetSessionStatus$ = [9, n0, _GSS,
|
|
2017
|
+
0, () => GetSessionStatusRequest$, () => GetSessionStatusResponse$
|
|
2018
|
+
];
|
|
2019
|
+
var GetTableMetadata$ = [9, n0, _GTM,
|
|
2020
|
+
0, () => GetTableMetadataInput$, () => GetTableMetadataOutput$
|
|
2021
|
+
];
|
|
2022
|
+
var GetWorkGroup$ = [9, n0, _GWG,
|
|
2023
|
+
0, () => GetWorkGroupInput$, () => GetWorkGroupOutput$
|
|
2024
|
+
];
|
|
2025
|
+
var ImportNotebook$ = [9, n0, _IN,
|
|
2026
|
+
0, () => ImportNotebookInput$, () => ImportNotebookOutput$
|
|
2027
|
+
];
|
|
2028
|
+
var ListApplicationDPUSizes$ = [9, n0, _LADPUS,
|
|
2029
|
+
0, () => ListApplicationDPUSizesInput$, () => ListApplicationDPUSizesOutput$
|
|
2030
|
+
];
|
|
2031
|
+
var ListCalculationExecutions$ = [9, n0, _LCE,
|
|
2032
|
+
0, () => ListCalculationExecutionsRequest$, () => ListCalculationExecutionsResponse$
|
|
2033
|
+
];
|
|
2034
|
+
var ListCapacityReservations$ = [9, n0, _LCR,
|
|
2035
|
+
0, () => ListCapacityReservationsInput$, () => ListCapacityReservationsOutput$
|
|
2036
|
+
];
|
|
2037
|
+
var ListDatabases$ = [9, n0, _LD,
|
|
2038
|
+
0, () => ListDatabasesInput$, () => ListDatabasesOutput$
|
|
2039
|
+
];
|
|
2040
|
+
var ListDataCatalogs$ = [9, n0, _LDC,
|
|
2041
|
+
0, () => ListDataCatalogsInput$, () => ListDataCatalogsOutput$
|
|
2042
|
+
];
|
|
2043
|
+
var ListEngineVersions$ = [9, n0, _LEV,
|
|
2044
|
+
0, () => ListEngineVersionsInput$, () => ListEngineVersionsOutput$
|
|
2045
|
+
];
|
|
2046
|
+
var ListExecutors$ = [9, n0, _LE,
|
|
2047
|
+
0, () => ListExecutorsRequest$, () => ListExecutorsResponse$
|
|
2048
|
+
];
|
|
2049
|
+
var ListNamedQueries$ = [9, n0, _LNQ,
|
|
2050
|
+
0, () => ListNamedQueriesInput$, () => ListNamedQueriesOutput$
|
|
2051
|
+
];
|
|
2052
|
+
var ListNotebookMetadata$ = [9, n0, _LNM,
|
|
2053
|
+
0, () => ListNotebookMetadataInput$, () => ListNotebookMetadataOutput$
|
|
2054
|
+
];
|
|
2055
|
+
var ListNotebookSessions$ = [9, n0, _LNS,
|
|
2056
|
+
0, () => ListNotebookSessionsRequest$, () => ListNotebookSessionsResponse$
|
|
2057
|
+
];
|
|
2058
|
+
var ListPreparedStatements$ = [9, n0, _LPS,
|
|
2059
|
+
0, () => ListPreparedStatementsInput$, () => ListPreparedStatementsOutput$
|
|
2060
|
+
];
|
|
2061
|
+
var ListQueryExecutions$ = [9, n0, _LQE,
|
|
2062
|
+
0, () => ListQueryExecutionsInput$, () => ListQueryExecutionsOutput$
|
|
2063
|
+
];
|
|
2064
|
+
var ListSessions$ = [9, n0, _LS,
|
|
2065
|
+
0, () => ListSessionsRequest$, () => ListSessionsResponse$
|
|
2066
|
+
];
|
|
2067
|
+
var ListTableMetadata$ = [9, n0, _LTMi,
|
|
2068
|
+
0, () => ListTableMetadataInput$, () => ListTableMetadataOutput$
|
|
2069
|
+
];
|
|
2070
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
2071
|
+
0, () => ListTagsForResourceInput$, () => ListTagsForResourceOutput$
|
|
2072
|
+
];
|
|
2073
|
+
var ListWorkGroups$ = [9, n0, _LWG,
|
|
2074
|
+
0, () => ListWorkGroupsInput$, () => ListWorkGroupsOutput$
|
|
2075
|
+
];
|
|
2076
|
+
var PutCapacityAssignmentConfiguration$ = [9, n0, _PCAC,
|
|
2077
|
+
2, () => PutCapacityAssignmentConfigurationInput$, () => PutCapacityAssignmentConfigurationOutput$
|
|
2078
|
+
];
|
|
2079
|
+
var StartCalculationExecution$ = [9, n0, _SCE,
|
|
2080
|
+
0, () => StartCalculationExecutionRequest$, () => StartCalculationExecutionResponse$
|
|
2081
|
+
];
|
|
2082
|
+
var StartQueryExecution$ = [9, n0, _SQE,
|
|
2083
|
+
2, () => StartQueryExecutionInput$, () => StartQueryExecutionOutput$
|
|
2084
|
+
];
|
|
2085
|
+
var StartSession$ = [9, n0, _SSt,
|
|
2086
|
+
0, () => StartSessionRequest$, () => StartSessionResponse$
|
|
2087
|
+
];
|
|
2088
|
+
var StopCalculationExecution$ = [9, n0, _SCEt,
|
|
2089
|
+
0, () => StopCalculationExecutionRequest$, () => StopCalculationExecutionResponse$
|
|
2090
|
+
];
|
|
2091
|
+
var StopQueryExecution$ = [9, n0, _SQEt,
|
|
2092
|
+
2, () => StopQueryExecutionInput$, () => StopQueryExecutionOutput$
|
|
2093
|
+
];
|
|
2094
|
+
var TagResource$ = [9, n0, _TR,
|
|
2095
|
+
0, () => TagResourceInput$, () => TagResourceOutput$
|
|
2096
|
+
];
|
|
2097
|
+
var TerminateSession$ = [9, n0, _TS,
|
|
2098
|
+
0, () => TerminateSessionRequest$, () => TerminateSessionResponse$
|
|
2099
|
+
];
|
|
2100
|
+
var UntagResource$ = [9, n0, _UR,
|
|
2101
|
+
0, () => UntagResourceInput$, () => UntagResourceOutput$
|
|
2102
|
+
];
|
|
2103
|
+
var UpdateCapacityReservation$ = [9, n0, _UCR,
|
|
2104
|
+
0, () => UpdateCapacityReservationInput$, () => UpdateCapacityReservationOutput$
|
|
2105
|
+
];
|
|
2106
|
+
var UpdateDataCatalog$ = [9, n0, _UDC,
|
|
2107
|
+
0, () => UpdateDataCatalogInput$, () => UpdateDataCatalogOutput$
|
|
2108
|
+
];
|
|
2109
|
+
var UpdateNamedQuery$ = [9, n0, _UNQ,
|
|
2110
|
+
2, () => UpdateNamedQueryInput$, () => UpdateNamedQueryOutput$
|
|
2111
|
+
];
|
|
2112
|
+
var UpdateNotebook$ = [9, n0, _UN,
|
|
2113
|
+
0, () => UpdateNotebookInput$, () => UpdateNotebookOutput$
|
|
2114
|
+
];
|
|
2115
|
+
var UpdateNotebookMetadata$ = [9, n0, _UNM,
|
|
2116
|
+
0, () => UpdateNotebookMetadataInput$, () => UpdateNotebookMetadataOutput$
|
|
2117
|
+
];
|
|
2118
|
+
var UpdatePreparedStatement$ = [9, n0, _UPS,
|
|
2119
|
+
0, () => UpdatePreparedStatementInput$, () => UpdatePreparedStatementOutput$
|
|
2120
|
+
];
|
|
2121
|
+
var UpdateWorkGroup$ = [9, n0, _UWG,
|
|
2122
|
+
0, () => UpdateWorkGroupInput$, () => UpdateWorkGroupOutput$
|
|
2123
|
+
];
|
|
2124
|
+
|
|
2125
|
+
const getRuntimeConfig$1 = (config) => {
|
|
2126
|
+
return {
|
|
2127
|
+
apiVersion: "2017-05-18",
|
|
2128
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
2129
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
2130
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
2131
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
2132
|
+
extensions: config?.extensions ?? [],
|
|
2133
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAthenaHttpAuthSchemeProvider,
|
|
2134
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
2135
|
+
{
|
|
2136
|
+
schemeId: "aws.auth#sigv4",
|
|
2137
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
2138
|
+
signer: new AwsSdkSigV4Signer(),
|
|
2139
|
+
},
|
|
2140
|
+
],
|
|
2141
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
2142
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
2143
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
2144
|
+
defaultNamespace: "com.amazonaws.athena",
|
|
2145
|
+
errorTypeRegistries,
|
|
2146
|
+
version: "2017-05-18",
|
|
2147
|
+
serviceTarget: "AmazonAthena",
|
|
2148
|
+
},
|
|
2149
|
+
serviceId: config?.serviceId ?? "Athena",
|
|
2150
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
2151
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
2152
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
2153
|
+
};
|
|
2154
|
+
};
|
|
2155
|
+
|
|
2156
|
+
const getRuntimeConfig = (config) => {
|
|
2157
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
2158
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
2159
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
2160
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
2161
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
2162
|
+
const loaderConfig = {
|
|
2163
|
+
profile: config?.profile,
|
|
2164
|
+
logger: clientSharedValues.logger,
|
|
2165
|
+
};
|
|
2166
|
+
return {
|
|
2167
|
+
...clientSharedValues,
|
|
2168
|
+
...config,
|
|
2169
|
+
runtime: "node",
|
|
2170
|
+
defaultsMode,
|
|
2171
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
2172
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
2173
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
2174
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
2175
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
2176
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
2177
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
2178
|
+
retryMode: config?.retryMode ??
|
|
2179
|
+
loadConfig({
|
|
2180
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
2181
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
2182
|
+
}, config),
|
|
2183
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
2184
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
2185
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2186
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
2187
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
2188
|
+
};
|
|
2189
|
+
};
|
|
2190
|
+
|
|
34
2191
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
2192
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
2193
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1202,97 +3359,391 @@ const ExecutorType = {
|
|
|
1202
3359
|
WORKER: "WORKER",
|
|
1203
3360
|
};
|
|
1204
3361
|
|
|
3362
|
+
exports.AclConfiguration$ = AclConfiguration$;
|
|
3363
|
+
exports.ApplicationDPUSizes$ = ApplicationDPUSizes$;
|
|
1205
3364
|
exports.Athena = Athena;
|
|
1206
3365
|
exports.AthenaClient = AthenaClient;
|
|
3366
|
+
exports.AthenaError$ = AthenaError$;
|
|
3367
|
+
exports.AthenaServiceException = AthenaServiceException;
|
|
3368
|
+
exports.AthenaServiceException$ = AthenaServiceException$;
|
|
1207
3369
|
exports.AuthenticationType = AuthenticationType;
|
|
3370
|
+
exports.BatchGetNamedQuery$ = BatchGetNamedQuery$;
|
|
1208
3371
|
exports.BatchGetNamedQueryCommand = BatchGetNamedQueryCommand;
|
|
3372
|
+
exports.BatchGetNamedQueryInput$ = BatchGetNamedQueryInput$;
|
|
3373
|
+
exports.BatchGetNamedQueryOutput$ = BatchGetNamedQueryOutput$;
|
|
3374
|
+
exports.BatchGetPreparedStatement$ = BatchGetPreparedStatement$;
|
|
1209
3375
|
exports.BatchGetPreparedStatementCommand = BatchGetPreparedStatementCommand;
|
|
3376
|
+
exports.BatchGetPreparedStatementInput$ = BatchGetPreparedStatementInput$;
|
|
3377
|
+
exports.BatchGetPreparedStatementOutput$ = BatchGetPreparedStatementOutput$;
|
|
3378
|
+
exports.BatchGetQueryExecution$ = BatchGetQueryExecution$;
|
|
1210
3379
|
exports.BatchGetQueryExecutionCommand = BatchGetQueryExecutionCommand;
|
|
3380
|
+
exports.BatchGetQueryExecutionInput$ = BatchGetQueryExecutionInput$;
|
|
3381
|
+
exports.BatchGetQueryExecutionOutput$ = BatchGetQueryExecutionOutput$;
|
|
3382
|
+
exports.CalculationConfiguration$ = CalculationConfiguration$;
|
|
1211
3383
|
exports.CalculationExecutionState = CalculationExecutionState;
|
|
3384
|
+
exports.CalculationResult$ = CalculationResult$;
|
|
3385
|
+
exports.CalculationStatistics$ = CalculationStatistics$;
|
|
3386
|
+
exports.CalculationStatus$ = CalculationStatus$;
|
|
3387
|
+
exports.CalculationSummary$ = CalculationSummary$;
|
|
3388
|
+
exports.CancelCapacityReservation$ = CancelCapacityReservation$;
|
|
1212
3389
|
exports.CancelCapacityReservationCommand = CancelCapacityReservationCommand;
|
|
3390
|
+
exports.CancelCapacityReservationInput$ = CancelCapacityReservationInput$;
|
|
3391
|
+
exports.CancelCapacityReservationOutput$ = CancelCapacityReservationOutput$;
|
|
3392
|
+
exports.CapacityAllocation$ = CapacityAllocation$;
|
|
1213
3393
|
exports.CapacityAllocationStatus = CapacityAllocationStatus;
|
|
3394
|
+
exports.CapacityAssignment$ = CapacityAssignment$;
|
|
3395
|
+
exports.CapacityAssignmentConfiguration$ = CapacityAssignmentConfiguration$;
|
|
3396
|
+
exports.CapacityReservation$ = CapacityReservation$;
|
|
1214
3397
|
exports.CapacityReservationStatus = CapacityReservationStatus;
|
|
3398
|
+
exports.Classification$ = Classification$;
|
|
3399
|
+
exports.CloudWatchLoggingConfiguration$ = CloudWatchLoggingConfiguration$;
|
|
3400
|
+
exports.Column$ = Column$;
|
|
3401
|
+
exports.ColumnInfo$ = ColumnInfo$;
|
|
1215
3402
|
exports.ColumnNullable = ColumnNullable;
|
|
1216
3403
|
exports.ConnectionType = ConnectionType;
|
|
3404
|
+
exports.CreateCapacityReservation$ = CreateCapacityReservation$;
|
|
1217
3405
|
exports.CreateCapacityReservationCommand = CreateCapacityReservationCommand;
|
|
3406
|
+
exports.CreateCapacityReservationInput$ = CreateCapacityReservationInput$;
|
|
3407
|
+
exports.CreateCapacityReservationOutput$ = CreateCapacityReservationOutput$;
|
|
3408
|
+
exports.CreateDataCatalog$ = CreateDataCatalog$;
|
|
1218
3409
|
exports.CreateDataCatalogCommand = CreateDataCatalogCommand;
|
|
3410
|
+
exports.CreateDataCatalogInput$ = CreateDataCatalogInput$;
|
|
3411
|
+
exports.CreateDataCatalogOutput$ = CreateDataCatalogOutput$;
|
|
3412
|
+
exports.CreateNamedQuery$ = CreateNamedQuery$;
|
|
1219
3413
|
exports.CreateNamedQueryCommand = CreateNamedQueryCommand;
|
|
3414
|
+
exports.CreateNamedQueryInput$ = CreateNamedQueryInput$;
|
|
3415
|
+
exports.CreateNamedQueryOutput$ = CreateNamedQueryOutput$;
|
|
3416
|
+
exports.CreateNotebook$ = CreateNotebook$;
|
|
1220
3417
|
exports.CreateNotebookCommand = CreateNotebookCommand;
|
|
3418
|
+
exports.CreateNotebookInput$ = CreateNotebookInput$;
|
|
3419
|
+
exports.CreateNotebookOutput$ = CreateNotebookOutput$;
|
|
3420
|
+
exports.CreatePreparedStatement$ = CreatePreparedStatement$;
|
|
1221
3421
|
exports.CreatePreparedStatementCommand = CreatePreparedStatementCommand;
|
|
3422
|
+
exports.CreatePreparedStatementInput$ = CreatePreparedStatementInput$;
|
|
3423
|
+
exports.CreatePreparedStatementOutput$ = CreatePreparedStatementOutput$;
|
|
3424
|
+
exports.CreatePresignedNotebookUrl$ = CreatePresignedNotebookUrl$;
|
|
1222
3425
|
exports.CreatePresignedNotebookUrlCommand = CreatePresignedNotebookUrlCommand;
|
|
3426
|
+
exports.CreatePresignedNotebookUrlRequest$ = CreatePresignedNotebookUrlRequest$;
|
|
3427
|
+
exports.CreatePresignedNotebookUrlResponse$ = CreatePresignedNotebookUrlResponse$;
|
|
3428
|
+
exports.CreateWorkGroup$ = CreateWorkGroup$;
|
|
1223
3429
|
exports.CreateWorkGroupCommand = CreateWorkGroupCommand;
|
|
3430
|
+
exports.CreateWorkGroupInput$ = CreateWorkGroupInput$;
|
|
3431
|
+
exports.CreateWorkGroupOutput$ = CreateWorkGroupOutput$;
|
|
3432
|
+
exports.CustomerContentEncryptionConfiguration$ = CustomerContentEncryptionConfiguration$;
|
|
3433
|
+
exports.DataCatalog$ = DataCatalog$;
|
|
1224
3434
|
exports.DataCatalogStatus = DataCatalogStatus;
|
|
3435
|
+
exports.DataCatalogSummary$ = DataCatalogSummary$;
|
|
1225
3436
|
exports.DataCatalogType = DataCatalogType;
|
|
3437
|
+
exports.Database$ = Database$;
|
|
3438
|
+
exports.Datum$ = Datum$;
|
|
3439
|
+
exports.DeleteCapacityReservation$ = DeleteCapacityReservation$;
|
|
1226
3440
|
exports.DeleteCapacityReservationCommand = DeleteCapacityReservationCommand;
|
|
3441
|
+
exports.DeleteCapacityReservationInput$ = DeleteCapacityReservationInput$;
|
|
3442
|
+
exports.DeleteCapacityReservationOutput$ = DeleteCapacityReservationOutput$;
|
|
3443
|
+
exports.DeleteDataCatalog$ = DeleteDataCatalog$;
|
|
1227
3444
|
exports.DeleteDataCatalogCommand = DeleteDataCatalogCommand;
|
|
3445
|
+
exports.DeleteDataCatalogInput$ = DeleteDataCatalogInput$;
|
|
3446
|
+
exports.DeleteDataCatalogOutput$ = DeleteDataCatalogOutput$;
|
|
3447
|
+
exports.DeleteNamedQuery$ = DeleteNamedQuery$;
|
|
1228
3448
|
exports.DeleteNamedQueryCommand = DeleteNamedQueryCommand;
|
|
3449
|
+
exports.DeleteNamedQueryInput$ = DeleteNamedQueryInput$;
|
|
3450
|
+
exports.DeleteNamedQueryOutput$ = DeleteNamedQueryOutput$;
|
|
3451
|
+
exports.DeleteNotebook$ = DeleteNotebook$;
|
|
1229
3452
|
exports.DeleteNotebookCommand = DeleteNotebookCommand;
|
|
3453
|
+
exports.DeleteNotebookInput$ = DeleteNotebookInput$;
|
|
3454
|
+
exports.DeleteNotebookOutput$ = DeleteNotebookOutput$;
|
|
3455
|
+
exports.DeletePreparedStatement$ = DeletePreparedStatement$;
|
|
1230
3456
|
exports.DeletePreparedStatementCommand = DeletePreparedStatementCommand;
|
|
3457
|
+
exports.DeletePreparedStatementInput$ = DeletePreparedStatementInput$;
|
|
3458
|
+
exports.DeletePreparedStatementOutput$ = DeletePreparedStatementOutput$;
|
|
3459
|
+
exports.DeleteWorkGroup$ = DeleteWorkGroup$;
|
|
1231
3460
|
exports.DeleteWorkGroupCommand = DeleteWorkGroupCommand;
|
|
3461
|
+
exports.DeleteWorkGroupInput$ = DeleteWorkGroupInput$;
|
|
3462
|
+
exports.DeleteWorkGroupOutput$ = DeleteWorkGroupOutput$;
|
|
3463
|
+
exports.EncryptionConfiguration$ = EncryptionConfiguration$;
|
|
1232
3464
|
exports.EncryptionOption = EncryptionOption;
|
|
3465
|
+
exports.EngineConfiguration$ = EngineConfiguration$;
|
|
3466
|
+
exports.EngineVersion$ = EngineVersion$;
|
|
1233
3467
|
exports.ExecutorState = ExecutorState;
|
|
1234
3468
|
exports.ExecutorType = ExecutorType;
|
|
3469
|
+
exports.ExecutorsSummary$ = ExecutorsSummary$;
|
|
3470
|
+
exports.ExportNotebook$ = ExportNotebook$;
|
|
1235
3471
|
exports.ExportNotebookCommand = ExportNotebookCommand;
|
|
3472
|
+
exports.ExportNotebookInput$ = ExportNotebookInput$;
|
|
3473
|
+
exports.ExportNotebookOutput$ = ExportNotebookOutput$;
|
|
3474
|
+
exports.FilterDefinition$ = FilterDefinition$;
|
|
3475
|
+
exports.GetCalculationExecution$ = GetCalculationExecution$;
|
|
3476
|
+
exports.GetCalculationExecutionCode$ = GetCalculationExecutionCode$;
|
|
1236
3477
|
exports.GetCalculationExecutionCodeCommand = GetCalculationExecutionCodeCommand;
|
|
3478
|
+
exports.GetCalculationExecutionCodeRequest$ = GetCalculationExecutionCodeRequest$;
|
|
3479
|
+
exports.GetCalculationExecutionCodeResponse$ = GetCalculationExecutionCodeResponse$;
|
|
1237
3480
|
exports.GetCalculationExecutionCommand = GetCalculationExecutionCommand;
|
|
3481
|
+
exports.GetCalculationExecutionRequest$ = GetCalculationExecutionRequest$;
|
|
3482
|
+
exports.GetCalculationExecutionResponse$ = GetCalculationExecutionResponse$;
|
|
3483
|
+
exports.GetCalculationExecutionStatus$ = GetCalculationExecutionStatus$;
|
|
1238
3484
|
exports.GetCalculationExecutionStatusCommand = GetCalculationExecutionStatusCommand;
|
|
3485
|
+
exports.GetCalculationExecutionStatusRequest$ = GetCalculationExecutionStatusRequest$;
|
|
3486
|
+
exports.GetCalculationExecutionStatusResponse$ = GetCalculationExecutionStatusResponse$;
|
|
3487
|
+
exports.GetCapacityAssignmentConfiguration$ = GetCapacityAssignmentConfiguration$;
|
|
1239
3488
|
exports.GetCapacityAssignmentConfigurationCommand = GetCapacityAssignmentConfigurationCommand;
|
|
3489
|
+
exports.GetCapacityAssignmentConfigurationInput$ = GetCapacityAssignmentConfigurationInput$;
|
|
3490
|
+
exports.GetCapacityAssignmentConfigurationOutput$ = GetCapacityAssignmentConfigurationOutput$;
|
|
3491
|
+
exports.GetCapacityReservation$ = GetCapacityReservation$;
|
|
1240
3492
|
exports.GetCapacityReservationCommand = GetCapacityReservationCommand;
|
|
3493
|
+
exports.GetCapacityReservationInput$ = GetCapacityReservationInput$;
|
|
3494
|
+
exports.GetCapacityReservationOutput$ = GetCapacityReservationOutput$;
|
|
3495
|
+
exports.GetDataCatalog$ = GetDataCatalog$;
|
|
1241
3496
|
exports.GetDataCatalogCommand = GetDataCatalogCommand;
|
|
3497
|
+
exports.GetDataCatalogInput$ = GetDataCatalogInput$;
|
|
3498
|
+
exports.GetDataCatalogOutput$ = GetDataCatalogOutput$;
|
|
3499
|
+
exports.GetDatabase$ = GetDatabase$;
|
|
1242
3500
|
exports.GetDatabaseCommand = GetDatabaseCommand;
|
|
3501
|
+
exports.GetDatabaseInput$ = GetDatabaseInput$;
|
|
3502
|
+
exports.GetDatabaseOutput$ = GetDatabaseOutput$;
|
|
3503
|
+
exports.GetNamedQuery$ = GetNamedQuery$;
|
|
1243
3504
|
exports.GetNamedQueryCommand = GetNamedQueryCommand;
|
|
3505
|
+
exports.GetNamedQueryInput$ = GetNamedQueryInput$;
|
|
3506
|
+
exports.GetNamedQueryOutput$ = GetNamedQueryOutput$;
|
|
3507
|
+
exports.GetNotebookMetadata$ = GetNotebookMetadata$;
|
|
1244
3508
|
exports.GetNotebookMetadataCommand = GetNotebookMetadataCommand;
|
|
3509
|
+
exports.GetNotebookMetadataInput$ = GetNotebookMetadataInput$;
|
|
3510
|
+
exports.GetNotebookMetadataOutput$ = GetNotebookMetadataOutput$;
|
|
3511
|
+
exports.GetPreparedStatement$ = GetPreparedStatement$;
|
|
1245
3512
|
exports.GetPreparedStatementCommand = GetPreparedStatementCommand;
|
|
3513
|
+
exports.GetPreparedStatementInput$ = GetPreparedStatementInput$;
|
|
3514
|
+
exports.GetPreparedStatementOutput$ = GetPreparedStatementOutput$;
|
|
3515
|
+
exports.GetQueryExecution$ = GetQueryExecution$;
|
|
1246
3516
|
exports.GetQueryExecutionCommand = GetQueryExecutionCommand;
|
|
3517
|
+
exports.GetQueryExecutionInput$ = GetQueryExecutionInput$;
|
|
3518
|
+
exports.GetQueryExecutionOutput$ = GetQueryExecutionOutput$;
|
|
3519
|
+
exports.GetQueryResults$ = GetQueryResults$;
|
|
1247
3520
|
exports.GetQueryResultsCommand = GetQueryResultsCommand;
|
|
3521
|
+
exports.GetQueryResultsInput$ = GetQueryResultsInput$;
|
|
3522
|
+
exports.GetQueryResultsOutput$ = GetQueryResultsOutput$;
|
|
3523
|
+
exports.GetQueryRuntimeStatistics$ = GetQueryRuntimeStatistics$;
|
|
1248
3524
|
exports.GetQueryRuntimeStatisticsCommand = GetQueryRuntimeStatisticsCommand;
|
|
3525
|
+
exports.GetQueryRuntimeStatisticsInput$ = GetQueryRuntimeStatisticsInput$;
|
|
3526
|
+
exports.GetQueryRuntimeStatisticsOutput$ = GetQueryRuntimeStatisticsOutput$;
|
|
3527
|
+
exports.GetResourceDashboard$ = GetResourceDashboard$;
|
|
1249
3528
|
exports.GetResourceDashboardCommand = GetResourceDashboardCommand;
|
|
3529
|
+
exports.GetResourceDashboardRequest$ = GetResourceDashboardRequest$;
|
|
3530
|
+
exports.GetResourceDashboardResponse$ = GetResourceDashboardResponse$;
|
|
3531
|
+
exports.GetSession$ = GetSession$;
|
|
1250
3532
|
exports.GetSessionCommand = GetSessionCommand;
|
|
3533
|
+
exports.GetSessionEndpoint$ = GetSessionEndpoint$;
|
|
1251
3534
|
exports.GetSessionEndpointCommand = GetSessionEndpointCommand;
|
|
3535
|
+
exports.GetSessionEndpointRequest$ = GetSessionEndpointRequest$;
|
|
3536
|
+
exports.GetSessionEndpointResponse$ = GetSessionEndpointResponse$;
|
|
3537
|
+
exports.GetSessionRequest$ = GetSessionRequest$;
|
|
3538
|
+
exports.GetSessionResponse$ = GetSessionResponse$;
|
|
3539
|
+
exports.GetSessionStatus$ = GetSessionStatus$;
|
|
1252
3540
|
exports.GetSessionStatusCommand = GetSessionStatusCommand;
|
|
3541
|
+
exports.GetSessionStatusRequest$ = GetSessionStatusRequest$;
|
|
3542
|
+
exports.GetSessionStatusResponse$ = GetSessionStatusResponse$;
|
|
3543
|
+
exports.GetTableMetadata$ = GetTableMetadata$;
|
|
1253
3544
|
exports.GetTableMetadataCommand = GetTableMetadataCommand;
|
|
3545
|
+
exports.GetTableMetadataInput$ = GetTableMetadataInput$;
|
|
3546
|
+
exports.GetTableMetadataOutput$ = GetTableMetadataOutput$;
|
|
3547
|
+
exports.GetWorkGroup$ = GetWorkGroup$;
|
|
1254
3548
|
exports.GetWorkGroupCommand = GetWorkGroupCommand;
|
|
3549
|
+
exports.GetWorkGroupInput$ = GetWorkGroupInput$;
|
|
3550
|
+
exports.GetWorkGroupOutput$ = GetWorkGroupOutput$;
|
|
3551
|
+
exports.IdentityCenterConfiguration$ = IdentityCenterConfiguration$;
|
|
3552
|
+
exports.ImportNotebook$ = ImportNotebook$;
|
|
1255
3553
|
exports.ImportNotebookCommand = ImportNotebookCommand;
|
|
3554
|
+
exports.ImportNotebookInput$ = ImportNotebookInput$;
|
|
3555
|
+
exports.ImportNotebookOutput$ = ImportNotebookOutput$;
|
|
3556
|
+
exports.InternalServerException = InternalServerException;
|
|
3557
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
3558
|
+
exports.InvalidRequestException = InvalidRequestException;
|
|
3559
|
+
exports.InvalidRequestException$ = InvalidRequestException$;
|
|
3560
|
+
exports.ListApplicationDPUSizes$ = ListApplicationDPUSizes$;
|
|
1256
3561
|
exports.ListApplicationDPUSizesCommand = ListApplicationDPUSizesCommand;
|
|
3562
|
+
exports.ListApplicationDPUSizesInput$ = ListApplicationDPUSizesInput$;
|
|
3563
|
+
exports.ListApplicationDPUSizesOutput$ = ListApplicationDPUSizesOutput$;
|
|
3564
|
+
exports.ListCalculationExecutions$ = ListCalculationExecutions$;
|
|
1257
3565
|
exports.ListCalculationExecutionsCommand = ListCalculationExecutionsCommand;
|
|
3566
|
+
exports.ListCalculationExecutionsRequest$ = ListCalculationExecutionsRequest$;
|
|
3567
|
+
exports.ListCalculationExecutionsResponse$ = ListCalculationExecutionsResponse$;
|
|
3568
|
+
exports.ListCapacityReservations$ = ListCapacityReservations$;
|
|
1258
3569
|
exports.ListCapacityReservationsCommand = ListCapacityReservationsCommand;
|
|
3570
|
+
exports.ListCapacityReservationsInput$ = ListCapacityReservationsInput$;
|
|
3571
|
+
exports.ListCapacityReservationsOutput$ = ListCapacityReservationsOutput$;
|
|
3572
|
+
exports.ListDataCatalogs$ = ListDataCatalogs$;
|
|
1259
3573
|
exports.ListDataCatalogsCommand = ListDataCatalogsCommand;
|
|
3574
|
+
exports.ListDataCatalogsInput$ = ListDataCatalogsInput$;
|
|
3575
|
+
exports.ListDataCatalogsOutput$ = ListDataCatalogsOutput$;
|
|
3576
|
+
exports.ListDatabases$ = ListDatabases$;
|
|
1260
3577
|
exports.ListDatabasesCommand = ListDatabasesCommand;
|
|
3578
|
+
exports.ListDatabasesInput$ = ListDatabasesInput$;
|
|
3579
|
+
exports.ListDatabasesOutput$ = ListDatabasesOutput$;
|
|
3580
|
+
exports.ListEngineVersions$ = ListEngineVersions$;
|
|
1261
3581
|
exports.ListEngineVersionsCommand = ListEngineVersionsCommand;
|
|
3582
|
+
exports.ListEngineVersionsInput$ = ListEngineVersionsInput$;
|
|
3583
|
+
exports.ListEngineVersionsOutput$ = ListEngineVersionsOutput$;
|
|
3584
|
+
exports.ListExecutors$ = ListExecutors$;
|
|
1262
3585
|
exports.ListExecutorsCommand = ListExecutorsCommand;
|
|
3586
|
+
exports.ListExecutorsRequest$ = ListExecutorsRequest$;
|
|
3587
|
+
exports.ListExecutorsResponse$ = ListExecutorsResponse$;
|
|
3588
|
+
exports.ListNamedQueries$ = ListNamedQueries$;
|
|
1263
3589
|
exports.ListNamedQueriesCommand = ListNamedQueriesCommand;
|
|
3590
|
+
exports.ListNamedQueriesInput$ = ListNamedQueriesInput$;
|
|
3591
|
+
exports.ListNamedQueriesOutput$ = ListNamedQueriesOutput$;
|
|
3592
|
+
exports.ListNotebookMetadata$ = ListNotebookMetadata$;
|
|
1264
3593
|
exports.ListNotebookMetadataCommand = ListNotebookMetadataCommand;
|
|
3594
|
+
exports.ListNotebookMetadataInput$ = ListNotebookMetadataInput$;
|
|
3595
|
+
exports.ListNotebookMetadataOutput$ = ListNotebookMetadataOutput$;
|
|
3596
|
+
exports.ListNotebookSessions$ = ListNotebookSessions$;
|
|
1265
3597
|
exports.ListNotebookSessionsCommand = ListNotebookSessionsCommand;
|
|
3598
|
+
exports.ListNotebookSessionsRequest$ = ListNotebookSessionsRequest$;
|
|
3599
|
+
exports.ListNotebookSessionsResponse$ = ListNotebookSessionsResponse$;
|
|
3600
|
+
exports.ListPreparedStatements$ = ListPreparedStatements$;
|
|
1266
3601
|
exports.ListPreparedStatementsCommand = ListPreparedStatementsCommand;
|
|
3602
|
+
exports.ListPreparedStatementsInput$ = ListPreparedStatementsInput$;
|
|
3603
|
+
exports.ListPreparedStatementsOutput$ = ListPreparedStatementsOutput$;
|
|
3604
|
+
exports.ListQueryExecutions$ = ListQueryExecutions$;
|
|
1267
3605
|
exports.ListQueryExecutionsCommand = ListQueryExecutionsCommand;
|
|
3606
|
+
exports.ListQueryExecutionsInput$ = ListQueryExecutionsInput$;
|
|
3607
|
+
exports.ListQueryExecutionsOutput$ = ListQueryExecutionsOutput$;
|
|
3608
|
+
exports.ListSessions$ = ListSessions$;
|
|
1268
3609
|
exports.ListSessionsCommand = ListSessionsCommand;
|
|
3610
|
+
exports.ListSessionsRequest$ = ListSessionsRequest$;
|
|
3611
|
+
exports.ListSessionsResponse$ = ListSessionsResponse$;
|
|
3612
|
+
exports.ListTableMetadata$ = ListTableMetadata$;
|
|
1269
3613
|
exports.ListTableMetadataCommand = ListTableMetadataCommand;
|
|
3614
|
+
exports.ListTableMetadataInput$ = ListTableMetadataInput$;
|
|
3615
|
+
exports.ListTableMetadataOutput$ = ListTableMetadataOutput$;
|
|
3616
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1270
3617
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
3618
|
+
exports.ListTagsForResourceInput$ = ListTagsForResourceInput$;
|
|
3619
|
+
exports.ListTagsForResourceOutput$ = ListTagsForResourceOutput$;
|
|
3620
|
+
exports.ListWorkGroups$ = ListWorkGroups$;
|
|
1271
3621
|
exports.ListWorkGroupsCommand = ListWorkGroupsCommand;
|
|
3622
|
+
exports.ListWorkGroupsInput$ = ListWorkGroupsInput$;
|
|
3623
|
+
exports.ListWorkGroupsOutput$ = ListWorkGroupsOutput$;
|
|
3624
|
+
exports.ManagedLoggingConfiguration$ = ManagedLoggingConfiguration$;
|
|
3625
|
+
exports.ManagedQueryResultsConfiguration$ = ManagedQueryResultsConfiguration$;
|
|
3626
|
+
exports.ManagedQueryResultsConfigurationUpdates$ = ManagedQueryResultsConfigurationUpdates$;
|
|
3627
|
+
exports.ManagedQueryResultsEncryptionConfiguration$ = ManagedQueryResultsEncryptionConfiguration$;
|
|
3628
|
+
exports.MetadataException = MetadataException;
|
|
3629
|
+
exports.MetadataException$ = MetadataException$;
|
|
3630
|
+
exports.MonitoringConfiguration$ = MonitoringConfiguration$;
|
|
3631
|
+
exports.NamedQuery$ = NamedQuery$;
|
|
3632
|
+
exports.NotebookMetadata$ = NotebookMetadata$;
|
|
3633
|
+
exports.NotebookSessionSummary$ = NotebookSessionSummary$;
|
|
1272
3634
|
exports.NotebookType = NotebookType;
|
|
3635
|
+
exports.PreparedStatement$ = PreparedStatement$;
|
|
3636
|
+
exports.PreparedStatementSummary$ = PreparedStatementSummary$;
|
|
3637
|
+
exports.PutCapacityAssignmentConfiguration$ = PutCapacityAssignmentConfiguration$;
|
|
1273
3638
|
exports.PutCapacityAssignmentConfigurationCommand = PutCapacityAssignmentConfigurationCommand;
|
|
3639
|
+
exports.PutCapacityAssignmentConfigurationInput$ = PutCapacityAssignmentConfigurationInput$;
|
|
3640
|
+
exports.PutCapacityAssignmentConfigurationOutput$ = PutCapacityAssignmentConfigurationOutput$;
|
|
3641
|
+
exports.QueryExecution$ = QueryExecution$;
|
|
3642
|
+
exports.QueryExecutionContext$ = QueryExecutionContext$;
|
|
1274
3643
|
exports.QueryExecutionState = QueryExecutionState;
|
|
3644
|
+
exports.QueryExecutionStatistics$ = QueryExecutionStatistics$;
|
|
3645
|
+
exports.QueryExecutionStatus$ = QueryExecutionStatus$;
|
|
1275
3646
|
exports.QueryResultType = QueryResultType;
|
|
3647
|
+
exports.QueryResultsS3AccessGrantsConfiguration$ = QueryResultsS3AccessGrantsConfiguration$;
|
|
3648
|
+
exports.QueryRuntimeStatistics$ = QueryRuntimeStatistics$;
|
|
3649
|
+
exports.QueryRuntimeStatisticsRows$ = QueryRuntimeStatisticsRows$;
|
|
3650
|
+
exports.QueryRuntimeStatisticsTimeline$ = QueryRuntimeStatisticsTimeline$;
|
|
3651
|
+
exports.QueryStage$ = QueryStage$;
|
|
3652
|
+
exports.QueryStagePlanNode$ = QueryStagePlanNode$;
|
|
3653
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
3654
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
3655
|
+
exports.ResultConfiguration$ = ResultConfiguration$;
|
|
3656
|
+
exports.ResultConfigurationUpdates$ = ResultConfigurationUpdates$;
|
|
3657
|
+
exports.ResultReuseByAgeConfiguration$ = ResultReuseByAgeConfiguration$;
|
|
3658
|
+
exports.ResultReuseConfiguration$ = ResultReuseConfiguration$;
|
|
3659
|
+
exports.ResultReuseInformation$ = ResultReuseInformation$;
|
|
3660
|
+
exports.ResultSet$ = ResultSet$;
|
|
3661
|
+
exports.ResultSetMetadata$ = ResultSetMetadata$;
|
|
3662
|
+
exports.Row$ = Row$;
|
|
1276
3663
|
exports.S3AclOption = S3AclOption;
|
|
3664
|
+
exports.S3LoggingConfiguration$ = S3LoggingConfiguration$;
|
|
3665
|
+
exports.SessionAlreadyExistsException = SessionAlreadyExistsException;
|
|
3666
|
+
exports.SessionAlreadyExistsException$ = SessionAlreadyExistsException$;
|
|
3667
|
+
exports.SessionConfiguration$ = SessionConfiguration$;
|
|
1277
3668
|
exports.SessionState = SessionState;
|
|
3669
|
+
exports.SessionStatistics$ = SessionStatistics$;
|
|
3670
|
+
exports.SessionStatus$ = SessionStatus$;
|
|
3671
|
+
exports.SessionSummary$ = SessionSummary$;
|
|
3672
|
+
exports.StartCalculationExecution$ = StartCalculationExecution$;
|
|
1278
3673
|
exports.StartCalculationExecutionCommand = StartCalculationExecutionCommand;
|
|
3674
|
+
exports.StartCalculationExecutionRequest$ = StartCalculationExecutionRequest$;
|
|
3675
|
+
exports.StartCalculationExecutionResponse$ = StartCalculationExecutionResponse$;
|
|
3676
|
+
exports.StartQueryExecution$ = StartQueryExecution$;
|
|
1279
3677
|
exports.StartQueryExecutionCommand = StartQueryExecutionCommand;
|
|
3678
|
+
exports.StartQueryExecutionInput$ = StartQueryExecutionInput$;
|
|
3679
|
+
exports.StartQueryExecutionOutput$ = StartQueryExecutionOutput$;
|
|
3680
|
+
exports.StartSession$ = StartSession$;
|
|
1280
3681
|
exports.StartSessionCommand = StartSessionCommand;
|
|
3682
|
+
exports.StartSessionRequest$ = StartSessionRequest$;
|
|
3683
|
+
exports.StartSessionResponse$ = StartSessionResponse$;
|
|
1281
3684
|
exports.StatementType = StatementType;
|
|
3685
|
+
exports.StopCalculationExecution$ = StopCalculationExecution$;
|
|
1282
3686
|
exports.StopCalculationExecutionCommand = StopCalculationExecutionCommand;
|
|
3687
|
+
exports.StopCalculationExecutionRequest$ = StopCalculationExecutionRequest$;
|
|
3688
|
+
exports.StopCalculationExecutionResponse$ = StopCalculationExecutionResponse$;
|
|
3689
|
+
exports.StopQueryExecution$ = StopQueryExecution$;
|
|
1283
3690
|
exports.StopQueryExecutionCommand = StopQueryExecutionCommand;
|
|
3691
|
+
exports.StopQueryExecutionInput$ = StopQueryExecutionInput$;
|
|
3692
|
+
exports.StopQueryExecutionOutput$ = StopQueryExecutionOutput$;
|
|
3693
|
+
exports.TableMetadata$ = TableMetadata$;
|
|
3694
|
+
exports.Tag$ = Tag$;
|
|
3695
|
+
exports.TagResource$ = TagResource$;
|
|
1284
3696
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3697
|
+
exports.TagResourceInput$ = TagResourceInput$;
|
|
3698
|
+
exports.TagResourceOutput$ = TagResourceOutput$;
|
|
3699
|
+
exports.TerminateSession$ = TerminateSession$;
|
|
1285
3700
|
exports.TerminateSessionCommand = TerminateSessionCommand;
|
|
3701
|
+
exports.TerminateSessionRequest$ = TerminateSessionRequest$;
|
|
3702
|
+
exports.TerminateSessionResponse$ = TerminateSessionResponse$;
|
|
1286
3703
|
exports.ThrottleReason = ThrottleReason;
|
|
3704
|
+
exports.TooManyRequestsException = TooManyRequestsException;
|
|
3705
|
+
exports.TooManyRequestsException$ = TooManyRequestsException$;
|
|
3706
|
+
exports.UnprocessedNamedQueryId$ = UnprocessedNamedQueryId$;
|
|
3707
|
+
exports.UnprocessedPreparedStatementName$ = UnprocessedPreparedStatementName$;
|
|
3708
|
+
exports.UnprocessedQueryExecutionId$ = UnprocessedQueryExecutionId$;
|
|
3709
|
+
exports.UntagResource$ = UntagResource$;
|
|
1287
3710
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3711
|
+
exports.UntagResourceInput$ = UntagResourceInput$;
|
|
3712
|
+
exports.UntagResourceOutput$ = UntagResourceOutput$;
|
|
3713
|
+
exports.UpdateCapacityReservation$ = UpdateCapacityReservation$;
|
|
1288
3714
|
exports.UpdateCapacityReservationCommand = UpdateCapacityReservationCommand;
|
|
3715
|
+
exports.UpdateCapacityReservationInput$ = UpdateCapacityReservationInput$;
|
|
3716
|
+
exports.UpdateCapacityReservationOutput$ = UpdateCapacityReservationOutput$;
|
|
3717
|
+
exports.UpdateDataCatalog$ = UpdateDataCatalog$;
|
|
1289
3718
|
exports.UpdateDataCatalogCommand = UpdateDataCatalogCommand;
|
|
3719
|
+
exports.UpdateDataCatalogInput$ = UpdateDataCatalogInput$;
|
|
3720
|
+
exports.UpdateDataCatalogOutput$ = UpdateDataCatalogOutput$;
|
|
3721
|
+
exports.UpdateNamedQuery$ = UpdateNamedQuery$;
|
|
1290
3722
|
exports.UpdateNamedQueryCommand = UpdateNamedQueryCommand;
|
|
3723
|
+
exports.UpdateNamedQueryInput$ = UpdateNamedQueryInput$;
|
|
3724
|
+
exports.UpdateNamedQueryOutput$ = UpdateNamedQueryOutput$;
|
|
3725
|
+
exports.UpdateNotebook$ = UpdateNotebook$;
|
|
1291
3726
|
exports.UpdateNotebookCommand = UpdateNotebookCommand;
|
|
3727
|
+
exports.UpdateNotebookInput$ = UpdateNotebookInput$;
|
|
3728
|
+
exports.UpdateNotebookMetadata$ = UpdateNotebookMetadata$;
|
|
1292
3729
|
exports.UpdateNotebookMetadataCommand = UpdateNotebookMetadataCommand;
|
|
3730
|
+
exports.UpdateNotebookMetadataInput$ = UpdateNotebookMetadataInput$;
|
|
3731
|
+
exports.UpdateNotebookMetadataOutput$ = UpdateNotebookMetadataOutput$;
|
|
3732
|
+
exports.UpdateNotebookOutput$ = UpdateNotebookOutput$;
|
|
3733
|
+
exports.UpdatePreparedStatement$ = UpdatePreparedStatement$;
|
|
1293
3734
|
exports.UpdatePreparedStatementCommand = UpdatePreparedStatementCommand;
|
|
3735
|
+
exports.UpdatePreparedStatementInput$ = UpdatePreparedStatementInput$;
|
|
3736
|
+
exports.UpdatePreparedStatementOutput$ = UpdatePreparedStatementOutput$;
|
|
3737
|
+
exports.UpdateWorkGroup$ = UpdateWorkGroup$;
|
|
1294
3738
|
exports.UpdateWorkGroupCommand = UpdateWorkGroupCommand;
|
|
3739
|
+
exports.UpdateWorkGroupInput$ = UpdateWorkGroupInput$;
|
|
3740
|
+
exports.UpdateWorkGroupOutput$ = UpdateWorkGroupOutput$;
|
|
3741
|
+
exports.WorkGroup$ = WorkGroup$;
|
|
3742
|
+
exports.WorkGroupConfiguration$ = WorkGroupConfiguration$;
|
|
3743
|
+
exports.WorkGroupConfigurationUpdates$ = WorkGroupConfigurationUpdates$;
|
|
1295
3744
|
exports.WorkGroupState = WorkGroupState;
|
|
3745
|
+
exports.WorkGroupSummary$ = WorkGroupSummary$;
|
|
3746
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1296
3747
|
exports.paginateGetQueryResults = paginateGetQueryResults;
|
|
1297
3748
|
exports.paginateListApplicationDPUSizes = paginateListApplicationDPUSizes;
|
|
1298
3749
|
exports.paginateListCalculationExecutions = paginateListCalculationExecutions;
|