@aws-sdk/client-route-53 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 +3707 -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 +10 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -83
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/Route53ServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -843
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -39
- package/dist-cjs/schemas/schemas_0.js +0 -2501
package/dist-cjs/index.js
CHANGED
|
@@ -1,22 +1,58 @@
|
|
|
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, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, 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 {
|
|
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 { AwsRestXmlProtocol } = require("@aws-sdk/core/protocols");
|
|
14
16
|
const { getIdNormalizerPlugin, getChangeResourceRecordSetsPlugin } = require("@aws-sdk/middleware-sdk-route53");
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
17
|
+
|
|
18
|
+
const defaultRoute53HttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
19
|
+
return {
|
|
20
|
+
operation: getSmithyContext(context).operation,
|
|
21
|
+
region: await normalizeProvider(config.region)() || (() => {
|
|
22
|
+
throw new Error("expected `region` to be configured for `aws.auth#sigv4`");
|
|
23
|
+
})(),
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
function createAwsAuthSigv4HttpAuthOption(authParameters) {
|
|
27
|
+
return {
|
|
28
|
+
schemeId: "aws.auth#sigv4",
|
|
29
|
+
signingProperties: {
|
|
30
|
+
name: "route53",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultRoute53HttpAuthSchemeProvider = (authParameters) => {
|
|
42
|
+
const options = [];
|
|
43
|
+
switch (authParameters.operation) {
|
|
44
|
+
default: {
|
|
45
|
+
options.push(createAwsAuthSigv4HttpAuthOption(authParameters));
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
return options;
|
|
49
|
+
};
|
|
50
|
+
const resolveHttpAuthSchemeConfig = (config) => {
|
|
51
|
+
const config_0 = resolveAwsSdkSigV4Config(config);
|
|
52
|
+
return Object.assign(config_0, {
|
|
53
|
+
authSchemePreference: normalizeProvider(config.authSchemePreference ?? []),
|
|
54
|
+
});
|
|
55
|
+
};
|
|
20
56
|
|
|
21
57
|
const resolveClientEndpointParameters = (options) => {
|
|
22
58
|
return Object.assign(options, {
|
|
@@ -32,6 +68,3265 @@ const commonParams = {
|
|
|
32
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
33
69
|
};
|
|
34
70
|
|
|
71
|
+
var version = "3.1075.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const s = "ref", t = "authSchemes", u = "name", v = "signingRegion";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "stringEquals", g = "getAttr", h = "sigv4", i = { [s]: "Endpoint" }, j = { "fn": g, "argv": [{ [s]: d }, "name"] }, k = { [s]: d }, l = { [t]: [{ [u]: h, [v]: "us-east-1" }] }, m = { [t]: [{ [u]: h, [v]: "cn-northwest-1" }] }, n = { [t]: [{ [u]: h, [v]: "us-gov-west-1" }] }, o = { [t]: [{ [u]: h, [v]: "eusc-de-east-1" }] }, p = { [t]: [{ [u]: h, [v]: "{PartitionResult#implicitGlobalRegion}" }] }, q = [{ [s]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [i]],
|
|
80
|
+
[c, q],
|
|
81
|
+
["aws.partition", q, d],
|
|
82
|
+
[e, [{ [s]: "UseFIPS" }, b]],
|
|
83
|
+
[f, [j, "aws"]],
|
|
84
|
+
[f, [j, "aws-cn"]],
|
|
85
|
+
[f, [j, "aws-us-gov"]],
|
|
86
|
+
[e, [{ [s]: "UseDualStack" }, b]],
|
|
87
|
+
[e, [{ fn: g, argv: [k, "supportsFIPS"] }, b]],
|
|
88
|
+
[f, [j, "aws-iso"]],
|
|
89
|
+
[f, [j, "aws-iso-b"]],
|
|
90
|
+
[f, [j, "aws-iso-e"]],
|
|
91
|
+
[f, [j, "aws-iso-f"]],
|
|
92
|
+
[f, [j, "aws-eusc"]],
|
|
93
|
+
[e, [{ fn: g, argv: [k, "supportsDualStack"] }, b]]
|
|
94
|
+
],
|
|
95
|
+
results: [
|
|
96
|
+
[a],
|
|
97
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
98
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
99
|
+
[i, {}],
|
|
100
|
+
["https://route53.amazonaws.com", l],
|
|
101
|
+
["https://route53-fips.amazonaws.com", l],
|
|
102
|
+
["https://route53.global.api.aws", l],
|
|
103
|
+
["https://route53-fips.global.api.aws", l],
|
|
104
|
+
["https://route53.amazonaws.com.cn", m],
|
|
105
|
+
["https://route53.global.api.amazonwebservices.com.cn", m],
|
|
106
|
+
["https://route53.us-gov.amazonaws.com", n],
|
|
107
|
+
["https://route53.us-gov.api.aws", n],
|
|
108
|
+
["https://route53.c2s.ic.gov", { [t]: [{ [u]: h, [v]: "us-iso-east-1" }] }],
|
|
109
|
+
["https://route53.sc2s.sgov.gov", { [t]: [{ [u]: h, [v]: "us-isob-east-1" }] }],
|
|
110
|
+
["https://route53.cloud.adc-e.uk", { [t]: [{ [u]: h, [v]: "eu-isoe-west-1" }] }],
|
|
111
|
+
["https://route53.csp.hci.ic.gov", { [t]: [{ [u]: h, [v]: "us-isof-south-1" }] }],
|
|
112
|
+
["https://route53.amazonaws.eu", o],
|
|
113
|
+
["https://route53.global.api.amazonwebservices.eu", o],
|
|
114
|
+
["https://route53-fips.{PartitionResult#dualStackDnsSuffix}", p],
|
|
115
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
116
|
+
["https://route53-fips.{PartitionResult#dnsSuffix}", p],
|
|
117
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
118
|
+
["https://route53.{PartitionResult#dualStackDnsSuffix}", p],
|
|
119
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
120
|
+
["https://route53.{PartitionResult#dnsSuffix}", p],
|
|
121
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
122
|
+
]
|
|
123
|
+
};
|
|
124
|
+
const root = 2;
|
|
125
|
+
const r = 100_000_000;
|
|
126
|
+
const nodes = new Int32Array([
|
|
127
|
+
-1, 1, -1,
|
|
128
|
+
0, 27, 3,
|
|
129
|
+
1, 4, r + 25,
|
|
130
|
+
2, 5, r + 25,
|
|
131
|
+
3, 19, 6,
|
|
132
|
+
4, 18, 7,
|
|
133
|
+
5, 17, 8,
|
|
134
|
+
6, 25, 9,
|
|
135
|
+
7, 15, 10,
|
|
136
|
+
9, r + 12, 11,
|
|
137
|
+
10, r + 13, 12,
|
|
138
|
+
11, r + 14, 13,
|
|
139
|
+
12, r + 15, 14,
|
|
140
|
+
13, r + 16, r + 24,
|
|
141
|
+
13, r + 17, 16,
|
|
142
|
+
14, r + 22, r + 23,
|
|
143
|
+
7, r + 9, r + 8,
|
|
144
|
+
7, r + 6, r + 4,
|
|
145
|
+
4, 26, 20,
|
|
146
|
+
6, 25, 21,
|
|
147
|
+
7, 23, 22,
|
|
148
|
+
8, r + 20, r + 21,
|
|
149
|
+
8, 24, r + 19,
|
|
150
|
+
14, r + 18, r + 19,
|
|
151
|
+
7, r + 11, r + 10,
|
|
152
|
+
7, r + 7, r + 5,
|
|
153
|
+
3, r + 1, 28,
|
|
154
|
+
7, r + 2, r + 3,
|
|
155
|
+
]);
|
|
156
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
157
|
+
|
|
158
|
+
const cache = new EndpointCache({
|
|
159
|
+
size: 50,
|
|
160
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
161
|
+
});
|
|
162
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
163
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
164
|
+
endpointParams: endpointParams,
|
|
165
|
+
logger: context.logger,
|
|
166
|
+
}));
|
|
167
|
+
};
|
|
168
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
169
|
+
|
|
170
|
+
class Route53ServiceException extends ServiceException {
|
|
171
|
+
constructor(options) {
|
|
172
|
+
super(options);
|
|
173
|
+
Object.setPrototypeOf(this, Route53ServiceException.prototype);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
class ConcurrentModification extends Route53ServiceException {
|
|
178
|
+
name = "ConcurrentModification";
|
|
179
|
+
$fault = "client";
|
|
180
|
+
constructor(opts) {
|
|
181
|
+
super({
|
|
182
|
+
name: "ConcurrentModification",
|
|
183
|
+
$fault: "client",
|
|
184
|
+
...opts,
|
|
185
|
+
});
|
|
186
|
+
Object.setPrototypeOf(this, ConcurrentModification.prototype);
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
class InvalidInput extends Route53ServiceException {
|
|
190
|
+
name = "InvalidInput";
|
|
191
|
+
$fault = "client";
|
|
192
|
+
constructor(opts) {
|
|
193
|
+
super({
|
|
194
|
+
name: "InvalidInput",
|
|
195
|
+
$fault: "client",
|
|
196
|
+
...opts,
|
|
197
|
+
});
|
|
198
|
+
Object.setPrototypeOf(this, InvalidInput.prototype);
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
class InvalidKeySigningKeyStatus extends Route53ServiceException {
|
|
202
|
+
name = "InvalidKeySigningKeyStatus";
|
|
203
|
+
$fault = "client";
|
|
204
|
+
constructor(opts) {
|
|
205
|
+
super({
|
|
206
|
+
name: "InvalidKeySigningKeyStatus",
|
|
207
|
+
$fault: "client",
|
|
208
|
+
...opts,
|
|
209
|
+
});
|
|
210
|
+
Object.setPrototypeOf(this, InvalidKeySigningKeyStatus.prototype);
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
class InvalidKMSArn extends Route53ServiceException {
|
|
214
|
+
name = "InvalidKMSArn";
|
|
215
|
+
$fault = "client";
|
|
216
|
+
constructor(opts) {
|
|
217
|
+
super({
|
|
218
|
+
name: "InvalidKMSArn",
|
|
219
|
+
$fault: "client",
|
|
220
|
+
...opts,
|
|
221
|
+
});
|
|
222
|
+
Object.setPrototypeOf(this, InvalidKMSArn.prototype);
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
class InvalidSigningStatus extends Route53ServiceException {
|
|
226
|
+
name = "InvalidSigningStatus";
|
|
227
|
+
$fault = "client";
|
|
228
|
+
constructor(opts) {
|
|
229
|
+
super({
|
|
230
|
+
name: "InvalidSigningStatus",
|
|
231
|
+
$fault: "client",
|
|
232
|
+
...opts,
|
|
233
|
+
});
|
|
234
|
+
Object.setPrototypeOf(this, InvalidSigningStatus.prototype);
|
|
235
|
+
}
|
|
236
|
+
}
|
|
237
|
+
class NoSuchKeySigningKey extends Route53ServiceException {
|
|
238
|
+
name = "NoSuchKeySigningKey";
|
|
239
|
+
$fault = "client";
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "NoSuchKeySigningKey",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, NoSuchKeySigningKey.prototype);
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
class ConflictingDomainExists extends Route53ServiceException {
|
|
250
|
+
name = "ConflictingDomainExists";
|
|
251
|
+
$fault = "client";
|
|
252
|
+
constructor(opts) {
|
|
253
|
+
super({
|
|
254
|
+
name: "ConflictingDomainExists",
|
|
255
|
+
$fault: "client",
|
|
256
|
+
...opts,
|
|
257
|
+
});
|
|
258
|
+
Object.setPrototypeOf(this, ConflictingDomainExists.prototype);
|
|
259
|
+
}
|
|
260
|
+
}
|
|
261
|
+
class InvalidVPCId extends Route53ServiceException {
|
|
262
|
+
name = "InvalidVPCId";
|
|
263
|
+
$fault = "client";
|
|
264
|
+
constructor(opts) {
|
|
265
|
+
super({
|
|
266
|
+
name: "InvalidVPCId",
|
|
267
|
+
$fault: "client",
|
|
268
|
+
...opts,
|
|
269
|
+
});
|
|
270
|
+
Object.setPrototypeOf(this, InvalidVPCId.prototype);
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
class LimitsExceeded extends Route53ServiceException {
|
|
274
|
+
name = "LimitsExceeded";
|
|
275
|
+
$fault = "client";
|
|
276
|
+
constructor(opts) {
|
|
277
|
+
super({
|
|
278
|
+
name: "LimitsExceeded",
|
|
279
|
+
$fault: "client",
|
|
280
|
+
...opts,
|
|
281
|
+
});
|
|
282
|
+
Object.setPrototypeOf(this, LimitsExceeded.prototype);
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
class NoSuchHostedZone extends Route53ServiceException {
|
|
286
|
+
name = "NoSuchHostedZone";
|
|
287
|
+
$fault = "client";
|
|
288
|
+
constructor(opts) {
|
|
289
|
+
super({
|
|
290
|
+
name: "NoSuchHostedZone",
|
|
291
|
+
$fault: "client",
|
|
292
|
+
...opts,
|
|
293
|
+
});
|
|
294
|
+
Object.setPrototypeOf(this, NoSuchHostedZone.prototype);
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
class NotAuthorizedException extends Route53ServiceException {
|
|
298
|
+
name = "NotAuthorizedException";
|
|
299
|
+
$fault = "client";
|
|
300
|
+
constructor(opts) {
|
|
301
|
+
super({
|
|
302
|
+
name: "NotAuthorizedException",
|
|
303
|
+
$fault: "client",
|
|
304
|
+
...opts,
|
|
305
|
+
});
|
|
306
|
+
Object.setPrototypeOf(this, NotAuthorizedException.prototype);
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
class PriorRequestNotComplete extends Route53ServiceException {
|
|
310
|
+
name = "PriorRequestNotComplete";
|
|
311
|
+
$fault = "client";
|
|
312
|
+
constructor(opts) {
|
|
313
|
+
super({
|
|
314
|
+
name: "PriorRequestNotComplete",
|
|
315
|
+
$fault: "client",
|
|
316
|
+
...opts,
|
|
317
|
+
});
|
|
318
|
+
Object.setPrototypeOf(this, PriorRequestNotComplete.prototype);
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
class PublicZoneVPCAssociation extends Route53ServiceException {
|
|
322
|
+
name = "PublicZoneVPCAssociation";
|
|
323
|
+
$fault = "client";
|
|
324
|
+
constructor(opts) {
|
|
325
|
+
super({
|
|
326
|
+
name: "PublicZoneVPCAssociation",
|
|
327
|
+
$fault: "client",
|
|
328
|
+
...opts,
|
|
329
|
+
});
|
|
330
|
+
Object.setPrototypeOf(this, PublicZoneVPCAssociation.prototype);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
class CidrBlockInUseException extends Route53ServiceException {
|
|
334
|
+
name = "CidrBlockInUseException";
|
|
335
|
+
$fault = "client";
|
|
336
|
+
Message;
|
|
337
|
+
constructor(opts) {
|
|
338
|
+
super({
|
|
339
|
+
name: "CidrBlockInUseException",
|
|
340
|
+
$fault: "client",
|
|
341
|
+
...opts,
|
|
342
|
+
});
|
|
343
|
+
Object.setPrototypeOf(this, CidrBlockInUseException.prototype);
|
|
344
|
+
this.Message = opts.Message;
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
class CidrCollectionVersionMismatchException extends Route53ServiceException {
|
|
348
|
+
name = "CidrCollectionVersionMismatchException";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
Message;
|
|
351
|
+
constructor(opts) {
|
|
352
|
+
super({
|
|
353
|
+
name: "CidrCollectionVersionMismatchException",
|
|
354
|
+
$fault: "client",
|
|
355
|
+
...opts,
|
|
356
|
+
});
|
|
357
|
+
Object.setPrototypeOf(this, CidrCollectionVersionMismatchException.prototype);
|
|
358
|
+
this.Message = opts.Message;
|
|
359
|
+
}
|
|
360
|
+
}
|
|
361
|
+
class NoSuchCidrCollectionException extends Route53ServiceException {
|
|
362
|
+
name = "NoSuchCidrCollectionException";
|
|
363
|
+
$fault = "client";
|
|
364
|
+
Message;
|
|
365
|
+
constructor(opts) {
|
|
366
|
+
super({
|
|
367
|
+
name: "NoSuchCidrCollectionException",
|
|
368
|
+
$fault: "client",
|
|
369
|
+
...opts,
|
|
370
|
+
});
|
|
371
|
+
Object.setPrototypeOf(this, NoSuchCidrCollectionException.prototype);
|
|
372
|
+
this.Message = opts.Message;
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
class InvalidChangeBatch extends Route53ServiceException {
|
|
376
|
+
name = "InvalidChangeBatch";
|
|
377
|
+
$fault = "client";
|
|
378
|
+
messages;
|
|
379
|
+
constructor(opts) {
|
|
380
|
+
super({
|
|
381
|
+
name: "InvalidChangeBatch",
|
|
382
|
+
$fault: "client",
|
|
383
|
+
...opts,
|
|
384
|
+
});
|
|
385
|
+
Object.setPrototypeOf(this, InvalidChangeBatch.prototype);
|
|
386
|
+
this.messages = opts.messages;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
class NoSuchHealthCheck extends Route53ServiceException {
|
|
390
|
+
name = "NoSuchHealthCheck";
|
|
391
|
+
$fault = "client";
|
|
392
|
+
constructor(opts) {
|
|
393
|
+
super({
|
|
394
|
+
name: "NoSuchHealthCheck",
|
|
395
|
+
$fault: "client",
|
|
396
|
+
...opts,
|
|
397
|
+
});
|
|
398
|
+
Object.setPrototypeOf(this, NoSuchHealthCheck.prototype);
|
|
399
|
+
}
|
|
400
|
+
}
|
|
401
|
+
class ThrottlingException extends Route53ServiceException {
|
|
402
|
+
name = "ThrottlingException";
|
|
403
|
+
$fault = "client";
|
|
404
|
+
constructor(opts) {
|
|
405
|
+
super({
|
|
406
|
+
name: "ThrottlingException",
|
|
407
|
+
$fault: "client",
|
|
408
|
+
...opts,
|
|
409
|
+
});
|
|
410
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
class CidrCollectionAlreadyExistsException extends Route53ServiceException {
|
|
414
|
+
name = "CidrCollectionAlreadyExistsException";
|
|
415
|
+
$fault = "client";
|
|
416
|
+
Message;
|
|
417
|
+
constructor(opts) {
|
|
418
|
+
super({
|
|
419
|
+
name: "CidrCollectionAlreadyExistsException",
|
|
420
|
+
$fault: "client",
|
|
421
|
+
...opts,
|
|
422
|
+
});
|
|
423
|
+
Object.setPrototypeOf(this, CidrCollectionAlreadyExistsException.prototype);
|
|
424
|
+
this.Message = opts.Message;
|
|
425
|
+
}
|
|
426
|
+
}
|
|
427
|
+
class HealthCheckAlreadyExists extends Route53ServiceException {
|
|
428
|
+
name = "HealthCheckAlreadyExists";
|
|
429
|
+
$fault = "client";
|
|
430
|
+
constructor(opts) {
|
|
431
|
+
super({
|
|
432
|
+
name: "HealthCheckAlreadyExists",
|
|
433
|
+
$fault: "client",
|
|
434
|
+
...opts,
|
|
435
|
+
});
|
|
436
|
+
Object.setPrototypeOf(this, HealthCheckAlreadyExists.prototype);
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
class TooManyHealthChecks extends Route53ServiceException {
|
|
440
|
+
name = "TooManyHealthChecks";
|
|
441
|
+
$fault = "client";
|
|
442
|
+
constructor(opts) {
|
|
443
|
+
super({
|
|
444
|
+
name: "TooManyHealthChecks",
|
|
445
|
+
$fault: "client",
|
|
446
|
+
...opts,
|
|
447
|
+
});
|
|
448
|
+
Object.setPrototypeOf(this, TooManyHealthChecks.prototype);
|
|
449
|
+
}
|
|
450
|
+
}
|
|
451
|
+
class DelegationSetNotAvailable extends Route53ServiceException {
|
|
452
|
+
name = "DelegationSetNotAvailable";
|
|
453
|
+
$fault = "client";
|
|
454
|
+
constructor(opts) {
|
|
455
|
+
super({
|
|
456
|
+
name: "DelegationSetNotAvailable",
|
|
457
|
+
$fault: "client",
|
|
458
|
+
...opts,
|
|
459
|
+
});
|
|
460
|
+
Object.setPrototypeOf(this, DelegationSetNotAvailable.prototype);
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
class DelegationSetNotReusable extends Route53ServiceException {
|
|
464
|
+
name = "DelegationSetNotReusable";
|
|
465
|
+
$fault = "client";
|
|
466
|
+
constructor(opts) {
|
|
467
|
+
super({
|
|
468
|
+
name: "DelegationSetNotReusable",
|
|
469
|
+
$fault: "client",
|
|
470
|
+
...opts,
|
|
471
|
+
});
|
|
472
|
+
Object.setPrototypeOf(this, DelegationSetNotReusable.prototype);
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
class HostedZoneAlreadyExists extends Route53ServiceException {
|
|
476
|
+
name = "HostedZoneAlreadyExists";
|
|
477
|
+
$fault = "client";
|
|
478
|
+
constructor(opts) {
|
|
479
|
+
super({
|
|
480
|
+
name: "HostedZoneAlreadyExists",
|
|
481
|
+
$fault: "client",
|
|
482
|
+
...opts,
|
|
483
|
+
});
|
|
484
|
+
Object.setPrototypeOf(this, HostedZoneAlreadyExists.prototype);
|
|
485
|
+
}
|
|
486
|
+
}
|
|
487
|
+
class InvalidDomainName extends Route53ServiceException {
|
|
488
|
+
name = "InvalidDomainName";
|
|
489
|
+
$fault = "client";
|
|
490
|
+
constructor(opts) {
|
|
491
|
+
super({
|
|
492
|
+
name: "InvalidDomainName",
|
|
493
|
+
$fault: "client",
|
|
494
|
+
...opts,
|
|
495
|
+
});
|
|
496
|
+
Object.setPrototypeOf(this, InvalidDomainName.prototype);
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
class NoSuchDelegationSet extends Route53ServiceException {
|
|
500
|
+
name = "NoSuchDelegationSet";
|
|
501
|
+
$fault = "client";
|
|
502
|
+
constructor(opts) {
|
|
503
|
+
super({
|
|
504
|
+
name: "NoSuchDelegationSet",
|
|
505
|
+
$fault: "client",
|
|
506
|
+
...opts,
|
|
507
|
+
});
|
|
508
|
+
Object.setPrototypeOf(this, NoSuchDelegationSet.prototype);
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
class TooManyHostedZones extends Route53ServiceException {
|
|
512
|
+
name = "TooManyHostedZones";
|
|
513
|
+
$fault = "client";
|
|
514
|
+
constructor(opts) {
|
|
515
|
+
super({
|
|
516
|
+
name: "TooManyHostedZones",
|
|
517
|
+
$fault: "client",
|
|
518
|
+
...opts,
|
|
519
|
+
});
|
|
520
|
+
Object.setPrototypeOf(this, TooManyHostedZones.prototype);
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
class InvalidArgument extends Route53ServiceException {
|
|
524
|
+
name = "InvalidArgument";
|
|
525
|
+
$fault = "client";
|
|
526
|
+
constructor(opts) {
|
|
527
|
+
super({
|
|
528
|
+
name: "InvalidArgument",
|
|
529
|
+
$fault: "client",
|
|
530
|
+
...opts,
|
|
531
|
+
});
|
|
532
|
+
Object.setPrototypeOf(this, InvalidArgument.prototype);
|
|
533
|
+
}
|
|
534
|
+
}
|
|
535
|
+
class InvalidKeySigningKeyName extends Route53ServiceException {
|
|
536
|
+
name = "InvalidKeySigningKeyName";
|
|
537
|
+
$fault = "client";
|
|
538
|
+
constructor(opts) {
|
|
539
|
+
super({
|
|
540
|
+
name: "InvalidKeySigningKeyName",
|
|
541
|
+
$fault: "client",
|
|
542
|
+
...opts,
|
|
543
|
+
});
|
|
544
|
+
Object.setPrototypeOf(this, InvalidKeySigningKeyName.prototype);
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
class KeySigningKeyAlreadyExists extends Route53ServiceException {
|
|
548
|
+
name = "KeySigningKeyAlreadyExists";
|
|
549
|
+
$fault = "client";
|
|
550
|
+
constructor(opts) {
|
|
551
|
+
super({
|
|
552
|
+
name: "KeySigningKeyAlreadyExists",
|
|
553
|
+
$fault: "client",
|
|
554
|
+
...opts,
|
|
555
|
+
});
|
|
556
|
+
Object.setPrototypeOf(this, KeySigningKeyAlreadyExists.prototype);
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
class TooManyKeySigningKeys extends Route53ServiceException {
|
|
560
|
+
name = "TooManyKeySigningKeys";
|
|
561
|
+
$fault = "client";
|
|
562
|
+
constructor(opts) {
|
|
563
|
+
super({
|
|
564
|
+
name: "TooManyKeySigningKeys",
|
|
565
|
+
$fault: "client",
|
|
566
|
+
...opts,
|
|
567
|
+
});
|
|
568
|
+
Object.setPrototypeOf(this, TooManyKeySigningKeys.prototype);
|
|
569
|
+
}
|
|
570
|
+
}
|
|
571
|
+
class InsufficientCloudWatchLogsResourcePolicy extends Route53ServiceException {
|
|
572
|
+
name = "InsufficientCloudWatchLogsResourcePolicy";
|
|
573
|
+
$fault = "client";
|
|
574
|
+
constructor(opts) {
|
|
575
|
+
super({
|
|
576
|
+
name: "InsufficientCloudWatchLogsResourcePolicy",
|
|
577
|
+
$fault: "client",
|
|
578
|
+
...opts,
|
|
579
|
+
});
|
|
580
|
+
Object.setPrototypeOf(this, InsufficientCloudWatchLogsResourcePolicy.prototype);
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
class NoSuchCloudWatchLogsLogGroup extends Route53ServiceException {
|
|
584
|
+
name = "NoSuchCloudWatchLogsLogGroup";
|
|
585
|
+
$fault = "client";
|
|
586
|
+
constructor(opts) {
|
|
587
|
+
super({
|
|
588
|
+
name: "NoSuchCloudWatchLogsLogGroup",
|
|
589
|
+
$fault: "client",
|
|
590
|
+
...opts,
|
|
591
|
+
});
|
|
592
|
+
Object.setPrototypeOf(this, NoSuchCloudWatchLogsLogGroup.prototype);
|
|
593
|
+
}
|
|
594
|
+
}
|
|
595
|
+
class QueryLoggingConfigAlreadyExists extends Route53ServiceException {
|
|
596
|
+
name = "QueryLoggingConfigAlreadyExists";
|
|
597
|
+
$fault = "client";
|
|
598
|
+
constructor(opts) {
|
|
599
|
+
super({
|
|
600
|
+
name: "QueryLoggingConfigAlreadyExists",
|
|
601
|
+
$fault: "client",
|
|
602
|
+
...opts,
|
|
603
|
+
});
|
|
604
|
+
Object.setPrototypeOf(this, QueryLoggingConfigAlreadyExists.prototype);
|
|
605
|
+
}
|
|
606
|
+
}
|
|
607
|
+
class DelegationSetAlreadyCreated extends Route53ServiceException {
|
|
608
|
+
name = "DelegationSetAlreadyCreated";
|
|
609
|
+
$fault = "client";
|
|
610
|
+
constructor(opts) {
|
|
611
|
+
super({
|
|
612
|
+
name: "DelegationSetAlreadyCreated",
|
|
613
|
+
$fault: "client",
|
|
614
|
+
...opts,
|
|
615
|
+
});
|
|
616
|
+
Object.setPrototypeOf(this, DelegationSetAlreadyCreated.prototype);
|
|
617
|
+
}
|
|
618
|
+
}
|
|
619
|
+
class DelegationSetAlreadyReusable extends Route53ServiceException {
|
|
620
|
+
name = "DelegationSetAlreadyReusable";
|
|
621
|
+
$fault = "client";
|
|
622
|
+
constructor(opts) {
|
|
623
|
+
super({
|
|
624
|
+
name: "DelegationSetAlreadyReusable",
|
|
625
|
+
$fault: "client",
|
|
626
|
+
...opts,
|
|
627
|
+
});
|
|
628
|
+
Object.setPrototypeOf(this, DelegationSetAlreadyReusable.prototype);
|
|
629
|
+
}
|
|
630
|
+
}
|
|
631
|
+
class HostedZoneNotFound extends Route53ServiceException {
|
|
632
|
+
name = "HostedZoneNotFound";
|
|
633
|
+
$fault = "client";
|
|
634
|
+
constructor(opts) {
|
|
635
|
+
super({
|
|
636
|
+
name: "HostedZoneNotFound",
|
|
637
|
+
$fault: "client",
|
|
638
|
+
...opts,
|
|
639
|
+
});
|
|
640
|
+
Object.setPrototypeOf(this, HostedZoneNotFound.prototype);
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
class InvalidTrafficPolicyDocument extends Route53ServiceException {
|
|
644
|
+
name = "InvalidTrafficPolicyDocument";
|
|
645
|
+
$fault = "client";
|
|
646
|
+
constructor(opts) {
|
|
647
|
+
super({
|
|
648
|
+
name: "InvalidTrafficPolicyDocument",
|
|
649
|
+
$fault: "client",
|
|
650
|
+
...opts,
|
|
651
|
+
});
|
|
652
|
+
Object.setPrototypeOf(this, InvalidTrafficPolicyDocument.prototype);
|
|
653
|
+
}
|
|
654
|
+
}
|
|
655
|
+
class TooManyTrafficPolicies extends Route53ServiceException {
|
|
656
|
+
name = "TooManyTrafficPolicies";
|
|
657
|
+
$fault = "client";
|
|
658
|
+
constructor(opts) {
|
|
659
|
+
super({
|
|
660
|
+
name: "TooManyTrafficPolicies",
|
|
661
|
+
$fault: "client",
|
|
662
|
+
...opts,
|
|
663
|
+
});
|
|
664
|
+
Object.setPrototypeOf(this, TooManyTrafficPolicies.prototype);
|
|
665
|
+
}
|
|
666
|
+
}
|
|
667
|
+
class TrafficPolicyAlreadyExists extends Route53ServiceException {
|
|
668
|
+
name = "TrafficPolicyAlreadyExists";
|
|
669
|
+
$fault = "client";
|
|
670
|
+
constructor(opts) {
|
|
671
|
+
super({
|
|
672
|
+
name: "TrafficPolicyAlreadyExists",
|
|
673
|
+
$fault: "client",
|
|
674
|
+
...opts,
|
|
675
|
+
});
|
|
676
|
+
Object.setPrototypeOf(this, TrafficPolicyAlreadyExists.prototype);
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
class NoSuchTrafficPolicy extends Route53ServiceException {
|
|
680
|
+
name = "NoSuchTrafficPolicy";
|
|
681
|
+
$fault = "client";
|
|
682
|
+
constructor(opts) {
|
|
683
|
+
super({
|
|
684
|
+
name: "NoSuchTrafficPolicy",
|
|
685
|
+
$fault: "client",
|
|
686
|
+
...opts,
|
|
687
|
+
});
|
|
688
|
+
Object.setPrototypeOf(this, NoSuchTrafficPolicy.prototype);
|
|
689
|
+
}
|
|
690
|
+
}
|
|
691
|
+
class TooManyTrafficPolicyInstances extends Route53ServiceException {
|
|
692
|
+
name = "TooManyTrafficPolicyInstances";
|
|
693
|
+
$fault = "client";
|
|
694
|
+
constructor(opts) {
|
|
695
|
+
super({
|
|
696
|
+
name: "TooManyTrafficPolicyInstances",
|
|
697
|
+
$fault: "client",
|
|
698
|
+
...opts,
|
|
699
|
+
});
|
|
700
|
+
Object.setPrototypeOf(this, TooManyTrafficPolicyInstances.prototype);
|
|
701
|
+
}
|
|
702
|
+
}
|
|
703
|
+
class TrafficPolicyInstanceAlreadyExists extends Route53ServiceException {
|
|
704
|
+
name = "TrafficPolicyInstanceAlreadyExists";
|
|
705
|
+
$fault = "client";
|
|
706
|
+
constructor(opts) {
|
|
707
|
+
super({
|
|
708
|
+
name: "TrafficPolicyInstanceAlreadyExists",
|
|
709
|
+
$fault: "client",
|
|
710
|
+
...opts,
|
|
711
|
+
});
|
|
712
|
+
Object.setPrototypeOf(this, TrafficPolicyInstanceAlreadyExists.prototype);
|
|
713
|
+
}
|
|
714
|
+
}
|
|
715
|
+
class TooManyTrafficPolicyVersionsForCurrentPolicy extends Route53ServiceException {
|
|
716
|
+
name = "TooManyTrafficPolicyVersionsForCurrentPolicy";
|
|
717
|
+
$fault = "client";
|
|
718
|
+
constructor(opts) {
|
|
719
|
+
super({
|
|
720
|
+
name: "TooManyTrafficPolicyVersionsForCurrentPolicy",
|
|
721
|
+
$fault: "client",
|
|
722
|
+
...opts,
|
|
723
|
+
});
|
|
724
|
+
Object.setPrototypeOf(this, TooManyTrafficPolicyVersionsForCurrentPolicy.prototype);
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
class TooManyVPCAssociationAuthorizations extends Route53ServiceException {
|
|
728
|
+
name = "TooManyVPCAssociationAuthorizations";
|
|
729
|
+
$fault = "client";
|
|
730
|
+
constructor(opts) {
|
|
731
|
+
super({
|
|
732
|
+
name: "TooManyVPCAssociationAuthorizations",
|
|
733
|
+
$fault: "client",
|
|
734
|
+
...opts,
|
|
735
|
+
});
|
|
736
|
+
Object.setPrototypeOf(this, TooManyVPCAssociationAuthorizations.prototype);
|
|
737
|
+
}
|
|
738
|
+
}
|
|
739
|
+
class KeySigningKeyInParentDSRecord extends Route53ServiceException {
|
|
740
|
+
name = "KeySigningKeyInParentDSRecord";
|
|
741
|
+
$fault = "client";
|
|
742
|
+
constructor(opts) {
|
|
743
|
+
super({
|
|
744
|
+
name: "KeySigningKeyInParentDSRecord",
|
|
745
|
+
$fault: "client",
|
|
746
|
+
...opts,
|
|
747
|
+
});
|
|
748
|
+
Object.setPrototypeOf(this, KeySigningKeyInParentDSRecord.prototype);
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
class KeySigningKeyInUse extends Route53ServiceException {
|
|
752
|
+
name = "KeySigningKeyInUse";
|
|
753
|
+
$fault = "client";
|
|
754
|
+
constructor(opts) {
|
|
755
|
+
super({
|
|
756
|
+
name: "KeySigningKeyInUse",
|
|
757
|
+
$fault: "client",
|
|
758
|
+
...opts,
|
|
759
|
+
});
|
|
760
|
+
Object.setPrototypeOf(this, KeySigningKeyInUse.prototype);
|
|
761
|
+
}
|
|
762
|
+
}
|
|
763
|
+
class CidrCollectionInUseException extends Route53ServiceException {
|
|
764
|
+
name = "CidrCollectionInUseException";
|
|
765
|
+
$fault = "client";
|
|
766
|
+
Message;
|
|
767
|
+
constructor(opts) {
|
|
768
|
+
super({
|
|
769
|
+
name: "CidrCollectionInUseException",
|
|
770
|
+
$fault: "client",
|
|
771
|
+
...opts,
|
|
772
|
+
});
|
|
773
|
+
Object.setPrototypeOf(this, CidrCollectionInUseException.prototype);
|
|
774
|
+
this.Message = opts.Message;
|
|
775
|
+
}
|
|
776
|
+
}
|
|
777
|
+
class HealthCheckInUse extends Route53ServiceException {
|
|
778
|
+
name = "HealthCheckInUse";
|
|
779
|
+
$fault = "client";
|
|
780
|
+
constructor(opts) {
|
|
781
|
+
super({
|
|
782
|
+
name: "HealthCheckInUse",
|
|
783
|
+
$fault: "client",
|
|
784
|
+
...opts,
|
|
785
|
+
});
|
|
786
|
+
Object.setPrototypeOf(this, HealthCheckInUse.prototype);
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
class HostedZoneNotEmpty extends Route53ServiceException {
|
|
790
|
+
name = "HostedZoneNotEmpty";
|
|
791
|
+
$fault = "client";
|
|
792
|
+
constructor(opts) {
|
|
793
|
+
super({
|
|
794
|
+
name: "HostedZoneNotEmpty",
|
|
795
|
+
$fault: "client",
|
|
796
|
+
...opts,
|
|
797
|
+
});
|
|
798
|
+
Object.setPrototypeOf(this, HostedZoneNotEmpty.prototype);
|
|
799
|
+
}
|
|
800
|
+
}
|
|
801
|
+
class NoSuchQueryLoggingConfig extends Route53ServiceException {
|
|
802
|
+
name = "NoSuchQueryLoggingConfig";
|
|
803
|
+
$fault = "client";
|
|
804
|
+
constructor(opts) {
|
|
805
|
+
super({
|
|
806
|
+
name: "NoSuchQueryLoggingConfig",
|
|
807
|
+
$fault: "client",
|
|
808
|
+
...opts,
|
|
809
|
+
});
|
|
810
|
+
Object.setPrototypeOf(this, NoSuchQueryLoggingConfig.prototype);
|
|
811
|
+
}
|
|
812
|
+
}
|
|
813
|
+
class DelegationSetInUse extends Route53ServiceException {
|
|
814
|
+
name = "DelegationSetInUse";
|
|
815
|
+
$fault = "client";
|
|
816
|
+
constructor(opts) {
|
|
817
|
+
super({
|
|
818
|
+
name: "DelegationSetInUse",
|
|
819
|
+
$fault: "client",
|
|
820
|
+
...opts,
|
|
821
|
+
});
|
|
822
|
+
Object.setPrototypeOf(this, DelegationSetInUse.prototype);
|
|
823
|
+
}
|
|
824
|
+
}
|
|
825
|
+
class TrafficPolicyInUse extends Route53ServiceException {
|
|
826
|
+
name = "TrafficPolicyInUse";
|
|
827
|
+
$fault = "client";
|
|
828
|
+
constructor(opts) {
|
|
829
|
+
super({
|
|
830
|
+
name: "TrafficPolicyInUse",
|
|
831
|
+
$fault: "client",
|
|
832
|
+
...opts,
|
|
833
|
+
});
|
|
834
|
+
Object.setPrototypeOf(this, TrafficPolicyInUse.prototype);
|
|
835
|
+
}
|
|
836
|
+
}
|
|
837
|
+
class NoSuchTrafficPolicyInstance extends Route53ServiceException {
|
|
838
|
+
name = "NoSuchTrafficPolicyInstance";
|
|
839
|
+
$fault = "client";
|
|
840
|
+
constructor(opts) {
|
|
841
|
+
super({
|
|
842
|
+
name: "NoSuchTrafficPolicyInstance",
|
|
843
|
+
$fault: "client",
|
|
844
|
+
...opts,
|
|
845
|
+
});
|
|
846
|
+
Object.setPrototypeOf(this, NoSuchTrafficPolicyInstance.prototype);
|
|
847
|
+
}
|
|
848
|
+
}
|
|
849
|
+
class VPCAssociationAuthorizationNotFound extends Route53ServiceException {
|
|
850
|
+
name = "VPCAssociationAuthorizationNotFound";
|
|
851
|
+
$fault = "client";
|
|
852
|
+
constructor(opts) {
|
|
853
|
+
super({
|
|
854
|
+
name: "VPCAssociationAuthorizationNotFound",
|
|
855
|
+
$fault: "client",
|
|
856
|
+
...opts,
|
|
857
|
+
});
|
|
858
|
+
Object.setPrototypeOf(this, VPCAssociationAuthorizationNotFound.prototype);
|
|
859
|
+
}
|
|
860
|
+
}
|
|
861
|
+
class DNSSECNotFound extends Route53ServiceException {
|
|
862
|
+
name = "DNSSECNotFound";
|
|
863
|
+
$fault = "client";
|
|
864
|
+
constructor(opts) {
|
|
865
|
+
super({
|
|
866
|
+
name: "DNSSECNotFound",
|
|
867
|
+
$fault: "client",
|
|
868
|
+
...opts,
|
|
869
|
+
});
|
|
870
|
+
Object.setPrototypeOf(this, DNSSECNotFound.prototype);
|
|
871
|
+
}
|
|
872
|
+
}
|
|
873
|
+
class LastVPCAssociation extends Route53ServiceException {
|
|
874
|
+
name = "LastVPCAssociation";
|
|
875
|
+
$fault = "client";
|
|
876
|
+
constructor(opts) {
|
|
877
|
+
super({
|
|
878
|
+
name: "LastVPCAssociation",
|
|
879
|
+
$fault: "client",
|
|
880
|
+
...opts,
|
|
881
|
+
});
|
|
882
|
+
Object.setPrototypeOf(this, LastVPCAssociation.prototype);
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
class VPCAssociationNotFound extends Route53ServiceException {
|
|
886
|
+
name = "VPCAssociationNotFound";
|
|
887
|
+
$fault = "client";
|
|
888
|
+
constructor(opts) {
|
|
889
|
+
super({
|
|
890
|
+
name: "VPCAssociationNotFound",
|
|
891
|
+
$fault: "client",
|
|
892
|
+
...opts,
|
|
893
|
+
});
|
|
894
|
+
Object.setPrototypeOf(this, VPCAssociationNotFound.prototype);
|
|
895
|
+
}
|
|
896
|
+
}
|
|
897
|
+
class HostedZonePartiallyDelegated extends Route53ServiceException {
|
|
898
|
+
name = "HostedZonePartiallyDelegated";
|
|
899
|
+
$fault = "client";
|
|
900
|
+
constructor(opts) {
|
|
901
|
+
super({
|
|
902
|
+
name: "HostedZonePartiallyDelegated",
|
|
903
|
+
$fault: "client",
|
|
904
|
+
...opts,
|
|
905
|
+
});
|
|
906
|
+
Object.setPrototypeOf(this, HostedZonePartiallyDelegated.prototype);
|
|
907
|
+
}
|
|
908
|
+
}
|
|
909
|
+
class KeySigningKeyWithActiveStatusNotFound extends Route53ServiceException {
|
|
910
|
+
name = "KeySigningKeyWithActiveStatusNotFound";
|
|
911
|
+
$fault = "client";
|
|
912
|
+
constructor(opts) {
|
|
913
|
+
super({
|
|
914
|
+
name: "KeySigningKeyWithActiveStatusNotFound",
|
|
915
|
+
$fault: "client",
|
|
916
|
+
...opts,
|
|
917
|
+
});
|
|
918
|
+
Object.setPrototypeOf(this, KeySigningKeyWithActiveStatusNotFound.prototype);
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
class NoSuchChange extends Route53ServiceException {
|
|
922
|
+
name = "NoSuchChange";
|
|
923
|
+
$fault = "client";
|
|
924
|
+
constructor(opts) {
|
|
925
|
+
super({
|
|
926
|
+
name: "NoSuchChange",
|
|
927
|
+
$fault: "client",
|
|
928
|
+
...opts,
|
|
929
|
+
});
|
|
930
|
+
Object.setPrototypeOf(this, NoSuchChange.prototype);
|
|
931
|
+
}
|
|
932
|
+
}
|
|
933
|
+
class NoSuchGeoLocation extends Route53ServiceException {
|
|
934
|
+
name = "NoSuchGeoLocation";
|
|
935
|
+
$fault = "client";
|
|
936
|
+
constructor(opts) {
|
|
937
|
+
super({
|
|
938
|
+
name: "NoSuchGeoLocation",
|
|
939
|
+
$fault: "client",
|
|
940
|
+
...opts,
|
|
941
|
+
});
|
|
942
|
+
Object.setPrototypeOf(this, NoSuchGeoLocation.prototype);
|
|
943
|
+
}
|
|
944
|
+
}
|
|
945
|
+
class IncompatibleVersion extends Route53ServiceException {
|
|
946
|
+
name = "IncompatibleVersion";
|
|
947
|
+
$fault = "client";
|
|
948
|
+
constructor(opts) {
|
|
949
|
+
super({
|
|
950
|
+
name: "IncompatibleVersion",
|
|
951
|
+
$fault: "client",
|
|
952
|
+
...opts,
|
|
953
|
+
});
|
|
954
|
+
Object.setPrototypeOf(this, IncompatibleVersion.prototype);
|
|
955
|
+
}
|
|
956
|
+
}
|
|
957
|
+
class HostedZoneNotPrivate extends Route53ServiceException {
|
|
958
|
+
name = "HostedZoneNotPrivate";
|
|
959
|
+
$fault = "client";
|
|
960
|
+
constructor(opts) {
|
|
961
|
+
super({
|
|
962
|
+
name: "HostedZoneNotPrivate",
|
|
963
|
+
$fault: "client",
|
|
964
|
+
...opts,
|
|
965
|
+
});
|
|
966
|
+
Object.setPrototypeOf(this, HostedZoneNotPrivate.prototype);
|
|
967
|
+
}
|
|
968
|
+
}
|
|
969
|
+
class NoSuchCidrLocationException extends Route53ServiceException {
|
|
970
|
+
name = "NoSuchCidrLocationException";
|
|
971
|
+
$fault = "client";
|
|
972
|
+
Message;
|
|
973
|
+
constructor(opts) {
|
|
974
|
+
super({
|
|
975
|
+
name: "NoSuchCidrLocationException",
|
|
976
|
+
$fault: "client",
|
|
977
|
+
...opts,
|
|
978
|
+
});
|
|
979
|
+
Object.setPrototypeOf(this, NoSuchCidrLocationException.prototype);
|
|
980
|
+
this.Message = opts.Message;
|
|
981
|
+
}
|
|
982
|
+
}
|
|
983
|
+
class InvalidPaginationToken extends Route53ServiceException {
|
|
984
|
+
name = "InvalidPaginationToken";
|
|
985
|
+
$fault = "client";
|
|
986
|
+
constructor(opts) {
|
|
987
|
+
super({
|
|
988
|
+
name: "InvalidPaginationToken",
|
|
989
|
+
$fault: "client",
|
|
990
|
+
...opts,
|
|
991
|
+
});
|
|
992
|
+
Object.setPrototypeOf(this, InvalidPaginationToken.prototype);
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
class HealthCheckVersionMismatch extends Route53ServiceException {
|
|
996
|
+
name = "HealthCheckVersionMismatch";
|
|
997
|
+
$fault = "client";
|
|
998
|
+
constructor(opts) {
|
|
999
|
+
super({
|
|
1000
|
+
name: "HealthCheckVersionMismatch",
|
|
1001
|
+
$fault: "client",
|
|
1002
|
+
...opts,
|
|
1003
|
+
});
|
|
1004
|
+
Object.setPrototypeOf(this, HealthCheckVersionMismatch.prototype);
|
|
1005
|
+
}
|
|
1006
|
+
}
|
|
1007
|
+
class ConflictingTypes extends Route53ServiceException {
|
|
1008
|
+
name = "ConflictingTypes";
|
|
1009
|
+
$fault = "client";
|
|
1010
|
+
constructor(opts) {
|
|
1011
|
+
super({
|
|
1012
|
+
name: "ConflictingTypes",
|
|
1013
|
+
$fault: "client",
|
|
1014
|
+
...opts,
|
|
1015
|
+
});
|
|
1016
|
+
Object.setPrototypeOf(this, ConflictingTypes.prototype);
|
|
1017
|
+
}
|
|
1018
|
+
}
|
|
1019
|
+
|
|
1020
|
+
const _A = "Action";
|
|
1021
|
+
const _AI = "AlarmIdentifier";
|
|
1022
|
+
const _AKSK = "ActivateKeySigningKey";
|
|
1023
|
+
const _AKSKR = "ActivateKeySigningKeyRequest";
|
|
1024
|
+
const _AKSKRc = "ActivateKeySigningKeyResponse";
|
|
1025
|
+
const _AL = "AccountLimit";
|
|
1026
|
+
const _AR = "AcceleratedRecovery";
|
|
1027
|
+
const _ARS = "AcceleratedRecoveryStatus";
|
|
1028
|
+
const _AT = "AliasTarget";
|
|
1029
|
+
const _ATd = "AddTags";
|
|
1030
|
+
const _AVPCWHZ = "AssociateVPCWithHostedZone";
|
|
1031
|
+
const _AVPCWHZR = "AssociateVPCWithHostedZoneRequest";
|
|
1032
|
+
const _AVPCWHZRs = "AssociateVPCWithHostedZoneResponse";
|
|
1033
|
+
const _AWSR = "AWSRegion";
|
|
1034
|
+
const _Ar = "Arn";
|
|
1035
|
+
const _B = "Bias";
|
|
1036
|
+
const _C = "Comment";
|
|
1037
|
+
const _CB = "ChangeBatch";
|
|
1038
|
+
const _CBIUE = "CidrBlockInUseException";
|
|
1039
|
+
const _CBS = "CidrBlockSummary";
|
|
1040
|
+
const _CBSi = "CidrBlockSummaries";
|
|
1041
|
+
const _CBi = "CidrBlock";
|
|
1042
|
+
const _CBid = "CidrBlocks";
|
|
1043
|
+
const _CC = "CidrCollection";
|
|
1044
|
+
const _CCAEE = "CidrCollectionAlreadyExistsException";
|
|
1045
|
+
const _CCC = "CidrCollectionChange";
|
|
1046
|
+
const _CCCR = "ChangeCidrCollectionRequest";
|
|
1047
|
+
const _CCCRh = "ChangeCidrCollectionResponse";
|
|
1048
|
+
const _CCCRr = "CreateCidrCollectionRequest";
|
|
1049
|
+
const _CCCRre = "CreateCidrCollectionResponse";
|
|
1050
|
+
const _CCCh = "ChangeCidrCollection";
|
|
1051
|
+
const _CCCi = "CidrCollectionChanges";
|
|
1052
|
+
const _CCCr = "CreateCidrCollection";
|
|
1053
|
+
const _CCIUE = "CidrCollectionInUseException";
|
|
1054
|
+
const _CCVME = "CidrCollectionVersionMismatchException";
|
|
1055
|
+
const _CCi = "CidrCollections";
|
|
1056
|
+
const _CCo = "ContinentCode";
|
|
1057
|
+
const _CCou = "CountryCode";
|
|
1058
|
+
const _CD = "CreatedDate";
|
|
1059
|
+
const _CDE = "ConflictingDomainExists";
|
|
1060
|
+
const _CHC = "ChildHealthChecks";
|
|
1061
|
+
const _CHCL = "ChildHealthCheckList";
|
|
1062
|
+
const _CHCR = "CreateHealthCheckRequest";
|
|
1063
|
+
const _CHCRr = "CreateHealthCheckResponse";
|
|
1064
|
+
const _CHCh = "ChildHealthCheck";
|
|
1065
|
+
const _CHCr = "CreateHealthCheck";
|
|
1066
|
+
const _CHZ = "CreateHostedZone";
|
|
1067
|
+
const _CHZR = "CreateHostedZoneRequest";
|
|
1068
|
+
const _CHZRr = "CreateHostedZoneResponse";
|
|
1069
|
+
const _CI = "ChangeInfo";
|
|
1070
|
+
const _CIR = "CheckerIpRanges";
|
|
1071
|
+
const _CIo = "CollectionId";
|
|
1072
|
+
const _CKSK = "CreateKeySigningKey";
|
|
1073
|
+
const _CKSKR = "CreateKeySigningKeyRequest";
|
|
1074
|
+
const _CKSKRr = "CreateKeySigningKeyResponse";
|
|
1075
|
+
const _CL = "CidrList";
|
|
1076
|
+
const _CLi = "CidrLocations";
|
|
1077
|
+
const _CM = "ConcurrentModification";
|
|
1078
|
+
const _CN = "ContinentName";
|
|
1079
|
+
const _CNo = "CountryName";
|
|
1080
|
+
const _CO = "ComparisonOperator";
|
|
1081
|
+
const _CQLC = "CreateQueryLoggingConfig";
|
|
1082
|
+
const _CQLCR = "CreateQueryLoggingConfigRequest";
|
|
1083
|
+
const _CQLCRr = "CreateQueryLoggingConfigResponse";
|
|
1084
|
+
const _CR = "CallerReference";
|
|
1085
|
+
const _CRC = "CidrRoutingConfig";
|
|
1086
|
+
const _CRDS = "CreateReusableDelegationSet";
|
|
1087
|
+
const _CRDSR = "CreateReusableDelegationSetRequest";
|
|
1088
|
+
const _CRDSRr = "CreateReusableDelegationSetResponse";
|
|
1089
|
+
const _CRRS = "ChangeResourceRecordSets";
|
|
1090
|
+
const _CRRSR = "ChangeResourceRecordSetsRequest";
|
|
1091
|
+
const _CRRSRh = "ChangeResourceRecordSetsResponse";
|
|
1092
|
+
const _CS = "CollectionSummary";
|
|
1093
|
+
const _CSo = "CollectionSummaries";
|
|
1094
|
+
const _CT = "ConflictingTypes";
|
|
1095
|
+
const _CTFR = "ChangeTagsForResource";
|
|
1096
|
+
const _CTFRR = "ChangeTagsForResourceRequest";
|
|
1097
|
+
const _CTFRRh = "ChangeTagsForResourceResponse";
|
|
1098
|
+
const _CTP = "CreateTrafficPolicy";
|
|
1099
|
+
const _CTPI = "CreateTrafficPolicyInstance";
|
|
1100
|
+
const _CTPIR = "CreateTrafficPolicyInstanceRequest";
|
|
1101
|
+
const _CTPIRr = "CreateTrafficPolicyInstanceResponse";
|
|
1102
|
+
const _CTPR = "CreateTrafficPolicyRequest";
|
|
1103
|
+
const _CTPRr = "CreateTrafficPolicyResponse";
|
|
1104
|
+
const _CTPV = "CreateTrafficPolicyVersion";
|
|
1105
|
+
const _CTPVR = "CreateTrafficPolicyVersionRequest";
|
|
1106
|
+
const _CTPVRr = "CreateTrafficPolicyVersionResponse";
|
|
1107
|
+
const _CTh = "CheckedTime";
|
|
1108
|
+
const _CV = "CollectionVersion";
|
|
1109
|
+
const _CVPCAA = "CreateVPCAssociationAuthorization";
|
|
1110
|
+
const _CVPCAAR = "CreateVPCAssociationAuthorizationRequest";
|
|
1111
|
+
const _CVPCAARr = "CreateVPCAssociationAuthorizationResponse";
|
|
1112
|
+
const _CWAC = "CloudWatchAlarmConfiguration";
|
|
1113
|
+
const _CWLLGA = "CloudWatchLogsLogGroupArn";
|
|
1114
|
+
const _Ch = "Change";
|
|
1115
|
+
const _Cha = "Changes";
|
|
1116
|
+
const _Ci = "Cidr";
|
|
1117
|
+
const _Co = "Coordinates";
|
|
1118
|
+
const _Col = "Collection";
|
|
1119
|
+
const _Con = "Config";
|
|
1120
|
+
const _Cou = "Count";
|
|
1121
|
+
const _D = "Dimensions";
|
|
1122
|
+
const _DAM = "DigestAlgorithmMnemonic";
|
|
1123
|
+
const _DAT = "DigestAlgorithmType";
|
|
1124
|
+
const _DCC = "DeleteCidrCollection";
|
|
1125
|
+
const _DCCR = "DeleteCidrCollectionRequest";
|
|
1126
|
+
const _DCCRe = "DeleteCidrCollectionResponse";
|
|
1127
|
+
const _DHC = "DeleteHealthCheck";
|
|
1128
|
+
const _DHCR = "DeleteHealthCheckRequest";
|
|
1129
|
+
const _DHCRe = "DeleteHealthCheckResponse";
|
|
1130
|
+
const _DHZ = "DeleteHostedZone";
|
|
1131
|
+
const _DHZDNSSEC = "DisableHostedZoneDNSSEC";
|
|
1132
|
+
const _DHZDNSSECR = "DisableHostedZoneDNSSECRequest";
|
|
1133
|
+
const _DHZDNSSECRi = "DisableHostedZoneDNSSECResponse";
|
|
1134
|
+
const _DHZR = "DeleteHostedZoneRequest";
|
|
1135
|
+
const _DHZRe = "DeleteHostedZoneResponse";
|
|
1136
|
+
const _DKSK = "DeactivateKeySigningKey";
|
|
1137
|
+
const _DKSKR = "DeactivateKeySigningKeyRequest";
|
|
1138
|
+
const _DKSKRe = "DeactivateKeySigningKeyResponse";
|
|
1139
|
+
const _DKSKRel = "DeleteKeySigningKeyRequest";
|
|
1140
|
+
const _DKSKRele = "DeleteKeySigningKeyResponse";
|
|
1141
|
+
const _DKSKe = "DeleteKeySigningKey";
|
|
1142
|
+
const _DL = "DimensionList";
|
|
1143
|
+
const _DNSKEYR = "DNSKEYRecord";
|
|
1144
|
+
const _DNSN = "DNSName";
|
|
1145
|
+
const _DNSSECNF = "DNSSECNotFound";
|
|
1146
|
+
const _DNSSECS = "DNSSECStatus";
|
|
1147
|
+
const _DQLC = "DeleteQueryLoggingConfig";
|
|
1148
|
+
const _DQLCR = "DeleteQueryLoggingConfigRequest";
|
|
1149
|
+
const _DQLCRe = "DeleteQueryLoggingConfigResponse";
|
|
1150
|
+
const _DRDS = "DeleteReusableDelegationSet";
|
|
1151
|
+
const _DRDSR = "DeleteReusableDelegationSetRequest";
|
|
1152
|
+
const _DRDSRe = "DeleteReusableDelegationSetResponse";
|
|
1153
|
+
const _DS = "DelegationSet";
|
|
1154
|
+
const _DSAC = "DelegationSetAlreadyCreated";
|
|
1155
|
+
const _DSAR = "DelegationSetAlreadyReusable";
|
|
1156
|
+
const _DSI = "DelegationSetId";
|
|
1157
|
+
const _DSIU = "DelegationSetInUse";
|
|
1158
|
+
const _DSNA = "DelegationSetNotAvailable";
|
|
1159
|
+
const _DSNR = "DelegationSetNotReusable";
|
|
1160
|
+
const _DSNS = "DelegationSetNameServers";
|
|
1161
|
+
const _DSR = "DSRecord";
|
|
1162
|
+
const _DSe = "DelegationSets";
|
|
1163
|
+
const _DTP = "DeleteTrafficPolicy";
|
|
1164
|
+
const _DTPI = "DeleteTrafficPolicyInstance";
|
|
1165
|
+
const _DTPIR = "DeleteTrafficPolicyInstanceRequest";
|
|
1166
|
+
const _DTPIRe = "DeleteTrafficPolicyInstanceResponse";
|
|
1167
|
+
const _DTPR = "DeleteTrafficPolicyRequest";
|
|
1168
|
+
const _DTPRe = "DeleteTrafficPolicyResponse";
|
|
1169
|
+
const _DV = "DigestValue";
|
|
1170
|
+
const _DVPCAA = "DeleteVPCAssociationAuthorization";
|
|
1171
|
+
const _DVPCAAR = "DeleteVPCAssociationAuthorizationRequest";
|
|
1172
|
+
const _DVPCAARe = "DeleteVPCAssociationAuthorizationResponse";
|
|
1173
|
+
const _DVPCFHZ = "DisassociateVPCFromHostedZone";
|
|
1174
|
+
const _DVPCFHZR = "DisassociateVPCFromHostedZoneRequest";
|
|
1175
|
+
const _DVPCFHZRi = "DisassociateVPCFromHostedZoneResponse";
|
|
1176
|
+
const _De = "Description";
|
|
1177
|
+
const _Di = "Dimension";
|
|
1178
|
+
const _Dis = "Disabled";
|
|
1179
|
+
const _Do = "Document";
|
|
1180
|
+
const _EAR = "EnableAcceleratedRecovery";
|
|
1181
|
+
const _EDNSCSIP = "EDNS0ClientSubnetIP";
|
|
1182
|
+
const _EDNSCSM = "EDNS0ClientSubnetMask";
|
|
1183
|
+
const _EHZDNSSEC = "EnableHostedZoneDNSSEC";
|
|
1184
|
+
const _EHZDNSSECR = "EnableHostedZoneDNSSECRequest";
|
|
1185
|
+
const _EHZDNSSECRn = "EnableHostedZoneDNSSECResponse";
|
|
1186
|
+
const _EM = "ErrorMessages";
|
|
1187
|
+
const _EP = "EvaluationPeriods";
|
|
1188
|
+
const _ESNI = "EnableSNI";
|
|
1189
|
+
const _ETH = "EvaluateTargetHealth";
|
|
1190
|
+
const _F = "Features";
|
|
1191
|
+
const _FQDN = "FullyQualifiedDomainName";
|
|
1192
|
+
const _FR = "FailureReasons";
|
|
1193
|
+
const _FT = "FailureThreshold";
|
|
1194
|
+
const _Fa = "Failover";
|
|
1195
|
+
const _Fl = "Flag";
|
|
1196
|
+
const _GAL = "GetAccountLimit";
|
|
1197
|
+
const _GALR = "GetAccountLimitRequest";
|
|
1198
|
+
const _GALRe = "GetAccountLimitResponse";
|
|
1199
|
+
const _GC = "GetChange";
|
|
1200
|
+
const _GCIR = "GetCheckerIpRanges";
|
|
1201
|
+
const _GCIRR = "GetCheckerIpRangesRequest";
|
|
1202
|
+
const _GCIRRe = "GetCheckerIpRangesResponse";
|
|
1203
|
+
const _GCR = "GetChangeRequest";
|
|
1204
|
+
const _GCRe = "GetChangeResponse";
|
|
1205
|
+
const _GDNSSEC = "GetDNSSEC";
|
|
1206
|
+
const _GDNSSECR = "GetDNSSECRequest";
|
|
1207
|
+
const _GDNSSECRe = "GetDNSSECResponse";
|
|
1208
|
+
const _GGL = "GetGeoLocation";
|
|
1209
|
+
const _GGLR = "GetGeoLocationRequest";
|
|
1210
|
+
const _GGLRe = "GetGeoLocationResponse";
|
|
1211
|
+
const _GHC = "GetHealthCheck";
|
|
1212
|
+
const _GHCC = "GetHealthCheckCount";
|
|
1213
|
+
const _GHCCR = "GetHealthCheckCountRequest";
|
|
1214
|
+
const _GHCCRe = "GetHealthCheckCountResponse";
|
|
1215
|
+
const _GHCLFR = "GetHealthCheckLastFailureReason";
|
|
1216
|
+
const _GHCLFRR = "GetHealthCheckLastFailureReasonRequest";
|
|
1217
|
+
const _GHCLFRRe = "GetHealthCheckLastFailureReasonResponse";
|
|
1218
|
+
const _GHCR = "GetHealthCheckRequest";
|
|
1219
|
+
const _GHCRe = "GetHealthCheckResponse";
|
|
1220
|
+
const _GHCS = "GetHealthCheckStatus";
|
|
1221
|
+
const _GHCSR = "GetHealthCheckStatusRequest";
|
|
1222
|
+
const _GHCSRe = "GetHealthCheckStatusResponse";
|
|
1223
|
+
const _GHZ = "GetHostedZone";
|
|
1224
|
+
const _GHZC = "GetHostedZoneCount";
|
|
1225
|
+
const _GHZCR = "GetHostedZoneCountRequest";
|
|
1226
|
+
const _GHZCRe = "GetHostedZoneCountResponse";
|
|
1227
|
+
const _GHZL = "GetHostedZoneLimit";
|
|
1228
|
+
const _GHZLR = "GetHostedZoneLimitRequest";
|
|
1229
|
+
const _GHZLRe = "GetHostedZoneLimitResponse";
|
|
1230
|
+
const _GHZR = "GetHostedZoneRequest";
|
|
1231
|
+
const _GHZRe = "GetHostedZoneResponse";
|
|
1232
|
+
const _GL = "GeoLocation";
|
|
1233
|
+
const _GLD = "GeoLocationDetails";
|
|
1234
|
+
const _GLDL = "GeoLocationDetailsList";
|
|
1235
|
+
const _GPL = "GeoProximityLocation";
|
|
1236
|
+
const _GQLC = "GetQueryLoggingConfig";
|
|
1237
|
+
const _GQLCR = "GetQueryLoggingConfigRequest";
|
|
1238
|
+
const _GQLCRe = "GetQueryLoggingConfigResponse";
|
|
1239
|
+
const _GRDS = "GetReusableDelegationSet";
|
|
1240
|
+
const _GRDSL = "GetReusableDelegationSetLimit";
|
|
1241
|
+
const _GRDSLR = "GetReusableDelegationSetLimitRequest";
|
|
1242
|
+
const _GRDSLRe = "GetReusableDelegationSetLimitResponse";
|
|
1243
|
+
const _GRDSR = "GetReusableDelegationSetRequest";
|
|
1244
|
+
const _GRDSRe = "GetReusableDelegationSetResponse";
|
|
1245
|
+
const _GTP = "GetTrafficPolicy";
|
|
1246
|
+
const _GTPI = "GetTrafficPolicyInstance";
|
|
1247
|
+
const _GTPIC = "GetTrafficPolicyInstanceCount";
|
|
1248
|
+
const _GTPICR = "GetTrafficPolicyInstanceCountRequest";
|
|
1249
|
+
const _GTPICRe = "GetTrafficPolicyInstanceCountResponse";
|
|
1250
|
+
const _GTPIR = "GetTrafficPolicyInstanceRequest";
|
|
1251
|
+
const _GTPIRe = "GetTrafficPolicyInstanceResponse";
|
|
1252
|
+
const _GTPR = "GetTrafficPolicyRequest";
|
|
1253
|
+
const _GTPRe = "GetTrafficPolicyResponse";
|
|
1254
|
+
const _HC = "HealthCheck";
|
|
1255
|
+
const _HCAE = "HealthCheckAlreadyExists";
|
|
1256
|
+
const _HCC = "HealthCheckConfig";
|
|
1257
|
+
const _HCCe = "HealthCheckCount";
|
|
1258
|
+
const _HCI = "HealthCheckId";
|
|
1259
|
+
const _HCIU = "HealthCheckInUse";
|
|
1260
|
+
const _HCO = "HealthCheckObservations";
|
|
1261
|
+
const _HCOe = "HealthCheckObservation";
|
|
1262
|
+
const _HCRL = "HealthCheckRegionList";
|
|
1263
|
+
const _HCV = "HealthCheckVersion";
|
|
1264
|
+
const _HCVM = "HealthCheckVersionMismatch";
|
|
1265
|
+
const _HCe = "HealthChecks";
|
|
1266
|
+
const _HT = "HealthThreshold";
|
|
1267
|
+
const _HZ = "HostedZone";
|
|
1268
|
+
const _HZAE = "HostedZoneAlreadyExists";
|
|
1269
|
+
const _HZC = "HostedZoneConfig";
|
|
1270
|
+
const _HZCo = "HostedZoneCount";
|
|
1271
|
+
const _HZF = "HostedZoneFeatures";
|
|
1272
|
+
const _HZFR = "HostedZoneFailureReasons";
|
|
1273
|
+
const _HZI = "HostedZoneId";
|
|
1274
|
+
const _HZIM = "HostedZoneIdMarker";
|
|
1275
|
+
const _HZL = "HostedZoneLimit";
|
|
1276
|
+
const _HZNE = "HostedZoneNotEmpty";
|
|
1277
|
+
const _HZNF = "HostedZoneNotFound";
|
|
1278
|
+
const _HZNP = "HostedZoneNotPrivate";
|
|
1279
|
+
const _HZO = "HostedZoneOwner";
|
|
1280
|
+
const _HZPD = "HostedZonePartiallyDelegated";
|
|
1281
|
+
const _HZS = "HostedZoneSummary";
|
|
1282
|
+
const _HZSo = "HostedZoneSummaries";
|
|
1283
|
+
const _HZT = "HostedZoneType";
|
|
1284
|
+
const _HZo = "HostedZones";
|
|
1285
|
+
const _I = "Id";
|
|
1286
|
+
const _IA = "InvalidArgument";
|
|
1287
|
+
const _ICB = "InvalidChangeBatch";
|
|
1288
|
+
const _ICWLRP = "InsufficientCloudWatchLogsResourcePolicy";
|
|
1289
|
+
const _IDHS = "InsufficientDataHealthStatus";
|
|
1290
|
+
const _IDN = "InvalidDomainName";
|
|
1291
|
+
const _II = "InvalidInput";
|
|
1292
|
+
const _IKMSA = "InvalidKMSArn";
|
|
1293
|
+
const _IKSKN = "InvalidKeySigningKeyName";
|
|
1294
|
+
const _IKSKS = "InvalidKeySigningKeyStatus";
|
|
1295
|
+
const _IPA = "IPAddress";
|
|
1296
|
+
const _IPT = "InvalidPaginationToken";
|
|
1297
|
+
const _ISS = "InvalidSigningStatus";
|
|
1298
|
+
const _IT = "IsTruncated";
|
|
1299
|
+
const _ITPD = "InvalidTrafficPolicyDocument";
|
|
1300
|
+
const _IV = "IncompatibleVersion";
|
|
1301
|
+
const _IVPCI = "InvalidVPCId";
|
|
1302
|
+
const _In = "Inverted";
|
|
1303
|
+
const _K = "Key";
|
|
1304
|
+
const _KA = "KmsArn";
|
|
1305
|
+
const _KMSA = "KeyManagementServiceArn";
|
|
1306
|
+
const _KSK = "KeySigningKey";
|
|
1307
|
+
const _KSKAE = "KeySigningKeyAlreadyExists";
|
|
1308
|
+
const _KSKIPDSR = "KeySigningKeyInParentDSRecord";
|
|
1309
|
+
const _KSKIU = "KeySigningKeyInUse";
|
|
1310
|
+
const _KSKWASNF = "KeySigningKeyWithActiveStatusNotFound";
|
|
1311
|
+
const _KSKe = "KeySigningKeys";
|
|
1312
|
+
const _KT = "KeyTag";
|
|
1313
|
+
const _L = "Latitude";
|
|
1314
|
+
const _LCB = "ListCidrBlocks";
|
|
1315
|
+
const _LCBR = "ListCidrBlocksRequest";
|
|
1316
|
+
const _LCBRi = "ListCidrBlocksResponse";
|
|
1317
|
+
const _LCC = "ListCidrCollections";
|
|
1318
|
+
const _LCCR = "ListCidrCollectionsRequest";
|
|
1319
|
+
const _LCCRi = "ListCidrCollectionsResponse";
|
|
1320
|
+
const _LCL = "ListCidrLocations";
|
|
1321
|
+
const _LCLR = "ListCidrLocationsRequest";
|
|
1322
|
+
const _LCLRi = "ListCidrLocationsResponse";
|
|
1323
|
+
const _LE = "LimitsExceeded";
|
|
1324
|
+
const _LGL = "ListGeoLocations";
|
|
1325
|
+
const _LGLR = "ListGeoLocationsRequest";
|
|
1326
|
+
const _LGLRi = "ListGeoLocationsResponse";
|
|
1327
|
+
const _LHC = "ListHealthChecks";
|
|
1328
|
+
const _LHCR = "ListHealthChecksRequest";
|
|
1329
|
+
const _LHCRi = "ListHealthChecksResponse";
|
|
1330
|
+
const _LHZ = "ListHostedZones";
|
|
1331
|
+
const _LHZBN = "ListHostedZonesByName";
|
|
1332
|
+
const _LHZBNR = "ListHostedZonesByNameRequest";
|
|
1333
|
+
const _LHZBNRi = "ListHostedZonesByNameResponse";
|
|
1334
|
+
const _LHZBVPC = "ListHostedZonesByVPC";
|
|
1335
|
+
const _LHZBVPCR = "ListHostedZonesByVPCRequest";
|
|
1336
|
+
const _LHZBVPCRi = "ListHostedZonesByVPCResponse";
|
|
1337
|
+
const _LHZR = "ListHostedZonesRequest";
|
|
1338
|
+
const _LHZRi = "ListHostedZonesResponse";
|
|
1339
|
+
const _LMD = "LastModifiedDate";
|
|
1340
|
+
const _LN = "LocationName";
|
|
1341
|
+
const _LQLC = "ListQueryLoggingConfigs";
|
|
1342
|
+
const _LQLCR = "ListQueryLoggingConfigsRequest";
|
|
1343
|
+
const _LQLCRi = "ListQueryLoggingConfigsResponse";
|
|
1344
|
+
const _LRDS = "ListReusableDelegationSets";
|
|
1345
|
+
const _LRDSR = "ListReusableDelegationSetsRequest";
|
|
1346
|
+
const _LRDSRi = "ListReusableDelegationSetsResponse";
|
|
1347
|
+
const _LRRS = "ListResourceRecordSets";
|
|
1348
|
+
const _LRRSR = "ListResourceRecordSetsRequest";
|
|
1349
|
+
const _LRRSRi = "ListResourceRecordSetsResponse";
|
|
1350
|
+
const _LS = "LinkedService";
|
|
1351
|
+
const _LSo = "LocationSummary";
|
|
1352
|
+
const _LSoc = "LocationSummaries";
|
|
1353
|
+
const _LTFR = "ListTagsForResource";
|
|
1354
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
1355
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
1356
|
+
const _LTFRRis = "ListTagsForResourcesRequest";
|
|
1357
|
+
const _LTFRRist = "ListTagsForResourcesResponse";
|
|
1358
|
+
const _LTFRi = "ListTagsForResources";
|
|
1359
|
+
const _LTP = "ListTrafficPolicies";
|
|
1360
|
+
const _LTPI = "ListTrafficPolicyInstances";
|
|
1361
|
+
const _LTPIBHZ = "ListTrafficPolicyInstancesByHostedZone";
|
|
1362
|
+
const _LTPIBHZR = "ListTrafficPolicyInstancesByHostedZoneRequest";
|
|
1363
|
+
const _LTPIBHZRi = "ListTrafficPolicyInstancesByHostedZoneResponse";
|
|
1364
|
+
const _LTPIBP = "ListTrafficPolicyInstancesByPolicy";
|
|
1365
|
+
const _LTPIBPR = "ListTrafficPolicyInstancesByPolicyRequest";
|
|
1366
|
+
const _LTPIBPRi = "ListTrafficPolicyInstancesByPolicyResponse";
|
|
1367
|
+
const _LTPIR = "ListTrafficPolicyInstancesRequest";
|
|
1368
|
+
const _LTPIRi = "ListTrafficPolicyInstancesResponse";
|
|
1369
|
+
const _LTPR = "ListTrafficPoliciesRequest";
|
|
1370
|
+
const _LTPRi = "ListTrafficPoliciesResponse";
|
|
1371
|
+
const _LTPV = "ListTrafficPolicyVersions";
|
|
1372
|
+
const _LTPVR = "ListTrafficPolicyVersionsRequest";
|
|
1373
|
+
const _LTPVRi = "ListTrafficPolicyVersionsResponse";
|
|
1374
|
+
const _LV = "LatestVersion";
|
|
1375
|
+
const _LVPCA = "LastVPCAssociation";
|
|
1376
|
+
const _LVPCAA = "ListVPCAssociationAuthorizations";
|
|
1377
|
+
const _LVPCAAR = "ListVPCAssociationAuthorizationsRequest";
|
|
1378
|
+
const _LVPCAARi = "ListVPCAssociationAuthorizationsResponse";
|
|
1379
|
+
const _LZG = "LocalZoneGroup";
|
|
1380
|
+
const _Li = "Limit";
|
|
1381
|
+
const _Lo = "Longitude";
|
|
1382
|
+
const _Loc = "Location";
|
|
1383
|
+
const _M = "Message";
|
|
1384
|
+
const _MI = "MaxItems";
|
|
1385
|
+
const _ML = "MeasureLatency";
|
|
1386
|
+
const _MN = "MetricName";
|
|
1387
|
+
const _MR = "MaxResults";
|
|
1388
|
+
const _MVA = "MultiValueAnswer";
|
|
1389
|
+
const _Ma = "Marker";
|
|
1390
|
+
const _N = "Name";
|
|
1391
|
+
const _NAE = "NotAuthorizedException";
|
|
1392
|
+
const _NCC = "NextContinentCode";
|
|
1393
|
+
const _NCCe = "NextCountryCode";
|
|
1394
|
+
const _NDNSN = "NextDNSName";
|
|
1395
|
+
const _NHZI = "NextHostedZoneId";
|
|
1396
|
+
const _NM = "NextMarker";
|
|
1397
|
+
const _NRI = "NextRecordIdentifier";
|
|
1398
|
+
const _NRN = "NextRecordName";
|
|
1399
|
+
const _NRT = "NextRecordType";
|
|
1400
|
+
const _NS = "NameServers";
|
|
1401
|
+
const _NSC = "NoSuchChange";
|
|
1402
|
+
const _NSCCE = "NoSuchCidrCollectionException";
|
|
1403
|
+
const _NSCLE = "NoSuchCidrLocationException";
|
|
1404
|
+
const _NSCWLLG = "NoSuchCloudWatchLogsLogGroup";
|
|
1405
|
+
const _NSCe = "NextSubdivisionCode";
|
|
1406
|
+
const _NSDS = "NoSuchDelegationSet";
|
|
1407
|
+
const _NSGL = "NoSuchGeoLocation";
|
|
1408
|
+
const _NSHC = "NoSuchHealthCheck";
|
|
1409
|
+
const _NSHZ = "NoSuchHostedZone";
|
|
1410
|
+
const _NSKSK = "NoSuchKeySigningKey";
|
|
1411
|
+
const _NSQLC = "NoSuchQueryLoggingConfig";
|
|
1412
|
+
const _NSTP = "NoSuchTrafficPolicy";
|
|
1413
|
+
const _NSTPI = "NoSuchTrafficPolicyInstance";
|
|
1414
|
+
const _NSa = "NameServer";
|
|
1415
|
+
const _NT = "NextToken";
|
|
1416
|
+
const _Na = "Namespace";
|
|
1417
|
+
const _Nam = "Nameserver";
|
|
1418
|
+
const _O = "Owner";
|
|
1419
|
+
const _OA = "OwningAccount";
|
|
1420
|
+
const _OS = "OwningService";
|
|
1421
|
+
const _P = "Period";
|
|
1422
|
+
const _PK = "PublicKey";
|
|
1423
|
+
const _PRNC = "PriorRequestNotComplete";
|
|
1424
|
+
const _PZ = "PrivateZone";
|
|
1425
|
+
const _PZVPCA = "PublicZoneVPCAssociation";
|
|
1426
|
+
const _Po = "Port";
|
|
1427
|
+
const _Pr = "Protocol";
|
|
1428
|
+
const _QLC = "QueryLoggingConfig";
|
|
1429
|
+
const _QLCAE = "QueryLoggingConfigAlreadyExists";
|
|
1430
|
+
const _QLCu = "QueryLoggingConfigs";
|
|
1431
|
+
const _R = "Region";
|
|
1432
|
+
const _RC = "ResponseCode";
|
|
1433
|
+
const _RCA = "RoutingControlArn";
|
|
1434
|
+
const _RD = "RecordData";
|
|
1435
|
+
const _RDE = "RecordDataEntry";
|
|
1436
|
+
const _RDSL = "ReusableDelegationSetLimit";
|
|
1437
|
+
const _RE = "ResetElements";
|
|
1438
|
+
const _REN = "ResettableElementName";
|
|
1439
|
+
const _RENL = "ResettableElementNameList";
|
|
1440
|
+
const _RI = "ResourceId";
|
|
1441
|
+
const _RIP = "ResolverIP";
|
|
1442
|
+
const _RIe = "RequestInterval";
|
|
1443
|
+
const _RIes = "ResourceIds";
|
|
1444
|
+
const _RN = "RecordName";
|
|
1445
|
+
const _RP = "ResourcePath";
|
|
1446
|
+
const _RR = "ResourceRecord";
|
|
1447
|
+
const _RRS = "ResourceRecordSet";
|
|
1448
|
+
const _RRSC = "ResourceRecordSetCount";
|
|
1449
|
+
const _RRSe = "ResourceRecordSets";
|
|
1450
|
+
const _RRe = "ResourceRecords";
|
|
1451
|
+
const _RT = "ResourceType";
|
|
1452
|
+
const _RTK = "RemoveTagKeys";
|
|
1453
|
+
const _RTS = "ResourceTagSet";
|
|
1454
|
+
const _RTSL = "ResourceTagSetList";
|
|
1455
|
+
const _RTSe = "ResourceTagSets";
|
|
1456
|
+
const _RTe = "RecordType";
|
|
1457
|
+
const _Re = "Regions";
|
|
1458
|
+
const _S = "Status";
|
|
1459
|
+
const _SA = "SubmittedAt";
|
|
1460
|
+
const _SAM = "SigningAlgorithmMnemonic";
|
|
1461
|
+
const _SAT = "SigningAlgorithmType";
|
|
1462
|
+
const _SC = "SubdivisionCode";
|
|
1463
|
+
const _SCC = "StartContinentCode";
|
|
1464
|
+
const _SCCt = "StartCountryCode";
|
|
1465
|
+
const _SI = "SetIdentifier";
|
|
1466
|
+
const _SM = "StatusMessage";
|
|
1467
|
+
const _SN = "SubdivisionName";
|
|
1468
|
+
const _SP = "ServicePrincipal";
|
|
1469
|
+
const _SR = "StatusReport";
|
|
1470
|
+
const _SRI = "StartRecordIdentifier";
|
|
1471
|
+
const _SRN = "StartRecordName";
|
|
1472
|
+
const _SRT = "StartRecordType";
|
|
1473
|
+
const _SS = "ServeSignature";
|
|
1474
|
+
const _SSC = "StartSubdivisionCode";
|
|
1475
|
+
const _SSe = "SearchString";
|
|
1476
|
+
const _St = "Statistic";
|
|
1477
|
+
const _Sta = "State";
|
|
1478
|
+
const _T = "Type";
|
|
1479
|
+
const _TDNSA = "TestDNSAnswer";
|
|
1480
|
+
const _TDNSAR = "TestDNSAnswerRequest";
|
|
1481
|
+
const _TDNSARe = "TestDNSAnswerResponse";
|
|
1482
|
+
const _TE = "ThrottlingException";
|
|
1483
|
+
const _TKL = "TagKeyList";
|
|
1484
|
+
const _TL = "TagList";
|
|
1485
|
+
const _TMHC = "TooManyHealthChecks";
|
|
1486
|
+
const _TMHZ = "TooManyHostedZones";
|
|
1487
|
+
const _TMKSK = "TooManyKeySigningKeys";
|
|
1488
|
+
const _TMTP = "TooManyTrafficPolicies";
|
|
1489
|
+
const _TMTPI = "TooManyTrafficPolicyInstances";
|
|
1490
|
+
const _TMTPVFCP = "TooManyTrafficPolicyVersionsForCurrentPolicy";
|
|
1491
|
+
const _TMVPCAA = "TooManyVPCAssociationAuthorizations";
|
|
1492
|
+
const _TP = "TrafficPolicy";
|
|
1493
|
+
const _TPAE = "TrafficPolicyAlreadyExists";
|
|
1494
|
+
const _TPC = "TrafficPolicyCount";
|
|
1495
|
+
const _TPI = "TrafficPolicyId";
|
|
1496
|
+
const _TPIAE = "TrafficPolicyInstanceAlreadyExists";
|
|
1497
|
+
const _TPIC = "TrafficPolicyInstanceCount";
|
|
1498
|
+
const _TPII = "TrafficPolicyInstanceId";
|
|
1499
|
+
const _TPIM = "TrafficPolicyIdMarker";
|
|
1500
|
+
const _TPINM = "TrafficPolicyInstanceNameMarker";
|
|
1501
|
+
const _TPITM = "TrafficPolicyInstanceTypeMarker";
|
|
1502
|
+
const _TPIU = "TrafficPolicyInUse";
|
|
1503
|
+
const _TPIr = "TrafficPolicyInstance";
|
|
1504
|
+
const _TPIra = "TrafficPolicyInstances";
|
|
1505
|
+
const _TPS = "TrafficPolicySummaries";
|
|
1506
|
+
const _TPSr = "TrafficPolicySummary";
|
|
1507
|
+
const _TPT = "TrafficPolicyType";
|
|
1508
|
+
const _TPV = "TrafficPolicyVersion";
|
|
1509
|
+
const _TPVM = "TrafficPolicyVersionMarker";
|
|
1510
|
+
const _TPr = "TrafficPolicies";
|
|
1511
|
+
const _TRIL = "TagResourceIdList";
|
|
1512
|
+
const _TTL = "TTL";
|
|
1513
|
+
const _Ta = "Tags";
|
|
1514
|
+
const _Tag = "Tag";
|
|
1515
|
+
const _Th = "Threshold";
|
|
1516
|
+
const _UHC = "UpdateHealthCheck";
|
|
1517
|
+
const _UHCR = "UpdateHealthCheckRequest";
|
|
1518
|
+
const _UHCRp = "UpdateHealthCheckResponse";
|
|
1519
|
+
const _UHZC = "UpdateHostedZoneComment";
|
|
1520
|
+
const _UHZCR = "UpdateHostedZoneCommentRequest";
|
|
1521
|
+
const _UHZCRp = "UpdateHostedZoneCommentResponse";
|
|
1522
|
+
const _UHZF = "UpdateHostedZoneFeatures";
|
|
1523
|
+
const _UHZFR = "UpdateHostedZoneFeaturesRequest";
|
|
1524
|
+
const _UHZFRp = "UpdateHostedZoneFeaturesResponse";
|
|
1525
|
+
const _UTPC = "UpdateTrafficPolicyComment";
|
|
1526
|
+
const _UTPCR = "UpdateTrafficPolicyCommentRequest";
|
|
1527
|
+
const _UTPCRp = "UpdateTrafficPolicyCommentResponse";
|
|
1528
|
+
const _UTPI = "UpdateTrafficPolicyInstance";
|
|
1529
|
+
const _UTPIR = "UpdateTrafficPolicyInstanceRequest";
|
|
1530
|
+
const _UTPIRp = "UpdateTrafficPolicyInstanceResponse";
|
|
1531
|
+
const _V = "Value";
|
|
1532
|
+
const _VPC = "VPC";
|
|
1533
|
+
const _VPCAANF = "VPCAssociationAuthorizationNotFound";
|
|
1534
|
+
const _VPCANF = "VPCAssociationNotFound";
|
|
1535
|
+
const _VPCI = "VPCId";
|
|
1536
|
+
const _VPCR = "VPCRegion";
|
|
1537
|
+
const _VPCs = "VPCs";
|
|
1538
|
+
const _Ve = "Version";
|
|
1539
|
+
const _W = "Weight";
|
|
1540
|
+
const _c = "client";
|
|
1541
|
+
const _co = "continentcode";
|
|
1542
|
+
const _cou = "countrycode";
|
|
1543
|
+
const _d = "dnsname";
|
|
1544
|
+
const _de = "delegationsetid";
|
|
1545
|
+
const _e = "error";
|
|
1546
|
+
const _ed = "edns0clientsubnetip";
|
|
1547
|
+
const _edn = "edns0clientsubnetmask";
|
|
1548
|
+
const _h = "hostedzoneid";
|
|
1549
|
+
const _hE = "httpError";
|
|
1550
|
+
const _hH = "httpHeader";
|
|
1551
|
+
const _hQ = "httpQuery";
|
|
1552
|
+
const _ho = "hostedzonetype";
|
|
1553
|
+
const _ht = "http";
|
|
1554
|
+
const _i = "identifier";
|
|
1555
|
+
const _id = "id";
|
|
1556
|
+
const _l = "location";
|
|
1557
|
+
const _m = "message";
|
|
1558
|
+
const _ma = "maxresults";
|
|
1559
|
+
const _mar = "marker";
|
|
1560
|
+
const _max = "maxitems";
|
|
1561
|
+
const _me = "messages";
|
|
1562
|
+
const _n = "nexttoken";
|
|
1563
|
+
const _na = "name";
|
|
1564
|
+
const _r = "recordname";
|
|
1565
|
+
const _re = "recordtype";
|
|
1566
|
+
const _res = "resolverip";
|
|
1567
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.route53";
|
|
1568
|
+
const _st = "startcontinentcode";
|
|
1569
|
+
const _sta = "startcountrycode";
|
|
1570
|
+
const _star = "startsubdivisioncode";
|
|
1571
|
+
const _su = "subdivisioncode";
|
|
1572
|
+
const _t = "type";
|
|
1573
|
+
const _tr = "trafficpolicyid";
|
|
1574
|
+
const _tra = "trafficpolicyinstancename";
|
|
1575
|
+
const _traf = "trafficpolicyinstancetype";
|
|
1576
|
+
const _traff = "trafficpolicyversion";
|
|
1577
|
+
const _v = "vpcid";
|
|
1578
|
+
const _ve = "version";
|
|
1579
|
+
const _vp = "vpcregion";
|
|
1580
|
+
const _xN = "xmlName";
|
|
1581
|
+
const n0 = "com.amazonaws.route53";
|
|
1582
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1583
|
+
var Route53ServiceException$ = [-3, _s, "Route53ServiceException", 0, [], []];
|
|
1584
|
+
_s_registry.registerError(Route53ServiceException$, Route53ServiceException);
|
|
1585
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1586
|
+
var CidrBlockInUseException$ = [-3, n0, _CBIUE,
|
|
1587
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1588
|
+
[_M],
|
|
1589
|
+
[0]
|
|
1590
|
+
];
|
|
1591
|
+
n0_registry.registerError(CidrBlockInUseException$, CidrBlockInUseException);
|
|
1592
|
+
var CidrCollectionAlreadyExistsException$ = [-3, n0, _CCAEE,
|
|
1593
|
+
{ [_e]: _c },
|
|
1594
|
+
[_M],
|
|
1595
|
+
[0]
|
|
1596
|
+
];
|
|
1597
|
+
n0_registry.registerError(CidrCollectionAlreadyExistsException$, CidrCollectionAlreadyExistsException);
|
|
1598
|
+
var CidrCollectionInUseException$ = [-3, n0, _CCIUE,
|
|
1599
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1600
|
+
[_M],
|
|
1601
|
+
[0]
|
|
1602
|
+
];
|
|
1603
|
+
n0_registry.registerError(CidrCollectionInUseException$, CidrCollectionInUseException);
|
|
1604
|
+
var CidrCollectionVersionMismatchException$ = [-3, n0, _CCVME,
|
|
1605
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1606
|
+
[_M],
|
|
1607
|
+
[0]
|
|
1608
|
+
];
|
|
1609
|
+
n0_registry.registerError(CidrCollectionVersionMismatchException$, CidrCollectionVersionMismatchException);
|
|
1610
|
+
var ConcurrentModification$ = [-3, n0, _CM,
|
|
1611
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1612
|
+
[_m],
|
|
1613
|
+
[0]
|
|
1614
|
+
];
|
|
1615
|
+
n0_registry.registerError(ConcurrentModification$, ConcurrentModification);
|
|
1616
|
+
var ConflictingDomainExists$ = [-3, n0, _CDE,
|
|
1617
|
+
{ [_e]: _c },
|
|
1618
|
+
[_m],
|
|
1619
|
+
[0]
|
|
1620
|
+
];
|
|
1621
|
+
n0_registry.registerError(ConflictingDomainExists$, ConflictingDomainExists);
|
|
1622
|
+
var ConflictingTypes$ = [-3, n0, _CT,
|
|
1623
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1624
|
+
[_m],
|
|
1625
|
+
[0]
|
|
1626
|
+
];
|
|
1627
|
+
n0_registry.registerError(ConflictingTypes$, ConflictingTypes);
|
|
1628
|
+
var DelegationSetAlreadyCreated$ = [-3, n0, _DSAC,
|
|
1629
|
+
{ [_e]: _c },
|
|
1630
|
+
[_m],
|
|
1631
|
+
[0]
|
|
1632
|
+
];
|
|
1633
|
+
n0_registry.registerError(DelegationSetAlreadyCreated$, DelegationSetAlreadyCreated);
|
|
1634
|
+
var DelegationSetAlreadyReusable$ = [-3, n0, _DSAR,
|
|
1635
|
+
{ [_e]: _c },
|
|
1636
|
+
[_m],
|
|
1637
|
+
[0]
|
|
1638
|
+
];
|
|
1639
|
+
n0_registry.registerError(DelegationSetAlreadyReusable$, DelegationSetAlreadyReusable);
|
|
1640
|
+
var DelegationSetInUse$ = [-3, n0, _DSIU,
|
|
1641
|
+
{ [_e]: _c },
|
|
1642
|
+
[_m],
|
|
1643
|
+
[0]
|
|
1644
|
+
];
|
|
1645
|
+
n0_registry.registerError(DelegationSetInUse$, DelegationSetInUse);
|
|
1646
|
+
var DelegationSetNotAvailable$ = [-3, n0, _DSNA,
|
|
1647
|
+
{ [_e]: _c },
|
|
1648
|
+
[_m],
|
|
1649
|
+
[0]
|
|
1650
|
+
];
|
|
1651
|
+
n0_registry.registerError(DelegationSetNotAvailable$, DelegationSetNotAvailable);
|
|
1652
|
+
var DelegationSetNotReusable$ = [-3, n0, _DSNR,
|
|
1653
|
+
{ [_e]: _c },
|
|
1654
|
+
[_m],
|
|
1655
|
+
[0]
|
|
1656
|
+
];
|
|
1657
|
+
n0_registry.registerError(DelegationSetNotReusable$, DelegationSetNotReusable);
|
|
1658
|
+
var DNSSECNotFound$ = [-3, n0, _DNSSECNF,
|
|
1659
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1660
|
+
[_m],
|
|
1661
|
+
[0]
|
|
1662
|
+
];
|
|
1663
|
+
n0_registry.registerError(DNSSECNotFound$, DNSSECNotFound);
|
|
1664
|
+
var HealthCheckAlreadyExists$ = [-3, n0, _HCAE,
|
|
1665
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1666
|
+
[_m],
|
|
1667
|
+
[0]
|
|
1668
|
+
];
|
|
1669
|
+
n0_registry.registerError(HealthCheckAlreadyExists$, HealthCheckAlreadyExists);
|
|
1670
|
+
var HealthCheckInUse$ = [-3, n0, _HCIU,
|
|
1671
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1672
|
+
[_m],
|
|
1673
|
+
[0]
|
|
1674
|
+
];
|
|
1675
|
+
n0_registry.registerError(HealthCheckInUse$, HealthCheckInUse);
|
|
1676
|
+
var HealthCheckVersionMismatch$ = [-3, n0, _HCVM,
|
|
1677
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1678
|
+
[_m],
|
|
1679
|
+
[0]
|
|
1680
|
+
];
|
|
1681
|
+
n0_registry.registerError(HealthCheckVersionMismatch$, HealthCheckVersionMismatch);
|
|
1682
|
+
var HostedZoneAlreadyExists$ = [-3, n0, _HZAE,
|
|
1683
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1684
|
+
[_m],
|
|
1685
|
+
[0]
|
|
1686
|
+
];
|
|
1687
|
+
n0_registry.registerError(HostedZoneAlreadyExists$, HostedZoneAlreadyExists);
|
|
1688
|
+
var HostedZoneNotEmpty$ = [-3, n0, _HZNE,
|
|
1689
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1690
|
+
[_m],
|
|
1691
|
+
[0]
|
|
1692
|
+
];
|
|
1693
|
+
n0_registry.registerError(HostedZoneNotEmpty$, HostedZoneNotEmpty);
|
|
1694
|
+
var HostedZoneNotFound$ = [-3, n0, _HZNF,
|
|
1695
|
+
{ [_e]: _c },
|
|
1696
|
+
[_m],
|
|
1697
|
+
[0]
|
|
1698
|
+
];
|
|
1699
|
+
n0_registry.registerError(HostedZoneNotFound$, HostedZoneNotFound);
|
|
1700
|
+
var HostedZoneNotPrivate$ = [-3, n0, _HZNP,
|
|
1701
|
+
{ [_e]: _c },
|
|
1702
|
+
[_m],
|
|
1703
|
+
[0]
|
|
1704
|
+
];
|
|
1705
|
+
n0_registry.registerError(HostedZoneNotPrivate$, HostedZoneNotPrivate);
|
|
1706
|
+
var HostedZonePartiallyDelegated$ = [-3, n0, _HZPD,
|
|
1707
|
+
{ [_e]: _c },
|
|
1708
|
+
[_m],
|
|
1709
|
+
[0]
|
|
1710
|
+
];
|
|
1711
|
+
n0_registry.registerError(HostedZonePartiallyDelegated$, HostedZonePartiallyDelegated);
|
|
1712
|
+
var IncompatibleVersion$ = [-3, n0, _IV,
|
|
1713
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1714
|
+
[_m],
|
|
1715
|
+
[0]
|
|
1716
|
+
];
|
|
1717
|
+
n0_registry.registerError(IncompatibleVersion$, IncompatibleVersion);
|
|
1718
|
+
var InsufficientCloudWatchLogsResourcePolicy$ = [-3, n0, _ICWLRP,
|
|
1719
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1720
|
+
[_m],
|
|
1721
|
+
[0]
|
|
1722
|
+
];
|
|
1723
|
+
n0_registry.registerError(InsufficientCloudWatchLogsResourcePolicy$, InsufficientCloudWatchLogsResourcePolicy);
|
|
1724
|
+
var InvalidArgument$ = [-3, n0, _IA,
|
|
1725
|
+
{ [_e]: _c },
|
|
1726
|
+
[_m],
|
|
1727
|
+
[0]
|
|
1728
|
+
];
|
|
1729
|
+
n0_registry.registerError(InvalidArgument$, InvalidArgument);
|
|
1730
|
+
var InvalidChangeBatch$ = [-3, n0, _ICB,
|
|
1731
|
+
{ [_e]: _c },
|
|
1732
|
+
[_me, _m],
|
|
1733
|
+
[[() => ErrorMessages, 0], 0]
|
|
1734
|
+
];
|
|
1735
|
+
n0_registry.registerError(InvalidChangeBatch$, InvalidChangeBatch);
|
|
1736
|
+
var InvalidDomainName$ = [-3, n0, _IDN,
|
|
1737
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1738
|
+
[_m],
|
|
1739
|
+
[0]
|
|
1740
|
+
];
|
|
1741
|
+
n0_registry.registerError(InvalidDomainName$, InvalidDomainName);
|
|
1742
|
+
var InvalidInput$ = [-3, n0, _II,
|
|
1743
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1744
|
+
[_m],
|
|
1745
|
+
[0]
|
|
1746
|
+
];
|
|
1747
|
+
n0_registry.registerError(InvalidInput$, InvalidInput);
|
|
1748
|
+
var InvalidKeySigningKeyName$ = [-3, n0, _IKSKN,
|
|
1749
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1750
|
+
[_m],
|
|
1751
|
+
[0]
|
|
1752
|
+
];
|
|
1753
|
+
n0_registry.registerError(InvalidKeySigningKeyName$, InvalidKeySigningKeyName);
|
|
1754
|
+
var InvalidKeySigningKeyStatus$ = [-3, n0, _IKSKS,
|
|
1755
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1756
|
+
[_m],
|
|
1757
|
+
[0]
|
|
1758
|
+
];
|
|
1759
|
+
n0_registry.registerError(InvalidKeySigningKeyStatus$, InvalidKeySigningKeyStatus);
|
|
1760
|
+
var InvalidKMSArn$ = [-3, n0, _IKMSA,
|
|
1761
|
+
{ [_e]: _c },
|
|
1762
|
+
[_m],
|
|
1763
|
+
[0]
|
|
1764
|
+
];
|
|
1765
|
+
n0_registry.registerError(InvalidKMSArn$, InvalidKMSArn);
|
|
1766
|
+
var InvalidPaginationToken$ = [-3, n0, _IPT,
|
|
1767
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1768
|
+
[_m],
|
|
1769
|
+
[0]
|
|
1770
|
+
];
|
|
1771
|
+
n0_registry.registerError(InvalidPaginationToken$, InvalidPaginationToken);
|
|
1772
|
+
var InvalidSigningStatus$ = [-3, n0, _ISS,
|
|
1773
|
+
{ [_e]: _c },
|
|
1774
|
+
[_m],
|
|
1775
|
+
[0]
|
|
1776
|
+
];
|
|
1777
|
+
n0_registry.registerError(InvalidSigningStatus$, InvalidSigningStatus);
|
|
1778
|
+
var InvalidTrafficPolicyDocument$ = [-3, n0, _ITPD,
|
|
1779
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1780
|
+
[_m],
|
|
1781
|
+
[0]
|
|
1782
|
+
];
|
|
1783
|
+
n0_registry.registerError(InvalidTrafficPolicyDocument$, InvalidTrafficPolicyDocument);
|
|
1784
|
+
var InvalidVPCId$ = [-3, n0, _IVPCI,
|
|
1785
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1786
|
+
[_m],
|
|
1787
|
+
[0]
|
|
1788
|
+
];
|
|
1789
|
+
n0_registry.registerError(InvalidVPCId$, InvalidVPCId);
|
|
1790
|
+
var KeySigningKeyAlreadyExists$ = [-3, n0, _KSKAE,
|
|
1791
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1792
|
+
[_m],
|
|
1793
|
+
[0]
|
|
1794
|
+
];
|
|
1795
|
+
n0_registry.registerError(KeySigningKeyAlreadyExists$, KeySigningKeyAlreadyExists);
|
|
1796
|
+
var KeySigningKeyInParentDSRecord$ = [-3, n0, _KSKIPDSR,
|
|
1797
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1798
|
+
[_m],
|
|
1799
|
+
[0]
|
|
1800
|
+
];
|
|
1801
|
+
n0_registry.registerError(KeySigningKeyInParentDSRecord$, KeySigningKeyInParentDSRecord);
|
|
1802
|
+
var KeySigningKeyInUse$ = [-3, n0, _KSKIU,
|
|
1803
|
+
{ [_e]: _c },
|
|
1804
|
+
[_m],
|
|
1805
|
+
[0]
|
|
1806
|
+
];
|
|
1807
|
+
n0_registry.registerError(KeySigningKeyInUse$, KeySigningKeyInUse);
|
|
1808
|
+
var KeySigningKeyWithActiveStatusNotFound$ = [-3, n0, _KSKWASNF,
|
|
1809
|
+
{ [_e]: _c },
|
|
1810
|
+
[_m],
|
|
1811
|
+
[0]
|
|
1812
|
+
];
|
|
1813
|
+
n0_registry.registerError(KeySigningKeyWithActiveStatusNotFound$, KeySigningKeyWithActiveStatusNotFound);
|
|
1814
|
+
var LastVPCAssociation$ = [-3, n0, _LVPCA,
|
|
1815
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1816
|
+
[_m],
|
|
1817
|
+
[0]
|
|
1818
|
+
];
|
|
1819
|
+
n0_registry.registerError(LastVPCAssociation$, LastVPCAssociation);
|
|
1820
|
+
var LimitsExceeded$ = [-3, n0, _LE,
|
|
1821
|
+
{ [_e]: _c },
|
|
1822
|
+
[_m],
|
|
1823
|
+
[0]
|
|
1824
|
+
];
|
|
1825
|
+
n0_registry.registerError(LimitsExceeded$, LimitsExceeded);
|
|
1826
|
+
var NoSuchChange$ = [-3, n0, _NSC,
|
|
1827
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1828
|
+
[_m],
|
|
1829
|
+
[0]
|
|
1830
|
+
];
|
|
1831
|
+
n0_registry.registerError(NoSuchChange$, NoSuchChange);
|
|
1832
|
+
var NoSuchCidrCollectionException$ = [-3, n0, _NSCCE,
|
|
1833
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1834
|
+
[_M],
|
|
1835
|
+
[0]
|
|
1836
|
+
];
|
|
1837
|
+
n0_registry.registerError(NoSuchCidrCollectionException$, NoSuchCidrCollectionException);
|
|
1838
|
+
var NoSuchCidrLocationException$ = [-3, n0, _NSCLE,
|
|
1839
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1840
|
+
[_M],
|
|
1841
|
+
[0]
|
|
1842
|
+
];
|
|
1843
|
+
n0_registry.registerError(NoSuchCidrLocationException$, NoSuchCidrLocationException);
|
|
1844
|
+
var NoSuchCloudWatchLogsLogGroup$ = [-3, n0, _NSCWLLG,
|
|
1845
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1846
|
+
[_m],
|
|
1847
|
+
[0]
|
|
1848
|
+
];
|
|
1849
|
+
n0_registry.registerError(NoSuchCloudWatchLogsLogGroup$, NoSuchCloudWatchLogsLogGroup);
|
|
1850
|
+
var NoSuchDelegationSet$ = [-3, n0, _NSDS,
|
|
1851
|
+
{ [_e]: _c },
|
|
1852
|
+
[_m],
|
|
1853
|
+
[0]
|
|
1854
|
+
];
|
|
1855
|
+
n0_registry.registerError(NoSuchDelegationSet$, NoSuchDelegationSet);
|
|
1856
|
+
var NoSuchGeoLocation$ = [-3, n0, _NSGL,
|
|
1857
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1858
|
+
[_m],
|
|
1859
|
+
[0]
|
|
1860
|
+
];
|
|
1861
|
+
n0_registry.registerError(NoSuchGeoLocation$, NoSuchGeoLocation);
|
|
1862
|
+
var NoSuchHealthCheck$ = [-3, n0, _NSHC,
|
|
1863
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1864
|
+
[_m],
|
|
1865
|
+
[0]
|
|
1866
|
+
];
|
|
1867
|
+
n0_registry.registerError(NoSuchHealthCheck$, NoSuchHealthCheck);
|
|
1868
|
+
var NoSuchHostedZone$ = [-3, n0, _NSHZ,
|
|
1869
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1870
|
+
[_m],
|
|
1871
|
+
[0]
|
|
1872
|
+
];
|
|
1873
|
+
n0_registry.registerError(NoSuchHostedZone$, NoSuchHostedZone);
|
|
1874
|
+
var NoSuchKeySigningKey$ = [-3, n0, _NSKSK,
|
|
1875
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1876
|
+
[_m],
|
|
1877
|
+
[0]
|
|
1878
|
+
];
|
|
1879
|
+
n0_registry.registerError(NoSuchKeySigningKey$, NoSuchKeySigningKey);
|
|
1880
|
+
var NoSuchQueryLoggingConfig$ = [-3, n0, _NSQLC,
|
|
1881
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1882
|
+
[_m],
|
|
1883
|
+
[0]
|
|
1884
|
+
];
|
|
1885
|
+
n0_registry.registerError(NoSuchQueryLoggingConfig$, NoSuchQueryLoggingConfig);
|
|
1886
|
+
var NoSuchTrafficPolicy$ = [-3, n0, _NSTP,
|
|
1887
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1888
|
+
[_m],
|
|
1889
|
+
[0]
|
|
1890
|
+
];
|
|
1891
|
+
n0_registry.registerError(NoSuchTrafficPolicy$, NoSuchTrafficPolicy);
|
|
1892
|
+
var NoSuchTrafficPolicyInstance$ = [-3, n0, _NSTPI,
|
|
1893
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1894
|
+
[_m],
|
|
1895
|
+
[0]
|
|
1896
|
+
];
|
|
1897
|
+
n0_registry.registerError(NoSuchTrafficPolicyInstance$, NoSuchTrafficPolicyInstance);
|
|
1898
|
+
var NotAuthorizedException$ = [-3, n0, _NAE,
|
|
1899
|
+
{ [_e]: _c, [_hE]: 401 },
|
|
1900
|
+
[_m],
|
|
1901
|
+
[0]
|
|
1902
|
+
];
|
|
1903
|
+
n0_registry.registerError(NotAuthorizedException$, NotAuthorizedException);
|
|
1904
|
+
var PriorRequestNotComplete$ = [-3, n0, _PRNC,
|
|
1905
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1906
|
+
[_m],
|
|
1907
|
+
[0]
|
|
1908
|
+
];
|
|
1909
|
+
n0_registry.registerError(PriorRequestNotComplete$, PriorRequestNotComplete);
|
|
1910
|
+
var PublicZoneVPCAssociation$ = [-3, n0, _PZVPCA,
|
|
1911
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1912
|
+
[_m],
|
|
1913
|
+
[0]
|
|
1914
|
+
];
|
|
1915
|
+
n0_registry.registerError(PublicZoneVPCAssociation$, PublicZoneVPCAssociation);
|
|
1916
|
+
var QueryLoggingConfigAlreadyExists$ = [-3, n0, _QLCAE,
|
|
1917
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1918
|
+
[_m],
|
|
1919
|
+
[0]
|
|
1920
|
+
];
|
|
1921
|
+
n0_registry.registerError(QueryLoggingConfigAlreadyExists$, QueryLoggingConfigAlreadyExists);
|
|
1922
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
1923
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1924
|
+
[_m],
|
|
1925
|
+
[0]
|
|
1926
|
+
];
|
|
1927
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
1928
|
+
var TooManyHealthChecks$ = [-3, n0, _TMHC,
|
|
1929
|
+
{ [_e]: _c },
|
|
1930
|
+
[_m],
|
|
1931
|
+
[0]
|
|
1932
|
+
];
|
|
1933
|
+
n0_registry.registerError(TooManyHealthChecks$, TooManyHealthChecks);
|
|
1934
|
+
var TooManyHostedZones$ = [-3, n0, _TMHZ,
|
|
1935
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1936
|
+
[_m],
|
|
1937
|
+
[0]
|
|
1938
|
+
];
|
|
1939
|
+
n0_registry.registerError(TooManyHostedZones$, TooManyHostedZones);
|
|
1940
|
+
var TooManyKeySigningKeys$ = [-3, n0, _TMKSK,
|
|
1941
|
+
{ [_e]: _c },
|
|
1942
|
+
[_m],
|
|
1943
|
+
[0]
|
|
1944
|
+
];
|
|
1945
|
+
n0_registry.registerError(TooManyKeySigningKeys$, TooManyKeySigningKeys);
|
|
1946
|
+
var TooManyTrafficPolicies$ = [-3, n0, _TMTP,
|
|
1947
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1948
|
+
[_m],
|
|
1949
|
+
[0]
|
|
1950
|
+
];
|
|
1951
|
+
n0_registry.registerError(TooManyTrafficPolicies$, TooManyTrafficPolicies);
|
|
1952
|
+
var TooManyTrafficPolicyInstances$ = [-3, n0, _TMTPI,
|
|
1953
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1954
|
+
[_m],
|
|
1955
|
+
[0]
|
|
1956
|
+
];
|
|
1957
|
+
n0_registry.registerError(TooManyTrafficPolicyInstances$, TooManyTrafficPolicyInstances);
|
|
1958
|
+
var TooManyTrafficPolicyVersionsForCurrentPolicy$ = [-3, n0, _TMTPVFCP,
|
|
1959
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1960
|
+
[_m],
|
|
1961
|
+
[0]
|
|
1962
|
+
];
|
|
1963
|
+
n0_registry.registerError(TooManyTrafficPolicyVersionsForCurrentPolicy$, TooManyTrafficPolicyVersionsForCurrentPolicy);
|
|
1964
|
+
var TooManyVPCAssociationAuthorizations$ = [-3, n0, _TMVPCAA,
|
|
1965
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1966
|
+
[_m],
|
|
1967
|
+
[0]
|
|
1968
|
+
];
|
|
1969
|
+
n0_registry.registerError(TooManyVPCAssociationAuthorizations$, TooManyVPCAssociationAuthorizations);
|
|
1970
|
+
var TrafficPolicyAlreadyExists$ = [-3, n0, _TPAE,
|
|
1971
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1972
|
+
[_m],
|
|
1973
|
+
[0]
|
|
1974
|
+
];
|
|
1975
|
+
n0_registry.registerError(TrafficPolicyAlreadyExists$, TrafficPolicyAlreadyExists);
|
|
1976
|
+
var TrafficPolicyInstanceAlreadyExists$ = [-3, n0, _TPIAE,
|
|
1977
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
1978
|
+
[_m],
|
|
1979
|
+
[0]
|
|
1980
|
+
];
|
|
1981
|
+
n0_registry.registerError(TrafficPolicyInstanceAlreadyExists$, TrafficPolicyInstanceAlreadyExists);
|
|
1982
|
+
var TrafficPolicyInUse$ = [-3, n0, _TPIU,
|
|
1983
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1984
|
+
[_m],
|
|
1985
|
+
[0]
|
|
1986
|
+
];
|
|
1987
|
+
n0_registry.registerError(TrafficPolicyInUse$, TrafficPolicyInUse);
|
|
1988
|
+
var VPCAssociationAuthorizationNotFound$ = [-3, n0, _VPCAANF,
|
|
1989
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1990
|
+
[_m],
|
|
1991
|
+
[0]
|
|
1992
|
+
];
|
|
1993
|
+
n0_registry.registerError(VPCAssociationAuthorizationNotFound$, VPCAssociationAuthorizationNotFound);
|
|
1994
|
+
var VPCAssociationNotFound$ = [-3, n0, _VPCANF,
|
|
1995
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
1996
|
+
[_m],
|
|
1997
|
+
[0]
|
|
1998
|
+
];
|
|
1999
|
+
n0_registry.registerError(VPCAssociationNotFound$, VPCAssociationNotFound);
|
|
2000
|
+
const errorTypeRegistries = [
|
|
2001
|
+
_s_registry,
|
|
2002
|
+
n0_registry,
|
|
2003
|
+
];
|
|
2004
|
+
var AccountLimit$ = [3, n0, _AL,
|
|
2005
|
+
0,
|
|
2006
|
+
[_T, _V],
|
|
2007
|
+
[0, 1], 2
|
|
2008
|
+
];
|
|
2009
|
+
var ActivateKeySigningKeyRequest$ = [3, n0, _AKSKR,
|
|
2010
|
+
0,
|
|
2011
|
+
[_HZI, _N],
|
|
2012
|
+
[[0, 1], [0, 1]], 2
|
|
2013
|
+
];
|
|
2014
|
+
var ActivateKeySigningKeyResponse$ = [3, n0, _AKSKRc,
|
|
2015
|
+
0,
|
|
2016
|
+
[_CI],
|
|
2017
|
+
[() => ChangeInfo$], 1
|
|
2018
|
+
];
|
|
2019
|
+
var AlarmIdentifier$ = [3, n0, _AI,
|
|
2020
|
+
0,
|
|
2021
|
+
[_R, _N],
|
|
2022
|
+
[0, 0], 2
|
|
2023
|
+
];
|
|
2024
|
+
var AliasTarget$ = [3, n0, _AT,
|
|
2025
|
+
0,
|
|
2026
|
+
[_HZI, _DNSN, _ETH],
|
|
2027
|
+
[0, 0, 2], 3
|
|
2028
|
+
];
|
|
2029
|
+
var AssociateVPCWithHostedZoneRequest$ = [3, n0, _AVPCWHZR,
|
|
2030
|
+
0,
|
|
2031
|
+
[_HZI, _VPC, _C],
|
|
2032
|
+
[[0, 1], () => VPC$, 0], 2
|
|
2033
|
+
];
|
|
2034
|
+
var AssociateVPCWithHostedZoneResponse$ = [3, n0, _AVPCWHZRs,
|
|
2035
|
+
0,
|
|
2036
|
+
[_CI],
|
|
2037
|
+
[() => ChangeInfo$], 1
|
|
2038
|
+
];
|
|
2039
|
+
var Change$ = [3, n0, _Ch,
|
|
2040
|
+
0,
|
|
2041
|
+
[_A, _RRS],
|
|
2042
|
+
[0, [() => ResourceRecordSet$, 0]], 2
|
|
2043
|
+
];
|
|
2044
|
+
var ChangeBatch$ = [3, n0, _CB,
|
|
2045
|
+
0,
|
|
2046
|
+
[_Cha, _C],
|
|
2047
|
+
[[() => Changes, 0], 0], 1
|
|
2048
|
+
];
|
|
2049
|
+
var ChangeCidrCollectionRequest$ = [3, n0, _CCCR,
|
|
2050
|
+
0,
|
|
2051
|
+
[_I, _Cha, _CV],
|
|
2052
|
+
[[0, 1], [() => CidrCollectionChanges, 0], 1], 2
|
|
2053
|
+
];
|
|
2054
|
+
var ChangeCidrCollectionResponse$ = [3, n0, _CCCRh,
|
|
2055
|
+
0,
|
|
2056
|
+
[_I],
|
|
2057
|
+
[0], 1
|
|
2058
|
+
];
|
|
2059
|
+
var ChangeInfo$ = [3, n0, _CI,
|
|
2060
|
+
0,
|
|
2061
|
+
[_I, _S, _SA, _C],
|
|
2062
|
+
[0, 0, 4, 0], 3
|
|
2063
|
+
];
|
|
2064
|
+
var ChangeResourceRecordSetsRequest$ = [3, n0, _CRRSR,
|
|
2065
|
+
0,
|
|
2066
|
+
[_HZI, _CB],
|
|
2067
|
+
[[0, 1], [() => ChangeBatch$, 0]], 2
|
|
2068
|
+
];
|
|
2069
|
+
var ChangeResourceRecordSetsResponse$ = [3, n0, _CRRSRh,
|
|
2070
|
+
0,
|
|
2071
|
+
[_CI],
|
|
2072
|
+
[() => ChangeInfo$], 1
|
|
2073
|
+
];
|
|
2074
|
+
var ChangeTagsForResourceRequest$ = [3, n0, _CTFRR,
|
|
2075
|
+
0,
|
|
2076
|
+
[_RT, _RI, _ATd, _RTK],
|
|
2077
|
+
[[0, 1], [0, 1], [() => TagList, 0], [() => TagKeyList, 0]], 2
|
|
2078
|
+
];
|
|
2079
|
+
var ChangeTagsForResourceResponse$ = [3, n0, _CTFRRh,
|
|
2080
|
+
0,
|
|
2081
|
+
[],
|
|
2082
|
+
[]
|
|
2083
|
+
];
|
|
2084
|
+
var CidrBlockSummary$ = [3, n0, _CBS,
|
|
2085
|
+
0,
|
|
2086
|
+
[_CBi, _LN],
|
|
2087
|
+
[0, 0]
|
|
2088
|
+
];
|
|
2089
|
+
var CidrCollection$ = [3, n0, _CC,
|
|
2090
|
+
0,
|
|
2091
|
+
[_Ar, _I, _N, _Ve],
|
|
2092
|
+
[0, 0, 0, 1]
|
|
2093
|
+
];
|
|
2094
|
+
var CidrCollectionChange$ = [3, n0, _CCC,
|
|
2095
|
+
0,
|
|
2096
|
+
[_LN, _A, _CL],
|
|
2097
|
+
[0, 0, [() => CidrList, 0]], 3
|
|
2098
|
+
];
|
|
2099
|
+
var CidrRoutingConfig$ = [3, n0, _CRC,
|
|
2100
|
+
0,
|
|
2101
|
+
[_CIo, _LN],
|
|
2102
|
+
[0, 0], 2
|
|
2103
|
+
];
|
|
2104
|
+
var CloudWatchAlarmConfiguration$ = [3, n0, _CWAC,
|
|
2105
|
+
0,
|
|
2106
|
+
[_EP, _Th, _CO, _P, _MN, _Na, _St, _D],
|
|
2107
|
+
[1, 1, 0, 1, 0, 0, 0, [() => DimensionList, 0]], 7
|
|
2108
|
+
];
|
|
2109
|
+
var CollectionSummary$ = [3, n0, _CS,
|
|
2110
|
+
0,
|
|
2111
|
+
[_Ar, _I, _N, _Ve],
|
|
2112
|
+
[0, 0, 0, 1]
|
|
2113
|
+
];
|
|
2114
|
+
var Coordinates$ = [3, n0, _Co,
|
|
2115
|
+
0,
|
|
2116
|
+
[_L, _Lo],
|
|
2117
|
+
[0, 0], 2
|
|
2118
|
+
];
|
|
2119
|
+
var CreateCidrCollectionRequest$ = [3, n0, _CCCRr,
|
|
2120
|
+
0,
|
|
2121
|
+
[_N, _CR],
|
|
2122
|
+
[0, 0], 2
|
|
2123
|
+
];
|
|
2124
|
+
var CreateCidrCollectionResponse$ = [3, n0, _CCCRre,
|
|
2125
|
+
0,
|
|
2126
|
+
[_Col, _Loc],
|
|
2127
|
+
[() => CidrCollection$, [0, { [_hH]: _Loc }]]
|
|
2128
|
+
];
|
|
2129
|
+
var CreateHealthCheckRequest$ = [3, n0, _CHCR,
|
|
2130
|
+
0,
|
|
2131
|
+
[_CR, _HCC],
|
|
2132
|
+
[0, [() => HealthCheckConfig$, 0]], 2
|
|
2133
|
+
];
|
|
2134
|
+
var CreateHealthCheckResponse$ = [3, n0, _CHCRr,
|
|
2135
|
+
0,
|
|
2136
|
+
[_HC, _Loc],
|
|
2137
|
+
[[() => HealthCheck$, 0], [0, { [_hH]: _Loc }]], 2
|
|
2138
|
+
];
|
|
2139
|
+
var CreateHostedZoneRequest$ = [3, n0, _CHZR,
|
|
2140
|
+
0,
|
|
2141
|
+
[_N, _CR, _VPC, _HZC, _DSI],
|
|
2142
|
+
[0, 0, () => VPC$, () => HostedZoneConfig$, 0], 2
|
|
2143
|
+
];
|
|
2144
|
+
var CreateHostedZoneResponse$ = [3, n0, _CHZRr,
|
|
2145
|
+
0,
|
|
2146
|
+
[_HZ, _CI, _DS, _Loc, _VPC],
|
|
2147
|
+
[() => HostedZone$, () => ChangeInfo$, [() => DelegationSet$, 0], [0, { [_hH]: _Loc }], () => VPC$], 4
|
|
2148
|
+
];
|
|
2149
|
+
var CreateKeySigningKeyRequest$ = [3, n0, _CKSKR,
|
|
2150
|
+
0,
|
|
2151
|
+
[_CR, _HZI, _KMSA, _N, _S],
|
|
2152
|
+
[0, 0, 0, 0, 0], 5
|
|
2153
|
+
];
|
|
2154
|
+
var CreateKeySigningKeyResponse$ = [3, n0, _CKSKRr,
|
|
2155
|
+
0,
|
|
2156
|
+
[_CI, _KSK, _Loc],
|
|
2157
|
+
[() => ChangeInfo$, () => KeySigningKey$, [0, { [_hH]: _Loc }]], 3
|
|
2158
|
+
];
|
|
2159
|
+
var CreateQueryLoggingConfigRequest$ = [3, n0, _CQLCR,
|
|
2160
|
+
0,
|
|
2161
|
+
[_HZI, _CWLLGA],
|
|
2162
|
+
[0, 0], 2
|
|
2163
|
+
];
|
|
2164
|
+
var CreateQueryLoggingConfigResponse$ = [3, n0, _CQLCRr,
|
|
2165
|
+
0,
|
|
2166
|
+
[_QLC, _Loc],
|
|
2167
|
+
[() => QueryLoggingConfig$, [0, { [_hH]: _Loc }]], 2
|
|
2168
|
+
];
|
|
2169
|
+
var CreateReusableDelegationSetRequest$ = [3, n0, _CRDSR,
|
|
2170
|
+
0,
|
|
2171
|
+
[_CR, _HZI],
|
|
2172
|
+
[0, 0], 1
|
|
2173
|
+
];
|
|
2174
|
+
var CreateReusableDelegationSetResponse$ = [3, n0, _CRDSRr,
|
|
2175
|
+
0,
|
|
2176
|
+
[_DS, _Loc],
|
|
2177
|
+
[[() => DelegationSet$, 0], [0, { [_hH]: _Loc }]], 2
|
|
2178
|
+
];
|
|
2179
|
+
var CreateTrafficPolicyInstanceRequest$ = [3, n0, _CTPIR,
|
|
2180
|
+
0,
|
|
2181
|
+
[_HZI, _N, _TTL, _TPI, _TPV],
|
|
2182
|
+
[0, 0, 1, 0, 1], 5
|
|
2183
|
+
];
|
|
2184
|
+
var CreateTrafficPolicyInstanceResponse$ = [3, n0, _CTPIRr,
|
|
2185
|
+
0,
|
|
2186
|
+
[_TPIr, _Loc],
|
|
2187
|
+
[() => TrafficPolicyInstance$, [0, { [_hH]: _Loc }]], 2
|
|
2188
|
+
];
|
|
2189
|
+
var CreateTrafficPolicyRequest$ = [3, n0, _CTPR,
|
|
2190
|
+
0,
|
|
2191
|
+
[_N, _Do, _C],
|
|
2192
|
+
[0, 0, 0], 2
|
|
2193
|
+
];
|
|
2194
|
+
var CreateTrafficPolicyResponse$ = [3, n0, _CTPRr,
|
|
2195
|
+
0,
|
|
2196
|
+
[_TP, _Loc],
|
|
2197
|
+
[() => TrafficPolicy$, [0, { [_hH]: _Loc }]], 2
|
|
2198
|
+
];
|
|
2199
|
+
var CreateTrafficPolicyVersionRequest$ = [3, n0, _CTPVR,
|
|
2200
|
+
0,
|
|
2201
|
+
[_I, _Do, _C],
|
|
2202
|
+
[[0, 1], 0, 0], 2
|
|
2203
|
+
];
|
|
2204
|
+
var CreateTrafficPolicyVersionResponse$ = [3, n0, _CTPVRr,
|
|
2205
|
+
0,
|
|
2206
|
+
[_TP, _Loc],
|
|
2207
|
+
[() => TrafficPolicy$, [0, { [_hH]: _Loc }]], 2
|
|
2208
|
+
];
|
|
2209
|
+
var CreateVPCAssociationAuthorizationRequest$ = [3, n0, _CVPCAAR,
|
|
2210
|
+
0,
|
|
2211
|
+
[_HZI, _VPC],
|
|
2212
|
+
[[0, 1], () => VPC$], 2
|
|
2213
|
+
];
|
|
2214
|
+
var CreateVPCAssociationAuthorizationResponse$ = [3, n0, _CVPCAARr,
|
|
2215
|
+
0,
|
|
2216
|
+
[_HZI, _VPC],
|
|
2217
|
+
[0, () => VPC$], 2
|
|
2218
|
+
];
|
|
2219
|
+
var DeactivateKeySigningKeyRequest$ = [3, n0, _DKSKR,
|
|
2220
|
+
0,
|
|
2221
|
+
[_HZI, _N],
|
|
2222
|
+
[[0, 1], [0, 1]], 2
|
|
2223
|
+
];
|
|
2224
|
+
var DeactivateKeySigningKeyResponse$ = [3, n0, _DKSKRe,
|
|
2225
|
+
0,
|
|
2226
|
+
[_CI],
|
|
2227
|
+
[() => ChangeInfo$], 1
|
|
2228
|
+
];
|
|
2229
|
+
var DelegationSet$ = [3, n0, _DS,
|
|
2230
|
+
0,
|
|
2231
|
+
[_NS, _I, _CR],
|
|
2232
|
+
[[() => DelegationSetNameServers, 0], 0, 0], 1
|
|
2233
|
+
];
|
|
2234
|
+
var DeleteCidrCollectionRequest$ = [3, n0, _DCCR,
|
|
2235
|
+
0,
|
|
2236
|
+
[_I],
|
|
2237
|
+
[[0, 1]], 1
|
|
2238
|
+
];
|
|
2239
|
+
var DeleteCidrCollectionResponse$ = [3, n0, _DCCRe,
|
|
2240
|
+
0,
|
|
2241
|
+
[],
|
|
2242
|
+
[]
|
|
2243
|
+
];
|
|
2244
|
+
var DeleteHealthCheckRequest$ = [3, n0, _DHCR,
|
|
2245
|
+
0,
|
|
2246
|
+
[_HCI],
|
|
2247
|
+
[[0, 1]], 1
|
|
2248
|
+
];
|
|
2249
|
+
var DeleteHealthCheckResponse$ = [3, n0, _DHCRe,
|
|
2250
|
+
0,
|
|
2251
|
+
[],
|
|
2252
|
+
[]
|
|
2253
|
+
];
|
|
2254
|
+
var DeleteHostedZoneRequest$ = [3, n0, _DHZR,
|
|
2255
|
+
0,
|
|
2256
|
+
[_I],
|
|
2257
|
+
[[0, 1]], 1
|
|
2258
|
+
];
|
|
2259
|
+
var DeleteHostedZoneResponse$ = [3, n0, _DHZRe,
|
|
2260
|
+
0,
|
|
2261
|
+
[_CI],
|
|
2262
|
+
[() => ChangeInfo$], 1
|
|
2263
|
+
];
|
|
2264
|
+
var DeleteKeySigningKeyRequest$ = [3, n0, _DKSKRel,
|
|
2265
|
+
0,
|
|
2266
|
+
[_HZI, _N],
|
|
2267
|
+
[[0, 1], [0, 1]], 2
|
|
2268
|
+
];
|
|
2269
|
+
var DeleteKeySigningKeyResponse$ = [3, n0, _DKSKRele,
|
|
2270
|
+
0,
|
|
2271
|
+
[_CI],
|
|
2272
|
+
[() => ChangeInfo$], 1
|
|
2273
|
+
];
|
|
2274
|
+
var DeleteQueryLoggingConfigRequest$ = [3, n0, _DQLCR,
|
|
2275
|
+
0,
|
|
2276
|
+
[_I],
|
|
2277
|
+
[[0, 1]], 1
|
|
2278
|
+
];
|
|
2279
|
+
var DeleteQueryLoggingConfigResponse$ = [3, n0, _DQLCRe,
|
|
2280
|
+
0,
|
|
2281
|
+
[],
|
|
2282
|
+
[]
|
|
2283
|
+
];
|
|
2284
|
+
var DeleteReusableDelegationSetRequest$ = [3, n0, _DRDSR,
|
|
2285
|
+
0,
|
|
2286
|
+
[_I],
|
|
2287
|
+
[[0, 1]], 1
|
|
2288
|
+
];
|
|
2289
|
+
var DeleteReusableDelegationSetResponse$ = [3, n0, _DRDSRe,
|
|
2290
|
+
0,
|
|
2291
|
+
[],
|
|
2292
|
+
[]
|
|
2293
|
+
];
|
|
2294
|
+
var DeleteTrafficPolicyInstanceRequest$ = [3, n0, _DTPIR,
|
|
2295
|
+
0,
|
|
2296
|
+
[_I],
|
|
2297
|
+
[[0, 1]], 1
|
|
2298
|
+
];
|
|
2299
|
+
var DeleteTrafficPolicyInstanceResponse$ = [3, n0, _DTPIRe,
|
|
2300
|
+
0,
|
|
2301
|
+
[],
|
|
2302
|
+
[]
|
|
2303
|
+
];
|
|
2304
|
+
var DeleteTrafficPolicyRequest$ = [3, n0, _DTPR,
|
|
2305
|
+
0,
|
|
2306
|
+
[_I, _Ve],
|
|
2307
|
+
[[0, 1], [1, 1]], 2
|
|
2308
|
+
];
|
|
2309
|
+
var DeleteTrafficPolicyResponse$ = [3, n0, _DTPRe,
|
|
2310
|
+
0,
|
|
2311
|
+
[],
|
|
2312
|
+
[]
|
|
2313
|
+
];
|
|
2314
|
+
var DeleteVPCAssociationAuthorizationRequest$ = [3, n0, _DVPCAAR,
|
|
2315
|
+
0,
|
|
2316
|
+
[_HZI, _VPC],
|
|
2317
|
+
[[0, 1], () => VPC$], 2
|
|
2318
|
+
];
|
|
2319
|
+
var DeleteVPCAssociationAuthorizationResponse$ = [3, n0, _DVPCAARe,
|
|
2320
|
+
0,
|
|
2321
|
+
[],
|
|
2322
|
+
[]
|
|
2323
|
+
];
|
|
2324
|
+
var Dimension$ = [3, n0, _Di,
|
|
2325
|
+
0,
|
|
2326
|
+
[_N, _V],
|
|
2327
|
+
[0, 0], 2
|
|
2328
|
+
];
|
|
2329
|
+
var DisableHostedZoneDNSSECRequest$ = [3, n0, _DHZDNSSECR,
|
|
2330
|
+
0,
|
|
2331
|
+
[_HZI],
|
|
2332
|
+
[[0, 1]], 1
|
|
2333
|
+
];
|
|
2334
|
+
var DisableHostedZoneDNSSECResponse$ = [3, n0, _DHZDNSSECRi,
|
|
2335
|
+
0,
|
|
2336
|
+
[_CI],
|
|
2337
|
+
[() => ChangeInfo$], 1
|
|
2338
|
+
];
|
|
2339
|
+
var DisassociateVPCFromHostedZoneRequest$ = [3, n0, _DVPCFHZR,
|
|
2340
|
+
0,
|
|
2341
|
+
[_HZI, _VPC, _C],
|
|
2342
|
+
[[0, 1], () => VPC$, 0], 2
|
|
2343
|
+
];
|
|
2344
|
+
var DisassociateVPCFromHostedZoneResponse$ = [3, n0, _DVPCFHZRi,
|
|
2345
|
+
0,
|
|
2346
|
+
[_CI],
|
|
2347
|
+
[() => ChangeInfo$], 1
|
|
2348
|
+
];
|
|
2349
|
+
var DNSSECStatus$ = [3, n0, _DNSSECS,
|
|
2350
|
+
0,
|
|
2351
|
+
[_SS, _SM],
|
|
2352
|
+
[0, 0]
|
|
2353
|
+
];
|
|
2354
|
+
var EnableHostedZoneDNSSECRequest$ = [3, n0, _EHZDNSSECR,
|
|
2355
|
+
0,
|
|
2356
|
+
[_HZI],
|
|
2357
|
+
[[0, 1]], 1
|
|
2358
|
+
];
|
|
2359
|
+
var EnableHostedZoneDNSSECResponse$ = [3, n0, _EHZDNSSECRn,
|
|
2360
|
+
0,
|
|
2361
|
+
[_CI],
|
|
2362
|
+
[() => ChangeInfo$], 1
|
|
2363
|
+
];
|
|
2364
|
+
var GeoLocation$ = [3, n0, _GL,
|
|
2365
|
+
0,
|
|
2366
|
+
[_CCo, _CCou, _SC],
|
|
2367
|
+
[0, 0, 0]
|
|
2368
|
+
];
|
|
2369
|
+
var GeoLocationDetails$ = [3, n0, _GLD,
|
|
2370
|
+
0,
|
|
2371
|
+
[_CCo, _CN, _CCou, _CNo, _SC, _SN],
|
|
2372
|
+
[0, 0, 0, 0, 0, 0]
|
|
2373
|
+
];
|
|
2374
|
+
var GeoProximityLocation$ = [3, n0, _GPL,
|
|
2375
|
+
0,
|
|
2376
|
+
[_AWSR, _LZG, _Co, _B],
|
|
2377
|
+
[0, 0, () => Coordinates$, 1]
|
|
2378
|
+
];
|
|
2379
|
+
var GetAccountLimitRequest$ = [3, n0, _GALR,
|
|
2380
|
+
0,
|
|
2381
|
+
[_T],
|
|
2382
|
+
[[0, 1]], 1
|
|
2383
|
+
];
|
|
2384
|
+
var GetAccountLimitResponse$ = [3, n0, _GALRe,
|
|
2385
|
+
0,
|
|
2386
|
+
[_Li, _Cou],
|
|
2387
|
+
[() => AccountLimit$, 1], 2
|
|
2388
|
+
];
|
|
2389
|
+
var GetChangeRequest$ = [3, n0, _GCR,
|
|
2390
|
+
0,
|
|
2391
|
+
[_I],
|
|
2392
|
+
[[0, 1]], 1
|
|
2393
|
+
];
|
|
2394
|
+
var GetChangeResponse$ = [3, n0, _GCRe,
|
|
2395
|
+
0,
|
|
2396
|
+
[_CI],
|
|
2397
|
+
[() => ChangeInfo$], 1
|
|
2398
|
+
];
|
|
2399
|
+
var GetCheckerIpRangesRequest$ = [3, n0, _GCIRR,
|
|
2400
|
+
0,
|
|
2401
|
+
[],
|
|
2402
|
+
[]
|
|
2403
|
+
];
|
|
2404
|
+
var GetCheckerIpRangesResponse$ = [3, n0, _GCIRRe,
|
|
2405
|
+
0,
|
|
2406
|
+
[_CIR],
|
|
2407
|
+
[64 | 0], 1
|
|
2408
|
+
];
|
|
2409
|
+
var GetDNSSECRequest$ = [3, n0, _GDNSSECR,
|
|
2410
|
+
0,
|
|
2411
|
+
[_HZI],
|
|
2412
|
+
[[0, 1]], 1
|
|
2413
|
+
];
|
|
2414
|
+
var GetDNSSECResponse$ = [3, n0, _GDNSSECRe,
|
|
2415
|
+
0,
|
|
2416
|
+
[_S, _KSKe],
|
|
2417
|
+
[() => DNSSECStatus$, () => KeySigningKeys], 2
|
|
2418
|
+
];
|
|
2419
|
+
var GetGeoLocationRequest$ = [3, n0, _GGLR,
|
|
2420
|
+
0,
|
|
2421
|
+
[_CCo, _CCou, _SC],
|
|
2422
|
+
[[0, { [_hQ]: _co }], [0, { [_hQ]: _cou }], [0, { [_hQ]: _su }]]
|
|
2423
|
+
];
|
|
2424
|
+
var GetGeoLocationResponse$ = [3, n0, _GGLRe,
|
|
2425
|
+
0,
|
|
2426
|
+
[_GLD],
|
|
2427
|
+
[() => GeoLocationDetails$], 1
|
|
2428
|
+
];
|
|
2429
|
+
var GetHealthCheckCountRequest$ = [3, n0, _GHCCR,
|
|
2430
|
+
0,
|
|
2431
|
+
[],
|
|
2432
|
+
[]
|
|
2433
|
+
];
|
|
2434
|
+
var GetHealthCheckCountResponse$ = [3, n0, _GHCCRe,
|
|
2435
|
+
0,
|
|
2436
|
+
[_HCCe],
|
|
2437
|
+
[1], 1
|
|
2438
|
+
];
|
|
2439
|
+
var GetHealthCheckLastFailureReasonRequest$ = [3, n0, _GHCLFRR,
|
|
2440
|
+
0,
|
|
2441
|
+
[_HCI],
|
|
2442
|
+
[[0, 1]], 1
|
|
2443
|
+
];
|
|
2444
|
+
var GetHealthCheckLastFailureReasonResponse$ = [3, n0, _GHCLFRRe,
|
|
2445
|
+
0,
|
|
2446
|
+
[_HCO],
|
|
2447
|
+
[[() => HealthCheckObservations, 0]], 1
|
|
2448
|
+
];
|
|
2449
|
+
var GetHealthCheckRequest$ = [3, n0, _GHCR,
|
|
2450
|
+
0,
|
|
2451
|
+
[_HCI],
|
|
2452
|
+
[[0, 1]], 1
|
|
2453
|
+
];
|
|
2454
|
+
var GetHealthCheckResponse$ = [3, n0, _GHCRe,
|
|
2455
|
+
0,
|
|
2456
|
+
[_HC],
|
|
2457
|
+
[[() => HealthCheck$, 0]], 1
|
|
2458
|
+
];
|
|
2459
|
+
var GetHealthCheckStatusRequest$ = [3, n0, _GHCSR,
|
|
2460
|
+
0,
|
|
2461
|
+
[_HCI],
|
|
2462
|
+
[[0, 1]], 1
|
|
2463
|
+
];
|
|
2464
|
+
var GetHealthCheckStatusResponse$ = [3, n0, _GHCSRe,
|
|
2465
|
+
0,
|
|
2466
|
+
[_HCO],
|
|
2467
|
+
[[() => HealthCheckObservations, 0]], 1
|
|
2468
|
+
];
|
|
2469
|
+
var GetHostedZoneCountRequest$ = [3, n0, _GHZCR,
|
|
2470
|
+
0,
|
|
2471
|
+
[],
|
|
2472
|
+
[]
|
|
2473
|
+
];
|
|
2474
|
+
var GetHostedZoneCountResponse$ = [3, n0, _GHZCRe,
|
|
2475
|
+
0,
|
|
2476
|
+
[_HZCo],
|
|
2477
|
+
[1], 1
|
|
2478
|
+
];
|
|
2479
|
+
var GetHostedZoneLimitRequest$ = [3, n0, _GHZLR,
|
|
2480
|
+
0,
|
|
2481
|
+
[_T, _HZI],
|
|
2482
|
+
[[0, 1], [0, 1]], 2
|
|
2483
|
+
];
|
|
2484
|
+
var GetHostedZoneLimitResponse$ = [3, n0, _GHZLRe,
|
|
2485
|
+
0,
|
|
2486
|
+
[_Li, _Cou],
|
|
2487
|
+
[() => HostedZoneLimit$, 1], 2
|
|
2488
|
+
];
|
|
2489
|
+
var GetHostedZoneRequest$ = [3, n0, _GHZR,
|
|
2490
|
+
0,
|
|
2491
|
+
[_I],
|
|
2492
|
+
[[0, 1]], 1
|
|
2493
|
+
];
|
|
2494
|
+
var GetHostedZoneResponse$ = [3, n0, _GHZRe,
|
|
2495
|
+
0,
|
|
2496
|
+
[_HZ, _DS, _VPCs],
|
|
2497
|
+
[() => HostedZone$, [() => DelegationSet$, 0], [() => VPCs, 0]], 1
|
|
2498
|
+
];
|
|
2499
|
+
var GetQueryLoggingConfigRequest$ = [3, n0, _GQLCR,
|
|
2500
|
+
0,
|
|
2501
|
+
[_I],
|
|
2502
|
+
[[0, 1]], 1
|
|
2503
|
+
];
|
|
2504
|
+
var GetQueryLoggingConfigResponse$ = [3, n0, _GQLCRe,
|
|
2505
|
+
0,
|
|
2506
|
+
[_QLC],
|
|
2507
|
+
[() => QueryLoggingConfig$], 1
|
|
2508
|
+
];
|
|
2509
|
+
var GetReusableDelegationSetLimitRequest$ = [3, n0, _GRDSLR,
|
|
2510
|
+
0,
|
|
2511
|
+
[_T, _DSI],
|
|
2512
|
+
[[0, 1], [0, 1]], 2
|
|
2513
|
+
];
|
|
2514
|
+
var GetReusableDelegationSetLimitResponse$ = [3, n0, _GRDSLRe,
|
|
2515
|
+
0,
|
|
2516
|
+
[_Li, _Cou],
|
|
2517
|
+
[() => ReusableDelegationSetLimit$, 1], 2
|
|
2518
|
+
];
|
|
2519
|
+
var GetReusableDelegationSetRequest$ = [3, n0, _GRDSR,
|
|
2520
|
+
0,
|
|
2521
|
+
[_I],
|
|
2522
|
+
[[0, 1]], 1
|
|
2523
|
+
];
|
|
2524
|
+
var GetReusableDelegationSetResponse$ = [3, n0, _GRDSRe,
|
|
2525
|
+
0,
|
|
2526
|
+
[_DS],
|
|
2527
|
+
[[() => DelegationSet$, 0]], 1
|
|
2528
|
+
];
|
|
2529
|
+
var GetTrafficPolicyInstanceCountRequest$ = [3, n0, _GTPICR,
|
|
2530
|
+
0,
|
|
2531
|
+
[],
|
|
2532
|
+
[]
|
|
2533
|
+
];
|
|
2534
|
+
var GetTrafficPolicyInstanceCountResponse$ = [3, n0, _GTPICRe,
|
|
2535
|
+
0,
|
|
2536
|
+
[_TPIC],
|
|
2537
|
+
[1], 1
|
|
2538
|
+
];
|
|
2539
|
+
var GetTrafficPolicyInstanceRequest$ = [3, n0, _GTPIR,
|
|
2540
|
+
0,
|
|
2541
|
+
[_I],
|
|
2542
|
+
[[0, 1]], 1
|
|
2543
|
+
];
|
|
2544
|
+
var GetTrafficPolicyInstanceResponse$ = [3, n0, _GTPIRe,
|
|
2545
|
+
0,
|
|
2546
|
+
[_TPIr],
|
|
2547
|
+
[() => TrafficPolicyInstance$], 1
|
|
2548
|
+
];
|
|
2549
|
+
var GetTrafficPolicyRequest$ = [3, n0, _GTPR,
|
|
2550
|
+
0,
|
|
2551
|
+
[_I, _Ve],
|
|
2552
|
+
[[0, 1], [1, 1]], 2
|
|
2553
|
+
];
|
|
2554
|
+
var GetTrafficPolicyResponse$ = [3, n0, _GTPRe,
|
|
2555
|
+
0,
|
|
2556
|
+
[_TP],
|
|
2557
|
+
[() => TrafficPolicy$], 1
|
|
2558
|
+
];
|
|
2559
|
+
var HealthCheck$ = [3, n0, _HC,
|
|
2560
|
+
0,
|
|
2561
|
+
[_I, _CR, _HCC, _HCV, _LS, _CWAC],
|
|
2562
|
+
[0, 0, [() => HealthCheckConfig$, 0], 1, () => LinkedService$, [() => CloudWatchAlarmConfiguration$, 0]], 4
|
|
2563
|
+
];
|
|
2564
|
+
var HealthCheckConfig$ = [3, n0, _HCC,
|
|
2565
|
+
0,
|
|
2566
|
+
[_T, _IPA, _Po, _RP, _FQDN, _SSe, _RIe, _FT, _ML, _In, _Dis, _HT, _CHC, _ESNI, _Re, _AI, _IDHS, _RCA],
|
|
2567
|
+
[0, 0, 1, 0, 0, 0, 1, 1, 2, 2, 2, 1, [() => ChildHealthCheckList, 0], 2, [() => HealthCheckRegionList, 0], () => AlarmIdentifier$, 0, 0], 1
|
|
2568
|
+
];
|
|
2569
|
+
var HealthCheckObservation$ = [3, n0, _HCOe,
|
|
2570
|
+
0,
|
|
2571
|
+
[_R, _IPA, _SR],
|
|
2572
|
+
[0, 0, () => StatusReport$]
|
|
2573
|
+
];
|
|
2574
|
+
var HostedZone$ = [3, n0, _HZ,
|
|
2575
|
+
0,
|
|
2576
|
+
[_I, _N, _CR, _Con, _RRSC, _LS, _F],
|
|
2577
|
+
[0, 0, 0, () => HostedZoneConfig$, 1, () => LinkedService$, () => HostedZoneFeatures$], 3
|
|
2578
|
+
];
|
|
2579
|
+
var HostedZoneConfig$ = [3, n0, _HZC,
|
|
2580
|
+
0,
|
|
2581
|
+
[_C, _PZ],
|
|
2582
|
+
[0, 2]
|
|
2583
|
+
];
|
|
2584
|
+
var HostedZoneFailureReasons$ = [3, n0, _HZFR,
|
|
2585
|
+
0,
|
|
2586
|
+
[_AR],
|
|
2587
|
+
[0]
|
|
2588
|
+
];
|
|
2589
|
+
var HostedZoneFeatures$ = [3, n0, _HZF,
|
|
2590
|
+
0,
|
|
2591
|
+
[_ARS, _FR],
|
|
2592
|
+
[0, () => HostedZoneFailureReasons$]
|
|
2593
|
+
];
|
|
2594
|
+
var HostedZoneLimit$ = [3, n0, _HZL,
|
|
2595
|
+
0,
|
|
2596
|
+
[_T, _V],
|
|
2597
|
+
[0, 1], 2
|
|
2598
|
+
];
|
|
2599
|
+
var HostedZoneOwner$ = [3, n0, _HZO,
|
|
2600
|
+
0,
|
|
2601
|
+
[_OA, _OS],
|
|
2602
|
+
[0, 0]
|
|
2603
|
+
];
|
|
2604
|
+
var HostedZoneSummary$ = [3, n0, _HZS,
|
|
2605
|
+
0,
|
|
2606
|
+
[_HZI, _N, _O],
|
|
2607
|
+
[0, 0, () => HostedZoneOwner$], 3
|
|
2608
|
+
];
|
|
2609
|
+
var KeySigningKey$ = [3, n0, _KSK,
|
|
2610
|
+
0,
|
|
2611
|
+
[_N, _KA, _Fl, _SAM, _SAT, _DAM, _DAT, _KT, _DV, _PK, _DSR, _DNSKEYR, _S, _SM, _CD, _LMD],
|
|
2612
|
+
[0, 0, 1, 0, 1, 0, 1, 1, 0, 0, 0, 0, 0, 0, 4, 4]
|
|
2613
|
+
];
|
|
2614
|
+
var LinkedService$ = [3, n0, _LS,
|
|
2615
|
+
0,
|
|
2616
|
+
[_SP, _De],
|
|
2617
|
+
[0, 0]
|
|
2618
|
+
];
|
|
2619
|
+
var ListCidrBlocksRequest$ = [3, n0, _LCBR,
|
|
2620
|
+
0,
|
|
2621
|
+
[_CIo, _LN, _NT, _MR],
|
|
2622
|
+
[[0, 1], [0, { [_hQ]: _l }], [0, { [_hQ]: _n }], [1, { [_hQ]: _ma }]], 1
|
|
2623
|
+
];
|
|
2624
|
+
var ListCidrBlocksResponse$ = [3, n0, _LCBRi,
|
|
2625
|
+
0,
|
|
2626
|
+
[_NT, _CBid],
|
|
2627
|
+
[0, () => CidrBlockSummaries]
|
|
2628
|
+
];
|
|
2629
|
+
var ListCidrCollectionsRequest$ = [3, n0, _LCCR,
|
|
2630
|
+
0,
|
|
2631
|
+
[_NT, _MR],
|
|
2632
|
+
[[0, { [_hQ]: _n }], [1, { [_hQ]: _ma }]]
|
|
2633
|
+
];
|
|
2634
|
+
var ListCidrCollectionsResponse$ = [3, n0, _LCCRi,
|
|
2635
|
+
0,
|
|
2636
|
+
[_NT, _CCi],
|
|
2637
|
+
[0, () => CollectionSummaries]
|
|
2638
|
+
];
|
|
2639
|
+
var ListCidrLocationsRequest$ = [3, n0, _LCLR,
|
|
2640
|
+
0,
|
|
2641
|
+
[_CIo, _NT, _MR],
|
|
2642
|
+
[[0, 1], [0, { [_hQ]: _n }], [1, { [_hQ]: _ma }]], 1
|
|
2643
|
+
];
|
|
2644
|
+
var ListCidrLocationsResponse$ = [3, n0, _LCLRi,
|
|
2645
|
+
0,
|
|
2646
|
+
[_NT, _CLi],
|
|
2647
|
+
[0, () => LocationSummaries]
|
|
2648
|
+
];
|
|
2649
|
+
var ListGeoLocationsRequest$ = [3, n0, _LGLR,
|
|
2650
|
+
0,
|
|
2651
|
+
[_SCC, _SCCt, _SSC, _MI],
|
|
2652
|
+
[[0, { [_hQ]: _st }], [0, { [_hQ]: _sta }], [0, { [_hQ]: _star }], [1, { [_hQ]: _max }]]
|
|
2653
|
+
];
|
|
2654
|
+
var ListGeoLocationsResponse$ = [3, n0, _LGLRi,
|
|
2655
|
+
0,
|
|
2656
|
+
[_GLDL, _IT, _MI, _NCC, _NCCe, _NSCe],
|
|
2657
|
+
[[() => GeoLocationDetailsList, 0], 2, 1, 0, 0, 0], 3
|
|
2658
|
+
];
|
|
2659
|
+
var ListHealthChecksRequest$ = [3, n0, _LHCR,
|
|
2660
|
+
0,
|
|
2661
|
+
[_Ma, _MI],
|
|
2662
|
+
[[0, { [_hQ]: _mar }], [1, { [_hQ]: _max }]]
|
|
2663
|
+
];
|
|
2664
|
+
var ListHealthChecksResponse$ = [3, n0, _LHCRi,
|
|
2665
|
+
0,
|
|
2666
|
+
[_HCe, _Ma, _IT, _MI, _NM],
|
|
2667
|
+
[[() => HealthChecks, 0], 0, 2, 1, 0], 4
|
|
2668
|
+
];
|
|
2669
|
+
var ListHostedZonesByNameRequest$ = [3, n0, _LHZBNR,
|
|
2670
|
+
0,
|
|
2671
|
+
[_DNSN, _HZI, _MI],
|
|
2672
|
+
[[0, { [_hQ]: _d }], [0, { [_hQ]: _h }], [1, { [_hQ]: _max }]]
|
|
2673
|
+
];
|
|
2674
|
+
var ListHostedZonesByNameResponse$ = [3, n0, _LHZBNRi,
|
|
2675
|
+
0,
|
|
2676
|
+
[_HZo, _IT, _MI, _DNSN, _HZI, _NDNSN, _NHZI],
|
|
2677
|
+
[[() => HostedZones, 0], 2, 1, 0, 0, 0, 0], 3
|
|
2678
|
+
];
|
|
2679
|
+
var ListHostedZonesByVPCRequest$ = [3, n0, _LHZBVPCR,
|
|
2680
|
+
0,
|
|
2681
|
+
[_VPCI, _VPCR, _MI, _NT],
|
|
2682
|
+
[[0, { [_hQ]: _v }], [0, { [_hQ]: _vp }], [1, { [_hQ]: _max }], [0, { [_hQ]: _n }]], 2
|
|
2683
|
+
];
|
|
2684
|
+
var ListHostedZonesByVPCResponse$ = [3, n0, _LHZBVPCRi,
|
|
2685
|
+
0,
|
|
2686
|
+
[_HZSo, _MI, _NT],
|
|
2687
|
+
[[() => HostedZoneSummaries, 0], 1, 0], 2
|
|
2688
|
+
];
|
|
2689
|
+
var ListHostedZonesRequest$ = [3, n0, _LHZR,
|
|
2690
|
+
0,
|
|
2691
|
+
[_Ma, _MI, _DSI, _HZT],
|
|
2692
|
+
[[0, { [_hQ]: _mar }], [1, { [_hQ]: _max }], [0, { [_hQ]: _de }], [0, { [_hQ]: _ho }]]
|
|
2693
|
+
];
|
|
2694
|
+
var ListHostedZonesResponse$ = [3, n0, _LHZRi,
|
|
2695
|
+
0,
|
|
2696
|
+
[_HZo, _Ma, _IT, _MI, _NM],
|
|
2697
|
+
[[() => HostedZones, 0], 0, 2, 1, 0], 4
|
|
2698
|
+
];
|
|
2699
|
+
var ListQueryLoggingConfigsRequest$ = [3, n0, _LQLCR,
|
|
2700
|
+
0,
|
|
2701
|
+
[_HZI, _NT, _MR],
|
|
2702
|
+
[[0, { [_hQ]: _h }], [0, { [_hQ]: _n }], [1, { [_hQ]: _ma }]]
|
|
2703
|
+
];
|
|
2704
|
+
var ListQueryLoggingConfigsResponse$ = [3, n0, _LQLCRi,
|
|
2705
|
+
0,
|
|
2706
|
+
[_QLCu, _NT],
|
|
2707
|
+
[[() => QueryLoggingConfigs, 0], 0], 1
|
|
2708
|
+
];
|
|
2709
|
+
var ListResourceRecordSetsRequest$ = [3, n0, _LRRSR,
|
|
2710
|
+
0,
|
|
2711
|
+
[_HZI, _SRN, _SRT, _SRI, _MI],
|
|
2712
|
+
[[0, 1], [0, { [_hQ]: _na }], [0, { [_hQ]: _t }], [0, { [_hQ]: _i }], [1, { [_hQ]: _max }]], 1
|
|
2713
|
+
];
|
|
2714
|
+
var ListResourceRecordSetsResponse$ = [3, n0, _LRRSRi,
|
|
2715
|
+
0,
|
|
2716
|
+
[_RRSe, _IT, _MI, _NRN, _NRT, _NRI],
|
|
2717
|
+
[[() => ResourceRecordSets, 0], 2, 1, 0, 0, 0], 3
|
|
2718
|
+
];
|
|
2719
|
+
var ListReusableDelegationSetsRequest$ = [3, n0, _LRDSR,
|
|
2720
|
+
0,
|
|
2721
|
+
[_Ma, _MI],
|
|
2722
|
+
[[0, { [_hQ]: _mar }], [1, { [_hQ]: _max }]]
|
|
2723
|
+
];
|
|
2724
|
+
var ListReusableDelegationSetsResponse$ = [3, n0, _LRDSRi,
|
|
2725
|
+
0,
|
|
2726
|
+
[_DSe, _Ma, _IT, _MI, _NM],
|
|
2727
|
+
[[() => DelegationSets, 0], 0, 2, 1, 0], 4
|
|
2728
|
+
];
|
|
2729
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2730
|
+
0,
|
|
2731
|
+
[_RT, _RI],
|
|
2732
|
+
[[0, 1], [0, 1]], 2
|
|
2733
|
+
];
|
|
2734
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2735
|
+
0,
|
|
2736
|
+
[_RTS],
|
|
2737
|
+
[[() => ResourceTagSet$, 0]], 1
|
|
2738
|
+
];
|
|
2739
|
+
var ListTagsForResourcesRequest$ = [3, n0, _LTFRRis,
|
|
2740
|
+
0,
|
|
2741
|
+
[_RT, _RIes],
|
|
2742
|
+
[[0, 1], [() => TagResourceIdList, 0]], 2
|
|
2743
|
+
];
|
|
2744
|
+
var ListTagsForResourcesResponse$ = [3, n0, _LTFRRist,
|
|
2745
|
+
0,
|
|
2746
|
+
[_RTSe],
|
|
2747
|
+
[[() => ResourceTagSetList, 0]], 1
|
|
2748
|
+
];
|
|
2749
|
+
var ListTrafficPoliciesRequest$ = [3, n0, _LTPR,
|
|
2750
|
+
0,
|
|
2751
|
+
[_TPIM, _MI],
|
|
2752
|
+
[[0, { [_hQ]: _tr }], [1, { [_hQ]: _max }]]
|
|
2753
|
+
];
|
|
2754
|
+
var ListTrafficPoliciesResponse$ = [3, n0, _LTPRi,
|
|
2755
|
+
0,
|
|
2756
|
+
[_TPS, _IT, _TPIM, _MI],
|
|
2757
|
+
[[() => TrafficPolicySummaries, 0], 2, 0, 1], 4
|
|
2758
|
+
];
|
|
2759
|
+
var ListTrafficPolicyInstancesByHostedZoneRequest$ = [3, n0, _LTPIBHZR,
|
|
2760
|
+
0,
|
|
2761
|
+
[_HZI, _TPINM, _TPITM, _MI],
|
|
2762
|
+
[[0, { [_hQ]: _id }], [0, { [_hQ]: _tra }], [0, { [_hQ]: _traf }], [1, { [_hQ]: _max }]], 1
|
|
2763
|
+
];
|
|
2764
|
+
var ListTrafficPolicyInstancesByHostedZoneResponse$ = [3, n0, _LTPIBHZRi,
|
|
2765
|
+
0,
|
|
2766
|
+
[_TPIra, _IT, _MI, _TPINM, _TPITM],
|
|
2767
|
+
[[() => TrafficPolicyInstances, 0], 2, 1, 0, 0], 3
|
|
2768
|
+
];
|
|
2769
|
+
var ListTrafficPolicyInstancesByPolicyRequest$ = [3, n0, _LTPIBPR,
|
|
2770
|
+
0,
|
|
2771
|
+
[_TPI, _TPV, _HZIM, _TPINM, _TPITM, _MI],
|
|
2772
|
+
[[0, { [_hQ]: _id }], [1, { [_hQ]: _ve }], [0, { [_hQ]: _h }], [0, { [_hQ]: _tra }], [0, { [_hQ]: _traf }], [1, { [_hQ]: _max }]], 2
|
|
2773
|
+
];
|
|
2774
|
+
var ListTrafficPolicyInstancesByPolicyResponse$ = [3, n0, _LTPIBPRi,
|
|
2775
|
+
0,
|
|
2776
|
+
[_TPIra, _IT, _MI, _HZIM, _TPINM, _TPITM],
|
|
2777
|
+
[[() => TrafficPolicyInstances, 0], 2, 1, 0, 0, 0], 3
|
|
2778
|
+
];
|
|
2779
|
+
var ListTrafficPolicyInstancesRequest$ = [3, n0, _LTPIR,
|
|
2780
|
+
0,
|
|
2781
|
+
[_HZIM, _TPINM, _TPITM, _MI],
|
|
2782
|
+
[[0, { [_hQ]: _h }], [0, { [_hQ]: _tra }], [0, { [_hQ]: _traf }], [1, { [_hQ]: _max }]]
|
|
2783
|
+
];
|
|
2784
|
+
var ListTrafficPolicyInstancesResponse$ = [3, n0, _LTPIRi,
|
|
2785
|
+
0,
|
|
2786
|
+
[_TPIra, _IT, _MI, _HZIM, _TPINM, _TPITM],
|
|
2787
|
+
[[() => TrafficPolicyInstances, 0], 2, 1, 0, 0, 0], 3
|
|
2788
|
+
];
|
|
2789
|
+
var ListTrafficPolicyVersionsRequest$ = [3, n0, _LTPVR,
|
|
2790
|
+
0,
|
|
2791
|
+
[_I, _TPVM, _MI],
|
|
2792
|
+
[[0, 1], [0, { [_hQ]: _traff }], [1, { [_hQ]: _max }]], 1
|
|
2793
|
+
];
|
|
2794
|
+
var ListTrafficPolicyVersionsResponse$ = [3, n0, _LTPVRi,
|
|
2795
|
+
0,
|
|
2796
|
+
[_TPr, _IT, _TPVM, _MI],
|
|
2797
|
+
[[() => TrafficPolicies, 0], 2, 0, 1], 4
|
|
2798
|
+
];
|
|
2799
|
+
var ListVPCAssociationAuthorizationsRequest$ = [3, n0, _LVPCAAR,
|
|
2800
|
+
0,
|
|
2801
|
+
[_HZI, _NT, _MR],
|
|
2802
|
+
[[0, 1], [0, { [_hQ]: _n }], [1, { [_hQ]: _ma }]], 1
|
|
2803
|
+
];
|
|
2804
|
+
var ListVPCAssociationAuthorizationsResponse$ = [3, n0, _LVPCAARi,
|
|
2805
|
+
0,
|
|
2806
|
+
[_HZI, _VPCs, _NT],
|
|
2807
|
+
[0, [() => VPCs, 0], 0], 2
|
|
2808
|
+
];
|
|
2809
|
+
var LocationSummary$ = [3, n0, _LSo,
|
|
2810
|
+
0,
|
|
2811
|
+
[_LN],
|
|
2812
|
+
[0]
|
|
2813
|
+
];
|
|
2814
|
+
var QueryLoggingConfig$ = [3, n0, _QLC,
|
|
2815
|
+
0,
|
|
2816
|
+
[_I, _HZI, _CWLLGA],
|
|
2817
|
+
[0, 0, 0], 3
|
|
2818
|
+
];
|
|
2819
|
+
var ResourceRecord$ = [3, n0, _RR,
|
|
2820
|
+
0,
|
|
2821
|
+
[_V],
|
|
2822
|
+
[0], 1
|
|
2823
|
+
];
|
|
2824
|
+
var ResourceRecordSet$ = [3, n0, _RRS,
|
|
2825
|
+
0,
|
|
2826
|
+
[_N, _T, _SI, _W, _R, _GL, _Fa, _MVA, _TTL, _RRe, _AT, _HCI, _TPII, _CRC, _GPL],
|
|
2827
|
+
[0, 0, 0, 1, 0, () => GeoLocation$, 0, 2, 1, [() => ResourceRecords, 0], () => AliasTarget$, 0, 0, () => CidrRoutingConfig$, () => GeoProximityLocation$], 2
|
|
2828
|
+
];
|
|
2829
|
+
var ResourceTagSet$ = [3, n0, _RTS,
|
|
2830
|
+
0,
|
|
2831
|
+
[_RT, _RI, _Ta],
|
|
2832
|
+
[0, 0, [() => TagList, 0]]
|
|
2833
|
+
];
|
|
2834
|
+
var ReusableDelegationSetLimit$ = [3, n0, _RDSL,
|
|
2835
|
+
0,
|
|
2836
|
+
[_T, _V],
|
|
2837
|
+
[0, 1], 2
|
|
2838
|
+
];
|
|
2839
|
+
var StatusReport$ = [3, n0, _SR,
|
|
2840
|
+
0,
|
|
2841
|
+
[_S, _CTh],
|
|
2842
|
+
[0, 4]
|
|
2843
|
+
];
|
|
2844
|
+
var Tag$ = [3, n0, _Tag,
|
|
2845
|
+
0,
|
|
2846
|
+
[_K, _V],
|
|
2847
|
+
[0, 0]
|
|
2848
|
+
];
|
|
2849
|
+
var TestDNSAnswerRequest$ = [3, n0, _TDNSAR,
|
|
2850
|
+
0,
|
|
2851
|
+
[_HZI, _RN, _RTe, _RIP, _EDNSCSIP, _EDNSCSM],
|
|
2852
|
+
[[0, { [_hQ]: _h }], [0, { [_hQ]: _r }], [0, { [_hQ]: _re }], [0, { [_hQ]: _res }], [0, { [_hQ]: _ed }], [0, { [_hQ]: _edn }]], 3
|
|
2853
|
+
];
|
|
2854
|
+
var TestDNSAnswerResponse$ = [3, n0, _TDNSARe,
|
|
2855
|
+
0,
|
|
2856
|
+
[_Nam, _RN, _RTe, _RD, _RC, _Pr],
|
|
2857
|
+
[0, 0, 0, [() => RecordData, 0], 0, 0], 6
|
|
2858
|
+
];
|
|
2859
|
+
var TrafficPolicy$ = [3, n0, _TP,
|
|
2860
|
+
0,
|
|
2861
|
+
[_I, _Ve, _N, _T, _Do, _C],
|
|
2862
|
+
[0, 1, 0, 0, 0, 0], 5
|
|
2863
|
+
];
|
|
2864
|
+
var TrafficPolicyInstance$ = [3, n0, _TPIr,
|
|
2865
|
+
0,
|
|
2866
|
+
[_I, _HZI, _N, _TTL, _Sta, _M, _TPI, _TPV, _TPT],
|
|
2867
|
+
[0, 0, 0, 1, 0, 0, 0, 1, 0], 9
|
|
2868
|
+
];
|
|
2869
|
+
var TrafficPolicySummary$ = [3, n0, _TPSr,
|
|
2870
|
+
0,
|
|
2871
|
+
[_I, _N, _T, _LV, _TPC],
|
|
2872
|
+
[0, 0, 0, 1, 1], 5
|
|
2873
|
+
];
|
|
2874
|
+
var UpdateHealthCheckRequest$ = [3, n0, _UHCR,
|
|
2875
|
+
0,
|
|
2876
|
+
[_HCI, _HCV, _IPA, _Po, _RP, _FQDN, _SSe, _FT, _In, _Dis, _HT, _CHC, _ESNI, _Re, _AI, _IDHS, _RE],
|
|
2877
|
+
[[0, 1], 1, 0, 1, 0, 0, 0, 1, 2, 2, 1, [() => ChildHealthCheckList, 0], 2, [() => HealthCheckRegionList, 0], () => AlarmIdentifier$, 0, [() => ResettableElementNameList, 0]], 1
|
|
2878
|
+
];
|
|
2879
|
+
var UpdateHealthCheckResponse$ = [3, n0, _UHCRp,
|
|
2880
|
+
0,
|
|
2881
|
+
[_HC],
|
|
2882
|
+
[[() => HealthCheck$, 0]], 1
|
|
2883
|
+
];
|
|
2884
|
+
var UpdateHostedZoneCommentRequest$ = [3, n0, _UHZCR,
|
|
2885
|
+
0,
|
|
2886
|
+
[_I, _C],
|
|
2887
|
+
[[0, 1], 0], 1
|
|
2888
|
+
];
|
|
2889
|
+
var UpdateHostedZoneCommentResponse$ = [3, n0, _UHZCRp,
|
|
2890
|
+
0,
|
|
2891
|
+
[_HZ],
|
|
2892
|
+
[() => HostedZone$], 1
|
|
2893
|
+
];
|
|
2894
|
+
var UpdateHostedZoneFeaturesRequest$ = [3, n0, _UHZFR,
|
|
2895
|
+
0,
|
|
2896
|
+
[_HZI, _EAR],
|
|
2897
|
+
[[0, 1], 2], 1
|
|
2898
|
+
];
|
|
2899
|
+
var UpdateHostedZoneFeaturesResponse$ = [3, n0, _UHZFRp,
|
|
2900
|
+
0,
|
|
2901
|
+
[],
|
|
2902
|
+
[]
|
|
2903
|
+
];
|
|
2904
|
+
var UpdateTrafficPolicyCommentRequest$ = [3, n0, _UTPCR,
|
|
2905
|
+
0,
|
|
2906
|
+
[_I, _Ve, _C],
|
|
2907
|
+
[[0, 1], [1, 1], 0], 3
|
|
2908
|
+
];
|
|
2909
|
+
var UpdateTrafficPolicyCommentResponse$ = [3, n0, _UTPCRp,
|
|
2910
|
+
0,
|
|
2911
|
+
[_TP],
|
|
2912
|
+
[() => TrafficPolicy$], 1
|
|
2913
|
+
];
|
|
2914
|
+
var UpdateTrafficPolicyInstanceRequest$ = [3, n0, _UTPIR,
|
|
2915
|
+
0,
|
|
2916
|
+
[_I, _TTL, _TPI, _TPV],
|
|
2917
|
+
[[0, 1], 1, 0, 1], 4
|
|
2918
|
+
];
|
|
2919
|
+
var UpdateTrafficPolicyInstanceResponse$ = [3, n0, _UTPIRp,
|
|
2920
|
+
0,
|
|
2921
|
+
[_TPIr],
|
|
2922
|
+
[() => TrafficPolicyInstance$], 1
|
|
2923
|
+
];
|
|
2924
|
+
var VPC$ = [3, n0, _VPC,
|
|
2925
|
+
0,
|
|
2926
|
+
[_VPCR, _VPCI],
|
|
2927
|
+
[0, 0]
|
|
2928
|
+
];
|
|
2929
|
+
var Changes = [1, n0, _Cha,
|
|
2930
|
+
0, [() => Change$,
|
|
2931
|
+
{ [_xN]: _Ch }]
|
|
2932
|
+
];
|
|
2933
|
+
var ChildHealthCheckList = [1, n0, _CHCL,
|
|
2934
|
+
0, [0,
|
|
2935
|
+
{ [_xN]: _CHCh }]
|
|
2936
|
+
];
|
|
2937
|
+
var CidrBlockSummaries = [1, n0, _CBSi,
|
|
2938
|
+
0, () => CidrBlockSummary$
|
|
2939
|
+
];
|
|
2940
|
+
var CidrCollectionChanges = [1, n0, _CCCi,
|
|
2941
|
+
0, [() => CidrCollectionChange$,
|
|
2942
|
+
0]
|
|
2943
|
+
];
|
|
2944
|
+
var CidrList = [1, n0, _CL,
|
|
2945
|
+
0, [0,
|
|
2946
|
+
{ [_xN]: _Ci }]
|
|
2947
|
+
];
|
|
2948
|
+
var CollectionSummaries = [1, n0, _CSo,
|
|
2949
|
+
0, () => CollectionSummary$
|
|
2950
|
+
];
|
|
2951
|
+
var DelegationSetNameServers = [1, n0, _DSNS,
|
|
2952
|
+
0, [0,
|
|
2953
|
+
{ [_xN]: _NSa }]
|
|
2954
|
+
];
|
|
2955
|
+
var DelegationSets = [1, n0, _DSe,
|
|
2956
|
+
0, [() => DelegationSet$,
|
|
2957
|
+
{ [_xN]: _DS }]
|
|
2958
|
+
];
|
|
2959
|
+
var DimensionList = [1, n0, _DL,
|
|
2960
|
+
0, [() => Dimension$,
|
|
2961
|
+
{ [_xN]: _Di }]
|
|
2962
|
+
];
|
|
2963
|
+
var ErrorMessages = [1, n0, _EM,
|
|
2964
|
+
0, [0,
|
|
2965
|
+
{ [_xN]: _M }]
|
|
2966
|
+
];
|
|
2967
|
+
var GeoLocationDetailsList = [1, n0, _GLDL,
|
|
2968
|
+
0, [() => GeoLocationDetails$,
|
|
2969
|
+
{ [_xN]: _GLD }]
|
|
2970
|
+
];
|
|
2971
|
+
var HealthCheckObservations = [1, n0, _HCO,
|
|
2972
|
+
0, [() => HealthCheckObservation$,
|
|
2973
|
+
{ [_xN]: _HCOe }]
|
|
2974
|
+
];
|
|
2975
|
+
var HealthCheckRegionList = [1, n0, _HCRL,
|
|
2976
|
+
0, [0,
|
|
2977
|
+
{ [_xN]: _R }]
|
|
2978
|
+
];
|
|
2979
|
+
var HealthChecks = [1, n0, _HCe,
|
|
2980
|
+
0, [() => HealthCheck$,
|
|
2981
|
+
{ [_xN]: _HC }]
|
|
2982
|
+
];
|
|
2983
|
+
var HostedZones = [1, n0, _HZo,
|
|
2984
|
+
0, [() => HostedZone$,
|
|
2985
|
+
{ [_xN]: _HZ }]
|
|
2986
|
+
];
|
|
2987
|
+
var HostedZoneSummaries = [1, n0, _HZSo,
|
|
2988
|
+
0, [() => HostedZoneSummary$,
|
|
2989
|
+
{ [_xN]: _HZS }]
|
|
2990
|
+
];
|
|
2991
|
+
var KeySigningKeys = [1, n0, _KSKe,
|
|
2992
|
+
0, () => KeySigningKey$
|
|
2993
|
+
];
|
|
2994
|
+
var LocationSummaries = [1, n0, _LSoc,
|
|
2995
|
+
0, () => LocationSummary$
|
|
2996
|
+
];
|
|
2997
|
+
var QueryLoggingConfigs = [1, n0, _QLCu,
|
|
2998
|
+
0, [() => QueryLoggingConfig$,
|
|
2999
|
+
{ [_xN]: _QLC }]
|
|
3000
|
+
];
|
|
3001
|
+
var RecordData = [1, n0, _RD,
|
|
3002
|
+
0, [0,
|
|
3003
|
+
{ [_xN]: _RDE }]
|
|
3004
|
+
];
|
|
3005
|
+
var ResettableElementNameList = [1, n0, _RENL,
|
|
3006
|
+
0, [0,
|
|
3007
|
+
{ [_xN]: _REN }]
|
|
3008
|
+
];
|
|
3009
|
+
var ResourceRecords = [1, n0, _RRe,
|
|
3010
|
+
0, [() => ResourceRecord$,
|
|
3011
|
+
{ [_xN]: _RR }]
|
|
3012
|
+
];
|
|
3013
|
+
var ResourceRecordSets = [1, n0, _RRSe,
|
|
3014
|
+
0, [() => ResourceRecordSet$,
|
|
3015
|
+
{ [_xN]: _RRS }]
|
|
3016
|
+
];
|
|
3017
|
+
var ResourceTagSetList = [1, n0, _RTSL,
|
|
3018
|
+
0, [() => ResourceTagSet$,
|
|
3019
|
+
{ [_xN]: _RTS }]
|
|
3020
|
+
];
|
|
3021
|
+
var TagKeyList = [1, n0, _TKL,
|
|
3022
|
+
0, [0,
|
|
3023
|
+
{ [_xN]: _K }]
|
|
3024
|
+
];
|
|
3025
|
+
var TagList = [1, n0, _TL,
|
|
3026
|
+
0, [() => Tag$,
|
|
3027
|
+
{ [_xN]: _Tag }]
|
|
3028
|
+
];
|
|
3029
|
+
var TagResourceIdList = [1, n0, _TRIL,
|
|
3030
|
+
0, [0,
|
|
3031
|
+
{ [_xN]: _RI }]
|
|
3032
|
+
];
|
|
3033
|
+
var TrafficPolicies = [1, n0, _TPr,
|
|
3034
|
+
0, [() => TrafficPolicy$,
|
|
3035
|
+
{ [_xN]: _TP }]
|
|
3036
|
+
];
|
|
3037
|
+
var TrafficPolicyInstances = [1, n0, _TPIra,
|
|
3038
|
+
0, [() => TrafficPolicyInstance$,
|
|
3039
|
+
{ [_xN]: _TPIr }]
|
|
3040
|
+
];
|
|
3041
|
+
var TrafficPolicySummaries = [1, n0, _TPS,
|
|
3042
|
+
0, [() => TrafficPolicySummary$,
|
|
3043
|
+
{ [_xN]: _TPSr }]
|
|
3044
|
+
];
|
|
3045
|
+
var VPCs = [1, n0, _VPCs,
|
|
3046
|
+
0, [() => VPC$,
|
|
3047
|
+
{ [_xN]: _VPC }]
|
|
3048
|
+
];
|
|
3049
|
+
var ActivateKeySigningKey$ = [9, n0, _AKSK,
|
|
3050
|
+
{ [_ht]: ["POST", "/2013-04-01/keysigningkey/{HostedZoneId}/{Name}/activate", 200] }, () => ActivateKeySigningKeyRequest$, () => ActivateKeySigningKeyResponse$
|
|
3051
|
+
];
|
|
3052
|
+
var AssociateVPCWithHostedZone$ = [9, n0, _AVPCWHZ,
|
|
3053
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/associatevpc", 200] }, () => AssociateVPCWithHostedZoneRequest$, () => AssociateVPCWithHostedZoneResponse$
|
|
3054
|
+
];
|
|
3055
|
+
var ChangeCidrCollection$ = [9, n0, _CCCh,
|
|
3056
|
+
{ [_ht]: ["POST", "/2013-04-01/cidrcollection/{Id}", 200] }, () => ChangeCidrCollectionRequest$, () => ChangeCidrCollectionResponse$
|
|
3057
|
+
];
|
|
3058
|
+
var ChangeResourceRecordSets$ = [9, n0, _CRRS,
|
|
3059
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/rrset", 200] }, () => ChangeResourceRecordSetsRequest$, () => ChangeResourceRecordSetsResponse$
|
|
3060
|
+
];
|
|
3061
|
+
var ChangeTagsForResource$ = [9, n0, _CTFR,
|
|
3062
|
+
{ [_ht]: ["POST", "/2013-04-01/tags/{ResourceType}/{ResourceId}", 200] }, () => ChangeTagsForResourceRequest$, () => ChangeTagsForResourceResponse$
|
|
3063
|
+
];
|
|
3064
|
+
var CreateCidrCollection$ = [9, n0, _CCCr,
|
|
3065
|
+
{ [_ht]: ["POST", "/2013-04-01/cidrcollection", 201] }, () => CreateCidrCollectionRequest$, () => CreateCidrCollectionResponse$
|
|
3066
|
+
];
|
|
3067
|
+
var CreateHealthCheck$ = [9, n0, _CHCr,
|
|
3068
|
+
{ [_ht]: ["POST", "/2013-04-01/healthcheck", 201] }, () => CreateHealthCheckRequest$, () => CreateHealthCheckResponse$
|
|
3069
|
+
];
|
|
3070
|
+
var CreateHostedZone$ = [9, n0, _CHZ,
|
|
3071
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone", 201] }, () => CreateHostedZoneRequest$, () => CreateHostedZoneResponse$
|
|
3072
|
+
];
|
|
3073
|
+
var CreateKeySigningKey$ = [9, n0, _CKSK,
|
|
3074
|
+
{ [_ht]: ["POST", "/2013-04-01/keysigningkey", 201] }, () => CreateKeySigningKeyRequest$, () => CreateKeySigningKeyResponse$
|
|
3075
|
+
];
|
|
3076
|
+
var CreateQueryLoggingConfig$ = [9, n0, _CQLC,
|
|
3077
|
+
{ [_ht]: ["POST", "/2013-04-01/queryloggingconfig", 201] }, () => CreateQueryLoggingConfigRequest$, () => CreateQueryLoggingConfigResponse$
|
|
3078
|
+
];
|
|
3079
|
+
var CreateReusableDelegationSet$ = [9, n0, _CRDS,
|
|
3080
|
+
{ [_ht]: ["POST", "/2013-04-01/delegationset", 201] }, () => CreateReusableDelegationSetRequest$, () => CreateReusableDelegationSetResponse$
|
|
3081
|
+
];
|
|
3082
|
+
var CreateTrafficPolicy$ = [9, n0, _CTP,
|
|
3083
|
+
{ [_ht]: ["POST", "/2013-04-01/trafficpolicy", 201] }, () => CreateTrafficPolicyRequest$, () => CreateTrafficPolicyResponse$
|
|
3084
|
+
];
|
|
3085
|
+
var CreateTrafficPolicyInstance$ = [9, n0, _CTPI,
|
|
3086
|
+
{ [_ht]: ["POST", "/2013-04-01/trafficpolicyinstance", 201] }, () => CreateTrafficPolicyInstanceRequest$, () => CreateTrafficPolicyInstanceResponse$
|
|
3087
|
+
];
|
|
3088
|
+
var CreateTrafficPolicyVersion$ = [9, n0, _CTPV,
|
|
3089
|
+
{ [_ht]: ["POST", "/2013-04-01/trafficpolicy/{Id}", 201] }, () => CreateTrafficPolicyVersionRequest$, () => CreateTrafficPolicyVersionResponse$
|
|
3090
|
+
];
|
|
3091
|
+
var CreateVPCAssociationAuthorization$ = [9, n0, _CVPCAA,
|
|
3092
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/authorizevpcassociation", 200] }, () => CreateVPCAssociationAuthorizationRequest$, () => CreateVPCAssociationAuthorizationResponse$
|
|
3093
|
+
];
|
|
3094
|
+
var DeactivateKeySigningKey$ = [9, n0, _DKSK,
|
|
3095
|
+
{ [_ht]: ["POST", "/2013-04-01/keysigningkey/{HostedZoneId}/{Name}/deactivate", 200] }, () => DeactivateKeySigningKeyRequest$, () => DeactivateKeySigningKeyResponse$
|
|
3096
|
+
];
|
|
3097
|
+
var DeleteCidrCollection$ = [9, n0, _DCC,
|
|
3098
|
+
{ [_ht]: ["DELETE", "/2013-04-01/cidrcollection/{Id}", 200] }, () => DeleteCidrCollectionRequest$, () => DeleteCidrCollectionResponse$
|
|
3099
|
+
];
|
|
3100
|
+
var DeleteHealthCheck$ = [9, n0, _DHC,
|
|
3101
|
+
{ [_ht]: ["DELETE", "/2013-04-01/healthcheck/{HealthCheckId}", 200] }, () => DeleteHealthCheckRequest$, () => DeleteHealthCheckResponse$
|
|
3102
|
+
];
|
|
3103
|
+
var DeleteHostedZone$ = [9, n0, _DHZ,
|
|
3104
|
+
{ [_ht]: ["DELETE", "/2013-04-01/hostedzone/{Id}", 200] }, () => DeleteHostedZoneRequest$, () => DeleteHostedZoneResponse$
|
|
3105
|
+
];
|
|
3106
|
+
var DeleteKeySigningKey$ = [9, n0, _DKSKe,
|
|
3107
|
+
{ [_ht]: ["DELETE", "/2013-04-01/keysigningkey/{HostedZoneId}/{Name}", 200] }, () => DeleteKeySigningKeyRequest$, () => DeleteKeySigningKeyResponse$
|
|
3108
|
+
];
|
|
3109
|
+
var DeleteQueryLoggingConfig$ = [9, n0, _DQLC,
|
|
3110
|
+
{ [_ht]: ["DELETE", "/2013-04-01/queryloggingconfig/{Id}", 200] }, () => DeleteQueryLoggingConfigRequest$, () => DeleteQueryLoggingConfigResponse$
|
|
3111
|
+
];
|
|
3112
|
+
var DeleteReusableDelegationSet$ = [9, n0, _DRDS,
|
|
3113
|
+
{ [_ht]: ["DELETE", "/2013-04-01/delegationset/{Id}", 200] }, () => DeleteReusableDelegationSetRequest$, () => DeleteReusableDelegationSetResponse$
|
|
3114
|
+
];
|
|
3115
|
+
var DeleteTrafficPolicy$ = [9, n0, _DTP,
|
|
3116
|
+
{ [_ht]: ["DELETE", "/2013-04-01/trafficpolicy/{Id}/{Version}", 200] }, () => DeleteTrafficPolicyRequest$, () => DeleteTrafficPolicyResponse$
|
|
3117
|
+
];
|
|
3118
|
+
var DeleteTrafficPolicyInstance$ = [9, n0, _DTPI,
|
|
3119
|
+
{ [_ht]: ["DELETE", "/2013-04-01/trafficpolicyinstance/{Id}", 200] }, () => DeleteTrafficPolicyInstanceRequest$, () => DeleteTrafficPolicyInstanceResponse$
|
|
3120
|
+
];
|
|
3121
|
+
var DeleteVPCAssociationAuthorization$ = [9, n0, _DVPCAA,
|
|
3122
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/deauthorizevpcassociation", 200] }, () => DeleteVPCAssociationAuthorizationRequest$, () => DeleteVPCAssociationAuthorizationResponse$
|
|
3123
|
+
];
|
|
3124
|
+
var DisableHostedZoneDNSSEC$ = [9, n0, _DHZDNSSEC,
|
|
3125
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/disable-dnssec", 200] }, () => DisableHostedZoneDNSSECRequest$, () => DisableHostedZoneDNSSECResponse$
|
|
3126
|
+
];
|
|
3127
|
+
var DisassociateVPCFromHostedZone$ = [9, n0, _DVPCFHZ,
|
|
3128
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/disassociatevpc", 200] }, () => DisassociateVPCFromHostedZoneRequest$, () => DisassociateVPCFromHostedZoneResponse$
|
|
3129
|
+
];
|
|
3130
|
+
var EnableHostedZoneDNSSEC$ = [9, n0, _EHZDNSSEC,
|
|
3131
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/enable-dnssec", 200] }, () => EnableHostedZoneDNSSECRequest$, () => EnableHostedZoneDNSSECResponse$
|
|
3132
|
+
];
|
|
3133
|
+
var GetAccountLimit$ = [9, n0, _GAL,
|
|
3134
|
+
{ [_ht]: ["GET", "/2013-04-01/accountlimit/{Type}", 200] }, () => GetAccountLimitRequest$, () => GetAccountLimitResponse$
|
|
3135
|
+
];
|
|
3136
|
+
var GetChange$ = [9, n0, _GC,
|
|
3137
|
+
{ [_ht]: ["GET", "/2013-04-01/change/{Id}", 200] }, () => GetChangeRequest$, () => GetChangeResponse$
|
|
3138
|
+
];
|
|
3139
|
+
var GetCheckerIpRanges$ = [9, n0, _GCIR,
|
|
3140
|
+
{ [_ht]: ["GET", "/2013-04-01/checkeripranges", 200] }, () => GetCheckerIpRangesRequest$, () => GetCheckerIpRangesResponse$
|
|
3141
|
+
];
|
|
3142
|
+
var GetDNSSEC$ = [9, n0, _GDNSSEC,
|
|
3143
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzone/{HostedZoneId}/dnssec", 200] }, () => GetDNSSECRequest$, () => GetDNSSECResponse$
|
|
3144
|
+
];
|
|
3145
|
+
var GetGeoLocation$ = [9, n0, _GGL,
|
|
3146
|
+
{ [_ht]: ["GET", "/2013-04-01/geolocation", 200] }, () => GetGeoLocationRequest$, () => GetGeoLocationResponse$
|
|
3147
|
+
];
|
|
3148
|
+
var GetHealthCheck$ = [9, n0, _GHC,
|
|
3149
|
+
{ [_ht]: ["GET", "/2013-04-01/healthcheck/{HealthCheckId}", 200] }, () => GetHealthCheckRequest$, () => GetHealthCheckResponse$
|
|
3150
|
+
];
|
|
3151
|
+
var GetHealthCheckCount$ = [9, n0, _GHCC,
|
|
3152
|
+
{ [_ht]: ["GET", "/2013-04-01/healthcheckcount", 200] }, () => GetHealthCheckCountRequest$, () => GetHealthCheckCountResponse$
|
|
3153
|
+
];
|
|
3154
|
+
var GetHealthCheckLastFailureReason$ = [9, n0, _GHCLFR,
|
|
3155
|
+
{ [_ht]: ["GET", "/2013-04-01/healthcheck/{HealthCheckId}/lastfailurereason", 200] }, () => GetHealthCheckLastFailureReasonRequest$, () => GetHealthCheckLastFailureReasonResponse$
|
|
3156
|
+
];
|
|
3157
|
+
var GetHealthCheckStatus$ = [9, n0, _GHCS,
|
|
3158
|
+
{ [_ht]: ["GET", "/2013-04-01/healthcheck/{HealthCheckId}/status", 200] }, () => GetHealthCheckStatusRequest$, () => GetHealthCheckStatusResponse$
|
|
3159
|
+
];
|
|
3160
|
+
var GetHostedZone$ = [9, n0, _GHZ,
|
|
3161
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzone/{Id}", 200] }, () => GetHostedZoneRequest$, () => GetHostedZoneResponse$
|
|
3162
|
+
];
|
|
3163
|
+
var GetHostedZoneCount$ = [9, n0, _GHZC,
|
|
3164
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzonecount", 200] }, () => GetHostedZoneCountRequest$, () => GetHostedZoneCountResponse$
|
|
3165
|
+
];
|
|
3166
|
+
var GetHostedZoneLimit$ = [9, n0, _GHZL,
|
|
3167
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzonelimit/{HostedZoneId}/{Type}", 200] }, () => GetHostedZoneLimitRequest$, () => GetHostedZoneLimitResponse$
|
|
3168
|
+
];
|
|
3169
|
+
var GetQueryLoggingConfig$ = [9, n0, _GQLC,
|
|
3170
|
+
{ [_ht]: ["GET", "/2013-04-01/queryloggingconfig/{Id}", 200] }, () => GetQueryLoggingConfigRequest$, () => GetQueryLoggingConfigResponse$
|
|
3171
|
+
];
|
|
3172
|
+
var GetReusableDelegationSet$ = [9, n0, _GRDS,
|
|
3173
|
+
{ [_ht]: ["GET", "/2013-04-01/delegationset/{Id}", 200] }, () => GetReusableDelegationSetRequest$, () => GetReusableDelegationSetResponse$
|
|
3174
|
+
];
|
|
3175
|
+
var GetReusableDelegationSetLimit$ = [9, n0, _GRDSL,
|
|
3176
|
+
{ [_ht]: ["GET", "/2013-04-01/reusabledelegationsetlimit/{DelegationSetId}/{Type}", 200] }, () => GetReusableDelegationSetLimitRequest$, () => GetReusableDelegationSetLimitResponse$
|
|
3177
|
+
];
|
|
3178
|
+
var GetTrafficPolicy$ = [9, n0, _GTP,
|
|
3179
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicy/{Id}/{Version}", 200] }, () => GetTrafficPolicyRequest$, () => GetTrafficPolicyResponse$
|
|
3180
|
+
];
|
|
3181
|
+
var GetTrafficPolicyInstance$ = [9, n0, _GTPI,
|
|
3182
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicyinstance/{Id}", 200] }, () => GetTrafficPolicyInstanceRequest$, () => GetTrafficPolicyInstanceResponse$
|
|
3183
|
+
];
|
|
3184
|
+
var GetTrafficPolicyInstanceCount$ = [9, n0, _GTPIC,
|
|
3185
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicyinstancecount", 200] }, () => GetTrafficPolicyInstanceCountRequest$, () => GetTrafficPolicyInstanceCountResponse$
|
|
3186
|
+
];
|
|
3187
|
+
var ListCidrBlocks$ = [9, n0, _LCB,
|
|
3188
|
+
{ [_ht]: ["GET", "/2013-04-01/cidrcollection/{CollectionId}/cidrblocks", 200] }, () => ListCidrBlocksRequest$, () => ListCidrBlocksResponse$
|
|
3189
|
+
];
|
|
3190
|
+
var ListCidrCollections$ = [9, n0, _LCC,
|
|
3191
|
+
{ [_ht]: ["GET", "/2013-04-01/cidrcollection", 200] }, () => ListCidrCollectionsRequest$, () => ListCidrCollectionsResponse$
|
|
3192
|
+
];
|
|
3193
|
+
var ListCidrLocations$ = [9, n0, _LCL,
|
|
3194
|
+
{ [_ht]: ["GET", "/2013-04-01/cidrcollection/{CollectionId}", 200] }, () => ListCidrLocationsRequest$, () => ListCidrLocationsResponse$
|
|
3195
|
+
];
|
|
3196
|
+
var ListGeoLocations$ = [9, n0, _LGL,
|
|
3197
|
+
{ [_ht]: ["GET", "/2013-04-01/geolocations", 200] }, () => ListGeoLocationsRequest$, () => ListGeoLocationsResponse$
|
|
3198
|
+
];
|
|
3199
|
+
var ListHealthChecks$ = [9, n0, _LHC,
|
|
3200
|
+
{ [_ht]: ["GET", "/2013-04-01/healthcheck", 200] }, () => ListHealthChecksRequest$, () => ListHealthChecksResponse$
|
|
3201
|
+
];
|
|
3202
|
+
var ListHostedZones$ = [9, n0, _LHZ,
|
|
3203
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzone", 200] }, () => ListHostedZonesRequest$, () => ListHostedZonesResponse$
|
|
3204
|
+
];
|
|
3205
|
+
var ListHostedZonesByName$ = [9, n0, _LHZBN,
|
|
3206
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzonesbyname", 200] }, () => ListHostedZonesByNameRequest$, () => ListHostedZonesByNameResponse$
|
|
3207
|
+
];
|
|
3208
|
+
var ListHostedZonesByVPC$ = [9, n0, _LHZBVPC,
|
|
3209
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzonesbyvpc", 200] }, () => ListHostedZonesByVPCRequest$, () => ListHostedZonesByVPCResponse$
|
|
3210
|
+
];
|
|
3211
|
+
var ListQueryLoggingConfigs$ = [9, n0, _LQLC,
|
|
3212
|
+
{ [_ht]: ["GET", "/2013-04-01/queryloggingconfig", 200] }, () => ListQueryLoggingConfigsRequest$, () => ListQueryLoggingConfigsResponse$
|
|
3213
|
+
];
|
|
3214
|
+
var ListResourceRecordSets$ = [9, n0, _LRRS,
|
|
3215
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzone/{HostedZoneId}/rrset", 200] }, () => ListResourceRecordSetsRequest$, () => ListResourceRecordSetsResponse$
|
|
3216
|
+
];
|
|
3217
|
+
var ListReusableDelegationSets$ = [9, n0, _LRDS,
|
|
3218
|
+
{ [_ht]: ["GET", "/2013-04-01/delegationset", 200] }, () => ListReusableDelegationSetsRequest$, () => ListReusableDelegationSetsResponse$
|
|
3219
|
+
];
|
|
3220
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3221
|
+
{ [_ht]: ["GET", "/2013-04-01/tags/{ResourceType}/{ResourceId}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3222
|
+
];
|
|
3223
|
+
var ListTagsForResources$ = [9, n0, _LTFRi,
|
|
3224
|
+
{ [_ht]: ["POST", "/2013-04-01/tags/{ResourceType}", 200] }, () => ListTagsForResourcesRequest$, () => ListTagsForResourcesResponse$
|
|
3225
|
+
];
|
|
3226
|
+
var ListTrafficPolicies$ = [9, n0, _LTP,
|
|
3227
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicies", 200] }, () => ListTrafficPoliciesRequest$, () => ListTrafficPoliciesResponse$
|
|
3228
|
+
];
|
|
3229
|
+
var ListTrafficPolicyInstances$ = [9, n0, _LTPI,
|
|
3230
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicyinstances", 200] }, () => ListTrafficPolicyInstancesRequest$, () => ListTrafficPolicyInstancesResponse$
|
|
3231
|
+
];
|
|
3232
|
+
var ListTrafficPolicyInstancesByHostedZone$ = [9, n0, _LTPIBHZ,
|
|
3233
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicyinstances/hostedzone", 200] }, () => ListTrafficPolicyInstancesByHostedZoneRequest$, () => ListTrafficPolicyInstancesByHostedZoneResponse$
|
|
3234
|
+
];
|
|
3235
|
+
var ListTrafficPolicyInstancesByPolicy$ = [9, n0, _LTPIBP,
|
|
3236
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicyinstances/trafficpolicy", 200] }, () => ListTrafficPolicyInstancesByPolicyRequest$, () => ListTrafficPolicyInstancesByPolicyResponse$
|
|
3237
|
+
];
|
|
3238
|
+
var ListTrafficPolicyVersions$ = [9, n0, _LTPV,
|
|
3239
|
+
{ [_ht]: ["GET", "/2013-04-01/trafficpolicies/{Id}/versions", 200] }, () => ListTrafficPolicyVersionsRequest$, () => ListTrafficPolicyVersionsResponse$
|
|
3240
|
+
];
|
|
3241
|
+
var ListVPCAssociationAuthorizations$ = [9, n0, _LVPCAA,
|
|
3242
|
+
{ [_ht]: ["GET", "/2013-04-01/hostedzone/{HostedZoneId}/authorizevpcassociation", 200] }, () => ListVPCAssociationAuthorizationsRequest$, () => ListVPCAssociationAuthorizationsResponse$
|
|
3243
|
+
];
|
|
3244
|
+
var TestDNSAnswer$ = [9, n0, _TDNSA,
|
|
3245
|
+
{ [_ht]: ["GET", "/2013-04-01/testdnsanswer", 200] }, () => TestDNSAnswerRequest$, () => TestDNSAnswerResponse$
|
|
3246
|
+
];
|
|
3247
|
+
var UpdateHealthCheck$ = [9, n0, _UHC,
|
|
3248
|
+
{ [_ht]: ["POST", "/2013-04-01/healthcheck/{HealthCheckId}", 200] }, () => UpdateHealthCheckRequest$, () => UpdateHealthCheckResponse$
|
|
3249
|
+
];
|
|
3250
|
+
var UpdateHostedZoneComment$ = [9, n0, _UHZC,
|
|
3251
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{Id}", 200] }, () => UpdateHostedZoneCommentRequest$, () => UpdateHostedZoneCommentResponse$
|
|
3252
|
+
];
|
|
3253
|
+
var UpdateHostedZoneFeatures$ = [9, n0, _UHZF,
|
|
3254
|
+
{ [_ht]: ["POST", "/2013-04-01/hostedzone/{HostedZoneId}/features", 200] }, () => UpdateHostedZoneFeaturesRequest$, () => UpdateHostedZoneFeaturesResponse$
|
|
3255
|
+
];
|
|
3256
|
+
var UpdateTrafficPolicyComment$ = [9, n0, _UTPC,
|
|
3257
|
+
{ [_ht]: ["POST", "/2013-04-01/trafficpolicy/{Id}/{Version}", 200] }, () => UpdateTrafficPolicyCommentRequest$, () => UpdateTrafficPolicyCommentResponse$
|
|
3258
|
+
];
|
|
3259
|
+
var UpdateTrafficPolicyInstance$ = [9, n0, _UTPI,
|
|
3260
|
+
{ [_ht]: ["POST", "/2013-04-01/trafficpolicyinstance/{Id}", 200] }, () => UpdateTrafficPolicyInstanceRequest$, () => UpdateTrafficPolicyInstanceResponse$
|
|
3261
|
+
];
|
|
3262
|
+
|
|
3263
|
+
const getRuntimeConfig$1 = (config) => {
|
|
3264
|
+
return {
|
|
3265
|
+
apiVersion: "2013-04-01",
|
|
3266
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
3267
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
3268
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
3269
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
3270
|
+
extensions: config?.extensions ?? [],
|
|
3271
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultRoute53HttpAuthSchemeProvider,
|
|
3272
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
3273
|
+
{
|
|
3274
|
+
schemeId: "aws.auth#sigv4",
|
|
3275
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
3276
|
+
signer: new AwsSdkSigV4Signer(),
|
|
3277
|
+
},
|
|
3278
|
+
],
|
|
3279
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
3280
|
+
protocol: config?.protocol ?? AwsRestXmlProtocol,
|
|
3281
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
3282
|
+
defaultNamespace: "com.amazonaws.route53",
|
|
3283
|
+
errorTypeRegistries,
|
|
3284
|
+
xmlNamespace: "https://route53.amazonaws.com/doc/2013-04-01/",
|
|
3285
|
+
version: "2013-04-01",
|
|
3286
|
+
serviceTarget: "AWSDnsV20130401",
|
|
3287
|
+
},
|
|
3288
|
+
serviceId: config?.serviceId ?? "Route 53",
|
|
3289
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
3290
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
3291
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
3292
|
+
};
|
|
3293
|
+
};
|
|
3294
|
+
|
|
3295
|
+
const getRuntimeConfig = (config) => {
|
|
3296
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
3297
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
3298
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
3299
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
3300
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
3301
|
+
const loaderConfig = {
|
|
3302
|
+
profile: config?.profile,
|
|
3303
|
+
logger: clientSharedValues.logger,
|
|
3304
|
+
};
|
|
3305
|
+
return {
|
|
3306
|
+
...clientSharedValues,
|
|
3307
|
+
...config,
|
|
3308
|
+
runtime: "node",
|
|
3309
|
+
defaultsMode,
|
|
3310
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
3311
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
3312
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
3313
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
3314
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
3315
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
3316
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
3317
|
+
retryMode: config?.retryMode ??
|
|
3318
|
+
loadConfig({
|
|
3319
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
3320
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
3321
|
+
}, config),
|
|
3322
|
+
sha256: config?.sha256 ?? Hash.bind(null, "sha256"),
|
|
3323
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
3324
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3325
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3326
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
3327
|
+
};
|
|
3328
|
+
};
|
|
3329
|
+
|
|
35
3330
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
36
3331
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
37
3332
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -1477,98 +4772,495 @@ const ResettableElementName = {
|
|
|
1477
4772
|
};
|
|
1478
4773
|
|
|
1479
4774
|
exports.AcceleratedRecoveryStatus = AcceleratedRecoveryStatus;
|
|
4775
|
+
exports.AccountLimit$ = AccountLimit$;
|
|
1480
4776
|
exports.AccountLimitType = AccountLimitType;
|
|
4777
|
+
exports.ActivateKeySigningKey$ = ActivateKeySigningKey$;
|
|
1481
4778
|
exports.ActivateKeySigningKeyCommand = ActivateKeySigningKeyCommand;
|
|
4779
|
+
exports.ActivateKeySigningKeyRequest$ = ActivateKeySigningKeyRequest$;
|
|
4780
|
+
exports.ActivateKeySigningKeyResponse$ = ActivateKeySigningKeyResponse$;
|
|
4781
|
+
exports.AlarmIdentifier$ = AlarmIdentifier$;
|
|
4782
|
+
exports.AliasTarget$ = AliasTarget$;
|
|
4783
|
+
exports.AssociateVPCWithHostedZone$ = AssociateVPCWithHostedZone$;
|
|
1482
4784
|
exports.AssociateVPCWithHostedZoneCommand = AssociateVPCWithHostedZoneCommand;
|
|
4785
|
+
exports.AssociateVPCWithHostedZoneRequest$ = AssociateVPCWithHostedZoneRequest$;
|
|
4786
|
+
exports.AssociateVPCWithHostedZoneResponse$ = AssociateVPCWithHostedZoneResponse$;
|
|
4787
|
+
exports.Change$ = Change$;
|
|
1483
4788
|
exports.ChangeAction = ChangeAction;
|
|
4789
|
+
exports.ChangeBatch$ = ChangeBatch$;
|
|
4790
|
+
exports.ChangeCidrCollection$ = ChangeCidrCollection$;
|
|
1484
4791
|
exports.ChangeCidrCollectionCommand = ChangeCidrCollectionCommand;
|
|
4792
|
+
exports.ChangeCidrCollectionRequest$ = ChangeCidrCollectionRequest$;
|
|
4793
|
+
exports.ChangeCidrCollectionResponse$ = ChangeCidrCollectionResponse$;
|
|
4794
|
+
exports.ChangeInfo$ = ChangeInfo$;
|
|
4795
|
+
exports.ChangeResourceRecordSets$ = ChangeResourceRecordSets$;
|
|
1485
4796
|
exports.ChangeResourceRecordSetsCommand = ChangeResourceRecordSetsCommand;
|
|
4797
|
+
exports.ChangeResourceRecordSetsRequest$ = ChangeResourceRecordSetsRequest$;
|
|
4798
|
+
exports.ChangeResourceRecordSetsResponse$ = ChangeResourceRecordSetsResponse$;
|
|
1486
4799
|
exports.ChangeStatus = ChangeStatus;
|
|
4800
|
+
exports.ChangeTagsForResource$ = ChangeTagsForResource$;
|
|
1487
4801
|
exports.ChangeTagsForResourceCommand = ChangeTagsForResourceCommand;
|
|
4802
|
+
exports.ChangeTagsForResourceRequest$ = ChangeTagsForResourceRequest$;
|
|
4803
|
+
exports.ChangeTagsForResourceResponse$ = ChangeTagsForResourceResponse$;
|
|
4804
|
+
exports.CidrBlockInUseException = CidrBlockInUseException;
|
|
4805
|
+
exports.CidrBlockInUseException$ = CidrBlockInUseException$;
|
|
4806
|
+
exports.CidrBlockSummary$ = CidrBlockSummary$;
|
|
4807
|
+
exports.CidrCollection$ = CidrCollection$;
|
|
4808
|
+
exports.CidrCollectionAlreadyExistsException = CidrCollectionAlreadyExistsException;
|
|
4809
|
+
exports.CidrCollectionAlreadyExistsException$ = CidrCollectionAlreadyExistsException$;
|
|
4810
|
+
exports.CidrCollectionChange$ = CidrCollectionChange$;
|
|
1488
4811
|
exports.CidrCollectionChangeAction = CidrCollectionChangeAction;
|
|
4812
|
+
exports.CidrCollectionInUseException = CidrCollectionInUseException;
|
|
4813
|
+
exports.CidrCollectionInUseException$ = CidrCollectionInUseException$;
|
|
4814
|
+
exports.CidrCollectionVersionMismatchException = CidrCollectionVersionMismatchException;
|
|
4815
|
+
exports.CidrCollectionVersionMismatchException$ = CidrCollectionVersionMismatchException$;
|
|
4816
|
+
exports.CidrRoutingConfig$ = CidrRoutingConfig$;
|
|
4817
|
+
exports.CloudWatchAlarmConfiguration$ = CloudWatchAlarmConfiguration$;
|
|
1489
4818
|
exports.CloudWatchRegion = CloudWatchRegion;
|
|
4819
|
+
exports.CollectionSummary$ = CollectionSummary$;
|
|
1490
4820
|
exports.ComparisonOperator = ComparisonOperator;
|
|
4821
|
+
exports.ConcurrentModification = ConcurrentModification;
|
|
4822
|
+
exports.ConcurrentModification$ = ConcurrentModification$;
|
|
4823
|
+
exports.ConflictingDomainExists = ConflictingDomainExists;
|
|
4824
|
+
exports.ConflictingDomainExists$ = ConflictingDomainExists$;
|
|
4825
|
+
exports.ConflictingTypes = ConflictingTypes;
|
|
4826
|
+
exports.ConflictingTypes$ = ConflictingTypes$;
|
|
4827
|
+
exports.Coordinates$ = Coordinates$;
|
|
4828
|
+
exports.CreateCidrCollection$ = CreateCidrCollection$;
|
|
1491
4829
|
exports.CreateCidrCollectionCommand = CreateCidrCollectionCommand;
|
|
4830
|
+
exports.CreateCidrCollectionRequest$ = CreateCidrCollectionRequest$;
|
|
4831
|
+
exports.CreateCidrCollectionResponse$ = CreateCidrCollectionResponse$;
|
|
4832
|
+
exports.CreateHealthCheck$ = CreateHealthCheck$;
|
|
1492
4833
|
exports.CreateHealthCheckCommand = CreateHealthCheckCommand;
|
|
4834
|
+
exports.CreateHealthCheckRequest$ = CreateHealthCheckRequest$;
|
|
4835
|
+
exports.CreateHealthCheckResponse$ = CreateHealthCheckResponse$;
|
|
4836
|
+
exports.CreateHostedZone$ = CreateHostedZone$;
|
|
1493
4837
|
exports.CreateHostedZoneCommand = CreateHostedZoneCommand;
|
|
4838
|
+
exports.CreateHostedZoneRequest$ = CreateHostedZoneRequest$;
|
|
4839
|
+
exports.CreateHostedZoneResponse$ = CreateHostedZoneResponse$;
|
|
4840
|
+
exports.CreateKeySigningKey$ = CreateKeySigningKey$;
|
|
1494
4841
|
exports.CreateKeySigningKeyCommand = CreateKeySigningKeyCommand;
|
|
4842
|
+
exports.CreateKeySigningKeyRequest$ = CreateKeySigningKeyRequest$;
|
|
4843
|
+
exports.CreateKeySigningKeyResponse$ = CreateKeySigningKeyResponse$;
|
|
4844
|
+
exports.CreateQueryLoggingConfig$ = CreateQueryLoggingConfig$;
|
|
1495
4845
|
exports.CreateQueryLoggingConfigCommand = CreateQueryLoggingConfigCommand;
|
|
4846
|
+
exports.CreateQueryLoggingConfigRequest$ = CreateQueryLoggingConfigRequest$;
|
|
4847
|
+
exports.CreateQueryLoggingConfigResponse$ = CreateQueryLoggingConfigResponse$;
|
|
4848
|
+
exports.CreateReusableDelegationSet$ = CreateReusableDelegationSet$;
|
|
1496
4849
|
exports.CreateReusableDelegationSetCommand = CreateReusableDelegationSetCommand;
|
|
4850
|
+
exports.CreateReusableDelegationSetRequest$ = CreateReusableDelegationSetRequest$;
|
|
4851
|
+
exports.CreateReusableDelegationSetResponse$ = CreateReusableDelegationSetResponse$;
|
|
4852
|
+
exports.CreateTrafficPolicy$ = CreateTrafficPolicy$;
|
|
1497
4853
|
exports.CreateTrafficPolicyCommand = CreateTrafficPolicyCommand;
|
|
4854
|
+
exports.CreateTrafficPolicyInstance$ = CreateTrafficPolicyInstance$;
|
|
1498
4855
|
exports.CreateTrafficPolicyInstanceCommand = CreateTrafficPolicyInstanceCommand;
|
|
4856
|
+
exports.CreateTrafficPolicyInstanceRequest$ = CreateTrafficPolicyInstanceRequest$;
|
|
4857
|
+
exports.CreateTrafficPolicyInstanceResponse$ = CreateTrafficPolicyInstanceResponse$;
|
|
4858
|
+
exports.CreateTrafficPolicyRequest$ = CreateTrafficPolicyRequest$;
|
|
4859
|
+
exports.CreateTrafficPolicyResponse$ = CreateTrafficPolicyResponse$;
|
|
4860
|
+
exports.CreateTrafficPolicyVersion$ = CreateTrafficPolicyVersion$;
|
|
1499
4861
|
exports.CreateTrafficPolicyVersionCommand = CreateTrafficPolicyVersionCommand;
|
|
4862
|
+
exports.CreateTrafficPolicyVersionRequest$ = CreateTrafficPolicyVersionRequest$;
|
|
4863
|
+
exports.CreateTrafficPolicyVersionResponse$ = CreateTrafficPolicyVersionResponse$;
|
|
4864
|
+
exports.CreateVPCAssociationAuthorization$ = CreateVPCAssociationAuthorization$;
|
|
1500
4865
|
exports.CreateVPCAssociationAuthorizationCommand = CreateVPCAssociationAuthorizationCommand;
|
|
4866
|
+
exports.CreateVPCAssociationAuthorizationRequest$ = CreateVPCAssociationAuthorizationRequest$;
|
|
4867
|
+
exports.CreateVPCAssociationAuthorizationResponse$ = CreateVPCAssociationAuthorizationResponse$;
|
|
4868
|
+
exports.DNSSECNotFound = DNSSECNotFound;
|
|
4869
|
+
exports.DNSSECNotFound$ = DNSSECNotFound$;
|
|
4870
|
+
exports.DNSSECStatus$ = DNSSECStatus$;
|
|
4871
|
+
exports.DeactivateKeySigningKey$ = DeactivateKeySigningKey$;
|
|
1501
4872
|
exports.DeactivateKeySigningKeyCommand = DeactivateKeySigningKeyCommand;
|
|
4873
|
+
exports.DeactivateKeySigningKeyRequest$ = DeactivateKeySigningKeyRequest$;
|
|
4874
|
+
exports.DeactivateKeySigningKeyResponse$ = DeactivateKeySigningKeyResponse$;
|
|
4875
|
+
exports.DelegationSet$ = DelegationSet$;
|
|
4876
|
+
exports.DelegationSetAlreadyCreated = DelegationSetAlreadyCreated;
|
|
4877
|
+
exports.DelegationSetAlreadyCreated$ = DelegationSetAlreadyCreated$;
|
|
4878
|
+
exports.DelegationSetAlreadyReusable = DelegationSetAlreadyReusable;
|
|
4879
|
+
exports.DelegationSetAlreadyReusable$ = DelegationSetAlreadyReusable$;
|
|
4880
|
+
exports.DelegationSetInUse = DelegationSetInUse;
|
|
4881
|
+
exports.DelegationSetInUse$ = DelegationSetInUse$;
|
|
4882
|
+
exports.DelegationSetNotAvailable = DelegationSetNotAvailable;
|
|
4883
|
+
exports.DelegationSetNotAvailable$ = DelegationSetNotAvailable$;
|
|
4884
|
+
exports.DelegationSetNotReusable = DelegationSetNotReusable;
|
|
4885
|
+
exports.DelegationSetNotReusable$ = DelegationSetNotReusable$;
|
|
4886
|
+
exports.DeleteCidrCollection$ = DeleteCidrCollection$;
|
|
1502
4887
|
exports.DeleteCidrCollectionCommand = DeleteCidrCollectionCommand;
|
|
4888
|
+
exports.DeleteCidrCollectionRequest$ = DeleteCidrCollectionRequest$;
|
|
4889
|
+
exports.DeleteCidrCollectionResponse$ = DeleteCidrCollectionResponse$;
|
|
4890
|
+
exports.DeleteHealthCheck$ = DeleteHealthCheck$;
|
|
1503
4891
|
exports.DeleteHealthCheckCommand = DeleteHealthCheckCommand;
|
|
4892
|
+
exports.DeleteHealthCheckRequest$ = DeleteHealthCheckRequest$;
|
|
4893
|
+
exports.DeleteHealthCheckResponse$ = DeleteHealthCheckResponse$;
|
|
4894
|
+
exports.DeleteHostedZone$ = DeleteHostedZone$;
|
|
1504
4895
|
exports.DeleteHostedZoneCommand = DeleteHostedZoneCommand;
|
|
4896
|
+
exports.DeleteHostedZoneRequest$ = DeleteHostedZoneRequest$;
|
|
4897
|
+
exports.DeleteHostedZoneResponse$ = DeleteHostedZoneResponse$;
|
|
4898
|
+
exports.DeleteKeySigningKey$ = DeleteKeySigningKey$;
|
|
1505
4899
|
exports.DeleteKeySigningKeyCommand = DeleteKeySigningKeyCommand;
|
|
4900
|
+
exports.DeleteKeySigningKeyRequest$ = DeleteKeySigningKeyRequest$;
|
|
4901
|
+
exports.DeleteKeySigningKeyResponse$ = DeleteKeySigningKeyResponse$;
|
|
4902
|
+
exports.DeleteQueryLoggingConfig$ = DeleteQueryLoggingConfig$;
|
|
1506
4903
|
exports.DeleteQueryLoggingConfigCommand = DeleteQueryLoggingConfigCommand;
|
|
4904
|
+
exports.DeleteQueryLoggingConfigRequest$ = DeleteQueryLoggingConfigRequest$;
|
|
4905
|
+
exports.DeleteQueryLoggingConfigResponse$ = DeleteQueryLoggingConfigResponse$;
|
|
4906
|
+
exports.DeleteReusableDelegationSet$ = DeleteReusableDelegationSet$;
|
|
1507
4907
|
exports.DeleteReusableDelegationSetCommand = DeleteReusableDelegationSetCommand;
|
|
4908
|
+
exports.DeleteReusableDelegationSetRequest$ = DeleteReusableDelegationSetRequest$;
|
|
4909
|
+
exports.DeleteReusableDelegationSetResponse$ = DeleteReusableDelegationSetResponse$;
|
|
4910
|
+
exports.DeleteTrafficPolicy$ = DeleteTrafficPolicy$;
|
|
1508
4911
|
exports.DeleteTrafficPolicyCommand = DeleteTrafficPolicyCommand;
|
|
4912
|
+
exports.DeleteTrafficPolicyInstance$ = DeleteTrafficPolicyInstance$;
|
|
1509
4913
|
exports.DeleteTrafficPolicyInstanceCommand = DeleteTrafficPolicyInstanceCommand;
|
|
4914
|
+
exports.DeleteTrafficPolicyInstanceRequest$ = DeleteTrafficPolicyInstanceRequest$;
|
|
4915
|
+
exports.DeleteTrafficPolicyInstanceResponse$ = DeleteTrafficPolicyInstanceResponse$;
|
|
4916
|
+
exports.DeleteTrafficPolicyRequest$ = DeleteTrafficPolicyRequest$;
|
|
4917
|
+
exports.DeleteTrafficPolicyResponse$ = DeleteTrafficPolicyResponse$;
|
|
4918
|
+
exports.DeleteVPCAssociationAuthorization$ = DeleteVPCAssociationAuthorization$;
|
|
1510
4919
|
exports.DeleteVPCAssociationAuthorizationCommand = DeleteVPCAssociationAuthorizationCommand;
|
|
4920
|
+
exports.DeleteVPCAssociationAuthorizationRequest$ = DeleteVPCAssociationAuthorizationRequest$;
|
|
4921
|
+
exports.DeleteVPCAssociationAuthorizationResponse$ = DeleteVPCAssociationAuthorizationResponse$;
|
|
4922
|
+
exports.Dimension$ = Dimension$;
|
|
4923
|
+
exports.DisableHostedZoneDNSSEC$ = DisableHostedZoneDNSSEC$;
|
|
1511
4924
|
exports.DisableHostedZoneDNSSECCommand = DisableHostedZoneDNSSECCommand;
|
|
4925
|
+
exports.DisableHostedZoneDNSSECRequest$ = DisableHostedZoneDNSSECRequest$;
|
|
4926
|
+
exports.DisableHostedZoneDNSSECResponse$ = DisableHostedZoneDNSSECResponse$;
|
|
4927
|
+
exports.DisassociateVPCFromHostedZone$ = DisassociateVPCFromHostedZone$;
|
|
1512
4928
|
exports.DisassociateVPCFromHostedZoneCommand = DisassociateVPCFromHostedZoneCommand;
|
|
4929
|
+
exports.DisassociateVPCFromHostedZoneRequest$ = DisassociateVPCFromHostedZoneRequest$;
|
|
4930
|
+
exports.DisassociateVPCFromHostedZoneResponse$ = DisassociateVPCFromHostedZoneResponse$;
|
|
4931
|
+
exports.EnableHostedZoneDNSSEC$ = EnableHostedZoneDNSSEC$;
|
|
1513
4932
|
exports.EnableHostedZoneDNSSECCommand = EnableHostedZoneDNSSECCommand;
|
|
4933
|
+
exports.EnableHostedZoneDNSSECRequest$ = EnableHostedZoneDNSSECRequest$;
|
|
4934
|
+
exports.EnableHostedZoneDNSSECResponse$ = EnableHostedZoneDNSSECResponse$;
|
|
4935
|
+
exports.GeoLocation$ = GeoLocation$;
|
|
4936
|
+
exports.GeoLocationDetails$ = GeoLocationDetails$;
|
|
4937
|
+
exports.GeoProximityLocation$ = GeoProximityLocation$;
|
|
4938
|
+
exports.GetAccountLimit$ = GetAccountLimit$;
|
|
1514
4939
|
exports.GetAccountLimitCommand = GetAccountLimitCommand;
|
|
4940
|
+
exports.GetAccountLimitRequest$ = GetAccountLimitRequest$;
|
|
4941
|
+
exports.GetAccountLimitResponse$ = GetAccountLimitResponse$;
|
|
4942
|
+
exports.GetChange$ = GetChange$;
|
|
1515
4943
|
exports.GetChangeCommand = GetChangeCommand;
|
|
4944
|
+
exports.GetChangeRequest$ = GetChangeRequest$;
|
|
4945
|
+
exports.GetChangeResponse$ = GetChangeResponse$;
|
|
4946
|
+
exports.GetCheckerIpRanges$ = GetCheckerIpRanges$;
|
|
1516
4947
|
exports.GetCheckerIpRangesCommand = GetCheckerIpRangesCommand;
|
|
4948
|
+
exports.GetCheckerIpRangesRequest$ = GetCheckerIpRangesRequest$;
|
|
4949
|
+
exports.GetCheckerIpRangesResponse$ = GetCheckerIpRangesResponse$;
|
|
4950
|
+
exports.GetDNSSEC$ = GetDNSSEC$;
|
|
1517
4951
|
exports.GetDNSSECCommand = GetDNSSECCommand;
|
|
4952
|
+
exports.GetDNSSECRequest$ = GetDNSSECRequest$;
|
|
4953
|
+
exports.GetDNSSECResponse$ = GetDNSSECResponse$;
|
|
4954
|
+
exports.GetGeoLocation$ = GetGeoLocation$;
|
|
1518
4955
|
exports.GetGeoLocationCommand = GetGeoLocationCommand;
|
|
4956
|
+
exports.GetGeoLocationRequest$ = GetGeoLocationRequest$;
|
|
4957
|
+
exports.GetGeoLocationResponse$ = GetGeoLocationResponse$;
|
|
4958
|
+
exports.GetHealthCheck$ = GetHealthCheck$;
|
|
1519
4959
|
exports.GetHealthCheckCommand = GetHealthCheckCommand;
|
|
4960
|
+
exports.GetHealthCheckCount$ = GetHealthCheckCount$;
|
|
1520
4961
|
exports.GetHealthCheckCountCommand = GetHealthCheckCountCommand;
|
|
4962
|
+
exports.GetHealthCheckCountRequest$ = GetHealthCheckCountRequest$;
|
|
4963
|
+
exports.GetHealthCheckCountResponse$ = GetHealthCheckCountResponse$;
|
|
4964
|
+
exports.GetHealthCheckLastFailureReason$ = GetHealthCheckLastFailureReason$;
|
|
1521
4965
|
exports.GetHealthCheckLastFailureReasonCommand = GetHealthCheckLastFailureReasonCommand;
|
|
4966
|
+
exports.GetHealthCheckLastFailureReasonRequest$ = GetHealthCheckLastFailureReasonRequest$;
|
|
4967
|
+
exports.GetHealthCheckLastFailureReasonResponse$ = GetHealthCheckLastFailureReasonResponse$;
|
|
4968
|
+
exports.GetHealthCheckRequest$ = GetHealthCheckRequest$;
|
|
4969
|
+
exports.GetHealthCheckResponse$ = GetHealthCheckResponse$;
|
|
4970
|
+
exports.GetHealthCheckStatus$ = GetHealthCheckStatus$;
|
|
1522
4971
|
exports.GetHealthCheckStatusCommand = GetHealthCheckStatusCommand;
|
|
4972
|
+
exports.GetHealthCheckStatusRequest$ = GetHealthCheckStatusRequest$;
|
|
4973
|
+
exports.GetHealthCheckStatusResponse$ = GetHealthCheckStatusResponse$;
|
|
4974
|
+
exports.GetHostedZone$ = GetHostedZone$;
|
|
1523
4975
|
exports.GetHostedZoneCommand = GetHostedZoneCommand;
|
|
4976
|
+
exports.GetHostedZoneCount$ = GetHostedZoneCount$;
|
|
1524
4977
|
exports.GetHostedZoneCountCommand = GetHostedZoneCountCommand;
|
|
4978
|
+
exports.GetHostedZoneCountRequest$ = GetHostedZoneCountRequest$;
|
|
4979
|
+
exports.GetHostedZoneCountResponse$ = GetHostedZoneCountResponse$;
|
|
4980
|
+
exports.GetHostedZoneLimit$ = GetHostedZoneLimit$;
|
|
1525
4981
|
exports.GetHostedZoneLimitCommand = GetHostedZoneLimitCommand;
|
|
4982
|
+
exports.GetHostedZoneLimitRequest$ = GetHostedZoneLimitRequest$;
|
|
4983
|
+
exports.GetHostedZoneLimitResponse$ = GetHostedZoneLimitResponse$;
|
|
4984
|
+
exports.GetHostedZoneRequest$ = GetHostedZoneRequest$;
|
|
4985
|
+
exports.GetHostedZoneResponse$ = GetHostedZoneResponse$;
|
|
4986
|
+
exports.GetQueryLoggingConfig$ = GetQueryLoggingConfig$;
|
|
1526
4987
|
exports.GetQueryLoggingConfigCommand = GetQueryLoggingConfigCommand;
|
|
4988
|
+
exports.GetQueryLoggingConfigRequest$ = GetQueryLoggingConfigRequest$;
|
|
4989
|
+
exports.GetQueryLoggingConfigResponse$ = GetQueryLoggingConfigResponse$;
|
|
4990
|
+
exports.GetReusableDelegationSet$ = GetReusableDelegationSet$;
|
|
1527
4991
|
exports.GetReusableDelegationSetCommand = GetReusableDelegationSetCommand;
|
|
4992
|
+
exports.GetReusableDelegationSetLimit$ = GetReusableDelegationSetLimit$;
|
|
1528
4993
|
exports.GetReusableDelegationSetLimitCommand = GetReusableDelegationSetLimitCommand;
|
|
4994
|
+
exports.GetReusableDelegationSetLimitRequest$ = GetReusableDelegationSetLimitRequest$;
|
|
4995
|
+
exports.GetReusableDelegationSetLimitResponse$ = GetReusableDelegationSetLimitResponse$;
|
|
4996
|
+
exports.GetReusableDelegationSetRequest$ = GetReusableDelegationSetRequest$;
|
|
4997
|
+
exports.GetReusableDelegationSetResponse$ = GetReusableDelegationSetResponse$;
|
|
4998
|
+
exports.GetTrafficPolicy$ = GetTrafficPolicy$;
|
|
1529
4999
|
exports.GetTrafficPolicyCommand = GetTrafficPolicyCommand;
|
|
5000
|
+
exports.GetTrafficPolicyInstance$ = GetTrafficPolicyInstance$;
|
|
1530
5001
|
exports.GetTrafficPolicyInstanceCommand = GetTrafficPolicyInstanceCommand;
|
|
5002
|
+
exports.GetTrafficPolicyInstanceCount$ = GetTrafficPolicyInstanceCount$;
|
|
1531
5003
|
exports.GetTrafficPolicyInstanceCountCommand = GetTrafficPolicyInstanceCountCommand;
|
|
5004
|
+
exports.GetTrafficPolicyInstanceCountRequest$ = GetTrafficPolicyInstanceCountRequest$;
|
|
5005
|
+
exports.GetTrafficPolicyInstanceCountResponse$ = GetTrafficPolicyInstanceCountResponse$;
|
|
5006
|
+
exports.GetTrafficPolicyInstanceRequest$ = GetTrafficPolicyInstanceRequest$;
|
|
5007
|
+
exports.GetTrafficPolicyInstanceResponse$ = GetTrafficPolicyInstanceResponse$;
|
|
5008
|
+
exports.GetTrafficPolicyRequest$ = GetTrafficPolicyRequest$;
|
|
5009
|
+
exports.GetTrafficPolicyResponse$ = GetTrafficPolicyResponse$;
|
|
5010
|
+
exports.HealthCheck$ = HealthCheck$;
|
|
5011
|
+
exports.HealthCheckAlreadyExists = HealthCheckAlreadyExists;
|
|
5012
|
+
exports.HealthCheckAlreadyExists$ = HealthCheckAlreadyExists$;
|
|
5013
|
+
exports.HealthCheckConfig$ = HealthCheckConfig$;
|
|
5014
|
+
exports.HealthCheckInUse = HealthCheckInUse;
|
|
5015
|
+
exports.HealthCheckInUse$ = HealthCheckInUse$;
|
|
5016
|
+
exports.HealthCheckObservation$ = HealthCheckObservation$;
|
|
1532
5017
|
exports.HealthCheckRegion = HealthCheckRegion;
|
|
1533
5018
|
exports.HealthCheckType = HealthCheckType;
|
|
5019
|
+
exports.HealthCheckVersionMismatch = HealthCheckVersionMismatch;
|
|
5020
|
+
exports.HealthCheckVersionMismatch$ = HealthCheckVersionMismatch$;
|
|
5021
|
+
exports.HostedZone$ = HostedZone$;
|
|
5022
|
+
exports.HostedZoneAlreadyExists = HostedZoneAlreadyExists;
|
|
5023
|
+
exports.HostedZoneAlreadyExists$ = HostedZoneAlreadyExists$;
|
|
5024
|
+
exports.HostedZoneConfig$ = HostedZoneConfig$;
|
|
5025
|
+
exports.HostedZoneFailureReasons$ = HostedZoneFailureReasons$;
|
|
5026
|
+
exports.HostedZoneFeatures$ = HostedZoneFeatures$;
|
|
5027
|
+
exports.HostedZoneLimit$ = HostedZoneLimit$;
|
|
1534
5028
|
exports.HostedZoneLimitType = HostedZoneLimitType;
|
|
5029
|
+
exports.HostedZoneNotEmpty = HostedZoneNotEmpty;
|
|
5030
|
+
exports.HostedZoneNotEmpty$ = HostedZoneNotEmpty$;
|
|
5031
|
+
exports.HostedZoneNotFound = HostedZoneNotFound;
|
|
5032
|
+
exports.HostedZoneNotFound$ = HostedZoneNotFound$;
|
|
5033
|
+
exports.HostedZoneNotPrivate = HostedZoneNotPrivate;
|
|
5034
|
+
exports.HostedZoneNotPrivate$ = HostedZoneNotPrivate$;
|
|
5035
|
+
exports.HostedZoneOwner$ = HostedZoneOwner$;
|
|
5036
|
+
exports.HostedZonePartiallyDelegated = HostedZonePartiallyDelegated;
|
|
5037
|
+
exports.HostedZonePartiallyDelegated$ = HostedZonePartiallyDelegated$;
|
|
5038
|
+
exports.HostedZoneSummary$ = HostedZoneSummary$;
|
|
1535
5039
|
exports.HostedZoneType = HostedZoneType;
|
|
5040
|
+
exports.IncompatibleVersion = IncompatibleVersion;
|
|
5041
|
+
exports.IncompatibleVersion$ = IncompatibleVersion$;
|
|
5042
|
+
exports.InsufficientCloudWatchLogsResourcePolicy = InsufficientCloudWatchLogsResourcePolicy;
|
|
5043
|
+
exports.InsufficientCloudWatchLogsResourcePolicy$ = InsufficientCloudWatchLogsResourcePolicy$;
|
|
1536
5044
|
exports.InsufficientDataHealthStatus = InsufficientDataHealthStatus;
|
|
5045
|
+
exports.InvalidArgument = InvalidArgument;
|
|
5046
|
+
exports.InvalidArgument$ = InvalidArgument$;
|
|
5047
|
+
exports.InvalidChangeBatch = InvalidChangeBatch;
|
|
5048
|
+
exports.InvalidChangeBatch$ = InvalidChangeBatch$;
|
|
5049
|
+
exports.InvalidDomainName = InvalidDomainName;
|
|
5050
|
+
exports.InvalidDomainName$ = InvalidDomainName$;
|
|
5051
|
+
exports.InvalidInput = InvalidInput;
|
|
5052
|
+
exports.InvalidInput$ = InvalidInput$;
|
|
5053
|
+
exports.InvalidKMSArn = InvalidKMSArn;
|
|
5054
|
+
exports.InvalidKMSArn$ = InvalidKMSArn$;
|
|
5055
|
+
exports.InvalidKeySigningKeyName = InvalidKeySigningKeyName;
|
|
5056
|
+
exports.InvalidKeySigningKeyName$ = InvalidKeySigningKeyName$;
|
|
5057
|
+
exports.InvalidKeySigningKeyStatus = InvalidKeySigningKeyStatus;
|
|
5058
|
+
exports.InvalidKeySigningKeyStatus$ = InvalidKeySigningKeyStatus$;
|
|
5059
|
+
exports.InvalidPaginationToken = InvalidPaginationToken;
|
|
5060
|
+
exports.InvalidPaginationToken$ = InvalidPaginationToken$;
|
|
5061
|
+
exports.InvalidSigningStatus = InvalidSigningStatus;
|
|
5062
|
+
exports.InvalidSigningStatus$ = InvalidSigningStatus$;
|
|
5063
|
+
exports.InvalidTrafficPolicyDocument = InvalidTrafficPolicyDocument;
|
|
5064
|
+
exports.InvalidTrafficPolicyDocument$ = InvalidTrafficPolicyDocument$;
|
|
5065
|
+
exports.InvalidVPCId = InvalidVPCId;
|
|
5066
|
+
exports.InvalidVPCId$ = InvalidVPCId$;
|
|
5067
|
+
exports.KeySigningKey$ = KeySigningKey$;
|
|
5068
|
+
exports.KeySigningKeyAlreadyExists = KeySigningKeyAlreadyExists;
|
|
5069
|
+
exports.KeySigningKeyAlreadyExists$ = KeySigningKeyAlreadyExists$;
|
|
5070
|
+
exports.KeySigningKeyInParentDSRecord = KeySigningKeyInParentDSRecord;
|
|
5071
|
+
exports.KeySigningKeyInParentDSRecord$ = KeySigningKeyInParentDSRecord$;
|
|
5072
|
+
exports.KeySigningKeyInUse = KeySigningKeyInUse;
|
|
5073
|
+
exports.KeySigningKeyInUse$ = KeySigningKeyInUse$;
|
|
5074
|
+
exports.KeySigningKeyWithActiveStatusNotFound = KeySigningKeyWithActiveStatusNotFound;
|
|
5075
|
+
exports.KeySigningKeyWithActiveStatusNotFound$ = KeySigningKeyWithActiveStatusNotFound$;
|
|
5076
|
+
exports.LastVPCAssociation = LastVPCAssociation;
|
|
5077
|
+
exports.LastVPCAssociation$ = LastVPCAssociation$;
|
|
5078
|
+
exports.LimitsExceeded = LimitsExceeded;
|
|
5079
|
+
exports.LimitsExceeded$ = LimitsExceeded$;
|
|
5080
|
+
exports.LinkedService$ = LinkedService$;
|
|
5081
|
+
exports.ListCidrBlocks$ = ListCidrBlocks$;
|
|
1537
5082
|
exports.ListCidrBlocksCommand = ListCidrBlocksCommand;
|
|
5083
|
+
exports.ListCidrBlocksRequest$ = ListCidrBlocksRequest$;
|
|
5084
|
+
exports.ListCidrBlocksResponse$ = ListCidrBlocksResponse$;
|
|
5085
|
+
exports.ListCidrCollections$ = ListCidrCollections$;
|
|
1538
5086
|
exports.ListCidrCollectionsCommand = ListCidrCollectionsCommand;
|
|
5087
|
+
exports.ListCidrCollectionsRequest$ = ListCidrCollectionsRequest$;
|
|
5088
|
+
exports.ListCidrCollectionsResponse$ = ListCidrCollectionsResponse$;
|
|
5089
|
+
exports.ListCidrLocations$ = ListCidrLocations$;
|
|
1539
5090
|
exports.ListCidrLocationsCommand = ListCidrLocationsCommand;
|
|
5091
|
+
exports.ListCidrLocationsRequest$ = ListCidrLocationsRequest$;
|
|
5092
|
+
exports.ListCidrLocationsResponse$ = ListCidrLocationsResponse$;
|
|
5093
|
+
exports.ListGeoLocations$ = ListGeoLocations$;
|
|
1540
5094
|
exports.ListGeoLocationsCommand = ListGeoLocationsCommand;
|
|
5095
|
+
exports.ListGeoLocationsRequest$ = ListGeoLocationsRequest$;
|
|
5096
|
+
exports.ListGeoLocationsResponse$ = ListGeoLocationsResponse$;
|
|
5097
|
+
exports.ListHealthChecks$ = ListHealthChecks$;
|
|
1541
5098
|
exports.ListHealthChecksCommand = ListHealthChecksCommand;
|
|
5099
|
+
exports.ListHealthChecksRequest$ = ListHealthChecksRequest$;
|
|
5100
|
+
exports.ListHealthChecksResponse$ = ListHealthChecksResponse$;
|
|
5101
|
+
exports.ListHostedZones$ = ListHostedZones$;
|
|
5102
|
+
exports.ListHostedZonesByName$ = ListHostedZonesByName$;
|
|
1542
5103
|
exports.ListHostedZonesByNameCommand = ListHostedZonesByNameCommand;
|
|
5104
|
+
exports.ListHostedZonesByNameRequest$ = ListHostedZonesByNameRequest$;
|
|
5105
|
+
exports.ListHostedZonesByNameResponse$ = ListHostedZonesByNameResponse$;
|
|
5106
|
+
exports.ListHostedZonesByVPC$ = ListHostedZonesByVPC$;
|
|
1543
5107
|
exports.ListHostedZonesByVPCCommand = ListHostedZonesByVPCCommand;
|
|
5108
|
+
exports.ListHostedZonesByVPCRequest$ = ListHostedZonesByVPCRequest$;
|
|
5109
|
+
exports.ListHostedZonesByVPCResponse$ = ListHostedZonesByVPCResponse$;
|
|
1544
5110
|
exports.ListHostedZonesCommand = ListHostedZonesCommand;
|
|
5111
|
+
exports.ListHostedZonesRequest$ = ListHostedZonesRequest$;
|
|
5112
|
+
exports.ListHostedZonesResponse$ = ListHostedZonesResponse$;
|
|
5113
|
+
exports.ListQueryLoggingConfigs$ = ListQueryLoggingConfigs$;
|
|
1545
5114
|
exports.ListQueryLoggingConfigsCommand = ListQueryLoggingConfigsCommand;
|
|
5115
|
+
exports.ListQueryLoggingConfigsRequest$ = ListQueryLoggingConfigsRequest$;
|
|
5116
|
+
exports.ListQueryLoggingConfigsResponse$ = ListQueryLoggingConfigsResponse$;
|
|
5117
|
+
exports.ListResourceRecordSets$ = ListResourceRecordSets$;
|
|
1546
5118
|
exports.ListResourceRecordSetsCommand = ListResourceRecordSetsCommand;
|
|
5119
|
+
exports.ListResourceRecordSetsRequest$ = ListResourceRecordSetsRequest$;
|
|
5120
|
+
exports.ListResourceRecordSetsResponse$ = ListResourceRecordSetsResponse$;
|
|
5121
|
+
exports.ListReusableDelegationSets$ = ListReusableDelegationSets$;
|
|
1547
5122
|
exports.ListReusableDelegationSetsCommand = ListReusableDelegationSetsCommand;
|
|
5123
|
+
exports.ListReusableDelegationSetsRequest$ = ListReusableDelegationSetsRequest$;
|
|
5124
|
+
exports.ListReusableDelegationSetsResponse$ = ListReusableDelegationSetsResponse$;
|
|
5125
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
1548
5126
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
5127
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
5128
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
5129
|
+
exports.ListTagsForResources$ = ListTagsForResources$;
|
|
1549
5130
|
exports.ListTagsForResourcesCommand = ListTagsForResourcesCommand;
|
|
5131
|
+
exports.ListTagsForResourcesRequest$ = ListTagsForResourcesRequest$;
|
|
5132
|
+
exports.ListTagsForResourcesResponse$ = ListTagsForResourcesResponse$;
|
|
5133
|
+
exports.ListTrafficPolicies$ = ListTrafficPolicies$;
|
|
1550
5134
|
exports.ListTrafficPoliciesCommand = ListTrafficPoliciesCommand;
|
|
5135
|
+
exports.ListTrafficPoliciesRequest$ = ListTrafficPoliciesRequest$;
|
|
5136
|
+
exports.ListTrafficPoliciesResponse$ = ListTrafficPoliciesResponse$;
|
|
5137
|
+
exports.ListTrafficPolicyInstances$ = ListTrafficPolicyInstances$;
|
|
5138
|
+
exports.ListTrafficPolicyInstancesByHostedZone$ = ListTrafficPolicyInstancesByHostedZone$;
|
|
1551
5139
|
exports.ListTrafficPolicyInstancesByHostedZoneCommand = ListTrafficPolicyInstancesByHostedZoneCommand;
|
|
5140
|
+
exports.ListTrafficPolicyInstancesByHostedZoneRequest$ = ListTrafficPolicyInstancesByHostedZoneRequest$;
|
|
5141
|
+
exports.ListTrafficPolicyInstancesByHostedZoneResponse$ = ListTrafficPolicyInstancesByHostedZoneResponse$;
|
|
5142
|
+
exports.ListTrafficPolicyInstancesByPolicy$ = ListTrafficPolicyInstancesByPolicy$;
|
|
1552
5143
|
exports.ListTrafficPolicyInstancesByPolicyCommand = ListTrafficPolicyInstancesByPolicyCommand;
|
|
5144
|
+
exports.ListTrafficPolicyInstancesByPolicyRequest$ = ListTrafficPolicyInstancesByPolicyRequest$;
|
|
5145
|
+
exports.ListTrafficPolicyInstancesByPolicyResponse$ = ListTrafficPolicyInstancesByPolicyResponse$;
|
|
1553
5146
|
exports.ListTrafficPolicyInstancesCommand = ListTrafficPolicyInstancesCommand;
|
|
5147
|
+
exports.ListTrafficPolicyInstancesRequest$ = ListTrafficPolicyInstancesRequest$;
|
|
5148
|
+
exports.ListTrafficPolicyInstancesResponse$ = ListTrafficPolicyInstancesResponse$;
|
|
5149
|
+
exports.ListTrafficPolicyVersions$ = ListTrafficPolicyVersions$;
|
|
1554
5150
|
exports.ListTrafficPolicyVersionsCommand = ListTrafficPolicyVersionsCommand;
|
|
5151
|
+
exports.ListTrafficPolicyVersionsRequest$ = ListTrafficPolicyVersionsRequest$;
|
|
5152
|
+
exports.ListTrafficPolicyVersionsResponse$ = ListTrafficPolicyVersionsResponse$;
|
|
5153
|
+
exports.ListVPCAssociationAuthorizations$ = ListVPCAssociationAuthorizations$;
|
|
1555
5154
|
exports.ListVPCAssociationAuthorizationsCommand = ListVPCAssociationAuthorizationsCommand;
|
|
5155
|
+
exports.ListVPCAssociationAuthorizationsRequest$ = ListVPCAssociationAuthorizationsRequest$;
|
|
5156
|
+
exports.ListVPCAssociationAuthorizationsResponse$ = ListVPCAssociationAuthorizationsResponse$;
|
|
5157
|
+
exports.LocationSummary$ = LocationSummary$;
|
|
5158
|
+
exports.NoSuchChange = NoSuchChange;
|
|
5159
|
+
exports.NoSuchChange$ = NoSuchChange$;
|
|
5160
|
+
exports.NoSuchCidrCollectionException = NoSuchCidrCollectionException;
|
|
5161
|
+
exports.NoSuchCidrCollectionException$ = NoSuchCidrCollectionException$;
|
|
5162
|
+
exports.NoSuchCidrLocationException = NoSuchCidrLocationException;
|
|
5163
|
+
exports.NoSuchCidrLocationException$ = NoSuchCidrLocationException$;
|
|
5164
|
+
exports.NoSuchCloudWatchLogsLogGroup = NoSuchCloudWatchLogsLogGroup;
|
|
5165
|
+
exports.NoSuchCloudWatchLogsLogGroup$ = NoSuchCloudWatchLogsLogGroup$;
|
|
5166
|
+
exports.NoSuchDelegationSet = NoSuchDelegationSet;
|
|
5167
|
+
exports.NoSuchDelegationSet$ = NoSuchDelegationSet$;
|
|
5168
|
+
exports.NoSuchGeoLocation = NoSuchGeoLocation;
|
|
5169
|
+
exports.NoSuchGeoLocation$ = NoSuchGeoLocation$;
|
|
5170
|
+
exports.NoSuchHealthCheck = NoSuchHealthCheck;
|
|
5171
|
+
exports.NoSuchHealthCheck$ = NoSuchHealthCheck$;
|
|
5172
|
+
exports.NoSuchHostedZone = NoSuchHostedZone;
|
|
5173
|
+
exports.NoSuchHostedZone$ = NoSuchHostedZone$;
|
|
5174
|
+
exports.NoSuchKeySigningKey = NoSuchKeySigningKey;
|
|
5175
|
+
exports.NoSuchKeySigningKey$ = NoSuchKeySigningKey$;
|
|
5176
|
+
exports.NoSuchQueryLoggingConfig = NoSuchQueryLoggingConfig;
|
|
5177
|
+
exports.NoSuchQueryLoggingConfig$ = NoSuchQueryLoggingConfig$;
|
|
5178
|
+
exports.NoSuchTrafficPolicy = NoSuchTrafficPolicy;
|
|
5179
|
+
exports.NoSuchTrafficPolicy$ = NoSuchTrafficPolicy$;
|
|
5180
|
+
exports.NoSuchTrafficPolicyInstance = NoSuchTrafficPolicyInstance;
|
|
5181
|
+
exports.NoSuchTrafficPolicyInstance$ = NoSuchTrafficPolicyInstance$;
|
|
5182
|
+
exports.NotAuthorizedException = NotAuthorizedException;
|
|
5183
|
+
exports.NotAuthorizedException$ = NotAuthorizedException$;
|
|
5184
|
+
exports.PriorRequestNotComplete = PriorRequestNotComplete;
|
|
5185
|
+
exports.PriorRequestNotComplete$ = PriorRequestNotComplete$;
|
|
5186
|
+
exports.PublicZoneVPCAssociation = PublicZoneVPCAssociation;
|
|
5187
|
+
exports.PublicZoneVPCAssociation$ = PublicZoneVPCAssociation$;
|
|
5188
|
+
exports.QueryLoggingConfig$ = QueryLoggingConfig$;
|
|
5189
|
+
exports.QueryLoggingConfigAlreadyExists = QueryLoggingConfigAlreadyExists;
|
|
5190
|
+
exports.QueryLoggingConfigAlreadyExists$ = QueryLoggingConfigAlreadyExists$;
|
|
1556
5191
|
exports.RRType = RRType;
|
|
1557
5192
|
exports.ResettableElementName = ResettableElementName;
|
|
5193
|
+
exports.ResourceRecord$ = ResourceRecord$;
|
|
5194
|
+
exports.ResourceRecordSet$ = ResourceRecordSet$;
|
|
1558
5195
|
exports.ResourceRecordSetFailover = ResourceRecordSetFailover;
|
|
1559
5196
|
exports.ResourceRecordSetRegion = ResourceRecordSetRegion;
|
|
5197
|
+
exports.ResourceTagSet$ = ResourceTagSet$;
|
|
5198
|
+
exports.ReusableDelegationSetLimit$ = ReusableDelegationSetLimit$;
|
|
1560
5199
|
exports.ReusableDelegationSetLimitType = ReusableDelegationSetLimitType;
|
|
1561
5200
|
exports.Route53 = Route53;
|
|
1562
5201
|
exports.Route53Client = Route53Client;
|
|
5202
|
+
exports.Route53ServiceException = Route53ServiceException;
|
|
5203
|
+
exports.Route53ServiceException$ = Route53ServiceException$;
|
|
1563
5204
|
exports.Statistic = Statistic;
|
|
5205
|
+
exports.StatusReport$ = StatusReport$;
|
|
5206
|
+
exports.Tag$ = Tag$;
|
|
1564
5207
|
exports.TagResourceType = TagResourceType;
|
|
5208
|
+
exports.TestDNSAnswer$ = TestDNSAnswer$;
|
|
1565
5209
|
exports.TestDNSAnswerCommand = TestDNSAnswerCommand;
|
|
5210
|
+
exports.TestDNSAnswerRequest$ = TestDNSAnswerRequest$;
|
|
5211
|
+
exports.TestDNSAnswerResponse$ = TestDNSAnswerResponse$;
|
|
5212
|
+
exports.ThrottlingException = ThrottlingException;
|
|
5213
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
5214
|
+
exports.TooManyHealthChecks = TooManyHealthChecks;
|
|
5215
|
+
exports.TooManyHealthChecks$ = TooManyHealthChecks$;
|
|
5216
|
+
exports.TooManyHostedZones = TooManyHostedZones;
|
|
5217
|
+
exports.TooManyHostedZones$ = TooManyHostedZones$;
|
|
5218
|
+
exports.TooManyKeySigningKeys = TooManyKeySigningKeys;
|
|
5219
|
+
exports.TooManyKeySigningKeys$ = TooManyKeySigningKeys$;
|
|
5220
|
+
exports.TooManyTrafficPolicies = TooManyTrafficPolicies;
|
|
5221
|
+
exports.TooManyTrafficPolicies$ = TooManyTrafficPolicies$;
|
|
5222
|
+
exports.TooManyTrafficPolicyInstances = TooManyTrafficPolicyInstances;
|
|
5223
|
+
exports.TooManyTrafficPolicyInstances$ = TooManyTrafficPolicyInstances$;
|
|
5224
|
+
exports.TooManyTrafficPolicyVersionsForCurrentPolicy = TooManyTrafficPolicyVersionsForCurrentPolicy;
|
|
5225
|
+
exports.TooManyTrafficPolicyVersionsForCurrentPolicy$ = TooManyTrafficPolicyVersionsForCurrentPolicy$;
|
|
5226
|
+
exports.TooManyVPCAssociationAuthorizations = TooManyVPCAssociationAuthorizations;
|
|
5227
|
+
exports.TooManyVPCAssociationAuthorizations$ = TooManyVPCAssociationAuthorizations$;
|
|
5228
|
+
exports.TrafficPolicy$ = TrafficPolicy$;
|
|
5229
|
+
exports.TrafficPolicyAlreadyExists = TrafficPolicyAlreadyExists;
|
|
5230
|
+
exports.TrafficPolicyAlreadyExists$ = TrafficPolicyAlreadyExists$;
|
|
5231
|
+
exports.TrafficPolicyInUse = TrafficPolicyInUse;
|
|
5232
|
+
exports.TrafficPolicyInUse$ = TrafficPolicyInUse$;
|
|
5233
|
+
exports.TrafficPolicyInstance$ = TrafficPolicyInstance$;
|
|
5234
|
+
exports.TrafficPolicyInstanceAlreadyExists = TrafficPolicyInstanceAlreadyExists;
|
|
5235
|
+
exports.TrafficPolicyInstanceAlreadyExists$ = TrafficPolicyInstanceAlreadyExists$;
|
|
5236
|
+
exports.TrafficPolicySummary$ = TrafficPolicySummary$;
|
|
5237
|
+
exports.UpdateHealthCheck$ = UpdateHealthCheck$;
|
|
1566
5238
|
exports.UpdateHealthCheckCommand = UpdateHealthCheckCommand;
|
|
5239
|
+
exports.UpdateHealthCheckRequest$ = UpdateHealthCheckRequest$;
|
|
5240
|
+
exports.UpdateHealthCheckResponse$ = UpdateHealthCheckResponse$;
|
|
5241
|
+
exports.UpdateHostedZoneComment$ = UpdateHostedZoneComment$;
|
|
1567
5242
|
exports.UpdateHostedZoneCommentCommand = UpdateHostedZoneCommentCommand;
|
|
5243
|
+
exports.UpdateHostedZoneCommentRequest$ = UpdateHostedZoneCommentRequest$;
|
|
5244
|
+
exports.UpdateHostedZoneCommentResponse$ = UpdateHostedZoneCommentResponse$;
|
|
5245
|
+
exports.UpdateHostedZoneFeatures$ = UpdateHostedZoneFeatures$;
|
|
1568
5246
|
exports.UpdateHostedZoneFeaturesCommand = UpdateHostedZoneFeaturesCommand;
|
|
5247
|
+
exports.UpdateHostedZoneFeaturesRequest$ = UpdateHostedZoneFeaturesRequest$;
|
|
5248
|
+
exports.UpdateHostedZoneFeaturesResponse$ = UpdateHostedZoneFeaturesResponse$;
|
|
5249
|
+
exports.UpdateTrafficPolicyComment$ = UpdateTrafficPolicyComment$;
|
|
1569
5250
|
exports.UpdateTrafficPolicyCommentCommand = UpdateTrafficPolicyCommentCommand;
|
|
5251
|
+
exports.UpdateTrafficPolicyCommentRequest$ = UpdateTrafficPolicyCommentRequest$;
|
|
5252
|
+
exports.UpdateTrafficPolicyCommentResponse$ = UpdateTrafficPolicyCommentResponse$;
|
|
5253
|
+
exports.UpdateTrafficPolicyInstance$ = UpdateTrafficPolicyInstance$;
|
|
1570
5254
|
exports.UpdateTrafficPolicyInstanceCommand = UpdateTrafficPolicyInstanceCommand;
|
|
5255
|
+
exports.UpdateTrafficPolicyInstanceRequest$ = UpdateTrafficPolicyInstanceRequest$;
|
|
5256
|
+
exports.UpdateTrafficPolicyInstanceResponse$ = UpdateTrafficPolicyInstanceResponse$;
|
|
5257
|
+
exports.VPC$ = VPC$;
|
|
5258
|
+
exports.VPCAssociationAuthorizationNotFound = VPCAssociationAuthorizationNotFound;
|
|
5259
|
+
exports.VPCAssociationAuthorizationNotFound$ = VPCAssociationAuthorizationNotFound$;
|
|
5260
|
+
exports.VPCAssociationNotFound = VPCAssociationNotFound;
|
|
5261
|
+
exports.VPCAssociationNotFound$ = VPCAssociationNotFound$;
|
|
1571
5262
|
exports.VPCRegion = VPCRegion;
|
|
5263
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
1572
5264
|
exports.paginateListCidrBlocks = paginateListCidrBlocks;
|
|
1573
5265
|
exports.paginateListCidrCollections = paginateListCidrCollections;
|
|
1574
5266
|
exports.paginateListCidrLocations = paginateListCidrLocations;
|