@aws-sdk/client-config-service 3.1075.0 → 3.1077.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 +4407 -15
- package/dist-es/runtimeConfig.browser.js +0 -2
- package/dist-es/runtimeConfig.js +1 -2
- package/dist-es/runtimeConfig.native.js +0 -2
- package/dist-es/runtimeConfig.shared.js +2 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.native.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +1 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
- package/package.json +8 -10
- package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
- package/dist-cjs/endpoint/bdd.js +0 -49
- package/dist-cjs/endpoint/endpointResolver.js +0 -14
- package/dist-cjs/models/ConfigServiceServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -673
- 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 -3428
package/dist-cjs/index.js
CHANGED
|
@@ -1,21 +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, createAggregatedClient } = require("@smithy/core/client");
|
|
3
|
+
const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createAggregatedClient } = require("@smithy/core/client");
|
|
5
4
|
exports.$Command = Command;
|
|
6
5
|
exports.__Client = Client;
|
|
7
|
-
const { resolveRegionConfig } = require("@smithy/core/config");
|
|
8
|
-
const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
9
|
-
const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
10
|
-
const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
11
|
-
const { getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
12
|
-
const {
|
|
13
|
-
const {
|
|
14
|
-
const {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
const {
|
|
18
|
-
|
|
6
|
+
const { resolveDefaultsModeConfig, loadConfig, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_REGION_CONFIG_FILE_OPTIONS, resolveRegionConfig } = require("@smithy/core/config");
|
|
7
|
+
const { BinaryDecisionDiagram, EndpointCache, decideEndpoint, customEndpointFunctions, resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
|
|
8
|
+
const { parseUrl, getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
|
|
9
|
+
const { DEFAULT_RETRY_MODE, NODE_RETRY_MODE_CONFIG_OPTIONS, NODE_MAX_ATTEMPT_CONFIG_OPTIONS, resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
|
|
10
|
+
const { TypeRegistry, getSchemaSerdePlugin } = require("@smithy/core/schema");
|
|
11
|
+
const { resolveAwsSdkSigV4Config, AwsSdkSigV4Signer, NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } = require("@aws-sdk/core/httpAuthSchemes");
|
|
12
|
+
const { defaultProvider } = require("@aws-sdk/credential-provider-node");
|
|
13
|
+
const { toUtf8, fromUtf8, toBase64, fromBase64, calculateBodyLength } = require("@smithy/core/serde");
|
|
14
|
+
const { streamCollector, NodeHttpHandler } = require("@smithy/node-http-handler");
|
|
15
|
+
const { AwsJson1_1Protocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultConfigServiceHttpAuthSchemeParametersProvider = 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: "config",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultConfigServiceHttpAuthSchemeProvider = (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
|
+
};
|
|
19
56
|
|
|
20
57
|
const resolveClientEndpointParameters = (options) => {
|
|
21
58
|
return Object.assign(options, {
|
|
@@ -31,6 +68,3864 @@ const commonParams = {
|
|
|
31
68
|
UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
|
|
32
69
|
};
|
|
33
70
|
|
|
71
|
+
var version = "3.1076.0";
|
|
72
|
+
var packageInfo = {
|
|
73
|
+
version: version};
|
|
74
|
+
|
|
75
|
+
const k = "ref";
|
|
76
|
+
const a = -1, b = true, c = "isSet", d = "PartitionResult", e = "booleanEquals", f = "getAttr", g = { [k]: "Endpoint" }, h = { [k]: d }, i = {}, j = [{ [k]: "Region" }];
|
|
77
|
+
const _data = {
|
|
78
|
+
conditions: [
|
|
79
|
+
[c, [g]],
|
|
80
|
+
[c, j],
|
|
81
|
+
["aws.partition", j, d],
|
|
82
|
+
[e, [{ [k]: "UseFIPS" }, b]],
|
|
83
|
+
[e, [{ [k]: "UseDualStack" }, b]],
|
|
84
|
+
[e, [{ fn: f, argv: [h, "supportsDualStack"] }, b]],
|
|
85
|
+
[e, [{ fn: f, argv: [h, "supportsFIPS"] }, b]],
|
|
86
|
+
["stringEquals", [{ fn: f, argv: [h, "name"] }, "aws-us-gov"]]
|
|
87
|
+
],
|
|
88
|
+
results: [
|
|
89
|
+
[a],
|
|
90
|
+
[a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
|
|
91
|
+
[a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
|
|
92
|
+
[g, i],
|
|
93
|
+
["https://config-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://config.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://config-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://config.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://config.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
101
|
+
[a, "Invalid Configuration: Missing Region"]
|
|
102
|
+
]
|
|
103
|
+
};
|
|
104
|
+
const root = 2;
|
|
105
|
+
const r = 100_000_000;
|
|
106
|
+
const nodes = new Int32Array([
|
|
107
|
+
-1, 1, -1,
|
|
108
|
+
0, 13, 3,
|
|
109
|
+
1, 4, r + 12,
|
|
110
|
+
2, 5, r + 12,
|
|
111
|
+
3, 8, 6,
|
|
112
|
+
4, 7, r + 11,
|
|
113
|
+
5, r + 9, r + 10,
|
|
114
|
+
4, 11, 9,
|
|
115
|
+
6, 10, r + 8,
|
|
116
|
+
7, r + 6, r + 7,
|
|
117
|
+
5, 12, r + 5,
|
|
118
|
+
6, r + 4, r + 5,
|
|
119
|
+
3, r + 1, 14,
|
|
120
|
+
4, r + 2, r + 3,
|
|
121
|
+
]);
|
|
122
|
+
const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
|
|
123
|
+
|
|
124
|
+
const cache = new EndpointCache({
|
|
125
|
+
size: 50,
|
|
126
|
+
params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
|
|
127
|
+
});
|
|
128
|
+
const defaultEndpointResolver = (endpointParams, context = {}) => {
|
|
129
|
+
return cache.get(endpointParams, () => decideEndpoint(bdd, {
|
|
130
|
+
endpointParams: endpointParams,
|
|
131
|
+
logger: context.logger,
|
|
132
|
+
}));
|
|
133
|
+
};
|
|
134
|
+
customEndpointFunctions.aws = awsEndpointFunctions;
|
|
135
|
+
|
|
136
|
+
class ConfigServiceServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, ConfigServiceServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class ConflictException extends ConfigServiceServiceException {
|
|
144
|
+
name = "ConflictException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "ConflictException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class NoSuchConfigurationRecorderException extends ConfigServiceServiceException {
|
|
156
|
+
name = "NoSuchConfigurationRecorderException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
constructor(opts) {
|
|
159
|
+
super({
|
|
160
|
+
name: "NoSuchConfigurationRecorderException",
|
|
161
|
+
$fault: "client",
|
|
162
|
+
...opts,
|
|
163
|
+
});
|
|
164
|
+
Object.setPrototypeOf(this, NoSuchConfigurationRecorderException.prototype);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
class ValidationException extends ConfigServiceServiceException {
|
|
168
|
+
name = "ValidationException";
|
|
169
|
+
$fault = "client";
|
|
170
|
+
constructor(opts) {
|
|
171
|
+
super({
|
|
172
|
+
name: "ValidationException",
|
|
173
|
+
$fault: "client",
|
|
174
|
+
...opts,
|
|
175
|
+
});
|
|
176
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
177
|
+
}
|
|
178
|
+
}
|
|
179
|
+
class NoSuchConfigurationAggregatorException extends ConfigServiceServiceException {
|
|
180
|
+
name = "NoSuchConfigurationAggregatorException";
|
|
181
|
+
$fault = "client";
|
|
182
|
+
constructor(opts) {
|
|
183
|
+
super({
|
|
184
|
+
name: "NoSuchConfigurationAggregatorException",
|
|
185
|
+
$fault: "client",
|
|
186
|
+
...opts,
|
|
187
|
+
});
|
|
188
|
+
Object.setPrototypeOf(this, NoSuchConfigurationAggregatorException.prototype);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
class NoAvailableConfigurationRecorderException extends ConfigServiceServiceException {
|
|
192
|
+
name = "NoAvailableConfigurationRecorderException";
|
|
193
|
+
$fault = "client";
|
|
194
|
+
constructor(opts) {
|
|
195
|
+
super({
|
|
196
|
+
name: "NoAvailableConfigurationRecorderException",
|
|
197
|
+
$fault: "client",
|
|
198
|
+
...opts,
|
|
199
|
+
});
|
|
200
|
+
Object.setPrototypeOf(this, NoAvailableConfigurationRecorderException.prototype);
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
class ConformancePackTemplateValidationException extends ConfigServiceServiceException {
|
|
204
|
+
name = "ConformancePackTemplateValidationException";
|
|
205
|
+
$fault = "client";
|
|
206
|
+
constructor(opts) {
|
|
207
|
+
super({
|
|
208
|
+
name: "ConformancePackTemplateValidationException",
|
|
209
|
+
$fault: "client",
|
|
210
|
+
...opts,
|
|
211
|
+
});
|
|
212
|
+
Object.setPrototypeOf(this, ConformancePackTemplateValidationException.prototype);
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
class InvalidParameterValueException extends ConfigServiceServiceException {
|
|
216
|
+
name = "InvalidParameterValueException";
|
|
217
|
+
$fault = "client";
|
|
218
|
+
constructor(opts) {
|
|
219
|
+
super({
|
|
220
|
+
name: "InvalidParameterValueException",
|
|
221
|
+
$fault: "client",
|
|
222
|
+
...opts,
|
|
223
|
+
});
|
|
224
|
+
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
class NoSuchConfigRuleException extends ConfigServiceServiceException {
|
|
228
|
+
name = "NoSuchConfigRuleException";
|
|
229
|
+
$fault = "client";
|
|
230
|
+
constructor(opts) {
|
|
231
|
+
super({
|
|
232
|
+
name: "NoSuchConfigRuleException",
|
|
233
|
+
$fault: "client",
|
|
234
|
+
...opts,
|
|
235
|
+
});
|
|
236
|
+
Object.setPrototypeOf(this, NoSuchConfigRuleException.prototype);
|
|
237
|
+
}
|
|
238
|
+
}
|
|
239
|
+
class ResourceInUseException extends ConfigServiceServiceException {
|
|
240
|
+
name = "ResourceInUseException";
|
|
241
|
+
$fault = "client";
|
|
242
|
+
constructor(opts) {
|
|
243
|
+
super({
|
|
244
|
+
name: "ResourceInUseException",
|
|
245
|
+
$fault: "client",
|
|
246
|
+
...opts,
|
|
247
|
+
});
|
|
248
|
+
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class UnmodifiableEntityException extends ConfigServiceServiceException {
|
|
252
|
+
name = "UnmodifiableEntityException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "UnmodifiableEntityException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, UnmodifiableEntityException.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class NoSuchConformancePackException extends ConfigServiceServiceException {
|
|
264
|
+
name = "NoSuchConformancePackException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
constructor(opts) {
|
|
267
|
+
super({
|
|
268
|
+
name: "NoSuchConformancePackException",
|
|
269
|
+
$fault: "client",
|
|
270
|
+
...opts,
|
|
271
|
+
});
|
|
272
|
+
Object.setPrototypeOf(this, NoSuchConformancePackException.prototype);
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
class LastDeliveryChannelDeleteFailedException extends ConfigServiceServiceException {
|
|
276
|
+
name = "LastDeliveryChannelDeleteFailedException";
|
|
277
|
+
$fault = "client";
|
|
278
|
+
constructor(opts) {
|
|
279
|
+
super({
|
|
280
|
+
name: "LastDeliveryChannelDeleteFailedException",
|
|
281
|
+
$fault: "client",
|
|
282
|
+
...opts,
|
|
283
|
+
});
|
|
284
|
+
Object.setPrototypeOf(this, LastDeliveryChannelDeleteFailedException.prototype);
|
|
285
|
+
}
|
|
286
|
+
}
|
|
287
|
+
class NoSuchDeliveryChannelException extends ConfigServiceServiceException {
|
|
288
|
+
name = "NoSuchDeliveryChannelException";
|
|
289
|
+
$fault = "client";
|
|
290
|
+
constructor(opts) {
|
|
291
|
+
super({
|
|
292
|
+
name: "NoSuchDeliveryChannelException",
|
|
293
|
+
$fault: "client",
|
|
294
|
+
...opts,
|
|
295
|
+
});
|
|
296
|
+
Object.setPrototypeOf(this, NoSuchDeliveryChannelException.prototype);
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
class NoSuchOrganizationConfigRuleException extends ConfigServiceServiceException {
|
|
300
|
+
name = "NoSuchOrganizationConfigRuleException";
|
|
301
|
+
$fault = "client";
|
|
302
|
+
constructor(opts) {
|
|
303
|
+
super({
|
|
304
|
+
name: "NoSuchOrganizationConfigRuleException",
|
|
305
|
+
$fault: "client",
|
|
306
|
+
...opts,
|
|
307
|
+
});
|
|
308
|
+
Object.setPrototypeOf(this, NoSuchOrganizationConfigRuleException.prototype);
|
|
309
|
+
}
|
|
310
|
+
}
|
|
311
|
+
class OrganizationAccessDeniedException extends ConfigServiceServiceException {
|
|
312
|
+
name = "OrganizationAccessDeniedException";
|
|
313
|
+
$fault = "client";
|
|
314
|
+
constructor(opts) {
|
|
315
|
+
super({
|
|
316
|
+
name: "OrganizationAccessDeniedException",
|
|
317
|
+
$fault: "client",
|
|
318
|
+
...opts,
|
|
319
|
+
});
|
|
320
|
+
Object.setPrototypeOf(this, OrganizationAccessDeniedException.prototype);
|
|
321
|
+
}
|
|
322
|
+
}
|
|
323
|
+
class NoSuchOrganizationConformancePackException extends ConfigServiceServiceException {
|
|
324
|
+
name = "NoSuchOrganizationConformancePackException";
|
|
325
|
+
$fault = "client";
|
|
326
|
+
constructor(opts) {
|
|
327
|
+
super({
|
|
328
|
+
name: "NoSuchOrganizationConformancePackException",
|
|
329
|
+
$fault: "client",
|
|
330
|
+
...opts,
|
|
331
|
+
});
|
|
332
|
+
Object.setPrototypeOf(this, NoSuchOrganizationConformancePackException.prototype);
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
class InsufficientPermissionsException extends ConfigServiceServiceException {
|
|
336
|
+
name = "InsufficientPermissionsException";
|
|
337
|
+
$fault = "client";
|
|
338
|
+
constructor(opts) {
|
|
339
|
+
super({
|
|
340
|
+
name: "InsufficientPermissionsException",
|
|
341
|
+
$fault: "client",
|
|
342
|
+
...opts,
|
|
343
|
+
});
|
|
344
|
+
Object.setPrototypeOf(this, InsufficientPermissionsException.prototype);
|
|
345
|
+
}
|
|
346
|
+
}
|
|
347
|
+
class NoSuchRemediationConfigurationException extends ConfigServiceServiceException {
|
|
348
|
+
name = "NoSuchRemediationConfigurationException";
|
|
349
|
+
$fault = "client";
|
|
350
|
+
constructor(opts) {
|
|
351
|
+
super({
|
|
352
|
+
name: "NoSuchRemediationConfigurationException",
|
|
353
|
+
$fault: "client",
|
|
354
|
+
...opts,
|
|
355
|
+
});
|
|
356
|
+
Object.setPrototypeOf(this, NoSuchRemediationConfigurationException.prototype);
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
class RemediationInProgressException extends ConfigServiceServiceException {
|
|
360
|
+
name = "RemediationInProgressException";
|
|
361
|
+
$fault = "client";
|
|
362
|
+
constructor(opts) {
|
|
363
|
+
super({
|
|
364
|
+
name: "RemediationInProgressException",
|
|
365
|
+
$fault: "client",
|
|
366
|
+
...opts,
|
|
367
|
+
});
|
|
368
|
+
Object.setPrototypeOf(this, RemediationInProgressException.prototype);
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
class NoSuchRemediationExceptionException extends ConfigServiceServiceException {
|
|
372
|
+
name = "NoSuchRemediationExceptionException";
|
|
373
|
+
$fault = "client";
|
|
374
|
+
constructor(opts) {
|
|
375
|
+
super({
|
|
376
|
+
name: "NoSuchRemediationExceptionException",
|
|
377
|
+
$fault: "client",
|
|
378
|
+
...opts,
|
|
379
|
+
});
|
|
380
|
+
Object.setPrototypeOf(this, NoSuchRemediationExceptionException.prototype);
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
class NoRunningConfigurationRecorderException extends ConfigServiceServiceException {
|
|
384
|
+
name = "NoRunningConfigurationRecorderException";
|
|
385
|
+
$fault = "client";
|
|
386
|
+
constructor(opts) {
|
|
387
|
+
super({
|
|
388
|
+
name: "NoRunningConfigurationRecorderException",
|
|
389
|
+
$fault: "client",
|
|
390
|
+
...opts,
|
|
391
|
+
});
|
|
392
|
+
Object.setPrototypeOf(this, NoRunningConfigurationRecorderException.prototype);
|
|
393
|
+
}
|
|
394
|
+
}
|
|
395
|
+
class NoSuchRetentionConfigurationException extends ConfigServiceServiceException {
|
|
396
|
+
name = "NoSuchRetentionConfigurationException";
|
|
397
|
+
$fault = "client";
|
|
398
|
+
constructor(opts) {
|
|
399
|
+
super({
|
|
400
|
+
name: "NoSuchRetentionConfigurationException",
|
|
401
|
+
$fault: "client",
|
|
402
|
+
...opts,
|
|
403
|
+
});
|
|
404
|
+
Object.setPrototypeOf(this, NoSuchRetentionConfigurationException.prototype);
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
class ResourceNotFoundException extends ConfigServiceServiceException {
|
|
408
|
+
name = "ResourceNotFoundException";
|
|
409
|
+
$fault = "client";
|
|
410
|
+
constructor(opts) {
|
|
411
|
+
super({
|
|
412
|
+
name: "ResourceNotFoundException",
|
|
413
|
+
$fault: "client",
|
|
414
|
+
...opts,
|
|
415
|
+
});
|
|
416
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
417
|
+
}
|
|
418
|
+
}
|
|
419
|
+
class InvalidLimitException extends ConfigServiceServiceException {
|
|
420
|
+
name = "InvalidLimitException";
|
|
421
|
+
$fault = "client";
|
|
422
|
+
constructor(opts) {
|
|
423
|
+
super({
|
|
424
|
+
name: "InvalidLimitException",
|
|
425
|
+
$fault: "client",
|
|
426
|
+
...opts,
|
|
427
|
+
});
|
|
428
|
+
Object.setPrototypeOf(this, InvalidLimitException.prototype);
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
class InvalidNextTokenException extends ConfigServiceServiceException {
|
|
432
|
+
name = "InvalidNextTokenException";
|
|
433
|
+
$fault = "client";
|
|
434
|
+
constructor(opts) {
|
|
435
|
+
super({
|
|
436
|
+
name: "InvalidNextTokenException",
|
|
437
|
+
$fault: "client",
|
|
438
|
+
...opts,
|
|
439
|
+
});
|
|
440
|
+
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
441
|
+
}
|
|
442
|
+
}
|
|
443
|
+
class NoSuchConfigRuleInConformancePackException extends ConfigServiceServiceException {
|
|
444
|
+
name = "NoSuchConfigRuleInConformancePackException";
|
|
445
|
+
$fault = "client";
|
|
446
|
+
constructor(opts) {
|
|
447
|
+
super({
|
|
448
|
+
name: "NoSuchConfigRuleInConformancePackException",
|
|
449
|
+
$fault: "client",
|
|
450
|
+
...opts,
|
|
451
|
+
});
|
|
452
|
+
Object.setPrototypeOf(this, NoSuchConfigRuleInConformancePackException.prototype);
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
class OversizedConfigurationItemException extends ConfigServiceServiceException {
|
|
456
|
+
name = "OversizedConfigurationItemException";
|
|
457
|
+
$fault = "client";
|
|
458
|
+
constructor(opts) {
|
|
459
|
+
super({
|
|
460
|
+
name: "OversizedConfigurationItemException",
|
|
461
|
+
$fault: "client",
|
|
462
|
+
...opts,
|
|
463
|
+
});
|
|
464
|
+
Object.setPrototypeOf(this, OversizedConfigurationItemException.prototype);
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
class ResourceNotDiscoveredException extends ConfigServiceServiceException {
|
|
468
|
+
name = "ResourceNotDiscoveredException";
|
|
469
|
+
$fault = "client";
|
|
470
|
+
constructor(opts) {
|
|
471
|
+
super({
|
|
472
|
+
name: "ResourceNotDiscoveredException",
|
|
473
|
+
$fault: "client",
|
|
474
|
+
...opts,
|
|
475
|
+
});
|
|
476
|
+
Object.setPrototypeOf(this, ResourceNotDiscoveredException.prototype);
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
class InvalidTimeRangeException extends ConfigServiceServiceException {
|
|
480
|
+
name = "InvalidTimeRangeException";
|
|
481
|
+
$fault = "client";
|
|
482
|
+
constructor(opts) {
|
|
483
|
+
super({
|
|
484
|
+
name: "InvalidTimeRangeException",
|
|
485
|
+
$fault: "client",
|
|
486
|
+
...opts,
|
|
487
|
+
});
|
|
488
|
+
Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
class IdempotentParameterMismatch extends ConfigServiceServiceException {
|
|
492
|
+
name = "IdempotentParameterMismatch";
|
|
493
|
+
$fault = "client";
|
|
494
|
+
constructor(opts) {
|
|
495
|
+
super({
|
|
496
|
+
name: "IdempotentParameterMismatch",
|
|
497
|
+
$fault: "client",
|
|
498
|
+
...opts,
|
|
499
|
+
});
|
|
500
|
+
Object.setPrototypeOf(this, IdempotentParameterMismatch.prototype);
|
|
501
|
+
}
|
|
502
|
+
}
|
|
503
|
+
class InsufficientDeliveryPolicyException extends ConfigServiceServiceException {
|
|
504
|
+
name = "InsufficientDeliveryPolicyException";
|
|
505
|
+
$fault = "client";
|
|
506
|
+
constructor(opts) {
|
|
507
|
+
super({
|
|
508
|
+
name: "InsufficientDeliveryPolicyException",
|
|
509
|
+
$fault: "client",
|
|
510
|
+
...opts,
|
|
511
|
+
});
|
|
512
|
+
Object.setPrototypeOf(this, InsufficientDeliveryPolicyException.prototype);
|
|
513
|
+
}
|
|
514
|
+
}
|
|
515
|
+
class InvalidConfigurationRecorderNameException extends ConfigServiceServiceException {
|
|
516
|
+
name = "InvalidConfigurationRecorderNameException";
|
|
517
|
+
$fault = "client";
|
|
518
|
+
constructor(opts) {
|
|
519
|
+
super({
|
|
520
|
+
name: "InvalidConfigurationRecorderNameException",
|
|
521
|
+
$fault: "client",
|
|
522
|
+
...opts,
|
|
523
|
+
});
|
|
524
|
+
Object.setPrototypeOf(this, InvalidConfigurationRecorderNameException.prototype);
|
|
525
|
+
}
|
|
526
|
+
}
|
|
527
|
+
class InvalidDeliveryChannelNameException extends ConfigServiceServiceException {
|
|
528
|
+
name = "InvalidDeliveryChannelNameException";
|
|
529
|
+
$fault = "client";
|
|
530
|
+
constructor(opts) {
|
|
531
|
+
super({
|
|
532
|
+
name: "InvalidDeliveryChannelNameException",
|
|
533
|
+
$fault: "client",
|
|
534
|
+
...opts,
|
|
535
|
+
});
|
|
536
|
+
Object.setPrototypeOf(this, InvalidDeliveryChannelNameException.prototype);
|
|
537
|
+
}
|
|
538
|
+
}
|
|
539
|
+
class InvalidExpressionException extends ConfigServiceServiceException {
|
|
540
|
+
name = "InvalidExpressionException";
|
|
541
|
+
$fault = "client";
|
|
542
|
+
constructor(opts) {
|
|
543
|
+
super({
|
|
544
|
+
name: "InvalidExpressionException",
|
|
545
|
+
$fault: "client",
|
|
546
|
+
...opts,
|
|
547
|
+
});
|
|
548
|
+
Object.setPrototypeOf(this, InvalidExpressionException.prototype);
|
|
549
|
+
}
|
|
550
|
+
}
|
|
551
|
+
class InvalidRecordingGroupException extends ConfigServiceServiceException {
|
|
552
|
+
name = "InvalidRecordingGroupException";
|
|
553
|
+
$fault = "client";
|
|
554
|
+
constructor(opts) {
|
|
555
|
+
super({
|
|
556
|
+
name: "InvalidRecordingGroupException",
|
|
557
|
+
$fault: "client",
|
|
558
|
+
...opts,
|
|
559
|
+
});
|
|
560
|
+
Object.setPrototypeOf(this, InvalidRecordingGroupException.prototype);
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
class InvalidResultTokenException extends ConfigServiceServiceException {
|
|
564
|
+
name = "InvalidResultTokenException";
|
|
565
|
+
$fault = "client";
|
|
566
|
+
constructor(opts) {
|
|
567
|
+
super({
|
|
568
|
+
name: "InvalidResultTokenException",
|
|
569
|
+
$fault: "client",
|
|
570
|
+
...opts,
|
|
571
|
+
});
|
|
572
|
+
Object.setPrototypeOf(this, InvalidResultTokenException.prototype);
|
|
573
|
+
}
|
|
574
|
+
}
|
|
575
|
+
class InvalidRoleException extends ConfigServiceServiceException {
|
|
576
|
+
name = "InvalidRoleException";
|
|
577
|
+
$fault = "client";
|
|
578
|
+
constructor(opts) {
|
|
579
|
+
super({
|
|
580
|
+
name: "InvalidRoleException",
|
|
581
|
+
$fault: "client",
|
|
582
|
+
...opts,
|
|
583
|
+
});
|
|
584
|
+
Object.setPrototypeOf(this, InvalidRoleException.prototype);
|
|
585
|
+
}
|
|
586
|
+
}
|
|
587
|
+
class InvalidS3KeyPrefixException extends ConfigServiceServiceException {
|
|
588
|
+
name = "InvalidS3KeyPrefixException";
|
|
589
|
+
$fault = "client";
|
|
590
|
+
constructor(opts) {
|
|
591
|
+
super({
|
|
592
|
+
name: "InvalidS3KeyPrefixException",
|
|
593
|
+
$fault: "client",
|
|
594
|
+
...opts,
|
|
595
|
+
});
|
|
596
|
+
Object.setPrototypeOf(this, InvalidS3KeyPrefixException.prototype);
|
|
597
|
+
}
|
|
598
|
+
}
|
|
599
|
+
class InvalidS3KmsKeyArnException extends ConfigServiceServiceException {
|
|
600
|
+
name = "InvalidS3KmsKeyArnException";
|
|
601
|
+
$fault = "client";
|
|
602
|
+
constructor(opts) {
|
|
603
|
+
super({
|
|
604
|
+
name: "InvalidS3KmsKeyArnException",
|
|
605
|
+
$fault: "client",
|
|
606
|
+
...opts,
|
|
607
|
+
});
|
|
608
|
+
Object.setPrototypeOf(this, InvalidS3KmsKeyArnException.prototype);
|
|
609
|
+
}
|
|
610
|
+
}
|
|
611
|
+
class InvalidSNSTopicARNException extends ConfigServiceServiceException {
|
|
612
|
+
name = "InvalidSNSTopicARNException";
|
|
613
|
+
$fault = "client";
|
|
614
|
+
constructor(opts) {
|
|
615
|
+
super({
|
|
616
|
+
name: "InvalidSNSTopicARNException",
|
|
617
|
+
$fault: "client",
|
|
618
|
+
...opts,
|
|
619
|
+
});
|
|
620
|
+
Object.setPrototypeOf(this, InvalidSNSTopicARNException.prototype);
|
|
621
|
+
}
|
|
622
|
+
}
|
|
623
|
+
class LimitExceededException extends ConfigServiceServiceException {
|
|
624
|
+
name = "LimitExceededException";
|
|
625
|
+
$fault = "client";
|
|
626
|
+
constructor(opts) {
|
|
627
|
+
super({
|
|
628
|
+
name: "LimitExceededException",
|
|
629
|
+
$fault: "client",
|
|
630
|
+
...opts,
|
|
631
|
+
});
|
|
632
|
+
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
class MaxActiveResourcesExceededException extends ConfigServiceServiceException {
|
|
636
|
+
name = "MaxActiveResourcesExceededException";
|
|
637
|
+
$fault = "client";
|
|
638
|
+
constructor(opts) {
|
|
639
|
+
super({
|
|
640
|
+
name: "MaxActiveResourcesExceededException",
|
|
641
|
+
$fault: "client",
|
|
642
|
+
...opts,
|
|
643
|
+
});
|
|
644
|
+
Object.setPrototypeOf(this, MaxActiveResourcesExceededException.prototype);
|
|
645
|
+
}
|
|
646
|
+
}
|
|
647
|
+
class MaxNumberOfConfigRulesExceededException extends ConfigServiceServiceException {
|
|
648
|
+
name = "MaxNumberOfConfigRulesExceededException";
|
|
649
|
+
$fault = "client";
|
|
650
|
+
constructor(opts) {
|
|
651
|
+
super({
|
|
652
|
+
name: "MaxNumberOfConfigRulesExceededException",
|
|
653
|
+
$fault: "client",
|
|
654
|
+
...opts,
|
|
655
|
+
});
|
|
656
|
+
Object.setPrototypeOf(this, MaxNumberOfConfigRulesExceededException.prototype);
|
|
657
|
+
}
|
|
658
|
+
}
|
|
659
|
+
class MaxNumberOfConfigurationRecordersExceededException extends ConfigServiceServiceException {
|
|
660
|
+
name = "MaxNumberOfConfigurationRecordersExceededException";
|
|
661
|
+
$fault = "client";
|
|
662
|
+
constructor(opts) {
|
|
663
|
+
super({
|
|
664
|
+
name: "MaxNumberOfConfigurationRecordersExceededException",
|
|
665
|
+
$fault: "client",
|
|
666
|
+
...opts,
|
|
667
|
+
});
|
|
668
|
+
Object.setPrototypeOf(this, MaxNumberOfConfigurationRecordersExceededException.prototype);
|
|
669
|
+
}
|
|
670
|
+
}
|
|
671
|
+
class MaxNumberOfConformancePacksExceededException extends ConfigServiceServiceException {
|
|
672
|
+
name = "MaxNumberOfConformancePacksExceededException";
|
|
673
|
+
$fault = "client";
|
|
674
|
+
constructor(opts) {
|
|
675
|
+
super({
|
|
676
|
+
name: "MaxNumberOfConformancePacksExceededException",
|
|
677
|
+
$fault: "client",
|
|
678
|
+
...opts,
|
|
679
|
+
});
|
|
680
|
+
Object.setPrototypeOf(this, MaxNumberOfConformancePacksExceededException.prototype);
|
|
681
|
+
}
|
|
682
|
+
}
|
|
683
|
+
class MaxNumberOfDeliveryChannelsExceededException extends ConfigServiceServiceException {
|
|
684
|
+
name = "MaxNumberOfDeliveryChannelsExceededException";
|
|
685
|
+
$fault = "client";
|
|
686
|
+
constructor(opts) {
|
|
687
|
+
super({
|
|
688
|
+
name: "MaxNumberOfDeliveryChannelsExceededException",
|
|
689
|
+
$fault: "client",
|
|
690
|
+
...opts,
|
|
691
|
+
});
|
|
692
|
+
Object.setPrototypeOf(this, MaxNumberOfDeliveryChannelsExceededException.prototype);
|
|
693
|
+
}
|
|
694
|
+
}
|
|
695
|
+
class MaxNumberOfOrganizationConfigRulesExceededException extends ConfigServiceServiceException {
|
|
696
|
+
name = "MaxNumberOfOrganizationConfigRulesExceededException";
|
|
697
|
+
$fault = "client";
|
|
698
|
+
constructor(opts) {
|
|
699
|
+
super({
|
|
700
|
+
name: "MaxNumberOfOrganizationConfigRulesExceededException",
|
|
701
|
+
$fault: "client",
|
|
702
|
+
...opts,
|
|
703
|
+
});
|
|
704
|
+
Object.setPrototypeOf(this, MaxNumberOfOrganizationConfigRulesExceededException.prototype);
|
|
705
|
+
}
|
|
706
|
+
}
|
|
707
|
+
class MaxNumberOfOrganizationConformancePacksExceededException extends ConfigServiceServiceException {
|
|
708
|
+
name = "MaxNumberOfOrganizationConformancePacksExceededException";
|
|
709
|
+
$fault = "client";
|
|
710
|
+
constructor(opts) {
|
|
711
|
+
super({
|
|
712
|
+
name: "MaxNumberOfOrganizationConformancePacksExceededException",
|
|
713
|
+
$fault: "client",
|
|
714
|
+
...opts,
|
|
715
|
+
});
|
|
716
|
+
Object.setPrototypeOf(this, MaxNumberOfOrganizationConformancePacksExceededException.prototype);
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
class MaxNumberOfRetentionConfigurationsExceededException extends ConfigServiceServiceException {
|
|
720
|
+
name = "MaxNumberOfRetentionConfigurationsExceededException";
|
|
721
|
+
$fault = "client";
|
|
722
|
+
constructor(opts) {
|
|
723
|
+
super({
|
|
724
|
+
name: "MaxNumberOfRetentionConfigurationsExceededException",
|
|
725
|
+
$fault: "client",
|
|
726
|
+
...opts,
|
|
727
|
+
});
|
|
728
|
+
Object.setPrototypeOf(this, MaxNumberOfRetentionConfigurationsExceededException.prototype);
|
|
729
|
+
}
|
|
730
|
+
}
|
|
731
|
+
class NoAvailableDeliveryChannelException extends ConfigServiceServiceException {
|
|
732
|
+
name = "NoAvailableDeliveryChannelException";
|
|
733
|
+
$fault = "client";
|
|
734
|
+
constructor(opts) {
|
|
735
|
+
super({
|
|
736
|
+
name: "NoAvailableDeliveryChannelException",
|
|
737
|
+
$fault: "client",
|
|
738
|
+
...opts,
|
|
739
|
+
});
|
|
740
|
+
Object.setPrototypeOf(this, NoAvailableDeliveryChannelException.prototype);
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
class NoAvailableOrganizationException extends ConfigServiceServiceException {
|
|
744
|
+
name = "NoAvailableOrganizationException";
|
|
745
|
+
$fault = "client";
|
|
746
|
+
constructor(opts) {
|
|
747
|
+
super({
|
|
748
|
+
name: "NoAvailableOrganizationException",
|
|
749
|
+
$fault: "client",
|
|
750
|
+
...opts,
|
|
751
|
+
});
|
|
752
|
+
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
class NoSuchBucketException extends ConfigServiceServiceException {
|
|
756
|
+
name = "NoSuchBucketException";
|
|
757
|
+
$fault = "client";
|
|
758
|
+
constructor(opts) {
|
|
759
|
+
super({
|
|
760
|
+
name: "NoSuchBucketException",
|
|
761
|
+
$fault: "client",
|
|
762
|
+
...opts,
|
|
763
|
+
});
|
|
764
|
+
Object.setPrototypeOf(this, NoSuchBucketException.prototype);
|
|
765
|
+
}
|
|
766
|
+
}
|
|
767
|
+
class OrganizationAllFeaturesNotEnabledException extends ConfigServiceServiceException {
|
|
768
|
+
name = "OrganizationAllFeaturesNotEnabledException";
|
|
769
|
+
$fault = "client";
|
|
770
|
+
constructor(opts) {
|
|
771
|
+
super({
|
|
772
|
+
name: "OrganizationAllFeaturesNotEnabledException",
|
|
773
|
+
$fault: "client",
|
|
774
|
+
...opts,
|
|
775
|
+
});
|
|
776
|
+
Object.setPrototypeOf(this, OrganizationAllFeaturesNotEnabledException.prototype);
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
class OrganizationConformancePackTemplateValidationException extends ConfigServiceServiceException {
|
|
780
|
+
name = "OrganizationConformancePackTemplateValidationException";
|
|
781
|
+
$fault = "client";
|
|
782
|
+
constructor(opts) {
|
|
783
|
+
super({
|
|
784
|
+
name: "OrganizationConformancePackTemplateValidationException",
|
|
785
|
+
$fault: "client",
|
|
786
|
+
...opts,
|
|
787
|
+
});
|
|
788
|
+
Object.setPrototypeOf(this, OrganizationConformancePackTemplateValidationException.prototype);
|
|
789
|
+
}
|
|
790
|
+
}
|
|
791
|
+
class ResourceConcurrentModificationException extends ConfigServiceServiceException {
|
|
792
|
+
name = "ResourceConcurrentModificationException";
|
|
793
|
+
$fault = "client";
|
|
794
|
+
constructor(opts) {
|
|
795
|
+
super({
|
|
796
|
+
name: "ResourceConcurrentModificationException",
|
|
797
|
+
$fault: "client",
|
|
798
|
+
...opts,
|
|
799
|
+
});
|
|
800
|
+
Object.setPrototypeOf(this, ResourceConcurrentModificationException.prototype);
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
class TooManyTagsException extends ConfigServiceServiceException {
|
|
804
|
+
name = "TooManyTagsException";
|
|
805
|
+
$fault = "client";
|
|
806
|
+
constructor(opts) {
|
|
807
|
+
super({
|
|
808
|
+
name: "TooManyTagsException",
|
|
809
|
+
$fault: "client",
|
|
810
|
+
...opts,
|
|
811
|
+
});
|
|
812
|
+
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
813
|
+
}
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
const _A = "Annotation";
|
|
817
|
+
const _AA = "AggregationAuthorization";
|
|
818
|
+
const _AAA = "AggregationAuthorizationArn";
|
|
819
|
+
const _AAI = "AuthorizedAccountId";
|
|
820
|
+
const _AAL = "AggregationAuthorizationList";
|
|
821
|
+
const _AAR = "AllAwsRegions";
|
|
822
|
+
const _AARu = "AuthorizedAwsRegion";
|
|
823
|
+
const _AAS = "AccountAggregationSource";
|
|
824
|
+
const _AASL = "AccountAggregationSourceList";
|
|
825
|
+
const _AASc = "AccountAggregationSources";
|
|
826
|
+
const _AAg = "AggregationAuthorizations";
|
|
827
|
+
const _ACBCP = "AggregateComplianceByConformancePack";
|
|
828
|
+
const _ACBCPL = "AggregateComplianceByConformancePackList";
|
|
829
|
+
const _ACBCPg = "AggregateComplianceByConformancePacks";
|
|
830
|
+
const _ACBCR = "AggregateComplianceByConfigRule";
|
|
831
|
+
const _ACBCRL = "AggregateComplianceByConfigRuleList";
|
|
832
|
+
const _ACBCRg = "AggregateComplianceByConfigRules";
|
|
833
|
+
const _ACC = "AggregateComplianceCount";
|
|
834
|
+
const _ACCL = "AggregateComplianceCountList";
|
|
835
|
+
const _ACCg = "AggregateComplianceCounts";
|
|
836
|
+
const _ACPC = "AggregateConformancePackCompliance";
|
|
837
|
+
const _ACPCC = "AggregateConformancePackComplianceCount";
|
|
838
|
+
const _ACPCF = "AggregateConformancePackComplianceFilters";
|
|
839
|
+
const _ACPCS = "AggregateConformancePackComplianceSummary";
|
|
840
|
+
const _ACPCSF = "AggregateConformancePackComplianceSummaryFilters";
|
|
841
|
+
const _ACPCSL = "AggregateConformancePackComplianceSummaryList";
|
|
842
|
+
const _ACPCSg = "AggregateConformancePackComplianceSummaries";
|
|
843
|
+
const _AER = "AggregateEvaluationResult";
|
|
844
|
+
const _AERL = "AggregateEvaluationResultList";
|
|
845
|
+
const _AERg = "AggregateEvaluationResults";
|
|
846
|
+
const _AF = "AggregatorFilters";
|
|
847
|
+
const _AFRT = "AggregatorFilterResourceType";
|
|
848
|
+
const _AFSP = "AggregatorFilterServicePrincipal";
|
|
849
|
+
const _AI = "AccountIds";
|
|
850
|
+
const _AIc = "AccountId";
|
|
851
|
+
const _AR = "AwsRegions";
|
|
852
|
+
const _ARI = "AggregateResourceIdentifier";
|
|
853
|
+
const _ART = "AssociateResourceTypes";
|
|
854
|
+
const _ARTR = "AssociateResourceTypesRequest";
|
|
855
|
+
const _ARTRs = "AssociateResourceTypesResponse";
|
|
856
|
+
const _ARw = "AwsRegion";
|
|
857
|
+
const _ASS = "AggregatedSourceStatus";
|
|
858
|
+
const _ASSL = "AggregatedSourceStatusList";
|
|
859
|
+
const _Ar = "Arn";
|
|
860
|
+
const _Au = "Automatic";
|
|
861
|
+
const _BCI = "BaseConfigurationItem";
|
|
862
|
+
const _BCIa = "BaseConfigurationItems";
|
|
863
|
+
const _BGARC = "BatchGetAggregateResourceConfig";
|
|
864
|
+
const _BGARCR = "BatchGetAggregateResourceConfigRequest";
|
|
865
|
+
const _BGARCRa = "BatchGetAggregateResourceConfigResponse";
|
|
866
|
+
const _BGRC = "BatchGetResourceConfig";
|
|
867
|
+
const _BGRCR = "BatchGetResourceConfigRequest";
|
|
868
|
+
const _BGRCRa = "BatchGetResourceConfigResponse";
|
|
869
|
+
const _C = "Compliance";
|
|
870
|
+
const _CA = "ConfigurationAggregator";
|
|
871
|
+
const _CAA = "ConfigurationAggregatorArn";
|
|
872
|
+
const _CAL = "ConfigurationAggregatorList";
|
|
873
|
+
const _CAN = "ConfigurationAggregatorName";
|
|
874
|
+
const _CANo = "ConfigurationAggregatorNames";
|
|
875
|
+
const _CAo = "ConfigurationAggregators";
|
|
876
|
+
const _CB = "CreatedBy";
|
|
877
|
+
const _CBCR = "ComplianceByConfigRule";
|
|
878
|
+
const _CBCRo = "ComplianceByConfigRules";
|
|
879
|
+
const _CBR = "ComplianceByResource";
|
|
880
|
+
const _CBRo = "ComplianceByResources";
|
|
881
|
+
const _CBS = "CreatedByService";
|
|
882
|
+
const _CC = "CappedCount";
|
|
883
|
+
const _CCC = "ComplianceContributorCount";
|
|
884
|
+
const _CCPC = "CompliantConformancePackCount";
|
|
885
|
+
const _CE = "ConflictException";
|
|
886
|
+
const _CEDI = "ConfigExportDeliveryInfo";
|
|
887
|
+
const _CERP = "ConcurrentExecutionRatePercentage";
|
|
888
|
+
const _CEa = "CapExceeded";
|
|
889
|
+
const _CI = "ConfigurationItem";
|
|
890
|
+
const _CIL = "ConfigurationItemList";
|
|
891
|
+
const _CPA = "ConformancePackArn";
|
|
892
|
+
const _CPCF = "ConformancePackComplianceFilters";
|
|
893
|
+
const _CPCS = "ConformancePackComplianceScore";
|
|
894
|
+
const _CPCSF = "ConformancePackComplianceScoresFilters";
|
|
895
|
+
const _CPCSL = "ConformancePackComplianceSummaryList";
|
|
896
|
+
const _CPCSo = "ConformancePackComplianceSummary";
|
|
897
|
+
const _CPCSon = "ConformancePackComplianceStatus";
|
|
898
|
+
const _CPCSonf = "ConformancePackComplianceScores";
|
|
899
|
+
const _CPD = "ConformancePackDetail";
|
|
900
|
+
const _CPDL = "ConformancePackDetailList";
|
|
901
|
+
const _CPDo = "ConformancePackDetails";
|
|
902
|
+
const _CPDu = "CustomPolicyDetails";
|
|
903
|
+
const _CPEF = "ConformancePackEvaluationFilters";
|
|
904
|
+
const _CPER = "ConformancePackEvaluationResult";
|
|
905
|
+
const _CPI = "ConformancePackId";
|
|
906
|
+
const _CPIP = "ConformancePackInputParameters";
|
|
907
|
+
const _CPIPo = "ConformancePackInputParameter";
|
|
908
|
+
const _CPN = "ConformancePackName";
|
|
909
|
+
const _CPNo = "ConformancePackNames";
|
|
910
|
+
const _CPRC = "ConformancePackRuleCompliance";
|
|
911
|
+
const _CPRCL = "ConformancePackRuleComplianceList";
|
|
912
|
+
const _CPRER = "ConformancePackRuleEvaluationResults";
|
|
913
|
+
const _CPRERL = "ConformancePackRuleEvaluationResultsList";
|
|
914
|
+
const _CPS = "ConformancePackState";
|
|
915
|
+
const _CPSD = "ConformancePackStatusDetail";
|
|
916
|
+
const _CPSDL = "ConformancePackStatusDetailsList";
|
|
917
|
+
const _CPSDo = "ConformancePackStatusDetails";
|
|
918
|
+
const _CPSR = "ConformancePackStatusReason";
|
|
919
|
+
const _CPTVE = "ConformancePackTemplateValidationException";
|
|
920
|
+
const _CR = "ConfigurationRecorder";
|
|
921
|
+
const _CRA = "ConfigurationRecorderArn";
|
|
922
|
+
const _CRAo = "ConfigRuleArn";
|
|
923
|
+
const _CRC = "CompliantRuleCount";
|
|
924
|
+
const _CRCF = "ConfigRuleComplianceFilters";
|
|
925
|
+
const _CRCSF = "ConfigRuleComplianceSummaryFilters";
|
|
926
|
+
const _CRCo = "CompliantResourceCount";
|
|
927
|
+
const _CRES = "ConfigRuleEvaluationStatus";
|
|
928
|
+
const _CRESL = "ConfigRuleEvaluationStatusList";
|
|
929
|
+
const _CRESo = "ConfigRulesEvaluationStatus";
|
|
930
|
+
const _CRF = "ConfigurationRecorderFilter";
|
|
931
|
+
const _CRFL = "ConfigurationRecorderFilterList";
|
|
932
|
+
const _CRI = "ConfigRuleId";
|
|
933
|
+
const _CRIT = "ConfigRuleInvokedTime";
|
|
934
|
+
const _CRIo = "ComplianceResourceId";
|
|
935
|
+
const _CRL = "ConfigurationRecorderList";
|
|
936
|
+
const _CRN = "ConfigRuleName";
|
|
937
|
+
const _CRNo = "ConfigRuleNames";
|
|
938
|
+
const _CRNon = "ConfigurationRecorderName";
|
|
939
|
+
const _CRNonf = "ConfigurationRecorderNames";
|
|
940
|
+
const _CRS = "ConfigRuleState";
|
|
941
|
+
const _CRSL = "ConfigurationRecorderStatusList";
|
|
942
|
+
const _CRSo = "ConfigurationRecorderStatus";
|
|
943
|
+
const _CRSon = "ConfigurationRecorderSummary";
|
|
944
|
+
const _CRSonf = "ConfigurationRecordersStatus";
|
|
945
|
+
const _CRSonfi = "ConfigurationRecorderSummaries";
|
|
946
|
+
const _CRT = "ComplianceResourceType";
|
|
947
|
+
const _CRTo = "ComplianceResourceTypes";
|
|
948
|
+
const _CRo = "ConfigRule";
|
|
949
|
+
const _CRon = "ConfigRules";
|
|
950
|
+
const _CRonf = "ConfigurationRecorders";
|
|
951
|
+
const _CS = "ComplianceSummary";
|
|
952
|
+
const _CSBRT = "ComplianceSummaryByResourceType";
|
|
953
|
+
const _CSBRTo = "ComplianceSummariesByResourceType";
|
|
954
|
+
const _CSDI = "ConfigStreamDeliveryInfo";
|
|
955
|
+
const _CSDP = "ConfigSnapshotDeliveryProperties";
|
|
956
|
+
const _CST = "ComplianceSummaryTimestamp";
|
|
957
|
+
const _CT = "ComplianceType";
|
|
958
|
+
const _CTl = "ClientToken";
|
|
959
|
+
const _CTo = "ComplianceTypes";
|
|
960
|
+
const _CTr = "CreationTime";
|
|
961
|
+
const _Co = "Controls";
|
|
962
|
+
const _Con = "Configuration";
|
|
963
|
+
const _D = "Description";
|
|
964
|
+
const _DAA = "DeleteAggregationAuthorization";
|
|
965
|
+
const _DAAR = "DeleteAggregationAuthorizationRequest";
|
|
966
|
+
const _DAARe = "DescribeAggregationAuthorizationsRequest";
|
|
967
|
+
const _DAARes = "DescribeAggregationAuthorizationsResponse";
|
|
968
|
+
const _DAAe = "DescribeAggregationAuthorizations";
|
|
969
|
+
const _DACBCP = "DescribeAggregateComplianceByConformancePacks";
|
|
970
|
+
const _DACBCPR = "DescribeAggregateComplianceByConformancePacksRequest";
|
|
971
|
+
const _DACBCPRe = "DescribeAggregateComplianceByConformancePacksResponse";
|
|
972
|
+
const _DACBCR = "DescribeAggregateComplianceByConfigRules";
|
|
973
|
+
const _DACBCRR = "DescribeAggregateComplianceByConfigRulesRequest";
|
|
974
|
+
const _DACBCRRe = "DescribeAggregateComplianceByConfigRulesResponse";
|
|
975
|
+
const _DC = "DeliveryChannel";
|
|
976
|
+
const _DCA = "DeleteConfigurationAggregator";
|
|
977
|
+
const _DCAR = "DeleteConfigurationAggregatorRequest";
|
|
978
|
+
const _DCARe = "DescribeConfigurationAggregatorsRequest";
|
|
979
|
+
const _DCARes = "DescribeConfigurationAggregatorsResponse";
|
|
980
|
+
const _DCASS = "DescribeConfigurationAggregatorSourcesStatus";
|
|
981
|
+
const _DCASSR = "DescribeConfigurationAggregatorSourcesStatusRequest";
|
|
982
|
+
const _DCASSRe = "DescribeConfigurationAggregatorSourcesStatusResponse";
|
|
983
|
+
const _DCAe = "DescribeConfigurationAggregators";
|
|
984
|
+
const _DCBCR = "DescribeComplianceByConfigRule";
|
|
985
|
+
const _DCBCRR = "DescribeComplianceByConfigRuleRequest";
|
|
986
|
+
const _DCBCRRe = "DescribeComplianceByConfigRuleResponse";
|
|
987
|
+
const _DCBR = "DescribeComplianceByResource";
|
|
988
|
+
const _DCBRR = "DescribeComplianceByResourceRequest";
|
|
989
|
+
const _DCBRRe = "DescribeComplianceByResourceResponse";
|
|
990
|
+
const _DCL = "DeliveryChannelList";
|
|
991
|
+
const _DCN = "DeliveryChannelName";
|
|
992
|
+
const _DCNe = "DeliveryChannelNames";
|
|
993
|
+
const _DCP = "DeleteConformancePack";
|
|
994
|
+
const _DCPC = "DescribeConformancePackCompliance";
|
|
995
|
+
const _DCPCR = "DescribeConformancePackComplianceRequest";
|
|
996
|
+
const _DCPCRe = "DescribeConformancePackComplianceResponse";
|
|
997
|
+
const _DCPR = "DeleteConformancePackRequest";
|
|
998
|
+
const _DCPRe = "DescribeConformancePacksRequest";
|
|
999
|
+
const _DCPRes = "DescribeConformancePacksResponse";
|
|
1000
|
+
const _DCPS = "DescribeConformancePackStatus";
|
|
1001
|
+
const _DCPSR = "DescribeConformancePackStatusRequest";
|
|
1002
|
+
const _DCPSRe = "DescribeConformancePackStatusResponse";
|
|
1003
|
+
const _DCPe = "DescribeConformancePacks";
|
|
1004
|
+
const _DCR = "DeleteConfigRule";
|
|
1005
|
+
const _DCRES = "DescribeConfigRuleEvaluationStatus";
|
|
1006
|
+
const _DCRESR = "DescribeConfigRuleEvaluationStatusRequest";
|
|
1007
|
+
const _DCRESRe = "DescribeConfigRuleEvaluationStatusResponse";
|
|
1008
|
+
const _DCRF = "DescribeConfigRulesFilters";
|
|
1009
|
+
const _DCRR = "DeleteConfigRuleRequest";
|
|
1010
|
+
const _DCRRe = "DeleteConfigurationRecorderRequest";
|
|
1011
|
+
const _DCRRes = "DescribeConfigRulesRequest";
|
|
1012
|
+
const _DCRResc = "DescribeConfigRulesResponse";
|
|
1013
|
+
const _DCRRescr = "DescribeConfigurationRecordersRequest";
|
|
1014
|
+
const _DCRRescri = "DescribeConfigurationRecordersResponse";
|
|
1015
|
+
const _DCRS = "DescribeConfigurationRecorderStatus";
|
|
1016
|
+
const _DCRSR = "DescribeConfigurationRecorderStatusRequest";
|
|
1017
|
+
const _DCRSRe = "DescribeConfigurationRecorderStatusResponse";
|
|
1018
|
+
const _DCRe = "DeleteConfigurationRecorder";
|
|
1019
|
+
const _DCRes = "DescribeConfigRules";
|
|
1020
|
+
const _DCResc = "DescribeConfigurationRecorders";
|
|
1021
|
+
const _DCS = "DeliveryChannelStatus";
|
|
1022
|
+
const _DCSL = "DeliveryChannelStatusList";
|
|
1023
|
+
const _DCSR = "DeliverConfigSnapshotRequest";
|
|
1024
|
+
const _DCSRe = "DeliverConfigSnapshotResponse";
|
|
1025
|
+
const _DCSe = "DeliveryChannelsStatus";
|
|
1026
|
+
const _DCSel = "DeliverConfigSnapshot";
|
|
1027
|
+
const _DCe = "DeliveryChannels";
|
|
1028
|
+
const _DDC = "DeleteDeliveryChannel";
|
|
1029
|
+
const _DDCR = "DeleteDeliveryChannelRequest";
|
|
1030
|
+
const _DDCRe = "DescribeDeliveryChannelsRequest";
|
|
1031
|
+
const _DDCRes = "DescribeDeliveryChannelsResponse";
|
|
1032
|
+
const _DDCS = "DescribeDeliveryChannelStatus";
|
|
1033
|
+
const _DDCSR = "DescribeDeliveryChannelStatusRequest";
|
|
1034
|
+
const _DDCSRe = "DescribeDeliveryChannelStatusResponse";
|
|
1035
|
+
const _DDCe = "DescribeDeliveryChannels";
|
|
1036
|
+
const _DER = "DeleteEvaluationResults";
|
|
1037
|
+
const _DERR = "DeleteEvaluationResultsRequest";
|
|
1038
|
+
const _DERRe = "DeleteEvaluationResultsResponse";
|
|
1039
|
+
const _DLDA = "DebugLogDeliveryAccounts";
|
|
1040
|
+
const _DN = "DocumentName";
|
|
1041
|
+
const _DOCP = "DeleteOrganizationConformancePack";
|
|
1042
|
+
const _DOCPR = "DeleteOrganizationConformancePackRequest";
|
|
1043
|
+
const _DOCPRe = "DescribeOrganizationConformancePacksRequest";
|
|
1044
|
+
const _DOCPRes = "DescribeOrganizationConformancePacksResponse";
|
|
1045
|
+
const _DOCPS = "DescribeOrganizationConformancePackStatuses";
|
|
1046
|
+
const _DOCPSR = "DescribeOrganizationConformancePackStatusesRequest";
|
|
1047
|
+
const _DOCPSRe = "DescribeOrganizationConformancePackStatusesResponse";
|
|
1048
|
+
const _DOCPe = "DescribeOrganizationConformancePacks";
|
|
1049
|
+
const _DOCR = "DeleteOrganizationConfigRule";
|
|
1050
|
+
const _DOCRR = "DeleteOrganizationConfigRuleRequest";
|
|
1051
|
+
const _DOCRRe = "DescribeOrganizationConfigRulesRequest";
|
|
1052
|
+
const _DOCRRes = "DescribeOrganizationConfigRulesResponse";
|
|
1053
|
+
const _DOCRS = "DescribeOrganizationConfigRuleStatuses";
|
|
1054
|
+
const _DOCRSR = "DescribeOrganizationConfigRuleStatusesRequest";
|
|
1055
|
+
const _DOCRSRe = "DescribeOrganizationConfigRuleStatusesResponse";
|
|
1056
|
+
const _DOCRe = "DescribeOrganizationConfigRules";
|
|
1057
|
+
const _DPAR = "DeletePendingAggregationRequest";
|
|
1058
|
+
const _DPARR = "DeletePendingAggregationRequestRequest";
|
|
1059
|
+
const _DPARRe = "DescribePendingAggregationRequestsRequest";
|
|
1060
|
+
const _DPARRes = "DescribePendingAggregationRequestsResponse";
|
|
1061
|
+
const _DPARe = "DescribePendingAggregationRequests";
|
|
1062
|
+
const _DRC = "DeleteRemediationConfiguration";
|
|
1063
|
+
const _DRCR = "DeleteRemediationConfigurationRequest";
|
|
1064
|
+
const _DRCRe = "DeleteRemediationConfigurationResponse";
|
|
1065
|
+
const _DRCRel = "DeleteResourceConfigRequest";
|
|
1066
|
+
const _DRCRele = "DeleteRetentionConfigurationRequest";
|
|
1067
|
+
const _DRCRes = "DescribeRemediationConfigurationsRequest";
|
|
1068
|
+
const _DRCResc = "DescribeRemediationConfigurationsResponse";
|
|
1069
|
+
const _DRCRescr = "DescribeRetentionConfigurationsRequest";
|
|
1070
|
+
const _DRCRescri = "DescribeRetentionConfigurationsResponse";
|
|
1071
|
+
const _DRCe = "DeleteResourceConfig";
|
|
1072
|
+
const _DRCel = "DeleteRetentionConfiguration";
|
|
1073
|
+
const _DRCes = "DescribeRemediationConfigurations";
|
|
1074
|
+
const _DRCesc = "DescribeRetentionConfigurations";
|
|
1075
|
+
const _DRE = "DeleteRemediationExceptions";
|
|
1076
|
+
const _DRER = "DeleteRemediationExceptionsRequest";
|
|
1077
|
+
const _DRERe = "DeleteRemediationExceptionsResponse";
|
|
1078
|
+
const _DRERes = "DescribeRemediationExceptionsRequest";
|
|
1079
|
+
const _DREResc = "DescribeRemediationExceptionsResponse";
|
|
1080
|
+
const _DRES = "DescribeRemediationExecutionStatus";
|
|
1081
|
+
const _DRESR = "DescribeRemediationExecutionStatusRequest";
|
|
1082
|
+
const _DRESRe = "DescribeRemediationExecutionStatusResponse";
|
|
1083
|
+
const _DREe = "DescribeRemediationExceptions";
|
|
1084
|
+
const _DRIL = "DiscoveredResourceIdentifierList";
|
|
1085
|
+
const _DRT = "DisassociateResourceTypes";
|
|
1086
|
+
const _DRTR = "DisassociateResourceTypesRequest";
|
|
1087
|
+
const _DRTRi = "DisassociateResourceTypesResponse";
|
|
1088
|
+
const _DSB = "DeliveryS3Bucket";
|
|
1089
|
+
const _DSKP = "DeliveryS3KeyPrefix";
|
|
1090
|
+
const _DSLCR = "DeleteServiceLinkedConfigurationRecorder";
|
|
1091
|
+
const _DSLCRR = "DeleteServiceLinkedConfigurationRecorderRequest";
|
|
1092
|
+
const _DSLCRRe = "DeleteServiceLinkedConfigurationRecorderResponse";
|
|
1093
|
+
const _DSQ = "DeleteStoredQuery";
|
|
1094
|
+
const _DSQR = "DeleteStoredQueryRequest";
|
|
1095
|
+
const _DSQRe = "DeleteStoredQueryResponse";
|
|
1096
|
+
const _DV = "DocumentVersion";
|
|
1097
|
+
const _E = "Evaluation";
|
|
1098
|
+
const _EA = "ExcludedAccounts";
|
|
1099
|
+
const _EBRT = "ExclusionByResourceTypes";
|
|
1100
|
+
const _EC = "EvaluationContext";
|
|
1101
|
+
const _ECI = "EvaluationContextIdentifier";
|
|
1102
|
+
const _ECr = "ErrorCode";
|
|
1103
|
+
const _ECx = "ExecutionControls";
|
|
1104
|
+
const _EDLD = "EnableDebugLogDelivery";
|
|
1105
|
+
const _EE = "ExternalEvaluation";
|
|
1106
|
+
const _EM = "EvaluationModes";
|
|
1107
|
+
const _EMC = "EvaluationModeConfiguration";
|
|
1108
|
+
const _EMr = "ErrorMessage";
|
|
1109
|
+
const _EMv = "EvaluationMode";
|
|
1110
|
+
const _EP = "ErrorPercentage";
|
|
1111
|
+
const _ER = "EvaluationResult";
|
|
1112
|
+
const _ERI = "EvaluationResultIdentifier";
|
|
1113
|
+
const _ERQ = "EvaluationResultQualifier";
|
|
1114
|
+
const _ERv = "EvaluationResults";
|
|
1115
|
+
const _ES = "EvaluationStatus";
|
|
1116
|
+
const _EST = "EvaluationStartTimestamp";
|
|
1117
|
+
const _ESv = "EventSource";
|
|
1118
|
+
const _ET = "ExpirationTime";
|
|
1119
|
+
const _ETn = "EndTime";
|
|
1120
|
+
const _ETv = "EvaluationTimeout";
|
|
1121
|
+
const _Ev = "Evaluations";
|
|
1122
|
+
const _Ex = "Expression";
|
|
1123
|
+
const _F = "Filters";
|
|
1124
|
+
const _FAT = "FirstActivatedTime";
|
|
1125
|
+
const _FB = "FailedBatches";
|
|
1126
|
+
const _FDREB = "FailedDeleteRemediationExceptionsBatch";
|
|
1127
|
+
const _FDREBa = "FailedDeleteRemediationExceptionsBatches";
|
|
1128
|
+
const _FE = "FailedEvaluations";
|
|
1129
|
+
const _FES = "FirstEvaluationStarted";
|
|
1130
|
+
const _FI = "FailedItems";
|
|
1131
|
+
const _FIL = "FieldInfoList";
|
|
1132
|
+
const _FIi = "FieldInfo";
|
|
1133
|
+
const _FM = "FailureMessage";
|
|
1134
|
+
const _FR = "FailureReason";
|
|
1135
|
+
const _FRB = "FailedRemediationBatch";
|
|
1136
|
+
const _FRBa = "FailedRemediationBatches";
|
|
1137
|
+
const _FREB = "FailedRemediationExceptionBatch";
|
|
1138
|
+
const _FREBa = "FailedRemediationExceptionBatches";
|
|
1139
|
+
const _GACDBCR = "GetAggregateComplianceDetailsByConfigRule";
|
|
1140
|
+
const _GACDBCRR = "GetAggregateComplianceDetailsByConfigRuleRequest";
|
|
1141
|
+
const _GACDBCRRe = "GetAggregateComplianceDetailsByConfigRuleResponse";
|
|
1142
|
+
const _GACPCS = "GetAggregateConformancePackComplianceSummary";
|
|
1143
|
+
const _GACPCSR = "GetAggregateConformancePackComplianceSummaryRequest";
|
|
1144
|
+
const _GACPCSRe = "GetAggregateConformancePackComplianceSummaryResponse";
|
|
1145
|
+
const _GACRCS = "GetAggregateConfigRuleComplianceSummary";
|
|
1146
|
+
const _GACRCSR = "GetAggregateConfigRuleComplianceSummaryRequest";
|
|
1147
|
+
const _GACRCSRe = "GetAggregateConfigRuleComplianceSummaryResponse";
|
|
1148
|
+
const _GADRC = "GetAggregateDiscoveredResourceCounts";
|
|
1149
|
+
const _GADRCR = "GetAggregateDiscoveredResourceCountsRequest";
|
|
1150
|
+
const _GADRCRe = "GetAggregateDiscoveredResourceCountsResponse";
|
|
1151
|
+
const _GARC = "GetAggregateResourceConfig";
|
|
1152
|
+
const _GARCR = "GetAggregateResourceConfigRequest";
|
|
1153
|
+
const _GARCRe = "GetAggregateResourceConfigResponse";
|
|
1154
|
+
const _GBK = "GroupByKey";
|
|
1155
|
+
const _GCDBCR = "GetComplianceDetailsByConfigRule";
|
|
1156
|
+
const _GCDBCRR = "GetComplianceDetailsByConfigRuleRequest";
|
|
1157
|
+
const _GCDBCRRe = "GetComplianceDetailsByConfigRuleResponse";
|
|
1158
|
+
const _GCDBR = "GetComplianceDetailsByResource";
|
|
1159
|
+
const _GCDBRR = "GetComplianceDetailsByResourceRequest";
|
|
1160
|
+
const _GCDBRRe = "GetComplianceDetailsByResourceResponse";
|
|
1161
|
+
const _GCPCD = "GetConformancePackComplianceDetails";
|
|
1162
|
+
const _GCPCDR = "GetConformancePackComplianceDetailsRequest";
|
|
1163
|
+
const _GCPCDRe = "GetConformancePackComplianceDetailsResponse";
|
|
1164
|
+
const _GCPCS = "GetConformancePackComplianceSummary";
|
|
1165
|
+
const _GCPCSR = "GetConformancePackComplianceSummaryRequest";
|
|
1166
|
+
const _GCPCSRe = "GetConformancePackComplianceSummaryResponse";
|
|
1167
|
+
const _GCRP = "GetCustomRulePolicy";
|
|
1168
|
+
const _GCRPR = "GetCustomRulePolicyRequest";
|
|
1169
|
+
const _GCRPRe = "GetCustomRulePolicyResponse";
|
|
1170
|
+
const _GCSBCR = "GetComplianceSummaryByConfigRule";
|
|
1171
|
+
const _GCSBCRR = "GetComplianceSummaryByConfigRuleResponse";
|
|
1172
|
+
const _GCSBRT = "GetComplianceSummaryByResourceType";
|
|
1173
|
+
const _GCSBRTR = "GetComplianceSummaryByResourceTypeRequest";
|
|
1174
|
+
const _GCSBRTRe = "GetComplianceSummaryByResourceTypeResponse";
|
|
1175
|
+
const _GDRC = "GetDiscoveredResourceCounts";
|
|
1176
|
+
const _GDRCR = "GetDiscoveredResourceCountsRequest";
|
|
1177
|
+
const _GDRCRe = "GetDiscoveredResourceCountsResponse";
|
|
1178
|
+
const _GN = "GroupName";
|
|
1179
|
+
const _GOCPDS = "GetOrganizationConformancePackDetailedStatus";
|
|
1180
|
+
const _GOCPDSR = "GetOrganizationConformancePackDetailedStatusRequest";
|
|
1181
|
+
const _GOCPDSRe = "GetOrganizationConformancePackDetailedStatusResponse";
|
|
1182
|
+
const _GOCRDS = "GetOrganizationConfigRuleDetailedStatus";
|
|
1183
|
+
const _GOCRDSR = "GetOrganizationConfigRuleDetailedStatusRequest";
|
|
1184
|
+
const _GOCRDSRe = "GetOrganizationConfigRuleDetailedStatusResponse";
|
|
1185
|
+
const _GOCRP = "GetOrganizationCustomRulePolicy";
|
|
1186
|
+
const _GOCRPR = "GetOrganizationCustomRulePolicyRequest";
|
|
1187
|
+
const _GOCRPRe = "GetOrganizationCustomRulePolicyResponse";
|
|
1188
|
+
const _GRC = "GroupedResourceCounts";
|
|
1189
|
+
const _GRCH = "GetResourceConfigHistory";
|
|
1190
|
+
const _GRCHR = "GetResourceConfigHistoryRequest";
|
|
1191
|
+
const _GRCHRe = "GetResourceConfigHistoryResponse";
|
|
1192
|
+
const _GRCL = "GroupedResourceCountList";
|
|
1193
|
+
const _GRCr = "GroupedResourceCount";
|
|
1194
|
+
const _GRES = "GetResourceEvaluationSummary";
|
|
1195
|
+
const _GRESR = "GetResourceEvaluationSummaryRequest";
|
|
1196
|
+
const _GRESRe = "GetResourceEvaluationSummaryResponse";
|
|
1197
|
+
const _GSQ = "GetStoredQuery";
|
|
1198
|
+
const _GSQR = "GetStoredQueryRequest";
|
|
1199
|
+
const _GSQRe = "GetStoredQueryResponse";
|
|
1200
|
+
const _ICRNE = "InvalidConfigurationRecorderNameException";
|
|
1201
|
+
const _IDCNE = "InvalidDeliveryChannelNameException";
|
|
1202
|
+
const _IDPE = "InsufficientDeliveryPolicyException";
|
|
1203
|
+
const _IEE = "InvalidExpressionException";
|
|
1204
|
+
const _ILE = "InvalidLimitException";
|
|
1205
|
+
const _INTE = "InvalidNextTokenException";
|
|
1206
|
+
const _IP = "InputParameters";
|
|
1207
|
+
const _IPE = "InsufficientPermissionsException";
|
|
1208
|
+
const _IPM = "IdempotentParameterMismatch";
|
|
1209
|
+
const _IPVE = "InvalidParameterValueException";
|
|
1210
|
+
const _IRE = "InvalidRoleException";
|
|
1211
|
+
const _IRGE = "InvalidRecordingGroupException";
|
|
1212
|
+
const _IRTE = "InvalidResultTokenException";
|
|
1213
|
+
const _ISKKAE = "InvalidS3KmsKeyArnException";
|
|
1214
|
+
const _ISKPE = "InvalidS3KeyPrefixException";
|
|
1215
|
+
const _ISNSTARNE = "InvalidSNSTopicARNException";
|
|
1216
|
+
const _IT = "InvocationTime";
|
|
1217
|
+
const _ITRE = "InvalidTimeRangeException";
|
|
1218
|
+
const _K = "Key";
|
|
1219
|
+
const _L = "Limit";
|
|
1220
|
+
const _LADR = "ListAggregateDiscoveredResources";
|
|
1221
|
+
const _LADRR = "ListAggregateDiscoveredResourcesRequest";
|
|
1222
|
+
const _LADRRi = "ListAggregateDiscoveredResourcesResponse";
|
|
1223
|
+
const _LCPCS = "ListConformancePackComplianceScores";
|
|
1224
|
+
const _LCPCSR = "ListConformancePackComplianceScoresRequest";
|
|
1225
|
+
const _LCPCSRi = "ListConformancePackComplianceScoresResponse";
|
|
1226
|
+
const _LCR = "ListConfigurationRecorders";
|
|
1227
|
+
const _LCRR = "ListConfigurationRecordersRequest";
|
|
1228
|
+
const _LCRRi = "ListConfigurationRecordersResponse";
|
|
1229
|
+
const _LDCDFE = "LastDeliveryChannelDeleteFailedException";
|
|
1230
|
+
const _LDLDS = "LastDebugLogDeliveryStatus";
|
|
1231
|
+
const _LDLDSR = "LastDebugLogDeliveryStatusReason";
|
|
1232
|
+
const _LDLDT = "LastDebugLogDeliveryTime";
|
|
1233
|
+
const _LDR = "ListDiscoveredResources";
|
|
1234
|
+
const _LDRR = "ListDiscoveredResourcesRequest";
|
|
1235
|
+
const _LDRRi = "ListDiscoveredResourcesResponse";
|
|
1236
|
+
const _LDT = "LastDeactivatedTime";
|
|
1237
|
+
const _LEC = "LastErrorCode";
|
|
1238
|
+
const _LEE = "LimitExceededException";
|
|
1239
|
+
const _LEM = "LastErrorMessage";
|
|
1240
|
+
const _LFA = "LambdaFunctionArn";
|
|
1241
|
+
const _LFET = "LastFailedEvaluationTime";
|
|
1242
|
+
const _LFIT = "LastFailedInvocationTime";
|
|
1243
|
+
const _LRE = "ListResourceEvaluations";
|
|
1244
|
+
const _LRER = "ListResourceEvaluationsRequest";
|
|
1245
|
+
const _LRERi = "ListResourceEvaluationsResponse";
|
|
1246
|
+
const _LSET = "LastSuccessfulEvaluationTime";
|
|
1247
|
+
const _LSIT = "LastSuccessfulInvocationTime";
|
|
1248
|
+
const _LSQ = "ListStoredQueries";
|
|
1249
|
+
const _LSQR = "ListStoredQueriesRequest";
|
|
1250
|
+
const _LSQRi = "ListStoredQueriesResponse";
|
|
1251
|
+
const _LTFR = "ListTagsForResource";
|
|
1252
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
1253
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
1254
|
+
const _LUCT = "LastUpdateCompletedTime";
|
|
1255
|
+
const _LURT = "LastUpdateRequestedTime";
|
|
1256
|
+
const _LUS = "LastUpdateStatus";
|
|
1257
|
+
const _LUT = "LastUpdateTime";
|
|
1258
|
+
const _LUTa = "LastUpdatedTime";
|
|
1259
|
+
const _M = "Mode";
|
|
1260
|
+
const _MAA = "MaximumAutomaticAttempts";
|
|
1261
|
+
const _MAREE = "MaxActiveResourcesExceededException";
|
|
1262
|
+
const _MARS = "MemberAccountRuleStatus";
|
|
1263
|
+
const _MAS = "MemberAccountStatus";
|
|
1264
|
+
const _MEF = "MaximumExecutionFrequency";
|
|
1265
|
+
const _MNOCPEE = "MaxNumberOfConformancePacksExceededException";
|
|
1266
|
+
const _MNOCREE = "MaxNumberOfConfigRulesExceededException";
|
|
1267
|
+
const _MNOCREEa = "MaxNumberOfConfigurationRecordersExceededException";
|
|
1268
|
+
const _MNODCEE = "MaxNumberOfDeliveryChannelsExceededException";
|
|
1269
|
+
const _MNOOCPEE = "MaxNumberOfOrganizationConformancePacksExceededException";
|
|
1270
|
+
const _MNOOCREE = "MaxNumberOfOrganizationConfigRulesExceededException";
|
|
1271
|
+
const _MNORCEE = "MaxNumberOfRetentionConfigurationsExceededException";
|
|
1272
|
+
const _MR = "MaxResults";
|
|
1273
|
+
const _MT = "MessageType";
|
|
1274
|
+
const _Me = "Message";
|
|
1275
|
+
const _N = "Name";
|
|
1276
|
+
const _NACRE = "NoAvailableConfigurationRecorderException";
|
|
1277
|
+
const _NADCE = "NoAvailableDeliveryChannelException";
|
|
1278
|
+
const _NAOE = "NoAvailableOrganizationException";
|
|
1279
|
+
const _NCCPC = "NonCompliantConformancePackCount";
|
|
1280
|
+
const _NCRC = "NonCompliantRuleCount";
|
|
1281
|
+
const _NCRCo = "NonCompliantResourceCount";
|
|
1282
|
+
const _NRCRE = "NoRunningConfigurationRecorderException";
|
|
1283
|
+
const _NSBE = "NoSuchBucketException";
|
|
1284
|
+
const _NSCAE = "NoSuchConfigurationAggregatorException";
|
|
1285
|
+
const _NSCPE = "NoSuchConformancePackException";
|
|
1286
|
+
const _NSCRE = "NoSuchConfigRuleException";
|
|
1287
|
+
const _NSCREo = "NoSuchConfigurationRecorderException";
|
|
1288
|
+
const _NSCRICPE = "NoSuchConfigRuleInConformancePackException";
|
|
1289
|
+
const _NSDCE = "NoSuchDeliveryChannelException";
|
|
1290
|
+
const _NSOCPE = "NoSuchOrganizationConformancePackException";
|
|
1291
|
+
const _NSOCRE = "NoSuchOrganizationConfigRuleException";
|
|
1292
|
+
const _NSRCE = "NoSuchRemediationConfigurationException";
|
|
1293
|
+
const _NSRCEo = "NoSuchRetentionConfigurationException";
|
|
1294
|
+
const _NSREE = "NoSuchRemediationExceptionException";
|
|
1295
|
+
const _NT = "NextToken";
|
|
1296
|
+
const _O = "Owner";
|
|
1297
|
+
const _OADE = "OrganizationAccessDeniedException";
|
|
1298
|
+
const _OAFNEE = "OrganizationAllFeaturesNotEnabledException";
|
|
1299
|
+
const _OAS = "OrganizationAggregationSource";
|
|
1300
|
+
const _OCIE = "OversizedConfigurationItemException";
|
|
1301
|
+
const _OCP = "OrganizationConformancePacks";
|
|
1302
|
+
const _OCPA = "OrganizationConformancePackArn";
|
|
1303
|
+
const _OCPDS = "OrganizationConformancePackDetailedStatuses";
|
|
1304
|
+
const _OCPDSr = "OrganizationConformancePackDetailedStatus";
|
|
1305
|
+
const _OCPN = "OrganizationConformancePackName";
|
|
1306
|
+
const _OCPNr = "OrganizationConformancePackNames";
|
|
1307
|
+
const _OCPRM = "OrganizationCustomPolicyRuleMetadata";
|
|
1308
|
+
const _OCPRMNP = "OrganizationCustomPolicyRuleMetadataNoPolicy";
|
|
1309
|
+
const _OCPS = "OrganizationConformancePackStatuses";
|
|
1310
|
+
const _OCPSr = "OrganizationConformancePackStatus";
|
|
1311
|
+
const _OCPTVE = "OrganizationConformancePackTemplateValidationException";
|
|
1312
|
+
const _OCPr = "OrganizationConformancePack";
|
|
1313
|
+
const _OCR = "OrganizationConfigRules";
|
|
1314
|
+
const _OCRA = "OrganizationConfigRuleArn";
|
|
1315
|
+
const _OCRDS = "OrganizationConfigRuleDetailedStatus";
|
|
1316
|
+
const _OCRM = "OrganizationCustomRuleMetadata";
|
|
1317
|
+
const _OCRN = "OrganizationConfigRuleName";
|
|
1318
|
+
const _OCRNr = "OrganizationConfigRuleNames";
|
|
1319
|
+
const _OCRS = "OrganizationConfigRuleStatuses";
|
|
1320
|
+
const _OCRSr = "OrganizationConfigRuleStatus";
|
|
1321
|
+
const _OCRTT = "OrganizationConfigRuleTriggerTypes";
|
|
1322
|
+
const _OCRr = "OrganizationConfigRule";
|
|
1323
|
+
const _OMRM = "OrganizationManagedRuleMetadata";
|
|
1324
|
+
const _ORDSF = "OrganizationResourceDetailedStatusFilters";
|
|
1325
|
+
const _ORS = "OrganizationRuleStatus";
|
|
1326
|
+
const _OT = "OrderingTimestamp";
|
|
1327
|
+
const _P = "Parameters";
|
|
1328
|
+
const _PAA = "PutAggregationAuthorization";
|
|
1329
|
+
const _PAAR = "PutAggregationAuthorizationRequest";
|
|
1330
|
+
const _PAARu = "PutAggregationAuthorizationResponse";
|
|
1331
|
+
const _PAR = "PendingAggregationRequests";
|
|
1332
|
+
const _PARL = "PendingAggregationRequestList";
|
|
1333
|
+
const _PARe = "PendingAggregationRequest";
|
|
1334
|
+
const _PCA = "PutConfigurationAggregator";
|
|
1335
|
+
const _PCAR = "PutConfigurationAggregatorRequest";
|
|
1336
|
+
const _PCARu = "PutConfigurationAggregatorResponse";
|
|
1337
|
+
const _PCP = "PutConformancePack";
|
|
1338
|
+
const _PCPR = "PutConformancePackRequest";
|
|
1339
|
+
const _PCPRu = "PutConformancePackResponse";
|
|
1340
|
+
const _PCR = "PutConfigRule";
|
|
1341
|
+
const _PCRR = "PutConfigRuleRequest";
|
|
1342
|
+
const _PCRRu = "PutConfigurationRecorderRequest";
|
|
1343
|
+
const _PCRu = "PutConfigurationRecorder";
|
|
1344
|
+
const _PDC = "PutDeliveryChannel";
|
|
1345
|
+
const _PDCR = "PutDeliveryChannelRequest";
|
|
1346
|
+
const _PE = "PutEvaluations";
|
|
1347
|
+
const _PEE = "PutExternalEvaluation";
|
|
1348
|
+
const _PEER = "PutExternalEvaluationRequest";
|
|
1349
|
+
const _PEERu = "PutExternalEvaluationResponse";
|
|
1350
|
+
const _PER = "PutEvaluationsRequest";
|
|
1351
|
+
const _PERu = "PutEvaluationsResponse";
|
|
1352
|
+
const _PN = "ParameterName";
|
|
1353
|
+
const _POCP = "PutOrganizationConformancePack";
|
|
1354
|
+
const _POCPR = "PutOrganizationConformancePackRequest";
|
|
1355
|
+
const _POCPRu = "PutOrganizationConformancePackResponse";
|
|
1356
|
+
const _POCR = "PutOrganizationConfigRule";
|
|
1357
|
+
const _POCRR = "PutOrganizationConfigRuleRequest";
|
|
1358
|
+
const _POCRRu = "PutOrganizationConfigRuleResponse";
|
|
1359
|
+
const _PR = "PolicyRuntime";
|
|
1360
|
+
const _PRC = "PutRemediationConfigurations";
|
|
1361
|
+
const _PRCR = "PutRemediationConfigurationsRequest";
|
|
1362
|
+
const _PRCRu = "PutRemediationConfigurationsResponse";
|
|
1363
|
+
const _PRCRut = "PutResourceConfigRequest";
|
|
1364
|
+
const _PRCRute = "PutRetentionConfigurationRequest";
|
|
1365
|
+
const _PRCRutet = "PutRetentionConfigurationResponse";
|
|
1366
|
+
const _PRCu = "PutResourceConfig";
|
|
1367
|
+
const _PRCut = "PutRetentionConfiguration";
|
|
1368
|
+
const _PRE = "PutRemediationExceptions";
|
|
1369
|
+
const _PRER = "PutRemediationExceptionsRequest";
|
|
1370
|
+
const _PRERu = "PutRemediationExceptionsResponse";
|
|
1371
|
+
const _PSLCR = "PutServiceLinkedConfigurationRecorder";
|
|
1372
|
+
const _PSLCRR = "PutServiceLinkedConfigurationRecorderRequest";
|
|
1373
|
+
const _PSLCRRu = "PutServiceLinkedConfigurationRecorderResponse";
|
|
1374
|
+
const _PSQ = "PutStoredQuery";
|
|
1375
|
+
const _PSQR = "PutStoredQueryRequest";
|
|
1376
|
+
const _PSQRu = "PutStoredQueryResponse";
|
|
1377
|
+
const _PT = "PolicyText";
|
|
1378
|
+
const _PV = "ParameterValue";
|
|
1379
|
+
const _QA = "QueryArn";
|
|
1380
|
+
const _QI = "QueryInfo";
|
|
1381
|
+
const _QIu = "QueryId";
|
|
1382
|
+
const _QN = "QueryName";
|
|
1383
|
+
const _R = "Relationship";
|
|
1384
|
+
const _RA = "ResourceArn";
|
|
1385
|
+
const _RAI = "RequesterAccountId";
|
|
1386
|
+
const _RAR = "RequesterAwsRegion";
|
|
1387
|
+
const _RAS = "RetryAttemptSeconds";
|
|
1388
|
+
const _RAo = "RoleArn";
|
|
1389
|
+
const _RC = "RemediationConfigurations";
|
|
1390
|
+
const _RCF = "ResourceCountFilters";
|
|
1391
|
+
const _RCL = "RetentionConfigurationList";
|
|
1392
|
+
const _RCME = "ResourceConcurrentModificationException";
|
|
1393
|
+
const _RCN = "RetentionConfigurationName";
|
|
1394
|
+
const _RCNe = "RetentionConfigurationNames";
|
|
1395
|
+
const _RCST = "ResourceConfigurationSchemaType";
|
|
1396
|
+
const _RCe = "RetentionConfigurations";
|
|
1397
|
+
const _RCem = "RemediationConfiguration";
|
|
1398
|
+
const _RCes = "ResourceCount";
|
|
1399
|
+
const _RCeso = "ResourceConfiguration";
|
|
1400
|
+
const _RCesou = "ResourceCounts";
|
|
1401
|
+
const _RCet = "RetentionConfiguration";
|
|
1402
|
+
const _RD = "ResourceDetails";
|
|
1403
|
+
const _RE = "RemediationExceptions";
|
|
1404
|
+
const _REF = "ResourceEvaluationFilters";
|
|
1405
|
+
const _REI = "ResourceEvaluationId";
|
|
1406
|
+
const _RERK = "RemediationExceptionResourceKey";
|
|
1407
|
+
const _RERKe = "RemediationExceptionResourceKeys";
|
|
1408
|
+
const _RES = "RemediationExecutionStatuses";
|
|
1409
|
+
const _RESe = "RemediationExecutionStatus";
|
|
1410
|
+
const _RESem = "RemediationExecutionStep";
|
|
1411
|
+
const _RESeme = "RemediationExecutionSteps";
|
|
1412
|
+
const _REV = "RuleEvaluationVisibility";
|
|
1413
|
+
const _REe = "ResourceEvaluations";
|
|
1414
|
+
const _REem = "RemediationException";
|
|
1415
|
+
const _REes = "ResourceEvaluation";
|
|
1416
|
+
const _RF = "ResourceFilters";
|
|
1417
|
+
const _RG = "RecordingGroup";
|
|
1418
|
+
const _RI = "ResourceId";
|
|
1419
|
+
const _RIL = "ResourceIdentifierList";
|
|
1420
|
+
const _RILe = "ResourceIdentifiersList";
|
|
1421
|
+
const _RIPE = "RemediationInProgressException";
|
|
1422
|
+
const _RIS = "ResourceIdScope";
|
|
1423
|
+
const _RIUE = "ResourceInUseException";
|
|
1424
|
+
const _RIe = "ResourceIdentifiers";
|
|
1425
|
+
const _RIes = "ResourceIds";
|
|
1426
|
+
const _RIeso = "ResourceIdentifier";
|
|
1427
|
+
const _RIu = "RuleIdentifier";
|
|
1428
|
+
const _RK = "ResourceKeys";
|
|
1429
|
+
const _RKe = "ResourceKey";
|
|
1430
|
+
const _RL = "RelationshipList";
|
|
1431
|
+
const _RM = "RecordingMode";
|
|
1432
|
+
const _RMO = "RecordingModeOverride";
|
|
1433
|
+
const _RMOe = "RecordingModeOverrides";
|
|
1434
|
+
const _RN = "ResourceName";
|
|
1435
|
+
const _RNDE = "ResourceNotDiscoveredException";
|
|
1436
|
+
const _RNFE = "ResourceNotFoundException";
|
|
1437
|
+
const _RP = "RemediationParameters";
|
|
1438
|
+
const _RPID = "RetentionPeriodInDays";
|
|
1439
|
+
const _RPV = "RemediationParameterValue";
|
|
1440
|
+
const _RRT = "ResultRecordedTime";
|
|
1441
|
+
const _RS = "RecordingStrategy";
|
|
1442
|
+
const _RT = "ResourceType";
|
|
1443
|
+
const _RTS = "ResourceTypesScope";
|
|
1444
|
+
const _RTe = "ResourceTypes";
|
|
1445
|
+
const _RTes = "ResultToken";
|
|
1446
|
+
const _RV = "ResourceValue";
|
|
1447
|
+
const _Re = "Region";
|
|
1448
|
+
const _Res = "Results";
|
|
1449
|
+
const _S = "Source";
|
|
1450
|
+
const _SA = "StackArn";
|
|
1451
|
+
const _SAI = "SourceAccountId";
|
|
1452
|
+
const _SARC = "SelectAggregateResourceConfig";
|
|
1453
|
+
const _SARCR = "SelectAggregateResourceConfigRequest";
|
|
1454
|
+
const _SARCRe = "SelectAggregateResourceConfigResponse";
|
|
1455
|
+
const _SB = "SortBy";
|
|
1456
|
+
const _SC = "SsmControls";
|
|
1457
|
+
const _SCR = "StartConfigurationRecorder";
|
|
1458
|
+
const _SCRE = "StartConfigRulesEvaluation";
|
|
1459
|
+
const _SCRER = "StartConfigRulesEvaluationRequest";
|
|
1460
|
+
const _SCRERt = "StartConfigRulesEvaluationResponse";
|
|
1461
|
+
const _SCRR = "StartConfigurationRecorderRequest";
|
|
1462
|
+
const _SCRRt = "StopConfigurationRecorderRequest";
|
|
1463
|
+
const _SCRt = "StopConfigurationRecorder";
|
|
1464
|
+
const _SD = "StepDetails";
|
|
1465
|
+
const _SDF = "StatusDetailFilters";
|
|
1466
|
+
const _SDo = "SourceDetails";
|
|
1467
|
+
const _SDou = "SourceDetail";
|
|
1468
|
+
const _SF = "SelectFields";
|
|
1469
|
+
const _SI = "SourceId";
|
|
1470
|
+
const _SIo = "SourceIdentifier";
|
|
1471
|
+
const _SO = "SortOrder";
|
|
1472
|
+
const _SP = "ServicePrincipal";
|
|
1473
|
+
const _SPe = "ServicePrincipals";
|
|
1474
|
+
const _SQ = "StoredQuery";
|
|
1475
|
+
const _SQM = "StoredQueryMetadata";
|
|
1476
|
+
const _SQML = "StoredQueryMetadataList";
|
|
1477
|
+
const _SR = "SourceRegion";
|
|
1478
|
+
const _SRC = "SelectResourceConfig";
|
|
1479
|
+
const _SRCR = "SelectResourceConfigRequest";
|
|
1480
|
+
const _SRCRe = "SelectResourceConfigResponse";
|
|
1481
|
+
const _SRE = "StartRemediationExecution";
|
|
1482
|
+
const _SRER = "StartRemediationExecutionRequest";
|
|
1483
|
+
const _SRERt = "StartRemediationExecutionResponse";
|
|
1484
|
+
const _SRERta = "StartResourceEvaluationRequest";
|
|
1485
|
+
const _SRERtar = "StartResourceEvaluationResponse";
|
|
1486
|
+
const _SREt = "StartResourceEvaluation";
|
|
1487
|
+
const _ST = "SourceType";
|
|
1488
|
+
const _STt = "StartTime";
|
|
1489
|
+
const _STto = "StopTime";
|
|
1490
|
+
const _SV = "StaticValue";
|
|
1491
|
+
const _SVI = "SchemaVersionId";
|
|
1492
|
+
const _Sc = "Scope";
|
|
1493
|
+
const _Sco = "Score";
|
|
1494
|
+
const _St = "Status";
|
|
1495
|
+
const _Sta = "State";
|
|
1496
|
+
const _T = "Type";
|
|
1497
|
+
const _TB = "TemplateBody";
|
|
1498
|
+
const _TDR = "TotalDiscoveredResources";
|
|
1499
|
+
const _TI = "TargetId";
|
|
1500
|
+
const _TK = "TagKey";
|
|
1501
|
+
const _TKS = "TagKeyScope";
|
|
1502
|
+
const _TKa = "TagKeys";
|
|
1503
|
+
const _TL = "TagList";
|
|
1504
|
+
const _TLa = "TagsList";
|
|
1505
|
+
const _TM = "TestMode";
|
|
1506
|
+
const _TMTE = "TooManyTagsException";
|
|
1507
|
+
const _TR = "TagResource";
|
|
1508
|
+
const _TRC = "TotalRuleCount";
|
|
1509
|
+
const _TRR = "TagResourceRequest";
|
|
1510
|
+
const _TSSMDD = "TemplateSSMDocumentDetails";
|
|
1511
|
+
const _TSU = "TemplateS3Uri";
|
|
1512
|
+
const _TT = "TargetType";
|
|
1513
|
+
const _TV = "TargetVersion";
|
|
1514
|
+
const _TVS = "TagValueScope";
|
|
1515
|
+
const _TVa = "TagValue";
|
|
1516
|
+
const _TW = "TimeWindow";
|
|
1517
|
+
const _Ta = "Tags";
|
|
1518
|
+
const _Tag = "Tag";
|
|
1519
|
+
const _UEE = "UnmodifiableEntityException";
|
|
1520
|
+
const _UR = "UntagResource";
|
|
1521
|
+
const _URI = "UnprocessedResourceIdentifiers";
|
|
1522
|
+
const _URIL = "UnprocessedResourceIdentifierList";
|
|
1523
|
+
const _URR = "UntagResourceRequest";
|
|
1524
|
+
const _US = "UpdateStatus";
|
|
1525
|
+
const _V = "Value";
|
|
1526
|
+
const _VE = "ValidationException";
|
|
1527
|
+
const _Va = "Values";
|
|
1528
|
+
const _a = "arn";
|
|
1529
|
+
const _aI = "accountId";
|
|
1530
|
+
const _aR = "awsRegion";
|
|
1531
|
+
const _aS = "allSupported";
|
|
1532
|
+
const _aZ = "availabilityZone";
|
|
1533
|
+
const _bCI = "baseConfigurationItems";
|
|
1534
|
+
const _c = "client";
|
|
1535
|
+
const _cHDI = "configHistoryDeliveryInfo";
|
|
1536
|
+
const _cI = "configurationItems";
|
|
1537
|
+
const _cICT = "configurationItemCaptureTime";
|
|
1538
|
+
const _cIDT = "configurationItemDeliveryTime";
|
|
1539
|
+
const _cIMDH = "configurationItemMD5Hash";
|
|
1540
|
+
const _cIS = "configurationItemStatus";
|
|
1541
|
+
const _cO = "chronologicalOrder";
|
|
1542
|
+
const _cSDI = "configSnapshotDeliveryInfo";
|
|
1543
|
+
const _cSDIo = "configStreamDeliveryInfo";
|
|
1544
|
+
const _cSDP = "configSnapshotDeliveryProperties";
|
|
1545
|
+
const _cSI = "configurationStateId";
|
|
1546
|
+
const _cSIo = "configSnapshotId";
|
|
1547
|
+
const _co = "configuration";
|
|
1548
|
+
const _cou = "count";
|
|
1549
|
+
const _d = "description";
|
|
1550
|
+
const _dCN = "deliveryChannelName";
|
|
1551
|
+
const _dF = "deliveryFrequency";
|
|
1552
|
+
const _e = "error";
|
|
1553
|
+
const _eBRT = "exclusionByResourceTypes";
|
|
1554
|
+
const _eT = "earlierTime";
|
|
1555
|
+
const _fN = "filterName";
|
|
1556
|
+
const _fV = "filterValue";
|
|
1557
|
+
const _hE = "httpError";
|
|
1558
|
+
const _iDR = "includeDeletedResources";
|
|
1559
|
+
const _iGRT = "includeGlobalResourceTypes";
|
|
1560
|
+
const _l = "limit";
|
|
1561
|
+
const _lAT = "lastAttemptTime";
|
|
1562
|
+
const _lEC = "lastErrorCode";
|
|
1563
|
+
const _lEM = "lastErrorMessage";
|
|
1564
|
+
const _lS = "lastStatus";
|
|
1565
|
+
const _lSCT = "lastStatusChangeTime";
|
|
1566
|
+
const _lST = "lastSuccessfulTime";
|
|
1567
|
+
const _lSTa = "lastStartTime";
|
|
1568
|
+
const _lSTas = "lastStopTime";
|
|
1569
|
+
const _lT = "laterTime";
|
|
1570
|
+
const _m = "message";
|
|
1571
|
+
const _n = "name";
|
|
1572
|
+
const _nDT = "nextDeliveryTime";
|
|
1573
|
+
const _nT = "nextToken";
|
|
1574
|
+
const _r = "relationships";
|
|
1575
|
+
const _rARN = "roleARN";
|
|
1576
|
+
const _rC = "resourceCounts";
|
|
1577
|
+
const _rCT = "resourceCreationTime";
|
|
1578
|
+
const _rDT = "resourceDeletionTime";
|
|
1579
|
+
const _rE = "relatedEvents";
|
|
1580
|
+
const _rF = "recordingFrequency";
|
|
1581
|
+
const _rG = "recordingGroup";
|
|
1582
|
+
const _rI = "resourceId";
|
|
1583
|
+
const _rIe = "resourceIds";
|
|
1584
|
+
const _rIes = "resourceIdentifiers";
|
|
1585
|
+
const _rK = "resourceKeys";
|
|
1586
|
+
const _rM = "recordingMode";
|
|
1587
|
+
const _rMO = "recordingModeOverrides";
|
|
1588
|
+
const _rN = "resourceName";
|
|
1589
|
+
const _rNe = "relationshipName";
|
|
1590
|
+
const _rS = "recordingScope";
|
|
1591
|
+
const _rSe = "recordingStrategy";
|
|
1592
|
+
const _rT = "resourceType";
|
|
1593
|
+
const _rTe = "resourceTypes";
|
|
1594
|
+
const _re = "recording";
|
|
1595
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.configservice";
|
|
1596
|
+
const _sBN = "s3BucketName";
|
|
1597
|
+
const _sC = "supplementaryConfiguration";
|
|
1598
|
+
const _sKKA = "s3KmsKeyArn";
|
|
1599
|
+
const _sKP = "s3KeyPrefix";
|
|
1600
|
+
const _sP = "servicePrincipal";
|
|
1601
|
+
const _sTARN = "snsTopicARN";
|
|
1602
|
+
const _t = "tags";
|
|
1603
|
+
const _tDR = "totalDiscoveredResources";
|
|
1604
|
+
const _uO = "useOnly";
|
|
1605
|
+
const _uRK = "unprocessedResourceKeys";
|
|
1606
|
+
const _v = "version";
|
|
1607
|
+
const n0 = "com.amazonaws.configservice";
|
|
1608
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
1609
|
+
var ConfigServiceServiceException$ = [-3, _s, "ConfigServiceServiceException", 0, [], []];
|
|
1610
|
+
_s_registry.registerError(ConfigServiceServiceException$, ConfigServiceServiceException);
|
|
1611
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
1612
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
1613
|
+
{ [_e]: _c },
|
|
1614
|
+
[_m],
|
|
1615
|
+
[0]
|
|
1616
|
+
];
|
|
1617
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
1618
|
+
var ConformancePackTemplateValidationException$ = [-3, n0, _CPTVE,
|
|
1619
|
+
{ [_e]: _c },
|
|
1620
|
+
[_m],
|
|
1621
|
+
[0]
|
|
1622
|
+
];
|
|
1623
|
+
n0_registry.registerError(ConformancePackTemplateValidationException$, ConformancePackTemplateValidationException);
|
|
1624
|
+
var IdempotentParameterMismatch$ = [-3, n0, _IPM,
|
|
1625
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
1626
|
+
[_m],
|
|
1627
|
+
[0]
|
|
1628
|
+
];
|
|
1629
|
+
n0_registry.registerError(IdempotentParameterMismatch$, IdempotentParameterMismatch);
|
|
1630
|
+
var InsufficientDeliveryPolicyException$ = [-3, n0, _IDPE,
|
|
1631
|
+
{ [_e]: _c },
|
|
1632
|
+
[_m],
|
|
1633
|
+
[0]
|
|
1634
|
+
];
|
|
1635
|
+
n0_registry.registerError(InsufficientDeliveryPolicyException$, InsufficientDeliveryPolicyException);
|
|
1636
|
+
var InsufficientPermissionsException$ = [-3, n0, _IPE,
|
|
1637
|
+
{ [_e]: _c },
|
|
1638
|
+
[_m],
|
|
1639
|
+
[0]
|
|
1640
|
+
];
|
|
1641
|
+
n0_registry.registerError(InsufficientPermissionsException$, InsufficientPermissionsException);
|
|
1642
|
+
var InvalidConfigurationRecorderNameException$ = [-3, n0, _ICRNE,
|
|
1643
|
+
{ [_e]: _c },
|
|
1644
|
+
[_m],
|
|
1645
|
+
[0]
|
|
1646
|
+
];
|
|
1647
|
+
n0_registry.registerError(InvalidConfigurationRecorderNameException$, InvalidConfigurationRecorderNameException);
|
|
1648
|
+
var InvalidDeliveryChannelNameException$ = [-3, n0, _IDCNE,
|
|
1649
|
+
{ [_e]: _c },
|
|
1650
|
+
[_m],
|
|
1651
|
+
[0]
|
|
1652
|
+
];
|
|
1653
|
+
n0_registry.registerError(InvalidDeliveryChannelNameException$, InvalidDeliveryChannelNameException);
|
|
1654
|
+
var InvalidExpressionException$ = [-3, n0, _IEE,
|
|
1655
|
+
{ [_e]: _c },
|
|
1656
|
+
[_m],
|
|
1657
|
+
[0]
|
|
1658
|
+
];
|
|
1659
|
+
n0_registry.registerError(InvalidExpressionException$, InvalidExpressionException);
|
|
1660
|
+
var InvalidLimitException$ = [-3, n0, _ILE,
|
|
1661
|
+
{ [_e]: _c },
|
|
1662
|
+
[_m],
|
|
1663
|
+
[0]
|
|
1664
|
+
];
|
|
1665
|
+
n0_registry.registerError(InvalidLimitException$, InvalidLimitException);
|
|
1666
|
+
var InvalidNextTokenException$ = [-3, n0, _INTE,
|
|
1667
|
+
{ [_e]: _c },
|
|
1668
|
+
[_m],
|
|
1669
|
+
[0]
|
|
1670
|
+
];
|
|
1671
|
+
n0_registry.registerError(InvalidNextTokenException$, InvalidNextTokenException);
|
|
1672
|
+
var InvalidParameterValueException$ = [-3, n0, _IPVE,
|
|
1673
|
+
{ [_e]: _c },
|
|
1674
|
+
[_m],
|
|
1675
|
+
[0]
|
|
1676
|
+
];
|
|
1677
|
+
n0_registry.registerError(InvalidParameterValueException$, InvalidParameterValueException);
|
|
1678
|
+
var InvalidRecordingGroupException$ = [-3, n0, _IRGE,
|
|
1679
|
+
{ [_e]: _c },
|
|
1680
|
+
[_m],
|
|
1681
|
+
[0]
|
|
1682
|
+
];
|
|
1683
|
+
n0_registry.registerError(InvalidRecordingGroupException$, InvalidRecordingGroupException);
|
|
1684
|
+
var InvalidResultTokenException$ = [-3, n0, _IRTE,
|
|
1685
|
+
{ [_e]: _c },
|
|
1686
|
+
[_m],
|
|
1687
|
+
[0]
|
|
1688
|
+
];
|
|
1689
|
+
n0_registry.registerError(InvalidResultTokenException$, InvalidResultTokenException);
|
|
1690
|
+
var InvalidRoleException$ = [-3, n0, _IRE,
|
|
1691
|
+
{ [_e]: _c },
|
|
1692
|
+
[_m],
|
|
1693
|
+
[0]
|
|
1694
|
+
];
|
|
1695
|
+
n0_registry.registerError(InvalidRoleException$, InvalidRoleException);
|
|
1696
|
+
var InvalidS3KeyPrefixException$ = [-3, n0, _ISKPE,
|
|
1697
|
+
{ [_e]: _c },
|
|
1698
|
+
[_m],
|
|
1699
|
+
[0]
|
|
1700
|
+
];
|
|
1701
|
+
n0_registry.registerError(InvalidS3KeyPrefixException$, InvalidS3KeyPrefixException);
|
|
1702
|
+
var InvalidS3KmsKeyArnException$ = [-3, n0, _ISKKAE,
|
|
1703
|
+
{ [_e]: _c },
|
|
1704
|
+
[_m],
|
|
1705
|
+
[0]
|
|
1706
|
+
];
|
|
1707
|
+
n0_registry.registerError(InvalidS3KmsKeyArnException$, InvalidS3KmsKeyArnException);
|
|
1708
|
+
var InvalidSNSTopicARNException$ = [-3, n0, _ISNSTARNE,
|
|
1709
|
+
{ [_e]: _c },
|
|
1710
|
+
[_m],
|
|
1711
|
+
[0]
|
|
1712
|
+
];
|
|
1713
|
+
n0_registry.registerError(InvalidSNSTopicARNException$, InvalidSNSTopicARNException);
|
|
1714
|
+
var InvalidTimeRangeException$ = [-3, n0, _ITRE,
|
|
1715
|
+
{ [_e]: _c },
|
|
1716
|
+
[_m],
|
|
1717
|
+
[0]
|
|
1718
|
+
];
|
|
1719
|
+
n0_registry.registerError(InvalidTimeRangeException$, InvalidTimeRangeException);
|
|
1720
|
+
var LastDeliveryChannelDeleteFailedException$ = [-3, n0, _LDCDFE,
|
|
1721
|
+
{ [_e]: _c },
|
|
1722
|
+
[_m],
|
|
1723
|
+
[0]
|
|
1724
|
+
];
|
|
1725
|
+
n0_registry.registerError(LastDeliveryChannelDeleteFailedException$, LastDeliveryChannelDeleteFailedException);
|
|
1726
|
+
var LimitExceededException$ = [-3, n0, _LEE,
|
|
1727
|
+
{ [_e]: _c },
|
|
1728
|
+
[_m],
|
|
1729
|
+
[0]
|
|
1730
|
+
];
|
|
1731
|
+
n0_registry.registerError(LimitExceededException$, LimitExceededException);
|
|
1732
|
+
var MaxActiveResourcesExceededException$ = [-3, n0, _MAREE,
|
|
1733
|
+
{ [_e]: _c },
|
|
1734
|
+
[_m],
|
|
1735
|
+
[0]
|
|
1736
|
+
];
|
|
1737
|
+
n0_registry.registerError(MaxActiveResourcesExceededException$, MaxActiveResourcesExceededException);
|
|
1738
|
+
var MaxNumberOfConfigRulesExceededException$ = [-3, n0, _MNOCREE,
|
|
1739
|
+
{ [_e]: _c },
|
|
1740
|
+
[_m],
|
|
1741
|
+
[0]
|
|
1742
|
+
];
|
|
1743
|
+
n0_registry.registerError(MaxNumberOfConfigRulesExceededException$, MaxNumberOfConfigRulesExceededException);
|
|
1744
|
+
var MaxNumberOfConfigurationRecordersExceededException$ = [-3, n0, _MNOCREEa,
|
|
1745
|
+
{ [_e]: _c },
|
|
1746
|
+
[_m],
|
|
1747
|
+
[0]
|
|
1748
|
+
];
|
|
1749
|
+
n0_registry.registerError(MaxNumberOfConfigurationRecordersExceededException$, MaxNumberOfConfigurationRecordersExceededException);
|
|
1750
|
+
var MaxNumberOfConformancePacksExceededException$ = [-3, n0, _MNOCPEE,
|
|
1751
|
+
{ [_e]: _c },
|
|
1752
|
+
[_m],
|
|
1753
|
+
[0]
|
|
1754
|
+
];
|
|
1755
|
+
n0_registry.registerError(MaxNumberOfConformancePacksExceededException$, MaxNumberOfConformancePacksExceededException);
|
|
1756
|
+
var MaxNumberOfDeliveryChannelsExceededException$ = [-3, n0, _MNODCEE,
|
|
1757
|
+
{ [_e]: _c },
|
|
1758
|
+
[_m],
|
|
1759
|
+
[0]
|
|
1760
|
+
];
|
|
1761
|
+
n0_registry.registerError(MaxNumberOfDeliveryChannelsExceededException$, MaxNumberOfDeliveryChannelsExceededException);
|
|
1762
|
+
var MaxNumberOfOrganizationConfigRulesExceededException$ = [-3, n0, _MNOOCREE,
|
|
1763
|
+
{ [_e]: _c },
|
|
1764
|
+
[_m],
|
|
1765
|
+
[0]
|
|
1766
|
+
];
|
|
1767
|
+
n0_registry.registerError(MaxNumberOfOrganizationConfigRulesExceededException$, MaxNumberOfOrganizationConfigRulesExceededException);
|
|
1768
|
+
var MaxNumberOfOrganizationConformancePacksExceededException$ = [-3, n0, _MNOOCPEE,
|
|
1769
|
+
{ [_e]: _c },
|
|
1770
|
+
[_m],
|
|
1771
|
+
[0]
|
|
1772
|
+
];
|
|
1773
|
+
n0_registry.registerError(MaxNumberOfOrganizationConformancePacksExceededException$, MaxNumberOfOrganizationConformancePacksExceededException);
|
|
1774
|
+
var MaxNumberOfRetentionConfigurationsExceededException$ = [-3, n0, _MNORCEE,
|
|
1775
|
+
{ [_e]: _c },
|
|
1776
|
+
[_m],
|
|
1777
|
+
[0]
|
|
1778
|
+
];
|
|
1779
|
+
n0_registry.registerError(MaxNumberOfRetentionConfigurationsExceededException$, MaxNumberOfRetentionConfigurationsExceededException);
|
|
1780
|
+
var NoAvailableConfigurationRecorderException$ = [-3, n0, _NACRE,
|
|
1781
|
+
{ [_e]: _c },
|
|
1782
|
+
[_m],
|
|
1783
|
+
[0]
|
|
1784
|
+
];
|
|
1785
|
+
n0_registry.registerError(NoAvailableConfigurationRecorderException$, NoAvailableConfigurationRecorderException);
|
|
1786
|
+
var NoAvailableDeliveryChannelException$ = [-3, n0, _NADCE,
|
|
1787
|
+
{ [_e]: _c },
|
|
1788
|
+
[_m],
|
|
1789
|
+
[0]
|
|
1790
|
+
];
|
|
1791
|
+
n0_registry.registerError(NoAvailableDeliveryChannelException$, NoAvailableDeliveryChannelException);
|
|
1792
|
+
var NoAvailableOrganizationException$ = [-3, n0, _NAOE,
|
|
1793
|
+
{ [_e]: _c },
|
|
1794
|
+
[_m],
|
|
1795
|
+
[0]
|
|
1796
|
+
];
|
|
1797
|
+
n0_registry.registerError(NoAvailableOrganizationException$, NoAvailableOrganizationException);
|
|
1798
|
+
var NoRunningConfigurationRecorderException$ = [-3, n0, _NRCRE,
|
|
1799
|
+
{ [_e]: _c },
|
|
1800
|
+
[_m],
|
|
1801
|
+
[0]
|
|
1802
|
+
];
|
|
1803
|
+
n0_registry.registerError(NoRunningConfigurationRecorderException$, NoRunningConfigurationRecorderException);
|
|
1804
|
+
var NoSuchBucketException$ = [-3, n0, _NSBE,
|
|
1805
|
+
{ [_e]: _c },
|
|
1806
|
+
[_m],
|
|
1807
|
+
[0]
|
|
1808
|
+
];
|
|
1809
|
+
n0_registry.registerError(NoSuchBucketException$, NoSuchBucketException);
|
|
1810
|
+
var NoSuchConfigRuleException$ = [-3, n0, _NSCRE,
|
|
1811
|
+
{ [_e]: _c },
|
|
1812
|
+
[_m],
|
|
1813
|
+
[0]
|
|
1814
|
+
];
|
|
1815
|
+
n0_registry.registerError(NoSuchConfigRuleException$, NoSuchConfigRuleException);
|
|
1816
|
+
var NoSuchConfigRuleInConformancePackException$ = [-3, n0, _NSCRICPE,
|
|
1817
|
+
{ [_e]: _c },
|
|
1818
|
+
[_m],
|
|
1819
|
+
[0]
|
|
1820
|
+
];
|
|
1821
|
+
n0_registry.registerError(NoSuchConfigRuleInConformancePackException$, NoSuchConfigRuleInConformancePackException);
|
|
1822
|
+
var NoSuchConfigurationAggregatorException$ = [-3, n0, _NSCAE,
|
|
1823
|
+
{ [_e]: _c },
|
|
1824
|
+
[_m],
|
|
1825
|
+
[0]
|
|
1826
|
+
];
|
|
1827
|
+
n0_registry.registerError(NoSuchConfigurationAggregatorException$, NoSuchConfigurationAggregatorException);
|
|
1828
|
+
var NoSuchConfigurationRecorderException$ = [-3, n0, _NSCREo,
|
|
1829
|
+
{ [_e]: _c },
|
|
1830
|
+
[_m],
|
|
1831
|
+
[0]
|
|
1832
|
+
];
|
|
1833
|
+
n0_registry.registerError(NoSuchConfigurationRecorderException$, NoSuchConfigurationRecorderException);
|
|
1834
|
+
var NoSuchConformancePackException$ = [-3, n0, _NSCPE,
|
|
1835
|
+
{ [_e]: _c },
|
|
1836
|
+
[_m],
|
|
1837
|
+
[0]
|
|
1838
|
+
];
|
|
1839
|
+
n0_registry.registerError(NoSuchConformancePackException$, NoSuchConformancePackException);
|
|
1840
|
+
var NoSuchDeliveryChannelException$ = [-3, n0, _NSDCE,
|
|
1841
|
+
{ [_e]: _c },
|
|
1842
|
+
[_m],
|
|
1843
|
+
[0]
|
|
1844
|
+
];
|
|
1845
|
+
n0_registry.registerError(NoSuchDeliveryChannelException$, NoSuchDeliveryChannelException);
|
|
1846
|
+
var NoSuchOrganizationConfigRuleException$ = [-3, n0, _NSOCRE,
|
|
1847
|
+
{ [_e]: _c },
|
|
1848
|
+
[_m],
|
|
1849
|
+
[0]
|
|
1850
|
+
];
|
|
1851
|
+
n0_registry.registerError(NoSuchOrganizationConfigRuleException$, NoSuchOrganizationConfigRuleException);
|
|
1852
|
+
var NoSuchOrganizationConformancePackException$ = [-3, n0, _NSOCPE,
|
|
1853
|
+
{ [_e]: _c },
|
|
1854
|
+
[_m],
|
|
1855
|
+
[0]
|
|
1856
|
+
];
|
|
1857
|
+
n0_registry.registerError(NoSuchOrganizationConformancePackException$, NoSuchOrganizationConformancePackException);
|
|
1858
|
+
var NoSuchRemediationConfigurationException$ = [-3, n0, _NSRCE,
|
|
1859
|
+
{ [_e]: _c },
|
|
1860
|
+
[_m],
|
|
1861
|
+
[0]
|
|
1862
|
+
];
|
|
1863
|
+
n0_registry.registerError(NoSuchRemediationConfigurationException$, NoSuchRemediationConfigurationException);
|
|
1864
|
+
var NoSuchRemediationExceptionException$ = [-3, n0, _NSREE,
|
|
1865
|
+
{ [_e]: _c },
|
|
1866
|
+
[_m],
|
|
1867
|
+
[0]
|
|
1868
|
+
];
|
|
1869
|
+
n0_registry.registerError(NoSuchRemediationExceptionException$, NoSuchRemediationExceptionException);
|
|
1870
|
+
var NoSuchRetentionConfigurationException$ = [-3, n0, _NSRCEo,
|
|
1871
|
+
{ [_e]: _c },
|
|
1872
|
+
[_m],
|
|
1873
|
+
[0]
|
|
1874
|
+
];
|
|
1875
|
+
n0_registry.registerError(NoSuchRetentionConfigurationException$, NoSuchRetentionConfigurationException);
|
|
1876
|
+
var OrganizationAccessDeniedException$ = [-3, n0, _OADE,
|
|
1877
|
+
{ [_e]: _c },
|
|
1878
|
+
[_m],
|
|
1879
|
+
[0]
|
|
1880
|
+
];
|
|
1881
|
+
n0_registry.registerError(OrganizationAccessDeniedException$, OrganizationAccessDeniedException);
|
|
1882
|
+
var OrganizationAllFeaturesNotEnabledException$ = [-3, n0, _OAFNEE,
|
|
1883
|
+
{ [_e]: _c },
|
|
1884
|
+
[_m],
|
|
1885
|
+
[0]
|
|
1886
|
+
];
|
|
1887
|
+
n0_registry.registerError(OrganizationAllFeaturesNotEnabledException$, OrganizationAllFeaturesNotEnabledException);
|
|
1888
|
+
var OrganizationConformancePackTemplateValidationException$ = [-3, n0, _OCPTVE,
|
|
1889
|
+
{ [_e]: _c },
|
|
1890
|
+
[_m],
|
|
1891
|
+
[0]
|
|
1892
|
+
];
|
|
1893
|
+
n0_registry.registerError(OrganizationConformancePackTemplateValidationException$, OrganizationConformancePackTemplateValidationException);
|
|
1894
|
+
var OversizedConfigurationItemException$ = [-3, n0, _OCIE,
|
|
1895
|
+
{ [_e]: _c },
|
|
1896
|
+
[_m],
|
|
1897
|
+
[0]
|
|
1898
|
+
];
|
|
1899
|
+
n0_registry.registerError(OversizedConfigurationItemException$, OversizedConfigurationItemException);
|
|
1900
|
+
var RemediationInProgressException$ = [-3, n0, _RIPE,
|
|
1901
|
+
{ [_e]: _c },
|
|
1902
|
+
[_m],
|
|
1903
|
+
[0]
|
|
1904
|
+
];
|
|
1905
|
+
n0_registry.registerError(RemediationInProgressException$, RemediationInProgressException);
|
|
1906
|
+
var ResourceConcurrentModificationException$ = [-3, n0, _RCME,
|
|
1907
|
+
{ [_e]: _c },
|
|
1908
|
+
[_m],
|
|
1909
|
+
[0]
|
|
1910
|
+
];
|
|
1911
|
+
n0_registry.registerError(ResourceConcurrentModificationException$, ResourceConcurrentModificationException);
|
|
1912
|
+
var ResourceInUseException$ = [-3, n0, _RIUE,
|
|
1913
|
+
{ [_e]: _c },
|
|
1914
|
+
[_m],
|
|
1915
|
+
[0]
|
|
1916
|
+
];
|
|
1917
|
+
n0_registry.registerError(ResourceInUseException$, ResourceInUseException);
|
|
1918
|
+
var ResourceNotDiscoveredException$ = [-3, n0, _RNDE,
|
|
1919
|
+
{ [_e]: _c },
|
|
1920
|
+
[_m],
|
|
1921
|
+
[0]
|
|
1922
|
+
];
|
|
1923
|
+
n0_registry.registerError(ResourceNotDiscoveredException$, ResourceNotDiscoveredException);
|
|
1924
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
1925
|
+
{ [_e]: _c },
|
|
1926
|
+
[_m],
|
|
1927
|
+
[0]
|
|
1928
|
+
];
|
|
1929
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
1930
|
+
var TooManyTagsException$ = [-3, n0, _TMTE,
|
|
1931
|
+
{ [_e]: _c },
|
|
1932
|
+
[_m],
|
|
1933
|
+
[0]
|
|
1934
|
+
];
|
|
1935
|
+
n0_registry.registerError(TooManyTagsException$, TooManyTagsException);
|
|
1936
|
+
var UnmodifiableEntityException$ = [-3, n0, _UEE,
|
|
1937
|
+
{ [_e]: _c },
|
|
1938
|
+
[_m],
|
|
1939
|
+
[0]
|
|
1940
|
+
];
|
|
1941
|
+
n0_registry.registerError(UnmodifiableEntityException$, UnmodifiableEntityException);
|
|
1942
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
1943
|
+
{ [_e]: _c },
|
|
1944
|
+
[_m],
|
|
1945
|
+
[0]
|
|
1946
|
+
];
|
|
1947
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
1948
|
+
const errorTypeRegistries = [
|
|
1949
|
+
_s_registry,
|
|
1950
|
+
n0_registry,
|
|
1951
|
+
];
|
|
1952
|
+
var AccountAggregationSource$ = [3, n0, _AAS,
|
|
1953
|
+
0,
|
|
1954
|
+
[_AI, _AAR, _AR],
|
|
1955
|
+
[64 | 0, 2, 64 | 0], 1
|
|
1956
|
+
];
|
|
1957
|
+
var AggregateComplianceByConfigRule$ = [3, n0, _ACBCR,
|
|
1958
|
+
0,
|
|
1959
|
+
[_CRN, _C, _AIc, _ARw],
|
|
1960
|
+
[0, () => Compliance$, 0, 0]
|
|
1961
|
+
];
|
|
1962
|
+
var AggregateComplianceByConformancePack$ = [3, n0, _ACBCP,
|
|
1963
|
+
0,
|
|
1964
|
+
[_CPN, _C, _AIc, _ARw],
|
|
1965
|
+
[0, () => AggregateConformancePackCompliance$, 0, 0]
|
|
1966
|
+
];
|
|
1967
|
+
var AggregateComplianceCount$ = [3, n0, _ACC,
|
|
1968
|
+
0,
|
|
1969
|
+
[_GN, _CS],
|
|
1970
|
+
[0, () => ComplianceSummary$]
|
|
1971
|
+
];
|
|
1972
|
+
var AggregateConformancePackCompliance$ = [3, n0, _ACPC,
|
|
1973
|
+
0,
|
|
1974
|
+
[_CT, _CRC, _NCRC, _TRC],
|
|
1975
|
+
[0, 1, 1, 1]
|
|
1976
|
+
];
|
|
1977
|
+
var AggregateConformancePackComplianceCount$ = [3, n0, _ACPCC,
|
|
1978
|
+
0,
|
|
1979
|
+
[_CCPC, _NCCPC],
|
|
1980
|
+
[1, 1]
|
|
1981
|
+
];
|
|
1982
|
+
var AggregateConformancePackComplianceFilters$ = [3, n0, _ACPCF,
|
|
1983
|
+
0,
|
|
1984
|
+
[_CPN, _CT, _AIc, _ARw],
|
|
1985
|
+
[0, 0, 0, 0]
|
|
1986
|
+
];
|
|
1987
|
+
var AggregateConformancePackComplianceSummary$ = [3, n0, _ACPCS,
|
|
1988
|
+
0,
|
|
1989
|
+
[_CS, _GN],
|
|
1990
|
+
[() => AggregateConformancePackComplianceCount$, 0]
|
|
1991
|
+
];
|
|
1992
|
+
var AggregateConformancePackComplianceSummaryFilters$ = [3, n0, _ACPCSF,
|
|
1993
|
+
0,
|
|
1994
|
+
[_AIc, _ARw],
|
|
1995
|
+
[0, 0]
|
|
1996
|
+
];
|
|
1997
|
+
var AggregatedSourceStatus$ = [3, n0, _ASS,
|
|
1998
|
+
0,
|
|
1999
|
+
[_SI, _ST, _ARw, _LUS, _LUT, _LEC, _LEM],
|
|
2000
|
+
[0, 0, 0, 0, 4, 0, 0]
|
|
2001
|
+
];
|
|
2002
|
+
var AggregateEvaluationResult$ = [3, n0, _AER,
|
|
2003
|
+
0,
|
|
2004
|
+
[_ERI, _CT, _RRT, _CRIT, _A, _AIc, _ARw],
|
|
2005
|
+
[() => EvaluationResultIdentifier$, 0, 4, 4, 0, 0, 0]
|
|
2006
|
+
];
|
|
2007
|
+
var AggregateResourceIdentifier$ = [3, n0, _ARI,
|
|
2008
|
+
0,
|
|
2009
|
+
[_SAI, _SR, _RI, _RT, _RN],
|
|
2010
|
+
[0, 0, 0, 0, 0], 4
|
|
2011
|
+
];
|
|
2012
|
+
var AggregationAuthorization$ = [3, n0, _AA,
|
|
2013
|
+
0,
|
|
2014
|
+
[_AAA, _AAI, _AARu, _CTr],
|
|
2015
|
+
[0, 0, 0, 4]
|
|
2016
|
+
];
|
|
2017
|
+
var AggregatorFilterResourceType$ = [3, n0, _AFRT,
|
|
2018
|
+
0,
|
|
2019
|
+
[_T, _V],
|
|
2020
|
+
[0, 64 | 0]
|
|
2021
|
+
];
|
|
2022
|
+
var AggregatorFilters$ = [3, n0, _AF,
|
|
2023
|
+
0,
|
|
2024
|
+
[_RT, _SP],
|
|
2025
|
+
[() => AggregatorFilterResourceType$, () => AggregatorFilterServicePrincipal$]
|
|
2026
|
+
];
|
|
2027
|
+
var AggregatorFilterServicePrincipal$ = [3, n0, _AFSP,
|
|
2028
|
+
0,
|
|
2029
|
+
[_T, _V],
|
|
2030
|
+
[0, 64 | 0]
|
|
2031
|
+
];
|
|
2032
|
+
var AssociateResourceTypesRequest$ = [3, n0, _ARTR,
|
|
2033
|
+
0,
|
|
2034
|
+
[_CRA, _RTe],
|
|
2035
|
+
[0, 64 | 0], 2
|
|
2036
|
+
];
|
|
2037
|
+
var AssociateResourceTypesResponse$ = [3, n0, _ARTRs,
|
|
2038
|
+
0,
|
|
2039
|
+
[_CR],
|
|
2040
|
+
[() => ConfigurationRecorder$], 1
|
|
2041
|
+
];
|
|
2042
|
+
var BaseConfigurationItem$ = [3, n0, _BCI,
|
|
2043
|
+
0,
|
|
2044
|
+
[_v, _aI, _cICT, _cIS, _cSI, _a, _rT, _rI, _rN, _aR, _aZ, _rCT, _co, _sC, _rF, _cIDT],
|
|
2045
|
+
[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 4, 0, 128 | 0, 0, 4]
|
|
2046
|
+
];
|
|
2047
|
+
var BatchGetAggregateResourceConfigRequest$ = [3, n0, _BGARCR,
|
|
2048
|
+
0,
|
|
2049
|
+
[_CAN, _RIe],
|
|
2050
|
+
[0, () => ResourceIdentifiersList], 2
|
|
2051
|
+
];
|
|
2052
|
+
var BatchGetAggregateResourceConfigResponse$ = [3, n0, _BGARCRa,
|
|
2053
|
+
0,
|
|
2054
|
+
[_BCIa, _URI],
|
|
2055
|
+
[() => BaseConfigurationItems, () => UnprocessedResourceIdentifierList]
|
|
2056
|
+
];
|
|
2057
|
+
var BatchGetResourceConfigRequest$ = [3, n0, _BGRCR,
|
|
2058
|
+
0,
|
|
2059
|
+
[_rK],
|
|
2060
|
+
[() => ResourceKeys], 1
|
|
2061
|
+
];
|
|
2062
|
+
var BatchGetResourceConfigResponse$ = [3, n0, _BGRCRa,
|
|
2063
|
+
0,
|
|
2064
|
+
[_bCI, _uRK],
|
|
2065
|
+
[() => BaseConfigurationItems, () => ResourceKeys]
|
|
2066
|
+
];
|
|
2067
|
+
var Compliance$ = [3, n0, _C,
|
|
2068
|
+
0,
|
|
2069
|
+
[_CT, _CCC],
|
|
2070
|
+
[0, () => ComplianceContributorCount$]
|
|
2071
|
+
];
|
|
2072
|
+
var ComplianceByConfigRule$ = [3, n0, _CBCR,
|
|
2073
|
+
0,
|
|
2074
|
+
[_CRN, _C],
|
|
2075
|
+
[0, () => Compliance$]
|
|
2076
|
+
];
|
|
2077
|
+
var ComplianceByResource$ = [3, n0, _CBR,
|
|
2078
|
+
0,
|
|
2079
|
+
[_RT, _RI, _C],
|
|
2080
|
+
[0, 0, () => Compliance$]
|
|
2081
|
+
];
|
|
2082
|
+
var ComplianceContributorCount$ = [3, n0, _CCC,
|
|
2083
|
+
0,
|
|
2084
|
+
[_CC, _CEa],
|
|
2085
|
+
[1, 2]
|
|
2086
|
+
];
|
|
2087
|
+
var ComplianceSummary$ = [3, n0, _CS,
|
|
2088
|
+
0,
|
|
2089
|
+
[_CRCo, _NCRCo, _CST],
|
|
2090
|
+
[() => ComplianceContributorCount$, () => ComplianceContributorCount$, 4]
|
|
2091
|
+
];
|
|
2092
|
+
var ComplianceSummaryByResourceType$ = [3, n0, _CSBRT,
|
|
2093
|
+
0,
|
|
2094
|
+
[_RT, _CS],
|
|
2095
|
+
[0, () => ComplianceSummary$]
|
|
2096
|
+
];
|
|
2097
|
+
var ConfigExportDeliveryInfo$ = [3, n0, _CEDI,
|
|
2098
|
+
0,
|
|
2099
|
+
[_lS, _lEC, _lEM, _lAT, _lST, _nDT],
|
|
2100
|
+
[0, 0, 0, 4, 4, 4]
|
|
2101
|
+
];
|
|
2102
|
+
var ConfigRule$ = [3, n0, _CRo,
|
|
2103
|
+
0,
|
|
2104
|
+
[_S, _CRN, _CRAo, _CRI, _D, _Sc, _IP, _MEF, _CRS, _CB, _EM, _REV],
|
|
2105
|
+
[() => Source$, 0, 0, 0, 0, () => Scope$, 0, 0, 0, 0, () => EvaluationModes, 0], 1
|
|
2106
|
+
];
|
|
2107
|
+
var ConfigRuleComplianceFilters$ = [3, n0, _CRCF,
|
|
2108
|
+
0,
|
|
2109
|
+
[_CRN, _CT, _AIc, _ARw],
|
|
2110
|
+
[0, 0, 0, 0]
|
|
2111
|
+
];
|
|
2112
|
+
var ConfigRuleComplianceSummaryFilters$ = [3, n0, _CRCSF,
|
|
2113
|
+
0,
|
|
2114
|
+
[_AIc, _ARw],
|
|
2115
|
+
[0, 0]
|
|
2116
|
+
];
|
|
2117
|
+
var ConfigRuleEvaluationStatus$ = [3, n0, _CRES,
|
|
2118
|
+
0,
|
|
2119
|
+
[_CRN, _CRAo, _CRI, _LSIT, _LFIT, _LSET, _LFET, _FAT, _LDT, _LEC, _LEM, _FES, _LDLDS, _LDLDSR, _LDLDT],
|
|
2120
|
+
[0, 0, 0, 4, 4, 4, 4, 4, 4, 0, 0, 2, 0, 0, 4]
|
|
2121
|
+
];
|
|
2122
|
+
var ConfigSnapshotDeliveryProperties$ = [3, n0, _CSDP,
|
|
2123
|
+
0,
|
|
2124
|
+
[_dF],
|
|
2125
|
+
[0]
|
|
2126
|
+
];
|
|
2127
|
+
var ConfigStreamDeliveryInfo$ = [3, n0, _CSDI,
|
|
2128
|
+
0,
|
|
2129
|
+
[_lS, _lEC, _lEM, _lSCT],
|
|
2130
|
+
[0, 0, 0, 4]
|
|
2131
|
+
];
|
|
2132
|
+
var ConfigurationAggregator$ = [3, n0, _CA,
|
|
2133
|
+
0,
|
|
2134
|
+
[_CAN, _CAA, _AASc, _OAS, _CTr, _LUTa, _CB, _AF],
|
|
2135
|
+
[0, 0, () => AccountAggregationSourceList, () => OrganizationAggregationSource$, 4, 4, 0, () => AggregatorFilters$]
|
|
2136
|
+
];
|
|
2137
|
+
var ConfigurationItem$ = [3, n0, _CI,
|
|
2138
|
+
0,
|
|
2139
|
+
[_v, _aI, _cICT, _cIS, _cSI, _cIMDH, _a, _rT, _rI, _rN, _aR, _aZ, _rCT, _t, _rE, _r, _co, _sC, _rF, _cIDT],
|
|
2140
|
+
[0, 0, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 128 | 0, 64 | 0, () => RelationshipList, 0, 128 | 0, 0, 4]
|
|
2141
|
+
];
|
|
2142
|
+
var ConfigurationRecorder$ = [3, n0, _CR,
|
|
2143
|
+
0,
|
|
2144
|
+
[_a, _n, _rARN, _rG, _rM, _rS, _sP],
|
|
2145
|
+
[0, 0, 0, () => RecordingGroup$, () => RecordingMode$, 0, 0]
|
|
2146
|
+
];
|
|
2147
|
+
var ConfigurationRecorderFilter$ = [3, n0, _CRF,
|
|
2148
|
+
0,
|
|
2149
|
+
[_fN, _fV],
|
|
2150
|
+
[0, 64 | 0]
|
|
2151
|
+
];
|
|
2152
|
+
var ConfigurationRecorderStatus$ = [3, n0, _CRSo,
|
|
2153
|
+
0,
|
|
2154
|
+
[_a, _n, _lSTa, _lSTas, _re, _lS, _lEC, _lEM, _lSCT, _sP],
|
|
2155
|
+
[0, 0, 4, 4, 2, 0, 0, 0, 4, 0]
|
|
2156
|
+
];
|
|
2157
|
+
var ConfigurationRecorderSummary$ = [3, n0, _CRSon,
|
|
2158
|
+
0,
|
|
2159
|
+
[_a, _n, _rS, _sP],
|
|
2160
|
+
[0, 0, 0, 0], 3
|
|
2161
|
+
];
|
|
2162
|
+
var ConformancePackComplianceFilters$ = [3, n0, _CPCF,
|
|
2163
|
+
0,
|
|
2164
|
+
[_CRNo, _CT],
|
|
2165
|
+
[64 | 0, 0]
|
|
2166
|
+
];
|
|
2167
|
+
var ConformancePackComplianceScore$ = [3, n0, _CPCS,
|
|
2168
|
+
0,
|
|
2169
|
+
[_Sco, _CPN, _LUTa],
|
|
2170
|
+
[0, 0, 4]
|
|
2171
|
+
];
|
|
2172
|
+
var ConformancePackComplianceScoresFilters$ = [3, n0, _CPCSF,
|
|
2173
|
+
0,
|
|
2174
|
+
[_CPNo],
|
|
2175
|
+
[64 | 0], 1
|
|
2176
|
+
];
|
|
2177
|
+
var ConformancePackComplianceSummary$ = [3, n0, _CPCSo,
|
|
2178
|
+
0,
|
|
2179
|
+
[_CPN, _CPCSon],
|
|
2180
|
+
[0, 0], 2
|
|
2181
|
+
];
|
|
2182
|
+
var ConformancePackDetail$ = [3, n0, _CPD,
|
|
2183
|
+
0,
|
|
2184
|
+
[_CPN, _CPA, _CPI, _DSB, _DSKP, _CPIP, _LURT, _CB, _TSSMDD],
|
|
2185
|
+
[0, 0, 0, 0, 0, () => ConformancePackInputParameters, 4, 0, () => TemplateSSMDocumentDetails$], 3
|
|
2186
|
+
];
|
|
2187
|
+
var ConformancePackEvaluationFilters$ = [3, n0, _CPEF,
|
|
2188
|
+
0,
|
|
2189
|
+
[_CRNo, _CT, _RT, _RIes],
|
|
2190
|
+
[64 | 0, 0, 0, 64 | 0]
|
|
2191
|
+
];
|
|
2192
|
+
var ConformancePackEvaluationResult$ = [3, n0, _CPER,
|
|
2193
|
+
0,
|
|
2194
|
+
[_CT, _ERI, _CRIT, _RRT, _A],
|
|
2195
|
+
[0, () => EvaluationResultIdentifier$, 4, 4, 0], 4
|
|
2196
|
+
];
|
|
2197
|
+
var ConformancePackInputParameter$ = [3, n0, _CPIPo,
|
|
2198
|
+
0,
|
|
2199
|
+
[_PN, _PV],
|
|
2200
|
+
[0, 0], 2
|
|
2201
|
+
];
|
|
2202
|
+
var ConformancePackRuleCompliance$ = [3, n0, _CPRC,
|
|
2203
|
+
0,
|
|
2204
|
+
[_CRN, _CT, _Co],
|
|
2205
|
+
[0, 0, 64 | 0]
|
|
2206
|
+
];
|
|
2207
|
+
var ConformancePackStatusDetail$ = [3, n0, _CPSD,
|
|
2208
|
+
0,
|
|
2209
|
+
[_CPN, _CPI, _CPA, _CPS, _SA, _LURT, _CPSR, _LUCT],
|
|
2210
|
+
[0, 0, 0, 0, 0, 4, 0, 4], 6
|
|
2211
|
+
];
|
|
2212
|
+
var CustomPolicyDetails$ = [3, n0, _CPDu,
|
|
2213
|
+
0,
|
|
2214
|
+
[_PR, _PT, _EDLD],
|
|
2215
|
+
[0, 0, 2], 2
|
|
2216
|
+
];
|
|
2217
|
+
var DeleteAggregationAuthorizationRequest$ = [3, n0, _DAAR,
|
|
2218
|
+
0,
|
|
2219
|
+
[_AAI, _AARu],
|
|
2220
|
+
[0, 0], 2
|
|
2221
|
+
];
|
|
2222
|
+
var DeleteConfigRuleRequest$ = [3, n0, _DCRR,
|
|
2223
|
+
0,
|
|
2224
|
+
[_CRN],
|
|
2225
|
+
[0], 1
|
|
2226
|
+
];
|
|
2227
|
+
var DeleteConfigurationAggregatorRequest$ = [3, n0, _DCAR,
|
|
2228
|
+
0,
|
|
2229
|
+
[_CAN],
|
|
2230
|
+
[0], 1
|
|
2231
|
+
];
|
|
2232
|
+
var DeleteConfigurationRecorderRequest$ = [3, n0, _DCRRe,
|
|
2233
|
+
0,
|
|
2234
|
+
[_CRNon],
|
|
2235
|
+
[0], 1
|
|
2236
|
+
];
|
|
2237
|
+
var DeleteConformancePackRequest$ = [3, n0, _DCPR,
|
|
2238
|
+
0,
|
|
2239
|
+
[_CPN],
|
|
2240
|
+
[0], 1
|
|
2241
|
+
];
|
|
2242
|
+
var DeleteDeliveryChannelRequest$ = [3, n0, _DDCR,
|
|
2243
|
+
0,
|
|
2244
|
+
[_DCN],
|
|
2245
|
+
[0], 1
|
|
2246
|
+
];
|
|
2247
|
+
var DeleteEvaluationResultsRequest$ = [3, n0, _DERR,
|
|
2248
|
+
0,
|
|
2249
|
+
[_CRN],
|
|
2250
|
+
[0], 1
|
|
2251
|
+
];
|
|
2252
|
+
var DeleteEvaluationResultsResponse$ = [3, n0, _DERRe,
|
|
2253
|
+
0,
|
|
2254
|
+
[],
|
|
2255
|
+
[]
|
|
2256
|
+
];
|
|
2257
|
+
var DeleteOrganizationConfigRuleRequest$ = [3, n0, _DOCRR,
|
|
2258
|
+
0,
|
|
2259
|
+
[_OCRN],
|
|
2260
|
+
[0], 1
|
|
2261
|
+
];
|
|
2262
|
+
var DeleteOrganizationConformancePackRequest$ = [3, n0, _DOCPR,
|
|
2263
|
+
0,
|
|
2264
|
+
[_OCPN],
|
|
2265
|
+
[0], 1
|
|
2266
|
+
];
|
|
2267
|
+
var DeletePendingAggregationRequestRequest$ = [3, n0, _DPARR,
|
|
2268
|
+
0,
|
|
2269
|
+
[_RAI, _RAR],
|
|
2270
|
+
[0, 0], 2
|
|
2271
|
+
];
|
|
2272
|
+
var DeleteRemediationConfigurationRequest$ = [3, n0, _DRCR,
|
|
2273
|
+
0,
|
|
2274
|
+
[_CRN, _RT],
|
|
2275
|
+
[0, 0], 1
|
|
2276
|
+
];
|
|
2277
|
+
var DeleteRemediationConfigurationResponse$ = [3, n0, _DRCRe,
|
|
2278
|
+
0,
|
|
2279
|
+
[],
|
|
2280
|
+
[]
|
|
2281
|
+
];
|
|
2282
|
+
var DeleteRemediationExceptionsRequest$ = [3, n0, _DRER,
|
|
2283
|
+
0,
|
|
2284
|
+
[_CRN, _RK],
|
|
2285
|
+
[0, () => RemediationExceptionResourceKeys], 2
|
|
2286
|
+
];
|
|
2287
|
+
var DeleteRemediationExceptionsResponse$ = [3, n0, _DRERe,
|
|
2288
|
+
0,
|
|
2289
|
+
[_FB],
|
|
2290
|
+
[() => FailedDeleteRemediationExceptionsBatches]
|
|
2291
|
+
];
|
|
2292
|
+
var DeleteResourceConfigRequest$ = [3, n0, _DRCRel,
|
|
2293
|
+
0,
|
|
2294
|
+
[_RT, _RI],
|
|
2295
|
+
[0, 0], 2
|
|
2296
|
+
];
|
|
2297
|
+
var DeleteRetentionConfigurationRequest$ = [3, n0, _DRCRele,
|
|
2298
|
+
0,
|
|
2299
|
+
[_RCN],
|
|
2300
|
+
[0], 1
|
|
2301
|
+
];
|
|
2302
|
+
var DeleteServiceLinkedConfigurationRecorderRequest$ = [3, n0, _DSLCRR,
|
|
2303
|
+
0,
|
|
2304
|
+
[_SP],
|
|
2305
|
+
[0], 1
|
|
2306
|
+
];
|
|
2307
|
+
var DeleteServiceLinkedConfigurationRecorderResponse$ = [3, n0, _DSLCRRe,
|
|
2308
|
+
0,
|
|
2309
|
+
[_Ar, _N],
|
|
2310
|
+
[0, 0], 2
|
|
2311
|
+
];
|
|
2312
|
+
var DeleteStoredQueryRequest$ = [3, n0, _DSQR,
|
|
2313
|
+
0,
|
|
2314
|
+
[_QN],
|
|
2315
|
+
[0], 1
|
|
2316
|
+
];
|
|
2317
|
+
var DeleteStoredQueryResponse$ = [3, n0, _DSQRe,
|
|
2318
|
+
0,
|
|
2319
|
+
[],
|
|
2320
|
+
[]
|
|
2321
|
+
];
|
|
2322
|
+
var DeliverConfigSnapshotRequest$ = [3, n0, _DCSR,
|
|
2323
|
+
0,
|
|
2324
|
+
[_dCN],
|
|
2325
|
+
[0], 1
|
|
2326
|
+
];
|
|
2327
|
+
var DeliverConfigSnapshotResponse$ = [3, n0, _DCSRe,
|
|
2328
|
+
0,
|
|
2329
|
+
[_cSIo],
|
|
2330
|
+
[0]
|
|
2331
|
+
];
|
|
2332
|
+
var DeliveryChannel$ = [3, n0, _DC,
|
|
2333
|
+
0,
|
|
2334
|
+
[_n, _sBN, _sKP, _sKKA, _sTARN, _cSDP],
|
|
2335
|
+
[0, 0, 0, 0, 0, () => ConfigSnapshotDeliveryProperties$]
|
|
2336
|
+
];
|
|
2337
|
+
var DeliveryChannelStatus$ = [3, n0, _DCS,
|
|
2338
|
+
0,
|
|
2339
|
+
[_n, _cSDI, _cHDI, _cSDIo],
|
|
2340
|
+
[0, () => ConfigExportDeliveryInfo$, () => ConfigExportDeliveryInfo$, () => ConfigStreamDeliveryInfo$]
|
|
2341
|
+
];
|
|
2342
|
+
var DescribeAggregateComplianceByConfigRulesRequest$ = [3, n0, _DACBCRR,
|
|
2343
|
+
0,
|
|
2344
|
+
[_CAN, _F, _L, _NT],
|
|
2345
|
+
[0, () => ConfigRuleComplianceFilters$, 1, 0], 1
|
|
2346
|
+
];
|
|
2347
|
+
var DescribeAggregateComplianceByConfigRulesResponse$ = [3, n0, _DACBCRRe,
|
|
2348
|
+
0,
|
|
2349
|
+
[_ACBCRg, _NT],
|
|
2350
|
+
[() => AggregateComplianceByConfigRuleList, 0]
|
|
2351
|
+
];
|
|
2352
|
+
var DescribeAggregateComplianceByConformancePacksRequest$ = [3, n0, _DACBCPR,
|
|
2353
|
+
0,
|
|
2354
|
+
[_CAN, _F, _L, _NT],
|
|
2355
|
+
[0, () => AggregateConformancePackComplianceFilters$, 1, 0], 1
|
|
2356
|
+
];
|
|
2357
|
+
var DescribeAggregateComplianceByConformancePacksResponse$ = [3, n0, _DACBCPRe,
|
|
2358
|
+
0,
|
|
2359
|
+
[_ACBCPg, _NT],
|
|
2360
|
+
[() => AggregateComplianceByConformancePackList, 0]
|
|
2361
|
+
];
|
|
2362
|
+
var DescribeAggregationAuthorizationsRequest$ = [3, n0, _DAARe,
|
|
2363
|
+
0,
|
|
2364
|
+
[_L, _NT],
|
|
2365
|
+
[1, 0]
|
|
2366
|
+
];
|
|
2367
|
+
var DescribeAggregationAuthorizationsResponse$ = [3, n0, _DAARes,
|
|
2368
|
+
0,
|
|
2369
|
+
[_AAg, _NT],
|
|
2370
|
+
[() => AggregationAuthorizationList, 0]
|
|
2371
|
+
];
|
|
2372
|
+
var DescribeComplianceByConfigRuleRequest$ = [3, n0, _DCBCRR,
|
|
2373
|
+
0,
|
|
2374
|
+
[_CRNo, _CTo, _NT],
|
|
2375
|
+
[64 | 0, 64 | 0, 0]
|
|
2376
|
+
];
|
|
2377
|
+
var DescribeComplianceByConfigRuleResponse$ = [3, n0, _DCBCRRe,
|
|
2378
|
+
0,
|
|
2379
|
+
[_CBCRo, _NT],
|
|
2380
|
+
[() => ComplianceByConfigRules, 0]
|
|
2381
|
+
];
|
|
2382
|
+
var DescribeComplianceByResourceRequest$ = [3, n0, _DCBRR,
|
|
2383
|
+
0,
|
|
2384
|
+
[_RT, _RI, _CTo, _L, _NT],
|
|
2385
|
+
[0, 0, 64 | 0, 1, 0]
|
|
2386
|
+
];
|
|
2387
|
+
var DescribeComplianceByResourceResponse$ = [3, n0, _DCBRRe,
|
|
2388
|
+
0,
|
|
2389
|
+
[_CBRo, _NT],
|
|
2390
|
+
[() => ComplianceByResources, 0]
|
|
2391
|
+
];
|
|
2392
|
+
var DescribeConfigRuleEvaluationStatusRequest$ = [3, n0, _DCRESR,
|
|
2393
|
+
0,
|
|
2394
|
+
[_CRNo, _NT, _L],
|
|
2395
|
+
[64 | 0, 0, 1]
|
|
2396
|
+
];
|
|
2397
|
+
var DescribeConfigRuleEvaluationStatusResponse$ = [3, n0, _DCRESRe,
|
|
2398
|
+
0,
|
|
2399
|
+
[_CRESo, _NT],
|
|
2400
|
+
[() => ConfigRuleEvaluationStatusList, 0]
|
|
2401
|
+
];
|
|
2402
|
+
var DescribeConfigRulesFilters$ = [3, n0, _DCRF,
|
|
2403
|
+
0,
|
|
2404
|
+
[_EMv, _REV],
|
|
2405
|
+
[0, 0]
|
|
2406
|
+
];
|
|
2407
|
+
var DescribeConfigRulesRequest$ = [3, n0, _DCRRes,
|
|
2408
|
+
0,
|
|
2409
|
+
[_CRNo, _NT, _F],
|
|
2410
|
+
[64 | 0, 0, () => DescribeConfigRulesFilters$]
|
|
2411
|
+
];
|
|
2412
|
+
var DescribeConfigRulesResponse$ = [3, n0, _DCRResc,
|
|
2413
|
+
0,
|
|
2414
|
+
[_CRon, _NT],
|
|
2415
|
+
[() => ConfigRules, 0]
|
|
2416
|
+
];
|
|
2417
|
+
var DescribeConfigurationAggregatorSourcesStatusRequest$ = [3, n0, _DCASSR,
|
|
2418
|
+
0,
|
|
2419
|
+
[_CAN, _US, _NT, _L],
|
|
2420
|
+
[0, 64 | 0, 0, 1], 1
|
|
2421
|
+
];
|
|
2422
|
+
var DescribeConfigurationAggregatorSourcesStatusResponse$ = [3, n0, _DCASSRe,
|
|
2423
|
+
0,
|
|
2424
|
+
[_ASSL, _NT],
|
|
2425
|
+
[() => AggregatedSourceStatusList, 0]
|
|
2426
|
+
];
|
|
2427
|
+
var DescribeConfigurationAggregatorsRequest$ = [3, n0, _DCARe,
|
|
2428
|
+
0,
|
|
2429
|
+
[_CANo, _NT, _L],
|
|
2430
|
+
[64 | 0, 0, 1]
|
|
2431
|
+
];
|
|
2432
|
+
var DescribeConfigurationAggregatorsResponse$ = [3, n0, _DCARes,
|
|
2433
|
+
0,
|
|
2434
|
+
[_CAo, _NT],
|
|
2435
|
+
[() => ConfigurationAggregatorList, 0]
|
|
2436
|
+
];
|
|
2437
|
+
var DescribeConfigurationRecordersRequest$ = [3, n0, _DCRRescr,
|
|
2438
|
+
0,
|
|
2439
|
+
[_CRNonf, _SP, _Ar],
|
|
2440
|
+
[64 | 0, 0, 0]
|
|
2441
|
+
];
|
|
2442
|
+
var DescribeConfigurationRecordersResponse$ = [3, n0, _DCRRescri,
|
|
2443
|
+
0,
|
|
2444
|
+
[_CRonf],
|
|
2445
|
+
[() => ConfigurationRecorderList]
|
|
2446
|
+
];
|
|
2447
|
+
var DescribeConfigurationRecorderStatusRequest$ = [3, n0, _DCRSR,
|
|
2448
|
+
0,
|
|
2449
|
+
[_CRNonf, _SP, _Ar],
|
|
2450
|
+
[64 | 0, 0, 0]
|
|
2451
|
+
];
|
|
2452
|
+
var DescribeConfigurationRecorderStatusResponse$ = [3, n0, _DCRSRe,
|
|
2453
|
+
0,
|
|
2454
|
+
[_CRSonf],
|
|
2455
|
+
[() => ConfigurationRecorderStatusList]
|
|
2456
|
+
];
|
|
2457
|
+
var DescribeConformancePackComplianceRequest$ = [3, n0, _DCPCR,
|
|
2458
|
+
0,
|
|
2459
|
+
[_CPN, _F, _L, _NT],
|
|
2460
|
+
[0, () => ConformancePackComplianceFilters$, 1, 0], 1
|
|
2461
|
+
];
|
|
2462
|
+
var DescribeConformancePackComplianceResponse$ = [3, n0, _DCPCRe,
|
|
2463
|
+
0,
|
|
2464
|
+
[_CPN, _CPRCL, _NT],
|
|
2465
|
+
[0, () => ConformancePackRuleComplianceList, 0], 2
|
|
2466
|
+
];
|
|
2467
|
+
var DescribeConformancePacksRequest$ = [3, n0, _DCPRe,
|
|
2468
|
+
0,
|
|
2469
|
+
[_CPNo, _L, _NT],
|
|
2470
|
+
[64 | 0, 1, 0]
|
|
2471
|
+
];
|
|
2472
|
+
var DescribeConformancePacksResponse$ = [3, n0, _DCPRes,
|
|
2473
|
+
0,
|
|
2474
|
+
[_CPDo, _NT],
|
|
2475
|
+
[() => ConformancePackDetailList, 0]
|
|
2476
|
+
];
|
|
2477
|
+
var DescribeConformancePackStatusRequest$ = [3, n0, _DCPSR,
|
|
2478
|
+
0,
|
|
2479
|
+
[_CPNo, _L, _NT],
|
|
2480
|
+
[64 | 0, 1, 0]
|
|
2481
|
+
];
|
|
2482
|
+
var DescribeConformancePackStatusResponse$ = [3, n0, _DCPSRe,
|
|
2483
|
+
0,
|
|
2484
|
+
[_CPSDo, _NT],
|
|
2485
|
+
[() => ConformancePackStatusDetailsList, 0]
|
|
2486
|
+
];
|
|
2487
|
+
var DescribeDeliveryChannelsRequest$ = [3, n0, _DDCRe,
|
|
2488
|
+
0,
|
|
2489
|
+
[_DCNe],
|
|
2490
|
+
[64 | 0]
|
|
2491
|
+
];
|
|
2492
|
+
var DescribeDeliveryChannelsResponse$ = [3, n0, _DDCRes,
|
|
2493
|
+
0,
|
|
2494
|
+
[_DCe],
|
|
2495
|
+
[() => DeliveryChannelList]
|
|
2496
|
+
];
|
|
2497
|
+
var DescribeDeliveryChannelStatusRequest$ = [3, n0, _DDCSR,
|
|
2498
|
+
0,
|
|
2499
|
+
[_DCNe],
|
|
2500
|
+
[64 | 0]
|
|
2501
|
+
];
|
|
2502
|
+
var DescribeDeliveryChannelStatusResponse$ = [3, n0, _DDCSRe,
|
|
2503
|
+
0,
|
|
2504
|
+
[_DCSe],
|
|
2505
|
+
[() => DeliveryChannelStatusList]
|
|
2506
|
+
];
|
|
2507
|
+
var DescribeOrganizationConfigRulesRequest$ = [3, n0, _DOCRRe,
|
|
2508
|
+
0,
|
|
2509
|
+
[_OCRNr, _L, _NT],
|
|
2510
|
+
[64 | 0, 1, 0]
|
|
2511
|
+
];
|
|
2512
|
+
var DescribeOrganizationConfigRulesResponse$ = [3, n0, _DOCRRes,
|
|
2513
|
+
0,
|
|
2514
|
+
[_OCR, _NT],
|
|
2515
|
+
[() => OrganizationConfigRules, 0]
|
|
2516
|
+
];
|
|
2517
|
+
var DescribeOrganizationConfigRuleStatusesRequest$ = [3, n0, _DOCRSR,
|
|
2518
|
+
0,
|
|
2519
|
+
[_OCRNr, _L, _NT],
|
|
2520
|
+
[64 | 0, 1, 0]
|
|
2521
|
+
];
|
|
2522
|
+
var DescribeOrganizationConfigRuleStatusesResponse$ = [3, n0, _DOCRSRe,
|
|
2523
|
+
0,
|
|
2524
|
+
[_OCRS, _NT],
|
|
2525
|
+
[() => OrganizationConfigRuleStatuses, 0]
|
|
2526
|
+
];
|
|
2527
|
+
var DescribeOrganizationConformancePacksRequest$ = [3, n0, _DOCPRe,
|
|
2528
|
+
0,
|
|
2529
|
+
[_OCPNr, _L, _NT],
|
|
2530
|
+
[64 | 0, 1, 0]
|
|
2531
|
+
];
|
|
2532
|
+
var DescribeOrganizationConformancePacksResponse$ = [3, n0, _DOCPRes,
|
|
2533
|
+
0,
|
|
2534
|
+
[_OCP, _NT],
|
|
2535
|
+
[() => OrganizationConformancePacks, 0]
|
|
2536
|
+
];
|
|
2537
|
+
var DescribeOrganizationConformancePackStatusesRequest$ = [3, n0, _DOCPSR,
|
|
2538
|
+
0,
|
|
2539
|
+
[_OCPNr, _L, _NT],
|
|
2540
|
+
[64 | 0, 1, 0]
|
|
2541
|
+
];
|
|
2542
|
+
var DescribeOrganizationConformancePackStatusesResponse$ = [3, n0, _DOCPSRe,
|
|
2543
|
+
0,
|
|
2544
|
+
[_OCPS, _NT],
|
|
2545
|
+
[() => OrganizationConformancePackStatuses, 0]
|
|
2546
|
+
];
|
|
2547
|
+
var DescribePendingAggregationRequestsRequest$ = [3, n0, _DPARRe,
|
|
2548
|
+
0,
|
|
2549
|
+
[_L, _NT],
|
|
2550
|
+
[1, 0]
|
|
2551
|
+
];
|
|
2552
|
+
var DescribePendingAggregationRequestsResponse$ = [3, n0, _DPARRes,
|
|
2553
|
+
0,
|
|
2554
|
+
[_PAR, _NT],
|
|
2555
|
+
[() => PendingAggregationRequestList, 0]
|
|
2556
|
+
];
|
|
2557
|
+
var DescribeRemediationConfigurationsRequest$ = [3, n0, _DRCRes,
|
|
2558
|
+
0,
|
|
2559
|
+
[_CRNo],
|
|
2560
|
+
[64 | 0], 1
|
|
2561
|
+
];
|
|
2562
|
+
var DescribeRemediationConfigurationsResponse$ = [3, n0, _DRCResc,
|
|
2563
|
+
0,
|
|
2564
|
+
[_RC],
|
|
2565
|
+
[() => RemediationConfigurations]
|
|
2566
|
+
];
|
|
2567
|
+
var DescribeRemediationExceptionsRequest$ = [3, n0, _DRERes,
|
|
2568
|
+
0,
|
|
2569
|
+
[_CRN, _RK, _L, _NT],
|
|
2570
|
+
[0, () => RemediationExceptionResourceKeys, 1, 0], 1
|
|
2571
|
+
];
|
|
2572
|
+
var DescribeRemediationExceptionsResponse$ = [3, n0, _DREResc,
|
|
2573
|
+
0,
|
|
2574
|
+
[_RE, _NT],
|
|
2575
|
+
[() => RemediationExceptions, 0]
|
|
2576
|
+
];
|
|
2577
|
+
var DescribeRemediationExecutionStatusRequest$ = [3, n0, _DRESR,
|
|
2578
|
+
0,
|
|
2579
|
+
[_CRN, _RK, _L, _NT],
|
|
2580
|
+
[0, () => ResourceKeys, 1, 0], 1
|
|
2581
|
+
];
|
|
2582
|
+
var DescribeRemediationExecutionStatusResponse$ = [3, n0, _DRESRe,
|
|
2583
|
+
0,
|
|
2584
|
+
[_RES, _NT],
|
|
2585
|
+
[() => RemediationExecutionStatuses, 0]
|
|
2586
|
+
];
|
|
2587
|
+
var DescribeRetentionConfigurationsRequest$ = [3, n0, _DRCRescr,
|
|
2588
|
+
0,
|
|
2589
|
+
[_RCNe, _NT],
|
|
2590
|
+
[64 | 0, 0]
|
|
2591
|
+
];
|
|
2592
|
+
var DescribeRetentionConfigurationsResponse$ = [3, n0, _DRCRescri,
|
|
2593
|
+
0,
|
|
2594
|
+
[_RCe, _NT],
|
|
2595
|
+
[() => RetentionConfigurationList, 0]
|
|
2596
|
+
];
|
|
2597
|
+
var DisassociateResourceTypesRequest$ = [3, n0, _DRTR,
|
|
2598
|
+
0,
|
|
2599
|
+
[_CRA, _RTe],
|
|
2600
|
+
[0, 64 | 0], 2
|
|
2601
|
+
];
|
|
2602
|
+
var DisassociateResourceTypesResponse$ = [3, n0, _DRTRi,
|
|
2603
|
+
0,
|
|
2604
|
+
[_CR],
|
|
2605
|
+
[() => ConfigurationRecorder$], 1
|
|
2606
|
+
];
|
|
2607
|
+
var Evaluation$ = [3, n0, _E,
|
|
2608
|
+
0,
|
|
2609
|
+
[_CRT, _CRIo, _CT, _OT, _A],
|
|
2610
|
+
[0, 0, 0, 4, 0], 4
|
|
2611
|
+
];
|
|
2612
|
+
var EvaluationContext$ = [3, n0, _EC,
|
|
2613
|
+
0,
|
|
2614
|
+
[_ECI],
|
|
2615
|
+
[0]
|
|
2616
|
+
];
|
|
2617
|
+
var EvaluationModeConfiguration$ = [3, n0, _EMC,
|
|
2618
|
+
0,
|
|
2619
|
+
[_M],
|
|
2620
|
+
[0]
|
|
2621
|
+
];
|
|
2622
|
+
var EvaluationResult$ = [3, n0, _ER,
|
|
2623
|
+
0,
|
|
2624
|
+
[_ERI, _CT, _RRT, _CRIT, _A, _RTes],
|
|
2625
|
+
[() => EvaluationResultIdentifier$, 0, 4, 4, 0, 0]
|
|
2626
|
+
];
|
|
2627
|
+
var EvaluationResultIdentifier$ = [3, n0, _ERI,
|
|
2628
|
+
0,
|
|
2629
|
+
[_ERQ, _OT, _REI],
|
|
2630
|
+
[() => EvaluationResultQualifier$, 4, 0]
|
|
2631
|
+
];
|
|
2632
|
+
var EvaluationResultQualifier$ = [3, n0, _ERQ,
|
|
2633
|
+
0,
|
|
2634
|
+
[_CRN, _RT, _RI, _EMv],
|
|
2635
|
+
[0, 0, 0, 0]
|
|
2636
|
+
];
|
|
2637
|
+
var EvaluationStatus$ = [3, n0, _ES,
|
|
2638
|
+
0,
|
|
2639
|
+
[_St, _FR],
|
|
2640
|
+
[0, 0], 1
|
|
2641
|
+
];
|
|
2642
|
+
var ExclusionByResourceTypes$ = [3, n0, _EBRT,
|
|
2643
|
+
0,
|
|
2644
|
+
[_rTe],
|
|
2645
|
+
[64 | 0]
|
|
2646
|
+
];
|
|
2647
|
+
var ExecutionControls$ = [3, n0, _ECx,
|
|
2648
|
+
0,
|
|
2649
|
+
[_SC],
|
|
2650
|
+
[() => SsmControls$]
|
|
2651
|
+
];
|
|
2652
|
+
var ExternalEvaluation$ = [3, n0, _EE,
|
|
2653
|
+
0,
|
|
2654
|
+
[_CRT, _CRIo, _CT, _OT, _A],
|
|
2655
|
+
[0, 0, 0, 4, 0], 4
|
|
2656
|
+
];
|
|
2657
|
+
var FailedDeleteRemediationExceptionsBatch$ = [3, n0, _FDREB,
|
|
2658
|
+
0,
|
|
2659
|
+
[_FM, _FI],
|
|
2660
|
+
[0, () => RemediationExceptionResourceKeys]
|
|
2661
|
+
];
|
|
2662
|
+
var FailedRemediationBatch$ = [3, n0, _FRB,
|
|
2663
|
+
0,
|
|
2664
|
+
[_FM, _FI],
|
|
2665
|
+
[0, () => RemediationConfigurations]
|
|
2666
|
+
];
|
|
2667
|
+
var FailedRemediationExceptionBatch$ = [3, n0, _FREB,
|
|
2668
|
+
0,
|
|
2669
|
+
[_FM, _FI],
|
|
2670
|
+
[0, () => RemediationExceptions]
|
|
2671
|
+
];
|
|
2672
|
+
var FieldInfo$ = [3, n0, _FIi,
|
|
2673
|
+
0,
|
|
2674
|
+
[_N],
|
|
2675
|
+
[0]
|
|
2676
|
+
];
|
|
2677
|
+
var GetAggregateComplianceDetailsByConfigRuleRequest$ = [3, n0, _GACDBCRR,
|
|
2678
|
+
0,
|
|
2679
|
+
[_CAN, _CRN, _AIc, _ARw, _CT, _L, _NT],
|
|
2680
|
+
[0, 0, 0, 0, 0, 1, 0], 4
|
|
2681
|
+
];
|
|
2682
|
+
var GetAggregateComplianceDetailsByConfigRuleResponse$ = [3, n0, _GACDBCRRe,
|
|
2683
|
+
0,
|
|
2684
|
+
[_AERg, _NT],
|
|
2685
|
+
[() => AggregateEvaluationResultList, 0]
|
|
2686
|
+
];
|
|
2687
|
+
var GetAggregateConfigRuleComplianceSummaryRequest$ = [3, n0, _GACRCSR,
|
|
2688
|
+
0,
|
|
2689
|
+
[_CAN, _F, _GBK, _L, _NT],
|
|
2690
|
+
[0, () => ConfigRuleComplianceSummaryFilters$, 0, 1, 0], 1
|
|
2691
|
+
];
|
|
2692
|
+
var GetAggregateConfigRuleComplianceSummaryResponse$ = [3, n0, _GACRCSRe,
|
|
2693
|
+
0,
|
|
2694
|
+
[_GBK, _ACCg, _NT],
|
|
2695
|
+
[0, () => AggregateComplianceCountList, 0]
|
|
2696
|
+
];
|
|
2697
|
+
var GetAggregateConformancePackComplianceSummaryRequest$ = [3, n0, _GACPCSR,
|
|
2698
|
+
0,
|
|
2699
|
+
[_CAN, _F, _GBK, _L, _NT],
|
|
2700
|
+
[0, () => AggregateConformancePackComplianceSummaryFilters$, 0, 1, 0], 1
|
|
2701
|
+
];
|
|
2702
|
+
var GetAggregateConformancePackComplianceSummaryResponse$ = [3, n0, _GACPCSRe,
|
|
2703
|
+
0,
|
|
2704
|
+
[_ACPCSg, _GBK, _NT],
|
|
2705
|
+
[() => AggregateConformancePackComplianceSummaryList, 0, 0]
|
|
2706
|
+
];
|
|
2707
|
+
var GetAggregateDiscoveredResourceCountsRequest$ = [3, n0, _GADRCR,
|
|
2708
|
+
0,
|
|
2709
|
+
[_CAN, _F, _GBK, _L, _NT],
|
|
2710
|
+
[0, () => ResourceCountFilters$, 0, 1, 0], 1
|
|
2711
|
+
];
|
|
2712
|
+
var GetAggregateDiscoveredResourceCountsResponse$ = [3, n0, _GADRCRe,
|
|
2713
|
+
0,
|
|
2714
|
+
[_TDR, _GBK, _GRC, _NT],
|
|
2715
|
+
[1, 0, () => GroupedResourceCountList, 0], 1
|
|
2716
|
+
];
|
|
2717
|
+
var GetAggregateResourceConfigRequest$ = [3, n0, _GARCR,
|
|
2718
|
+
0,
|
|
2719
|
+
[_CAN, _RIeso],
|
|
2720
|
+
[0, () => AggregateResourceIdentifier$], 2
|
|
2721
|
+
];
|
|
2722
|
+
var GetAggregateResourceConfigResponse$ = [3, n0, _GARCRe,
|
|
2723
|
+
0,
|
|
2724
|
+
[_CI],
|
|
2725
|
+
[() => ConfigurationItem$]
|
|
2726
|
+
];
|
|
2727
|
+
var GetComplianceDetailsByConfigRuleRequest$ = [3, n0, _GCDBCRR,
|
|
2728
|
+
0,
|
|
2729
|
+
[_CRN, _CTo, _L, _NT],
|
|
2730
|
+
[0, 64 | 0, 1, 0], 1
|
|
2731
|
+
];
|
|
2732
|
+
var GetComplianceDetailsByConfigRuleResponse$ = [3, n0, _GCDBCRRe,
|
|
2733
|
+
0,
|
|
2734
|
+
[_ERv, _NT],
|
|
2735
|
+
[() => EvaluationResults, 0]
|
|
2736
|
+
];
|
|
2737
|
+
var GetComplianceDetailsByResourceRequest$ = [3, n0, _GCDBRR,
|
|
2738
|
+
0,
|
|
2739
|
+
[_RT, _RI, _CTo, _NT, _REI],
|
|
2740
|
+
[0, 0, 64 | 0, 0, 0]
|
|
2741
|
+
];
|
|
2742
|
+
var GetComplianceDetailsByResourceResponse$ = [3, n0, _GCDBRRe,
|
|
2743
|
+
0,
|
|
2744
|
+
[_ERv, _NT],
|
|
2745
|
+
[() => EvaluationResults, 0]
|
|
2746
|
+
];
|
|
2747
|
+
var GetComplianceSummaryByConfigRuleResponse$ = [3, n0, _GCSBCRR,
|
|
2748
|
+
0,
|
|
2749
|
+
[_CS],
|
|
2750
|
+
[() => ComplianceSummary$]
|
|
2751
|
+
];
|
|
2752
|
+
var GetComplianceSummaryByResourceTypeRequest$ = [3, n0, _GCSBRTR,
|
|
2753
|
+
0,
|
|
2754
|
+
[_RTe],
|
|
2755
|
+
[64 | 0]
|
|
2756
|
+
];
|
|
2757
|
+
var GetComplianceSummaryByResourceTypeResponse$ = [3, n0, _GCSBRTRe,
|
|
2758
|
+
0,
|
|
2759
|
+
[_CSBRTo],
|
|
2760
|
+
[() => ComplianceSummariesByResourceType]
|
|
2761
|
+
];
|
|
2762
|
+
var GetConformancePackComplianceDetailsRequest$ = [3, n0, _GCPCDR,
|
|
2763
|
+
0,
|
|
2764
|
+
[_CPN, _F, _L, _NT],
|
|
2765
|
+
[0, () => ConformancePackEvaluationFilters$, 1, 0], 1
|
|
2766
|
+
];
|
|
2767
|
+
var GetConformancePackComplianceDetailsResponse$ = [3, n0, _GCPCDRe,
|
|
2768
|
+
0,
|
|
2769
|
+
[_CPN, _CPRER, _NT],
|
|
2770
|
+
[0, () => ConformancePackRuleEvaluationResultsList, 0], 1
|
|
2771
|
+
];
|
|
2772
|
+
var GetConformancePackComplianceSummaryRequest$ = [3, n0, _GCPCSR,
|
|
2773
|
+
0,
|
|
2774
|
+
[_CPNo, _L, _NT],
|
|
2775
|
+
[64 | 0, 1, 0], 1
|
|
2776
|
+
];
|
|
2777
|
+
var GetConformancePackComplianceSummaryResponse$ = [3, n0, _GCPCSRe,
|
|
2778
|
+
0,
|
|
2779
|
+
[_CPCSL, _NT],
|
|
2780
|
+
[() => ConformancePackComplianceSummaryList, 0]
|
|
2781
|
+
];
|
|
2782
|
+
var GetCustomRulePolicyRequest$ = [3, n0, _GCRPR,
|
|
2783
|
+
0,
|
|
2784
|
+
[_CRN],
|
|
2785
|
+
[0]
|
|
2786
|
+
];
|
|
2787
|
+
var GetCustomRulePolicyResponse$ = [3, n0, _GCRPRe,
|
|
2788
|
+
0,
|
|
2789
|
+
[_PT],
|
|
2790
|
+
[0]
|
|
2791
|
+
];
|
|
2792
|
+
var GetDiscoveredResourceCountsRequest$ = [3, n0, _GDRCR,
|
|
2793
|
+
0,
|
|
2794
|
+
[_rTe, _l, _nT],
|
|
2795
|
+
[64 | 0, 1, 0]
|
|
2796
|
+
];
|
|
2797
|
+
var GetDiscoveredResourceCountsResponse$ = [3, n0, _GDRCRe,
|
|
2798
|
+
0,
|
|
2799
|
+
[_tDR, _rC, _nT],
|
|
2800
|
+
[1, () => ResourceCounts, 0]
|
|
2801
|
+
];
|
|
2802
|
+
var GetOrganizationConfigRuleDetailedStatusRequest$ = [3, n0, _GOCRDSR,
|
|
2803
|
+
0,
|
|
2804
|
+
[_OCRN, _F, _L, _NT],
|
|
2805
|
+
[0, () => StatusDetailFilters$, 1, 0], 1
|
|
2806
|
+
];
|
|
2807
|
+
var GetOrganizationConfigRuleDetailedStatusResponse$ = [3, n0, _GOCRDSRe,
|
|
2808
|
+
0,
|
|
2809
|
+
[_OCRDS, _NT],
|
|
2810
|
+
[() => OrganizationConfigRuleDetailedStatus, 0]
|
|
2811
|
+
];
|
|
2812
|
+
var GetOrganizationConformancePackDetailedStatusRequest$ = [3, n0, _GOCPDSR,
|
|
2813
|
+
0,
|
|
2814
|
+
[_OCPN, _F, _L, _NT],
|
|
2815
|
+
[0, () => OrganizationResourceDetailedStatusFilters$, 1, 0], 1
|
|
2816
|
+
];
|
|
2817
|
+
var GetOrganizationConformancePackDetailedStatusResponse$ = [3, n0, _GOCPDSRe,
|
|
2818
|
+
0,
|
|
2819
|
+
[_OCPDS, _NT],
|
|
2820
|
+
[() => OrganizationConformancePackDetailedStatuses, 0]
|
|
2821
|
+
];
|
|
2822
|
+
var GetOrganizationCustomRulePolicyRequest$ = [3, n0, _GOCRPR,
|
|
2823
|
+
0,
|
|
2824
|
+
[_OCRN],
|
|
2825
|
+
[0], 1
|
|
2826
|
+
];
|
|
2827
|
+
var GetOrganizationCustomRulePolicyResponse$ = [3, n0, _GOCRPRe,
|
|
2828
|
+
0,
|
|
2829
|
+
[_PT],
|
|
2830
|
+
[0]
|
|
2831
|
+
];
|
|
2832
|
+
var GetResourceConfigHistoryRequest$ = [3, n0, _GRCHR,
|
|
2833
|
+
0,
|
|
2834
|
+
[_rT, _rI, _lT, _eT, _cO, _l, _nT],
|
|
2835
|
+
[0, 0, 4, 4, 0, 1, 0], 2
|
|
2836
|
+
];
|
|
2837
|
+
var GetResourceConfigHistoryResponse$ = [3, n0, _GRCHRe,
|
|
2838
|
+
0,
|
|
2839
|
+
[_cI, _nT],
|
|
2840
|
+
[() => ConfigurationItemList, 0]
|
|
2841
|
+
];
|
|
2842
|
+
var GetResourceEvaluationSummaryRequest$ = [3, n0, _GRESR,
|
|
2843
|
+
0,
|
|
2844
|
+
[_REI],
|
|
2845
|
+
[0], 1
|
|
2846
|
+
];
|
|
2847
|
+
var GetResourceEvaluationSummaryResponse$ = [3, n0, _GRESRe,
|
|
2848
|
+
0,
|
|
2849
|
+
[_REI, _EMv, _ES, _EST, _C, _EC, _RD],
|
|
2850
|
+
[0, 0, () => EvaluationStatus$, 4, 0, () => EvaluationContext$, () => ResourceDetails$]
|
|
2851
|
+
];
|
|
2852
|
+
var GetStoredQueryRequest$ = [3, n0, _GSQR,
|
|
2853
|
+
0,
|
|
2854
|
+
[_QN],
|
|
2855
|
+
[0], 1
|
|
2856
|
+
];
|
|
2857
|
+
var GetStoredQueryResponse$ = [3, n0, _GSQRe,
|
|
2858
|
+
0,
|
|
2859
|
+
[_SQ],
|
|
2860
|
+
[() => StoredQuery$]
|
|
2861
|
+
];
|
|
2862
|
+
var GroupedResourceCount$ = [3, n0, _GRCr,
|
|
2863
|
+
0,
|
|
2864
|
+
[_GN, _RCes],
|
|
2865
|
+
[0, 1], 2
|
|
2866
|
+
];
|
|
2867
|
+
var ListAggregateDiscoveredResourcesRequest$ = [3, n0, _LADRR,
|
|
2868
|
+
0,
|
|
2869
|
+
[_CAN, _RT, _F, _L, _NT],
|
|
2870
|
+
[0, 0, () => ResourceFilters$, 1, 0], 2
|
|
2871
|
+
];
|
|
2872
|
+
var ListAggregateDiscoveredResourcesResponse$ = [3, n0, _LADRRi,
|
|
2873
|
+
0,
|
|
2874
|
+
[_RIe, _NT],
|
|
2875
|
+
[() => DiscoveredResourceIdentifierList, 0]
|
|
2876
|
+
];
|
|
2877
|
+
var ListConfigurationRecordersRequest$ = [3, n0, _LCRR,
|
|
2878
|
+
0,
|
|
2879
|
+
[_F, _MR, _NT],
|
|
2880
|
+
[() => ConfigurationRecorderFilterList, 1, 0]
|
|
2881
|
+
];
|
|
2882
|
+
var ListConfigurationRecordersResponse$ = [3, n0, _LCRRi,
|
|
2883
|
+
0,
|
|
2884
|
+
[_CRSonfi, _NT],
|
|
2885
|
+
[() => ConfigurationRecorderSummaries, 0], 1
|
|
2886
|
+
];
|
|
2887
|
+
var ListConformancePackComplianceScoresRequest$ = [3, n0, _LCPCSR,
|
|
2888
|
+
0,
|
|
2889
|
+
[_F, _SO, _SB, _L, _NT],
|
|
2890
|
+
[() => ConformancePackComplianceScoresFilters$, 0, 0, 1, 0]
|
|
2891
|
+
];
|
|
2892
|
+
var ListConformancePackComplianceScoresResponse$ = [3, n0, _LCPCSRi,
|
|
2893
|
+
0,
|
|
2894
|
+
[_CPCSonf, _NT],
|
|
2895
|
+
[() => ConformancePackComplianceScores, 0], 1
|
|
2896
|
+
];
|
|
2897
|
+
var ListDiscoveredResourcesRequest$ = [3, n0, _LDRR,
|
|
2898
|
+
0,
|
|
2899
|
+
[_rT, _rIe, _rN, _l, _iDR, _nT],
|
|
2900
|
+
[0, 64 | 0, 0, 1, 2, 0], 1
|
|
2901
|
+
];
|
|
2902
|
+
var ListDiscoveredResourcesResponse$ = [3, n0, _LDRRi,
|
|
2903
|
+
0,
|
|
2904
|
+
[_rIes, _nT],
|
|
2905
|
+
[() => ResourceIdentifierList, 0]
|
|
2906
|
+
];
|
|
2907
|
+
var ListResourceEvaluationsRequest$ = [3, n0, _LRER,
|
|
2908
|
+
0,
|
|
2909
|
+
[_F, _L, _NT],
|
|
2910
|
+
[() => ResourceEvaluationFilters$, 1, 0]
|
|
2911
|
+
];
|
|
2912
|
+
var ListResourceEvaluationsResponse$ = [3, n0, _LRERi,
|
|
2913
|
+
0,
|
|
2914
|
+
[_REe, _NT],
|
|
2915
|
+
[() => ResourceEvaluations, 0]
|
|
2916
|
+
];
|
|
2917
|
+
var ListStoredQueriesRequest$ = [3, n0, _LSQR,
|
|
2918
|
+
0,
|
|
2919
|
+
[_NT, _MR],
|
|
2920
|
+
[0, 1]
|
|
2921
|
+
];
|
|
2922
|
+
var ListStoredQueriesResponse$ = [3, n0, _LSQRi,
|
|
2923
|
+
0,
|
|
2924
|
+
[_SQM, _NT],
|
|
2925
|
+
[() => StoredQueryMetadataList, 0]
|
|
2926
|
+
];
|
|
2927
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
2928
|
+
0,
|
|
2929
|
+
[_RA, _L, _NT],
|
|
2930
|
+
[0, 1, 0], 1
|
|
2931
|
+
];
|
|
2932
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
2933
|
+
0,
|
|
2934
|
+
[_Ta, _NT],
|
|
2935
|
+
[() => TagList, 0]
|
|
2936
|
+
];
|
|
2937
|
+
var MemberAccountStatus$ = [3, n0, _MAS,
|
|
2938
|
+
0,
|
|
2939
|
+
[_AIc, _CRN, _MARS, _ECr, _EMr, _LUT],
|
|
2940
|
+
[0, 0, 0, 0, 0, 4], 3
|
|
2941
|
+
];
|
|
2942
|
+
var OrganizationAggregationSource$ = [3, n0, _OAS,
|
|
2943
|
+
0,
|
|
2944
|
+
[_RAo, _AR, _AAR],
|
|
2945
|
+
[0, 64 | 0, 2], 1
|
|
2946
|
+
];
|
|
2947
|
+
var OrganizationConfigRule$ = [3, n0, _OCRr,
|
|
2948
|
+
0,
|
|
2949
|
+
[_OCRN, _OCRA, _OMRM, _OCRM, _EA, _LUT, _OCPRM],
|
|
2950
|
+
[0, 0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, 4, () => OrganizationCustomPolicyRuleMetadataNoPolicy$], 2
|
|
2951
|
+
];
|
|
2952
|
+
var OrganizationConfigRuleStatus$ = [3, n0, _OCRSr,
|
|
2953
|
+
0,
|
|
2954
|
+
[_OCRN, _ORS, _ECr, _EMr, _LUT],
|
|
2955
|
+
[0, 0, 0, 0, 4], 2
|
|
2956
|
+
];
|
|
2957
|
+
var OrganizationConformancePack$ = [3, n0, _OCPr,
|
|
2958
|
+
0,
|
|
2959
|
+
[_OCPN, _OCPA, _LUT, _DSB, _DSKP, _CPIP, _EA],
|
|
2960
|
+
[0, 0, 4, 0, 0, () => ConformancePackInputParameters, 64 | 0], 3
|
|
2961
|
+
];
|
|
2962
|
+
var OrganizationConformancePackDetailedStatus$ = [3, n0, _OCPDSr,
|
|
2963
|
+
0,
|
|
2964
|
+
[_AIc, _CPN, _St, _ECr, _EMr, _LUT],
|
|
2965
|
+
[0, 0, 0, 0, 0, 4], 3
|
|
2966
|
+
];
|
|
2967
|
+
var OrganizationConformancePackStatus$ = [3, n0, _OCPSr,
|
|
2968
|
+
0,
|
|
2969
|
+
[_OCPN, _St, _ECr, _EMr, _LUT],
|
|
2970
|
+
[0, 0, 0, 0, 4], 2
|
|
2971
|
+
];
|
|
2972
|
+
var OrganizationCustomPolicyRuleMetadata$ = [3, n0, _OCPRM,
|
|
2973
|
+
0,
|
|
2974
|
+
[_PR, _PT, _D, _OCRTT, _IP, _MEF, _RTS, _RIS, _TKS, _TVS, _DLDA],
|
|
2975
|
+
[0, 0, 0, 64 | 0, 0, 0, 64 | 0, 0, 0, 0, 64 | 0], 2
|
|
2976
|
+
];
|
|
2977
|
+
var OrganizationCustomPolicyRuleMetadataNoPolicy$ = [3, n0, _OCPRMNP,
|
|
2978
|
+
0,
|
|
2979
|
+
[_D, _OCRTT, _IP, _MEF, _RTS, _RIS, _TKS, _TVS, _PR, _DLDA],
|
|
2980
|
+
[0, 64 | 0, 0, 0, 64 | 0, 0, 0, 0, 0, 64 | 0]
|
|
2981
|
+
];
|
|
2982
|
+
var OrganizationCustomRuleMetadata$ = [3, n0, _OCRM,
|
|
2983
|
+
0,
|
|
2984
|
+
[_LFA, _OCRTT, _D, _IP, _MEF, _RTS, _RIS, _TKS, _TVS],
|
|
2985
|
+
[0, 64 | 0, 0, 0, 0, 64 | 0, 0, 0, 0], 2
|
|
2986
|
+
];
|
|
2987
|
+
var OrganizationManagedRuleMetadata$ = [3, n0, _OMRM,
|
|
2988
|
+
0,
|
|
2989
|
+
[_RIu, _D, _IP, _MEF, _RTS, _RIS, _TKS, _TVS],
|
|
2990
|
+
[0, 0, 0, 0, 64 | 0, 0, 0, 0], 1
|
|
2991
|
+
];
|
|
2992
|
+
var OrganizationResourceDetailedStatusFilters$ = [3, n0, _ORDSF,
|
|
2993
|
+
0,
|
|
2994
|
+
[_AIc, _St],
|
|
2995
|
+
[0, 0]
|
|
2996
|
+
];
|
|
2997
|
+
var PendingAggregationRequest$ = [3, n0, _PARe,
|
|
2998
|
+
0,
|
|
2999
|
+
[_RAI, _RAR],
|
|
3000
|
+
[0, 0]
|
|
3001
|
+
];
|
|
3002
|
+
var PutAggregationAuthorizationRequest$ = [3, n0, _PAAR,
|
|
3003
|
+
0,
|
|
3004
|
+
[_AAI, _AARu, _Ta],
|
|
3005
|
+
[0, 0, () => TagsList], 2
|
|
3006
|
+
];
|
|
3007
|
+
var PutAggregationAuthorizationResponse$ = [3, n0, _PAARu,
|
|
3008
|
+
0,
|
|
3009
|
+
[_AA],
|
|
3010
|
+
[() => AggregationAuthorization$]
|
|
3011
|
+
];
|
|
3012
|
+
var PutConfigRuleRequest$ = [3, n0, _PCRR,
|
|
3013
|
+
0,
|
|
3014
|
+
[_CRo, _Ta],
|
|
3015
|
+
[() => ConfigRule$, () => TagsList], 1
|
|
3016
|
+
];
|
|
3017
|
+
var PutConfigurationAggregatorRequest$ = [3, n0, _PCAR,
|
|
3018
|
+
0,
|
|
3019
|
+
[_CAN, _AASc, _OAS, _Ta, _AF],
|
|
3020
|
+
[0, () => AccountAggregationSourceList, () => OrganizationAggregationSource$, () => TagsList, () => AggregatorFilters$], 1
|
|
3021
|
+
];
|
|
3022
|
+
var PutConfigurationAggregatorResponse$ = [3, n0, _PCARu,
|
|
3023
|
+
0,
|
|
3024
|
+
[_CA],
|
|
3025
|
+
[() => ConfigurationAggregator$]
|
|
3026
|
+
];
|
|
3027
|
+
var PutConfigurationRecorderRequest$ = [3, n0, _PCRRu,
|
|
3028
|
+
0,
|
|
3029
|
+
[_CR, _Ta],
|
|
3030
|
+
[() => ConfigurationRecorder$, () => TagsList], 1
|
|
3031
|
+
];
|
|
3032
|
+
var PutConformancePackRequest$ = [3, n0, _PCPR,
|
|
3033
|
+
0,
|
|
3034
|
+
[_CPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _TSSMDD, _Ta],
|
|
3035
|
+
[0, 0, 0, 0, 0, () => ConformancePackInputParameters, () => TemplateSSMDocumentDetails$, () => TagsList], 1
|
|
3036
|
+
];
|
|
3037
|
+
var PutConformancePackResponse$ = [3, n0, _PCPRu,
|
|
3038
|
+
0,
|
|
3039
|
+
[_CPA],
|
|
3040
|
+
[0]
|
|
3041
|
+
];
|
|
3042
|
+
var PutDeliveryChannelRequest$ = [3, n0, _PDCR,
|
|
3043
|
+
0,
|
|
3044
|
+
[_DC],
|
|
3045
|
+
[() => DeliveryChannel$], 1
|
|
3046
|
+
];
|
|
3047
|
+
var PutEvaluationsRequest$ = [3, n0, _PER,
|
|
3048
|
+
0,
|
|
3049
|
+
[_RTes, _Ev, _TM],
|
|
3050
|
+
[0, () => Evaluations, 2], 1
|
|
3051
|
+
];
|
|
3052
|
+
var PutEvaluationsResponse$ = [3, n0, _PERu,
|
|
3053
|
+
0,
|
|
3054
|
+
[_FE],
|
|
3055
|
+
[() => Evaluations]
|
|
3056
|
+
];
|
|
3057
|
+
var PutExternalEvaluationRequest$ = [3, n0, _PEER,
|
|
3058
|
+
0,
|
|
3059
|
+
[_CRN, _EE],
|
|
3060
|
+
[0, () => ExternalEvaluation$], 2
|
|
3061
|
+
];
|
|
3062
|
+
var PutExternalEvaluationResponse$ = [3, n0, _PEERu,
|
|
3063
|
+
0,
|
|
3064
|
+
[],
|
|
3065
|
+
[]
|
|
3066
|
+
];
|
|
3067
|
+
var PutOrganizationConfigRuleRequest$ = [3, n0, _POCRR,
|
|
3068
|
+
0,
|
|
3069
|
+
[_OCRN, _OMRM, _OCRM, _EA, _OCPRM],
|
|
3070
|
+
[0, () => OrganizationManagedRuleMetadata$, () => OrganizationCustomRuleMetadata$, 64 | 0, () => OrganizationCustomPolicyRuleMetadata$], 1
|
|
3071
|
+
];
|
|
3072
|
+
var PutOrganizationConfigRuleResponse$ = [3, n0, _POCRRu,
|
|
3073
|
+
0,
|
|
3074
|
+
[_OCRA],
|
|
3075
|
+
[0]
|
|
3076
|
+
];
|
|
3077
|
+
var PutOrganizationConformancePackRequest$ = [3, n0, _POCPR,
|
|
3078
|
+
0,
|
|
3079
|
+
[_OCPN, _TSU, _TB, _DSB, _DSKP, _CPIP, _EA],
|
|
3080
|
+
[0, 0, 0, 0, 0, () => ConformancePackInputParameters, 64 | 0], 1
|
|
3081
|
+
];
|
|
3082
|
+
var PutOrganizationConformancePackResponse$ = [3, n0, _POCPRu,
|
|
3083
|
+
0,
|
|
3084
|
+
[_OCPA],
|
|
3085
|
+
[0]
|
|
3086
|
+
];
|
|
3087
|
+
var PutRemediationConfigurationsRequest$ = [3, n0, _PRCR,
|
|
3088
|
+
0,
|
|
3089
|
+
[_RC],
|
|
3090
|
+
[() => RemediationConfigurations], 1
|
|
3091
|
+
];
|
|
3092
|
+
var PutRemediationConfigurationsResponse$ = [3, n0, _PRCRu,
|
|
3093
|
+
0,
|
|
3094
|
+
[_FB],
|
|
3095
|
+
[() => FailedRemediationBatches]
|
|
3096
|
+
];
|
|
3097
|
+
var PutRemediationExceptionsRequest$ = [3, n0, _PRER,
|
|
3098
|
+
0,
|
|
3099
|
+
[_CRN, _RK, _Me, _ET],
|
|
3100
|
+
[0, () => RemediationExceptionResourceKeys, 0, 4], 2
|
|
3101
|
+
];
|
|
3102
|
+
var PutRemediationExceptionsResponse$ = [3, n0, _PRERu,
|
|
3103
|
+
0,
|
|
3104
|
+
[_FB],
|
|
3105
|
+
[() => FailedRemediationExceptionBatches]
|
|
3106
|
+
];
|
|
3107
|
+
var PutResourceConfigRequest$ = [3, n0, _PRCRut,
|
|
3108
|
+
0,
|
|
3109
|
+
[_RT, _SVI, _RI, _Con, _RN, _Ta],
|
|
3110
|
+
[0, 0, 0, 0, 0, 128 | 0], 4
|
|
3111
|
+
];
|
|
3112
|
+
var PutRetentionConfigurationRequest$ = [3, n0, _PRCRute,
|
|
3113
|
+
0,
|
|
3114
|
+
[_RPID],
|
|
3115
|
+
[1], 1
|
|
3116
|
+
];
|
|
3117
|
+
var PutRetentionConfigurationResponse$ = [3, n0, _PRCRutet,
|
|
3118
|
+
0,
|
|
3119
|
+
[_RCet],
|
|
3120
|
+
[() => RetentionConfiguration$]
|
|
3121
|
+
];
|
|
3122
|
+
var PutServiceLinkedConfigurationRecorderRequest$ = [3, n0, _PSLCRR,
|
|
3123
|
+
0,
|
|
3124
|
+
[_SP, _Ta],
|
|
3125
|
+
[0, () => TagsList], 1
|
|
3126
|
+
];
|
|
3127
|
+
var PutServiceLinkedConfigurationRecorderResponse$ = [3, n0, _PSLCRRu,
|
|
3128
|
+
0,
|
|
3129
|
+
[_Ar, _N],
|
|
3130
|
+
[0, 0]
|
|
3131
|
+
];
|
|
3132
|
+
var PutStoredQueryRequest$ = [3, n0, _PSQR,
|
|
3133
|
+
0,
|
|
3134
|
+
[_SQ, _Ta],
|
|
3135
|
+
[() => StoredQuery$, () => TagsList], 1
|
|
3136
|
+
];
|
|
3137
|
+
var PutStoredQueryResponse$ = [3, n0, _PSQRu,
|
|
3138
|
+
0,
|
|
3139
|
+
[_QA],
|
|
3140
|
+
[0]
|
|
3141
|
+
];
|
|
3142
|
+
var QueryInfo$ = [3, n0, _QI,
|
|
3143
|
+
0,
|
|
3144
|
+
[_SF],
|
|
3145
|
+
[() => FieldInfoList]
|
|
3146
|
+
];
|
|
3147
|
+
var RecordingGroup$ = [3, n0, _RG,
|
|
3148
|
+
0,
|
|
3149
|
+
[_aS, _iGRT, _rTe, _eBRT, _rSe],
|
|
3150
|
+
[2, 2, 64 | 0, () => ExclusionByResourceTypes$, () => RecordingStrategy$]
|
|
3151
|
+
];
|
|
3152
|
+
var RecordingMode$ = [3, n0, _RM,
|
|
3153
|
+
0,
|
|
3154
|
+
[_rF, _rMO],
|
|
3155
|
+
[0, () => RecordingModeOverrides], 1
|
|
3156
|
+
];
|
|
3157
|
+
var RecordingModeOverride$ = [3, n0, _RMO,
|
|
3158
|
+
0,
|
|
3159
|
+
[_rTe, _rF, _d],
|
|
3160
|
+
[64 | 0, 0, 0], 2
|
|
3161
|
+
];
|
|
3162
|
+
var RecordingStrategy$ = [3, n0, _RS,
|
|
3163
|
+
0,
|
|
3164
|
+
[_uO],
|
|
3165
|
+
[0]
|
|
3166
|
+
];
|
|
3167
|
+
var Relationship$ = [3, n0, _R,
|
|
3168
|
+
0,
|
|
3169
|
+
[_rT, _rI, _rN, _rNe],
|
|
3170
|
+
[0, 0, 0, 0]
|
|
3171
|
+
];
|
|
3172
|
+
var RemediationConfiguration$ = [3, n0, _RCem,
|
|
3173
|
+
0,
|
|
3174
|
+
[_CRN, _TT, _TI, _TV, _P, _RT, _Au, _ECx, _MAA, _RAS, _Ar, _CBS],
|
|
3175
|
+
[0, 0, 0, 0, () => RemediationParameters, 0, 2, () => ExecutionControls$, 1, 1, 0, 0], 3
|
|
3176
|
+
];
|
|
3177
|
+
var RemediationException$ = [3, n0, _REem,
|
|
3178
|
+
0,
|
|
3179
|
+
[_CRN, _RT, _RI, _Me, _ET],
|
|
3180
|
+
[0, 0, 0, 0, 4], 3
|
|
3181
|
+
];
|
|
3182
|
+
var RemediationExceptionResourceKey$ = [3, n0, _RERK,
|
|
3183
|
+
0,
|
|
3184
|
+
[_RT, _RI],
|
|
3185
|
+
[0, 0]
|
|
3186
|
+
];
|
|
3187
|
+
var RemediationExecutionStatus$ = [3, n0, _RESe,
|
|
3188
|
+
0,
|
|
3189
|
+
[_RKe, _Sta, _SD, _IT, _LUTa],
|
|
3190
|
+
[() => ResourceKey$, 0, () => RemediationExecutionSteps, 4, 4]
|
|
3191
|
+
];
|
|
3192
|
+
var RemediationExecutionStep$ = [3, n0, _RESem,
|
|
3193
|
+
0,
|
|
3194
|
+
[_N, _Sta, _EMr, _STt, _STto],
|
|
3195
|
+
[0, 0, 0, 4, 4]
|
|
3196
|
+
];
|
|
3197
|
+
var RemediationParameterValue$ = [3, n0, _RPV,
|
|
3198
|
+
0,
|
|
3199
|
+
[_RV, _SV],
|
|
3200
|
+
[() => ResourceValue$, () => StaticValue$]
|
|
3201
|
+
];
|
|
3202
|
+
var ResourceCount$ = [3, n0, _RCes,
|
|
3203
|
+
0,
|
|
3204
|
+
[_rT, _cou],
|
|
3205
|
+
[0, 1]
|
|
3206
|
+
];
|
|
3207
|
+
var ResourceCountFilters$ = [3, n0, _RCF,
|
|
3208
|
+
0,
|
|
3209
|
+
[_RT, _AIc, _Re],
|
|
3210
|
+
[0, 0, 0]
|
|
3211
|
+
];
|
|
3212
|
+
var ResourceDetails$ = [3, n0, _RD,
|
|
3213
|
+
0,
|
|
3214
|
+
[_RI, _RT, _RCeso, _RCST],
|
|
3215
|
+
[0, 0, 0, 0], 3
|
|
3216
|
+
];
|
|
3217
|
+
var ResourceEvaluation$ = [3, n0, _REes,
|
|
3218
|
+
0,
|
|
3219
|
+
[_REI, _EMv, _EST],
|
|
3220
|
+
[0, 0, 4]
|
|
3221
|
+
];
|
|
3222
|
+
var ResourceEvaluationFilters$ = [3, n0, _REF,
|
|
3223
|
+
0,
|
|
3224
|
+
[_EMv, _TW, _ECI],
|
|
3225
|
+
[0, () => TimeWindow$, 0]
|
|
3226
|
+
];
|
|
3227
|
+
var ResourceFilters$ = [3, n0, _RF,
|
|
3228
|
+
0,
|
|
3229
|
+
[_AIc, _RI, _RN, _Re],
|
|
3230
|
+
[0, 0, 0, 0]
|
|
3231
|
+
];
|
|
3232
|
+
var ResourceIdentifier$ = [3, n0, _RIeso,
|
|
3233
|
+
0,
|
|
3234
|
+
[_rT, _rI, _rN, _rDT],
|
|
3235
|
+
[0, 0, 0, 4]
|
|
3236
|
+
];
|
|
3237
|
+
var ResourceKey$ = [3, n0, _RKe,
|
|
3238
|
+
0,
|
|
3239
|
+
[_rT, _rI],
|
|
3240
|
+
[0, 0], 2
|
|
3241
|
+
];
|
|
3242
|
+
var ResourceValue$ = [3, n0, _RV,
|
|
3243
|
+
0,
|
|
3244
|
+
[_V],
|
|
3245
|
+
[0], 1
|
|
3246
|
+
];
|
|
3247
|
+
var RetentionConfiguration$ = [3, n0, _RCet,
|
|
3248
|
+
0,
|
|
3249
|
+
[_N, _RPID],
|
|
3250
|
+
[0, 1], 2
|
|
3251
|
+
];
|
|
3252
|
+
var Scope$ = [3, n0, _Sc,
|
|
3253
|
+
0,
|
|
3254
|
+
[_CRTo, _TK, _TVa, _CRIo, _SPe],
|
|
3255
|
+
[64 | 0, 0, 0, 0, 64 | 0]
|
|
3256
|
+
];
|
|
3257
|
+
var SelectAggregateResourceConfigRequest$ = [3, n0, _SARCR,
|
|
3258
|
+
0,
|
|
3259
|
+
[_Ex, _CAN, _L, _MR, _NT],
|
|
3260
|
+
[0, 0, 1, 1, 0], 2
|
|
3261
|
+
];
|
|
3262
|
+
var SelectAggregateResourceConfigResponse$ = [3, n0, _SARCRe,
|
|
3263
|
+
0,
|
|
3264
|
+
[_Res, _QI, _NT],
|
|
3265
|
+
[64 | 0, () => QueryInfo$, 0]
|
|
3266
|
+
];
|
|
3267
|
+
var SelectResourceConfigRequest$ = [3, n0, _SRCR,
|
|
3268
|
+
0,
|
|
3269
|
+
[_Ex, _L, _NT],
|
|
3270
|
+
[0, 1, 0], 1
|
|
3271
|
+
];
|
|
3272
|
+
var SelectResourceConfigResponse$ = [3, n0, _SRCRe,
|
|
3273
|
+
0,
|
|
3274
|
+
[_Res, _QI, _NT],
|
|
3275
|
+
[64 | 0, () => QueryInfo$, 0]
|
|
3276
|
+
];
|
|
3277
|
+
var Source$ = [3, n0, _S,
|
|
3278
|
+
0,
|
|
3279
|
+
[_O, _SIo, _SDo, _CPDu],
|
|
3280
|
+
[0, 0, () => SourceDetails, () => CustomPolicyDetails$], 1
|
|
3281
|
+
];
|
|
3282
|
+
var SourceDetail$ = [3, n0, _SDou,
|
|
3283
|
+
0,
|
|
3284
|
+
[_ESv, _MT, _MEF],
|
|
3285
|
+
[0, 0, 0]
|
|
3286
|
+
];
|
|
3287
|
+
var SsmControls$ = [3, n0, _SC,
|
|
3288
|
+
0,
|
|
3289
|
+
[_CERP, _EP],
|
|
3290
|
+
[1, 1]
|
|
3291
|
+
];
|
|
3292
|
+
var StartConfigRulesEvaluationRequest$ = [3, n0, _SCRER,
|
|
3293
|
+
0,
|
|
3294
|
+
[_CRNo],
|
|
3295
|
+
[64 | 0]
|
|
3296
|
+
];
|
|
3297
|
+
var StartConfigRulesEvaluationResponse$ = [3, n0, _SCRERt,
|
|
3298
|
+
0,
|
|
3299
|
+
[],
|
|
3300
|
+
[]
|
|
3301
|
+
];
|
|
3302
|
+
var StartConfigurationRecorderRequest$ = [3, n0, _SCRR,
|
|
3303
|
+
0,
|
|
3304
|
+
[_CRNon],
|
|
3305
|
+
[0], 1
|
|
3306
|
+
];
|
|
3307
|
+
var StartRemediationExecutionRequest$ = [3, n0, _SRER,
|
|
3308
|
+
0,
|
|
3309
|
+
[_CRN, _RK],
|
|
3310
|
+
[0, () => ResourceKeys], 2
|
|
3311
|
+
];
|
|
3312
|
+
var StartRemediationExecutionResponse$ = [3, n0, _SRERt,
|
|
3313
|
+
0,
|
|
3314
|
+
[_FM, _FI],
|
|
3315
|
+
[0, () => ResourceKeys]
|
|
3316
|
+
];
|
|
3317
|
+
var StartResourceEvaluationRequest$ = [3, n0, _SRERta,
|
|
3318
|
+
0,
|
|
3319
|
+
[_RD, _EMv, _EC, _ETv, _CTl],
|
|
3320
|
+
[() => ResourceDetails$, 0, () => EvaluationContext$, 1, 0], 2
|
|
3321
|
+
];
|
|
3322
|
+
var StartResourceEvaluationResponse$ = [3, n0, _SRERtar,
|
|
3323
|
+
0,
|
|
3324
|
+
[_REI],
|
|
3325
|
+
[0]
|
|
3326
|
+
];
|
|
3327
|
+
var StaticValue$ = [3, n0, _SV,
|
|
3328
|
+
0,
|
|
3329
|
+
[_Va],
|
|
3330
|
+
[64 | 0], 1
|
|
3331
|
+
];
|
|
3332
|
+
var StatusDetailFilters$ = [3, n0, _SDF,
|
|
3333
|
+
0,
|
|
3334
|
+
[_AIc, _MARS],
|
|
3335
|
+
[0, 0]
|
|
3336
|
+
];
|
|
3337
|
+
var StopConfigurationRecorderRequest$ = [3, n0, _SCRRt,
|
|
3338
|
+
0,
|
|
3339
|
+
[_CRNon],
|
|
3340
|
+
[0], 1
|
|
3341
|
+
];
|
|
3342
|
+
var StoredQuery$ = [3, n0, _SQ,
|
|
3343
|
+
0,
|
|
3344
|
+
[_QN, _QIu, _QA, _D, _Ex],
|
|
3345
|
+
[0, 0, 0, 0, 0], 1
|
|
3346
|
+
];
|
|
3347
|
+
var StoredQueryMetadata$ = [3, n0, _SQM,
|
|
3348
|
+
0,
|
|
3349
|
+
[_QIu, _QA, _QN, _D],
|
|
3350
|
+
[0, 0, 0, 0], 3
|
|
3351
|
+
];
|
|
3352
|
+
var Tag$ = [3, n0, _Tag,
|
|
3353
|
+
0,
|
|
3354
|
+
[_K, _V],
|
|
3355
|
+
[0, 0]
|
|
3356
|
+
];
|
|
3357
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
3358
|
+
0,
|
|
3359
|
+
[_RA, _Ta],
|
|
3360
|
+
[0, () => TagList], 2
|
|
3361
|
+
];
|
|
3362
|
+
var TemplateSSMDocumentDetails$ = [3, n0, _TSSMDD,
|
|
3363
|
+
0,
|
|
3364
|
+
[_DN, _DV],
|
|
3365
|
+
[0, 0], 1
|
|
3366
|
+
];
|
|
3367
|
+
var TimeWindow$ = [3, n0, _TW,
|
|
3368
|
+
0,
|
|
3369
|
+
[_STt, _ETn],
|
|
3370
|
+
[4, 4]
|
|
3371
|
+
];
|
|
3372
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
3373
|
+
0,
|
|
3374
|
+
[_RA, _TKa],
|
|
3375
|
+
[0, 64 | 0], 2
|
|
3376
|
+
];
|
|
3377
|
+
var __Unit = "unit";
|
|
3378
|
+
var AccountAggregationSourceList = [1, n0, _AASL,
|
|
3379
|
+
0, () => AccountAggregationSource$
|
|
3380
|
+
];
|
|
3381
|
+
var AggregateComplianceByConfigRuleList = [1, n0, _ACBCRL,
|
|
3382
|
+
0, () => AggregateComplianceByConfigRule$
|
|
3383
|
+
];
|
|
3384
|
+
var AggregateComplianceByConformancePackList = [1, n0, _ACBCPL,
|
|
3385
|
+
0, () => AggregateComplianceByConformancePack$
|
|
3386
|
+
];
|
|
3387
|
+
var AggregateComplianceCountList = [1, n0, _ACCL,
|
|
3388
|
+
0, () => AggregateComplianceCount$
|
|
3389
|
+
];
|
|
3390
|
+
var AggregateConformancePackComplianceSummaryList = [1, n0, _ACPCSL,
|
|
3391
|
+
0, () => AggregateConformancePackComplianceSummary$
|
|
3392
|
+
];
|
|
3393
|
+
var AggregatedSourceStatusList = [1, n0, _ASSL,
|
|
3394
|
+
0, () => AggregatedSourceStatus$
|
|
3395
|
+
];
|
|
3396
|
+
var AggregateEvaluationResultList = [1, n0, _AERL,
|
|
3397
|
+
0, () => AggregateEvaluationResult$
|
|
3398
|
+
];
|
|
3399
|
+
var AggregationAuthorizationList = [1, n0, _AAL,
|
|
3400
|
+
0, () => AggregationAuthorization$
|
|
3401
|
+
];
|
|
3402
|
+
var BaseConfigurationItems = [1, n0, _BCIa,
|
|
3403
|
+
0, () => BaseConfigurationItem$
|
|
3404
|
+
];
|
|
3405
|
+
var ComplianceByConfigRules = [1, n0, _CBCRo,
|
|
3406
|
+
0, () => ComplianceByConfigRule$
|
|
3407
|
+
];
|
|
3408
|
+
var ComplianceByResources = [1, n0, _CBRo,
|
|
3409
|
+
0, () => ComplianceByResource$
|
|
3410
|
+
];
|
|
3411
|
+
var ComplianceSummariesByResourceType = [1, n0, _CSBRTo,
|
|
3412
|
+
0, () => ComplianceSummaryByResourceType$
|
|
3413
|
+
];
|
|
3414
|
+
var ConfigRuleEvaluationStatusList = [1, n0, _CRESL,
|
|
3415
|
+
0, () => ConfigRuleEvaluationStatus$
|
|
3416
|
+
];
|
|
3417
|
+
var ConfigRules = [1, n0, _CRon,
|
|
3418
|
+
0, () => ConfigRule$
|
|
3419
|
+
];
|
|
3420
|
+
var ConfigurationAggregatorList = [1, n0, _CAL,
|
|
3421
|
+
0, () => ConfigurationAggregator$
|
|
3422
|
+
];
|
|
3423
|
+
var ConfigurationItemList = [1, n0, _CIL,
|
|
3424
|
+
0, () => ConfigurationItem$
|
|
3425
|
+
];
|
|
3426
|
+
var ConfigurationRecorderFilterList = [1, n0, _CRFL,
|
|
3427
|
+
0, () => ConfigurationRecorderFilter$
|
|
3428
|
+
];
|
|
3429
|
+
var ConfigurationRecorderList = [1, n0, _CRL,
|
|
3430
|
+
0, () => ConfigurationRecorder$
|
|
3431
|
+
];
|
|
3432
|
+
var ConfigurationRecorderStatusList = [1, n0, _CRSL,
|
|
3433
|
+
0, () => ConfigurationRecorderStatus$
|
|
3434
|
+
];
|
|
3435
|
+
var ConfigurationRecorderSummaries = [1, n0, _CRSonfi,
|
|
3436
|
+
0, () => ConfigurationRecorderSummary$
|
|
3437
|
+
];
|
|
3438
|
+
var ConformancePackComplianceScores = [1, n0, _CPCSonf,
|
|
3439
|
+
0, () => ConformancePackComplianceScore$
|
|
3440
|
+
];
|
|
3441
|
+
var ConformancePackComplianceSummaryList = [1, n0, _CPCSL,
|
|
3442
|
+
0, () => ConformancePackComplianceSummary$
|
|
3443
|
+
];
|
|
3444
|
+
var ConformancePackDetailList = [1, n0, _CPDL,
|
|
3445
|
+
0, () => ConformancePackDetail$
|
|
3446
|
+
];
|
|
3447
|
+
var ConformancePackInputParameters = [1, n0, _CPIP,
|
|
3448
|
+
0, () => ConformancePackInputParameter$
|
|
3449
|
+
];
|
|
3450
|
+
var ConformancePackRuleComplianceList = [1, n0, _CPRCL,
|
|
3451
|
+
0, () => ConformancePackRuleCompliance$
|
|
3452
|
+
];
|
|
3453
|
+
var ConformancePackRuleEvaluationResultsList = [1, n0, _CPRERL,
|
|
3454
|
+
0, () => ConformancePackEvaluationResult$
|
|
3455
|
+
];
|
|
3456
|
+
var ConformancePackStatusDetailsList = [1, n0, _CPSDL,
|
|
3457
|
+
0, () => ConformancePackStatusDetail$
|
|
3458
|
+
];
|
|
3459
|
+
var DeliveryChannelList = [1, n0, _DCL,
|
|
3460
|
+
0, () => DeliveryChannel$
|
|
3461
|
+
];
|
|
3462
|
+
var DeliveryChannelStatusList = [1, n0, _DCSL,
|
|
3463
|
+
0, () => DeliveryChannelStatus$
|
|
3464
|
+
];
|
|
3465
|
+
var DiscoveredResourceIdentifierList = [1, n0, _DRIL,
|
|
3466
|
+
0, () => AggregateResourceIdentifier$
|
|
3467
|
+
];
|
|
3468
|
+
var EvaluationModes = [1, n0, _EM,
|
|
3469
|
+
0, () => EvaluationModeConfiguration$
|
|
3470
|
+
];
|
|
3471
|
+
var EvaluationResults = [1, n0, _ERv,
|
|
3472
|
+
0, () => EvaluationResult$
|
|
3473
|
+
];
|
|
3474
|
+
var Evaluations = [1, n0, _Ev,
|
|
3475
|
+
0, () => Evaluation$
|
|
3476
|
+
];
|
|
3477
|
+
var FailedDeleteRemediationExceptionsBatches = [1, n0, _FDREBa,
|
|
3478
|
+
0, () => FailedDeleteRemediationExceptionsBatch$
|
|
3479
|
+
];
|
|
3480
|
+
var FailedRemediationBatches = [1, n0, _FRBa,
|
|
3481
|
+
0, () => FailedRemediationBatch$
|
|
3482
|
+
];
|
|
3483
|
+
var FailedRemediationExceptionBatches = [1, n0, _FREBa,
|
|
3484
|
+
0, () => FailedRemediationExceptionBatch$
|
|
3485
|
+
];
|
|
3486
|
+
var FieldInfoList = [1, n0, _FIL,
|
|
3487
|
+
0, () => FieldInfo$
|
|
3488
|
+
];
|
|
3489
|
+
var GroupedResourceCountList = [1, n0, _GRCL,
|
|
3490
|
+
0, () => GroupedResourceCount$
|
|
3491
|
+
];
|
|
3492
|
+
var OrganizationConfigRuleDetailedStatus = [1, n0, _OCRDS,
|
|
3493
|
+
0, () => MemberAccountStatus$
|
|
3494
|
+
];
|
|
3495
|
+
var OrganizationConfigRules = [1, n0, _OCR,
|
|
3496
|
+
0, () => OrganizationConfigRule$
|
|
3497
|
+
];
|
|
3498
|
+
var OrganizationConfigRuleStatuses = [1, n0, _OCRS,
|
|
3499
|
+
0, () => OrganizationConfigRuleStatus$
|
|
3500
|
+
];
|
|
3501
|
+
var OrganizationConformancePackDetailedStatuses = [1, n0, _OCPDS,
|
|
3502
|
+
0, () => OrganizationConformancePackDetailedStatus$
|
|
3503
|
+
];
|
|
3504
|
+
var OrganizationConformancePacks = [1, n0, _OCP,
|
|
3505
|
+
0, () => OrganizationConformancePack$
|
|
3506
|
+
];
|
|
3507
|
+
var OrganizationConformancePackStatuses = [1, n0, _OCPS,
|
|
3508
|
+
0, () => OrganizationConformancePackStatus$
|
|
3509
|
+
];
|
|
3510
|
+
var PendingAggregationRequestList = [1, n0, _PARL,
|
|
3511
|
+
0, () => PendingAggregationRequest$
|
|
3512
|
+
];
|
|
3513
|
+
var RecordingModeOverrides = [1, n0, _RMOe,
|
|
3514
|
+
0, () => RecordingModeOverride$
|
|
3515
|
+
];
|
|
3516
|
+
var RelationshipList = [1, n0, _RL,
|
|
3517
|
+
0, () => Relationship$
|
|
3518
|
+
];
|
|
3519
|
+
var RemediationConfigurations = [1, n0, _RC,
|
|
3520
|
+
0, () => RemediationConfiguration$
|
|
3521
|
+
];
|
|
3522
|
+
var RemediationExceptionResourceKeys = [1, n0, _RERKe,
|
|
3523
|
+
0, () => RemediationExceptionResourceKey$
|
|
3524
|
+
];
|
|
3525
|
+
var RemediationExceptions = [1, n0, _RE,
|
|
3526
|
+
0, () => RemediationException$
|
|
3527
|
+
];
|
|
3528
|
+
var RemediationExecutionStatuses = [1, n0, _RES,
|
|
3529
|
+
0, () => RemediationExecutionStatus$
|
|
3530
|
+
];
|
|
3531
|
+
var RemediationExecutionSteps = [1, n0, _RESeme,
|
|
3532
|
+
0, () => RemediationExecutionStep$
|
|
3533
|
+
];
|
|
3534
|
+
var ResourceCounts = [1, n0, _RCesou,
|
|
3535
|
+
0, () => ResourceCount$
|
|
3536
|
+
];
|
|
3537
|
+
var ResourceEvaluations = [1, n0, _REe,
|
|
3538
|
+
0, () => ResourceEvaluation$
|
|
3539
|
+
];
|
|
3540
|
+
var ResourceIdentifierList = [1, n0, _RIL,
|
|
3541
|
+
0, () => ResourceIdentifier$
|
|
3542
|
+
];
|
|
3543
|
+
var ResourceIdentifiersList = [1, n0, _RILe,
|
|
3544
|
+
0, () => AggregateResourceIdentifier$
|
|
3545
|
+
];
|
|
3546
|
+
var ResourceKeys = [1, n0, _RK,
|
|
3547
|
+
0, () => ResourceKey$
|
|
3548
|
+
];
|
|
3549
|
+
var RetentionConfigurationList = [1, n0, _RCL,
|
|
3550
|
+
0, () => RetentionConfiguration$
|
|
3551
|
+
];
|
|
3552
|
+
var SourceDetails = [1, n0, _SDo,
|
|
3553
|
+
0, () => SourceDetail$
|
|
3554
|
+
];
|
|
3555
|
+
var StoredQueryMetadataList = [1, n0, _SQML,
|
|
3556
|
+
0, () => StoredQueryMetadata$
|
|
3557
|
+
];
|
|
3558
|
+
var TagList = [1, n0, _TL,
|
|
3559
|
+
0, () => Tag$
|
|
3560
|
+
];
|
|
3561
|
+
var TagsList = [1, n0, _TLa,
|
|
3562
|
+
0, () => Tag$
|
|
3563
|
+
];
|
|
3564
|
+
var UnprocessedResourceIdentifierList = [1, n0, _URIL,
|
|
3565
|
+
0, () => AggregateResourceIdentifier$
|
|
3566
|
+
];
|
|
3567
|
+
var RemediationParameters = [2, n0, _RP,
|
|
3568
|
+
0, 0, () => RemediationParameterValue$
|
|
3569
|
+
];
|
|
3570
|
+
var AssociateResourceTypes$ = [9, n0, _ART,
|
|
3571
|
+
0, () => AssociateResourceTypesRequest$, () => AssociateResourceTypesResponse$
|
|
3572
|
+
];
|
|
3573
|
+
var BatchGetAggregateResourceConfig$ = [9, n0, _BGARC,
|
|
3574
|
+
0, () => BatchGetAggregateResourceConfigRequest$, () => BatchGetAggregateResourceConfigResponse$
|
|
3575
|
+
];
|
|
3576
|
+
var BatchGetResourceConfig$ = [9, n0, _BGRC,
|
|
3577
|
+
0, () => BatchGetResourceConfigRequest$, () => BatchGetResourceConfigResponse$
|
|
3578
|
+
];
|
|
3579
|
+
var DeleteAggregationAuthorization$ = [9, n0, _DAA,
|
|
3580
|
+
0, () => DeleteAggregationAuthorizationRequest$, () => __Unit
|
|
3581
|
+
];
|
|
3582
|
+
var DeleteConfigRule$ = [9, n0, _DCR,
|
|
3583
|
+
0, () => DeleteConfigRuleRequest$, () => __Unit
|
|
3584
|
+
];
|
|
3585
|
+
var DeleteConfigurationAggregator$ = [9, n0, _DCA,
|
|
3586
|
+
0, () => DeleteConfigurationAggregatorRequest$, () => __Unit
|
|
3587
|
+
];
|
|
3588
|
+
var DeleteConfigurationRecorder$ = [9, n0, _DCRe,
|
|
3589
|
+
0, () => DeleteConfigurationRecorderRequest$, () => __Unit
|
|
3590
|
+
];
|
|
3591
|
+
var DeleteConformancePack$ = [9, n0, _DCP,
|
|
3592
|
+
0, () => DeleteConformancePackRequest$, () => __Unit
|
|
3593
|
+
];
|
|
3594
|
+
var DeleteDeliveryChannel$ = [9, n0, _DDC,
|
|
3595
|
+
0, () => DeleteDeliveryChannelRequest$, () => __Unit
|
|
3596
|
+
];
|
|
3597
|
+
var DeleteEvaluationResults$ = [9, n0, _DER,
|
|
3598
|
+
0, () => DeleteEvaluationResultsRequest$, () => DeleteEvaluationResultsResponse$
|
|
3599
|
+
];
|
|
3600
|
+
var DeleteOrganizationConfigRule$ = [9, n0, _DOCR,
|
|
3601
|
+
0, () => DeleteOrganizationConfigRuleRequest$, () => __Unit
|
|
3602
|
+
];
|
|
3603
|
+
var DeleteOrganizationConformancePack$ = [9, n0, _DOCP,
|
|
3604
|
+
0, () => DeleteOrganizationConformancePackRequest$, () => __Unit
|
|
3605
|
+
];
|
|
3606
|
+
var DeletePendingAggregationRequest$ = [9, n0, _DPAR,
|
|
3607
|
+
0, () => DeletePendingAggregationRequestRequest$, () => __Unit
|
|
3608
|
+
];
|
|
3609
|
+
var DeleteRemediationConfiguration$ = [9, n0, _DRC,
|
|
3610
|
+
0, () => DeleteRemediationConfigurationRequest$, () => DeleteRemediationConfigurationResponse$
|
|
3611
|
+
];
|
|
3612
|
+
var DeleteRemediationExceptions$ = [9, n0, _DRE,
|
|
3613
|
+
0, () => DeleteRemediationExceptionsRequest$, () => DeleteRemediationExceptionsResponse$
|
|
3614
|
+
];
|
|
3615
|
+
var DeleteResourceConfig$ = [9, n0, _DRCe,
|
|
3616
|
+
0, () => DeleteResourceConfigRequest$, () => __Unit
|
|
3617
|
+
];
|
|
3618
|
+
var DeleteRetentionConfiguration$ = [9, n0, _DRCel,
|
|
3619
|
+
0, () => DeleteRetentionConfigurationRequest$, () => __Unit
|
|
3620
|
+
];
|
|
3621
|
+
var DeleteServiceLinkedConfigurationRecorder$ = [9, n0, _DSLCR,
|
|
3622
|
+
0, () => DeleteServiceLinkedConfigurationRecorderRequest$, () => DeleteServiceLinkedConfigurationRecorderResponse$
|
|
3623
|
+
];
|
|
3624
|
+
var DeleteStoredQuery$ = [9, n0, _DSQ,
|
|
3625
|
+
0, () => DeleteStoredQueryRequest$, () => DeleteStoredQueryResponse$
|
|
3626
|
+
];
|
|
3627
|
+
var DeliverConfigSnapshot$ = [9, n0, _DCSel,
|
|
3628
|
+
0, () => DeliverConfigSnapshotRequest$, () => DeliverConfigSnapshotResponse$
|
|
3629
|
+
];
|
|
3630
|
+
var DescribeAggregateComplianceByConfigRules$ = [9, n0, _DACBCR,
|
|
3631
|
+
0, () => DescribeAggregateComplianceByConfigRulesRequest$, () => DescribeAggregateComplianceByConfigRulesResponse$
|
|
3632
|
+
];
|
|
3633
|
+
var DescribeAggregateComplianceByConformancePacks$ = [9, n0, _DACBCP,
|
|
3634
|
+
0, () => DescribeAggregateComplianceByConformancePacksRequest$, () => DescribeAggregateComplianceByConformancePacksResponse$
|
|
3635
|
+
];
|
|
3636
|
+
var DescribeAggregationAuthorizations$ = [9, n0, _DAAe,
|
|
3637
|
+
0, () => DescribeAggregationAuthorizationsRequest$, () => DescribeAggregationAuthorizationsResponse$
|
|
3638
|
+
];
|
|
3639
|
+
var DescribeComplianceByConfigRule$ = [9, n0, _DCBCR,
|
|
3640
|
+
0, () => DescribeComplianceByConfigRuleRequest$, () => DescribeComplianceByConfigRuleResponse$
|
|
3641
|
+
];
|
|
3642
|
+
var DescribeComplianceByResource$ = [9, n0, _DCBR,
|
|
3643
|
+
0, () => DescribeComplianceByResourceRequest$, () => DescribeComplianceByResourceResponse$
|
|
3644
|
+
];
|
|
3645
|
+
var DescribeConfigRuleEvaluationStatus$ = [9, n0, _DCRES,
|
|
3646
|
+
0, () => DescribeConfigRuleEvaluationStatusRequest$, () => DescribeConfigRuleEvaluationStatusResponse$
|
|
3647
|
+
];
|
|
3648
|
+
var DescribeConfigRules$ = [9, n0, _DCRes,
|
|
3649
|
+
0, () => DescribeConfigRulesRequest$, () => DescribeConfigRulesResponse$
|
|
3650
|
+
];
|
|
3651
|
+
var DescribeConfigurationAggregators$ = [9, n0, _DCAe,
|
|
3652
|
+
0, () => DescribeConfigurationAggregatorsRequest$, () => DescribeConfigurationAggregatorsResponse$
|
|
3653
|
+
];
|
|
3654
|
+
var DescribeConfigurationAggregatorSourcesStatus$ = [9, n0, _DCASS,
|
|
3655
|
+
0, () => DescribeConfigurationAggregatorSourcesStatusRequest$, () => DescribeConfigurationAggregatorSourcesStatusResponse$
|
|
3656
|
+
];
|
|
3657
|
+
var DescribeConfigurationRecorders$ = [9, n0, _DCResc,
|
|
3658
|
+
0, () => DescribeConfigurationRecordersRequest$, () => DescribeConfigurationRecordersResponse$
|
|
3659
|
+
];
|
|
3660
|
+
var DescribeConfigurationRecorderStatus$ = [9, n0, _DCRS,
|
|
3661
|
+
0, () => DescribeConfigurationRecorderStatusRequest$, () => DescribeConfigurationRecorderStatusResponse$
|
|
3662
|
+
];
|
|
3663
|
+
var DescribeConformancePackCompliance$ = [9, n0, _DCPC,
|
|
3664
|
+
0, () => DescribeConformancePackComplianceRequest$, () => DescribeConformancePackComplianceResponse$
|
|
3665
|
+
];
|
|
3666
|
+
var DescribeConformancePacks$ = [9, n0, _DCPe,
|
|
3667
|
+
0, () => DescribeConformancePacksRequest$, () => DescribeConformancePacksResponse$
|
|
3668
|
+
];
|
|
3669
|
+
var DescribeConformancePackStatus$ = [9, n0, _DCPS,
|
|
3670
|
+
0, () => DescribeConformancePackStatusRequest$, () => DescribeConformancePackStatusResponse$
|
|
3671
|
+
];
|
|
3672
|
+
var DescribeDeliveryChannels$ = [9, n0, _DDCe,
|
|
3673
|
+
0, () => DescribeDeliveryChannelsRequest$, () => DescribeDeliveryChannelsResponse$
|
|
3674
|
+
];
|
|
3675
|
+
var DescribeDeliveryChannelStatus$ = [9, n0, _DDCS,
|
|
3676
|
+
0, () => DescribeDeliveryChannelStatusRequest$, () => DescribeDeliveryChannelStatusResponse$
|
|
3677
|
+
];
|
|
3678
|
+
var DescribeOrganizationConfigRules$ = [9, n0, _DOCRe,
|
|
3679
|
+
0, () => DescribeOrganizationConfigRulesRequest$, () => DescribeOrganizationConfigRulesResponse$
|
|
3680
|
+
];
|
|
3681
|
+
var DescribeOrganizationConfigRuleStatuses$ = [9, n0, _DOCRS,
|
|
3682
|
+
0, () => DescribeOrganizationConfigRuleStatusesRequest$, () => DescribeOrganizationConfigRuleStatusesResponse$
|
|
3683
|
+
];
|
|
3684
|
+
var DescribeOrganizationConformancePacks$ = [9, n0, _DOCPe,
|
|
3685
|
+
0, () => DescribeOrganizationConformancePacksRequest$, () => DescribeOrganizationConformancePacksResponse$
|
|
3686
|
+
];
|
|
3687
|
+
var DescribeOrganizationConformancePackStatuses$ = [9, n0, _DOCPS,
|
|
3688
|
+
0, () => DescribeOrganizationConformancePackStatusesRequest$, () => DescribeOrganizationConformancePackStatusesResponse$
|
|
3689
|
+
];
|
|
3690
|
+
var DescribePendingAggregationRequests$ = [9, n0, _DPARe,
|
|
3691
|
+
0, () => DescribePendingAggregationRequestsRequest$, () => DescribePendingAggregationRequestsResponse$
|
|
3692
|
+
];
|
|
3693
|
+
var DescribeRemediationConfigurations$ = [9, n0, _DRCes,
|
|
3694
|
+
0, () => DescribeRemediationConfigurationsRequest$, () => DescribeRemediationConfigurationsResponse$
|
|
3695
|
+
];
|
|
3696
|
+
var DescribeRemediationExceptions$ = [9, n0, _DREe,
|
|
3697
|
+
0, () => DescribeRemediationExceptionsRequest$, () => DescribeRemediationExceptionsResponse$
|
|
3698
|
+
];
|
|
3699
|
+
var DescribeRemediationExecutionStatus$ = [9, n0, _DRES,
|
|
3700
|
+
0, () => DescribeRemediationExecutionStatusRequest$, () => DescribeRemediationExecutionStatusResponse$
|
|
3701
|
+
];
|
|
3702
|
+
var DescribeRetentionConfigurations$ = [9, n0, _DRCesc,
|
|
3703
|
+
0, () => DescribeRetentionConfigurationsRequest$, () => DescribeRetentionConfigurationsResponse$
|
|
3704
|
+
];
|
|
3705
|
+
var DisassociateResourceTypes$ = [9, n0, _DRT,
|
|
3706
|
+
0, () => DisassociateResourceTypesRequest$, () => DisassociateResourceTypesResponse$
|
|
3707
|
+
];
|
|
3708
|
+
var GetAggregateComplianceDetailsByConfigRule$ = [9, n0, _GACDBCR,
|
|
3709
|
+
0, () => GetAggregateComplianceDetailsByConfigRuleRequest$, () => GetAggregateComplianceDetailsByConfigRuleResponse$
|
|
3710
|
+
];
|
|
3711
|
+
var GetAggregateConfigRuleComplianceSummary$ = [9, n0, _GACRCS,
|
|
3712
|
+
0, () => GetAggregateConfigRuleComplianceSummaryRequest$, () => GetAggregateConfigRuleComplianceSummaryResponse$
|
|
3713
|
+
];
|
|
3714
|
+
var GetAggregateConformancePackComplianceSummary$ = [9, n0, _GACPCS,
|
|
3715
|
+
0, () => GetAggregateConformancePackComplianceSummaryRequest$, () => GetAggregateConformancePackComplianceSummaryResponse$
|
|
3716
|
+
];
|
|
3717
|
+
var GetAggregateDiscoveredResourceCounts$ = [9, n0, _GADRC,
|
|
3718
|
+
0, () => GetAggregateDiscoveredResourceCountsRequest$, () => GetAggregateDiscoveredResourceCountsResponse$
|
|
3719
|
+
];
|
|
3720
|
+
var GetAggregateResourceConfig$ = [9, n0, _GARC,
|
|
3721
|
+
0, () => GetAggregateResourceConfigRequest$, () => GetAggregateResourceConfigResponse$
|
|
3722
|
+
];
|
|
3723
|
+
var GetComplianceDetailsByConfigRule$ = [9, n0, _GCDBCR,
|
|
3724
|
+
0, () => GetComplianceDetailsByConfigRuleRequest$, () => GetComplianceDetailsByConfigRuleResponse$
|
|
3725
|
+
];
|
|
3726
|
+
var GetComplianceDetailsByResource$ = [9, n0, _GCDBR,
|
|
3727
|
+
0, () => GetComplianceDetailsByResourceRequest$, () => GetComplianceDetailsByResourceResponse$
|
|
3728
|
+
];
|
|
3729
|
+
var GetComplianceSummaryByConfigRule$ = [9, n0, _GCSBCR,
|
|
3730
|
+
0, () => __Unit, () => GetComplianceSummaryByConfigRuleResponse$
|
|
3731
|
+
];
|
|
3732
|
+
var GetComplianceSummaryByResourceType$ = [9, n0, _GCSBRT,
|
|
3733
|
+
0, () => GetComplianceSummaryByResourceTypeRequest$, () => GetComplianceSummaryByResourceTypeResponse$
|
|
3734
|
+
];
|
|
3735
|
+
var GetConformancePackComplianceDetails$ = [9, n0, _GCPCD,
|
|
3736
|
+
0, () => GetConformancePackComplianceDetailsRequest$, () => GetConformancePackComplianceDetailsResponse$
|
|
3737
|
+
];
|
|
3738
|
+
var GetConformancePackComplianceSummary$ = [9, n0, _GCPCS,
|
|
3739
|
+
0, () => GetConformancePackComplianceSummaryRequest$, () => GetConformancePackComplianceSummaryResponse$
|
|
3740
|
+
];
|
|
3741
|
+
var GetCustomRulePolicy$ = [9, n0, _GCRP,
|
|
3742
|
+
0, () => GetCustomRulePolicyRequest$, () => GetCustomRulePolicyResponse$
|
|
3743
|
+
];
|
|
3744
|
+
var GetDiscoveredResourceCounts$ = [9, n0, _GDRC,
|
|
3745
|
+
0, () => GetDiscoveredResourceCountsRequest$, () => GetDiscoveredResourceCountsResponse$
|
|
3746
|
+
];
|
|
3747
|
+
var GetOrganizationConfigRuleDetailedStatus$ = [9, n0, _GOCRDS,
|
|
3748
|
+
0, () => GetOrganizationConfigRuleDetailedStatusRequest$, () => GetOrganizationConfigRuleDetailedStatusResponse$
|
|
3749
|
+
];
|
|
3750
|
+
var GetOrganizationConformancePackDetailedStatus$ = [9, n0, _GOCPDS,
|
|
3751
|
+
0, () => GetOrganizationConformancePackDetailedStatusRequest$, () => GetOrganizationConformancePackDetailedStatusResponse$
|
|
3752
|
+
];
|
|
3753
|
+
var GetOrganizationCustomRulePolicy$ = [9, n0, _GOCRP,
|
|
3754
|
+
0, () => GetOrganizationCustomRulePolicyRequest$, () => GetOrganizationCustomRulePolicyResponse$
|
|
3755
|
+
];
|
|
3756
|
+
var GetResourceConfigHistory$ = [9, n0, _GRCH,
|
|
3757
|
+
0, () => GetResourceConfigHistoryRequest$, () => GetResourceConfigHistoryResponse$
|
|
3758
|
+
];
|
|
3759
|
+
var GetResourceEvaluationSummary$ = [9, n0, _GRES,
|
|
3760
|
+
0, () => GetResourceEvaluationSummaryRequest$, () => GetResourceEvaluationSummaryResponse$
|
|
3761
|
+
];
|
|
3762
|
+
var GetStoredQuery$ = [9, n0, _GSQ,
|
|
3763
|
+
0, () => GetStoredQueryRequest$, () => GetStoredQueryResponse$
|
|
3764
|
+
];
|
|
3765
|
+
var ListAggregateDiscoveredResources$ = [9, n0, _LADR,
|
|
3766
|
+
0, () => ListAggregateDiscoveredResourcesRequest$, () => ListAggregateDiscoveredResourcesResponse$
|
|
3767
|
+
];
|
|
3768
|
+
var ListConfigurationRecorders$ = [9, n0, _LCR,
|
|
3769
|
+
0, () => ListConfigurationRecordersRequest$, () => ListConfigurationRecordersResponse$
|
|
3770
|
+
];
|
|
3771
|
+
var ListConformancePackComplianceScores$ = [9, n0, _LCPCS,
|
|
3772
|
+
0, () => ListConformancePackComplianceScoresRequest$, () => ListConformancePackComplianceScoresResponse$
|
|
3773
|
+
];
|
|
3774
|
+
var ListDiscoveredResources$ = [9, n0, _LDR,
|
|
3775
|
+
0, () => ListDiscoveredResourcesRequest$, () => ListDiscoveredResourcesResponse$
|
|
3776
|
+
];
|
|
3777
|
+
var ListResourceEvaluations$ = [9, n0, _LRE,
|
|
3778
|
+
0, () => ListResourceEvaluationsRequest$, () => ListResourceEvaluationsResponse$
|
|
3779
|
+
];
|
|
3780
|
+
var ListStoredQueries$ = [9, n0, _LSQ,
|
|
3781
|
+
0, () => ListStoredQueriesRequest$, () => ListStoredQueriesResponse$
|
|
3782
|
+
];
|
|
3783
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
3784
|
+
0, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
3785
|
+
];
|
|
3786
|
+
var PutAggregationAuthorization$ = [9, n0, _PAA,
|
|
3787
|
+
0, () => PutAggregationAuthorizationRequest$, () => PutAggregationAuthorizationResponse$
|
|
3788
|
+
];
|
|
3789
|
+
var PutConfigRule$ = [9, n0, _PCR,
|
|
3790
|
+
0, () => PutConfigRuleRequest$, () => __Unit
|
|
3791
|
+
];
|
|
3792
|
+
var PutConfigurationAggregator$ = [9, n0, _PCA,
|
|
3793
|
+
0, () => PutConfigurationAggregatorRequest$, () => PutConfigurationAggregatorResponse$
|
|
3794
|
+
];
|
|
3795
|
+
var PutConfigurationRecorder$ = [9, n0, _PCRu,
|
|
3796
|
+
0, () => PutConfigurationRecorderRequest$, () => __Unit
|
|
3797
|
+
];
|
|
3798
|
+
var PutConformancePack$ = [9, n0, _PCP,
|
|
3799
|
+
0, () => PutConformancePackRequest$, () => PutConformancePackResponse$
|
|
3800
|
+
];
|
|
3801
|
+
var PutDeliveryChannel$ = [9, n0, _PDC,
|
|
3802
|
+
0, () => PutDeliveryChannelRequest$, () => __Unit
|
|
3803
|
+
];
|
|
3804
|
+
var PutEvaluations$ = [9, n0, _PE,
|
|
3805
|
+
0, () => PutEvaluationsRequest$, () => PutEvaluationsResponse$
|
|
3806
|
+
];
|
|
3807
|
+
var PutExternalEvaluation$ = [9, n0, _PEE,
|
|
3808
|
+
0, () => PutExternalEvaluationRequest$, () => PutExternalEvaluationResponse$
|
|
3809
|
+
];
|
|
3810
|
+
var PutOrganizationConfigRule$ = [9, n0, _POCR,
|
|
3811
|
+
0, () => PutOrganizationConfigRuleRequest$, () => PutOrganizationConfigRuleResponse$
|
|
3812
|
+
];
|
|
3813
|
+
var PutOrganizationConformancePack$ = [9, n0, _POCP,
|
|
3814
|
+
0, () => PutOrganizationConformancePackRequest$, () => PutOrganizationConformancePackResponse$
|
|
3815
|
+
];
|
|
3816
|
+
var PutRemediationConfigurations$ = [9, n0, _PRC,
|
|
3817
|
+
0, () => PutRemediationConfigurationsRequest$, () => PutRemediationConfigurationsResponse$
|
|
3818
|
+
];
|
|
3819
|
+
var PutRemediationExceptions$ = [9, n0, _PRE,
|
|
3820
|
+
0, () => PutRemediationExceptionsRequest$, () => PutRemediationExceptionsResponse$
|
|
3821
|
+
];
|
|
3822
|
+
var PutResourceConfig$ = [9, n0, _PRCu,
|
|
3823
|
+
0, () => PutResourceConfigRequest$, () => __Unit
|
|
3824
|
+
];
|
|
3825
|
+
var PutRetentionConfiguration$ = [9, n0, _PRCut,
|
|
3826
|
+
0, () => PutRetentionConfigurationRequest$, () => PutRetentionConfigurationResponse$
|
|
3827
|
+
];
|
|
3828
|
+
var PutServiceLinkedConfigurationRecorder$ = [9, n0, _PSLCR,
|
|
3829
|
+
0, () => PutServiceLinkedConfigurationRecorderRequest$, () => PutServiceLinkedConfigurationRecorderResponse$
|
|
3830
|
+
];
|
|
3831
|
+
var PutStoredQuery$ = [9, n0, _PSQ,
|
|
3832
|
+
0, () => PutStoredQueryRequest$, () => PutStoredQueryResponse$
|
|
3833
|
+
];
|
|
3834
|
+
var SelectAggregateResourceConfig$ = [9, n0, _SARC,
|
|
3835
|
+
0, () => SelectAggregateResourceConfigRequest$, () => SelectAggregateResourceConfigResponse$
|
|
3836
|
+
];
|
|
3837
|
+
var SelectResourceConfig$ = [9, n0, _SRC,
|
|
3838
|
+
0, () => SelectResourceConfigRequest$, () => SelectResourceConfigResponse$
|
|
3839
|
+
];
|
|
3840
|
+
var StartConfigRulesEvaluation$ = [9, n0, _SCRE,
|
|
3841
|
+
0, () => StartConfigRulesEvaluationRequest$, () => StartConfigRulesEvaluationResponse$
|
|
3842
|
+
];
|
|
3843
|
+
var StartConfigurationRecorder$ = [9, n0, _SCR,
|
|
3844
|
+
0, () => StartConfigurationRecorderRequest$, () => __Unit
|
|
3845
|
+
];
|
|
3846
|
+
var StartRemediationExecution$ = [9, n0, _SRE,
|
|
3847
|
+
0, () => StartRemediationExecutionRequest$, () => StartRemediationExecutionResponse$
|
|
3848
|
+
];
|
|
3849
|
+
var StartResourceEvaluation$ = [9, n0, _SREt,
|
|
3850
|
+
0, () => StartResourceEvaluationRequest$, () => StartResourceEvaluationResponse$
|
|
3851
|
+
];
|
|
3852
|
+
var StopConfigurationRecorder$ = [9, n0, _SCRt,
|
|
3853
|
+
0, () => StopConfigurationRecorderRequest$, () => __Unit
|
|
3854
|
+
];
|
|
3855
|
+
var TagResource$ = [9, n0, _TR,
|
|
3856
|
+
0, () => TagResourceRequest$, () => __Unit
|
|
3857
|
+
];
|
|
3858
|
+
var UntagResource$ = [9, n0, _UR,
|
|
3859
|
+
0, () => UntagResourceRequest$, () => __Unit
|
|
3860
|
+
];
|
|
3861
|
+
|
|
3862
|
+
const getRuntimeConfig$1 = (config) => {
|
|
3863
|
+
return {
|
|
3864
|
+
apiVersion: "2014-11-12",
|
|
3865
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
3866
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
3867
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
3868
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
3869
|
+
extensions: config?.extensions ?? [],
|
|
3870
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultConfigServiceHttpAuthSchemeProvider,
|
|
3871
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
3872
|
+
{
|
|
3873
|
+
schemeId: "aws.auth#sigv4",
|
|
3874
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
3875
|
+
signer: new AwsSdkSigV4Signer(),
|
|
3876
|
+
},
|
|
3877
|
+
],
|
|
3878
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
3879
|
+
protocol: config?.protocol ?? AwsJson1_1Protocol,
|
|
3880
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
3881
|
+
defaultNamespace: "com.amazonaws.configservice",
|
|
3882
|
+
errorTypeRegistries,
|
|
3883
|
+
xmlNamespace: "http://config.amazonaws.com/doc/2014-11-12/",
|
|
3884
|
+
version: "2014-11-12",
|
|
3885
|
+
serviceTarget: "StarlingDoveService",
|
|
3886
|
+
},
|
|
3887
|
+
serviceId: config?.serviceId ?? "Config Service",
|
|
3888
|
+
sha256: config?.sha256 ?? Sha256,
|
|
3889
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
3890
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
3891
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
3892
|
+
};
|
|
3893
|
+
};
|
|
3894
|
+
|
|
3895
|
+
const getRuntimeConfig = (config) => {
|
|
3896
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
3897
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
3898
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
3899
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
3900
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
3901
|
+
const loaderConfig = {
|
|
3902
|
+
profile: config?.profile,
|
|
3903
|
+
logger: clientSharedValues.logger,
|
|
3904
|
+
};
|
|
3905
|
+
return {
|
|
3906
|
+
...clientSharedValues,
|
|
3907
|
+
...config,
|
|
3908
|
+
runtime: "node",
|
|
3909
|
+
defaultsMode,
|
|
3910
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
3911
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
3912
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
3913
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
3914
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
3915
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
3916
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
3917
|
+
retryMode: config?.retryMode ??
|
|
3918
|
+
loadConfig({
|
|
3919
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
3920
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
3921
|
+
}, config),
|
|
3922
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
3923
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3924
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
3925
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
3926
|
+
};
|
|
3927
|
+
};
|
|
3928
|
+
|
|
34
3929
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
3930
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
3931
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -2244,144 +6139,641 @@ const SortOrder = {
|
|
|
2244
6139
|
DESCENDING: "DESCENDING",
|
|
2245
6140
|
};
|
|
2246
6141
|
|
|
6142
|
+
exports.AccountAggregationSource$ = AccountAggregationSource$;
|
|
6143
|
+
exports.AggregateComplianceByConfigRule$ = AggregateComplianceByConfigRule$;
|
|
6144
|
+
exports.AggregateComplianceByConformancePack$ = AggregateComplianceByConformancePack$;
|
|
6145
|
+
exports.AggregateComplianceCount$ = AggregateComplianceCount$;
|
|
6146
|
+
exports.AggregateConformancePackCompliance$ = AggregateConformancePackCompliance$;
|
|
6147
|
+
exports.AggregateConformancePackComplianceCount$ = AggregateConformancePackComplianceCount$;
|
|
6148
|
+
exports.AggregateConformancePackComplianceFilters$ = AggregateConformancePackComplianceFilters$;
|
|
6149
|
+
exports.AggregateConformancePackComplianceSummary$ = AggregateConformancePackComplianceSummary$;
|
|
6150
|
+
exports.AggregateConformancePackComplianceSummaryFilters$ = AggregateConformancePackComplianceSummaryFilters$;
|
|
2247
6151
|
exports.AggregateConformancePackComplianceSummaryGroupKey = AggregateConformancePackComplianceSummaryGroupKey;
|
|
6152
|
+
exports.AggregateEvaluationResult$ = AggregateEvaluationResult$;
|
|
6153
|
+
exports.AggregateResourceIdentifier$ = AggregateResourceIdentifier$;
|
|
6154
|
+
exports.AggregatedSourceStatus$ = AggregatedSourceStatus$;
|
|
2248
6155
|
exports.AggregatedSourceStatusType = AggregatedSourceStatusType;
|
|
2249
6156
|
exports.AggregatedSourceType = AggregatedSourceType;
|
|
6157
|
+
exports.AggregationAuthorization$ = AggregationAuthorization$;
|
|
6158
|
+
exports.AggregatorFilterResourceType$ = AggregatorFilterResourceType$;
|
|
6159
|
+
exports.AggregatorFilterServicePrincipal$ = AggregatorFilterServicePrincipal$;
|
|
2250
6160
|
exports.AggregatorFilterType = AggregatorFilterType;
|
|
6161
|
+
exports.AggregatorFilters$ = AggregatorFilters$;
|
|
6162
|
+
exports.AssociateResourceTypes$ = AssociateResourceTypes$;
|
|
2251
6163
|
exports.AssociateResourceTypesCommand = AssociateResourceTypesCommand;
|
|
6164
|
+
exports.AssociateResourceTypesRequest$ = AssociateResourceTypesRequest$;
|
|
6165
|
+
exports.AssociateResourceTypesResponse$ = AssociateResourceTypesResponse$;
|
|
6166
|
+
exports.BaseConfigurationItem$ = BaseConfigurationItem$;
|
|
6167
|
+
exports.BatchGetAggregateResourceConfig$ = BatchGetAggregateResourceConfig$;
|
|
2252
6168
|
exports.BatchGetAggregateResourceConfigCommand = BatchGetAggregateResourceConfigCommand;
|
|
6169
|
+
exports.BatchGetAggregateResourceConfigRequest$ = BatchGetAggregateResourceConfigRequest$;
|
|
6170
|
+
exports.BatchGetAggregateResourceConfigResponse$ = BatchGetAggregateResourceConfigResponse$;
|
|
6171
|
+
exports.BatchGetResourceConfig$ = BatchGetResourceConfig$;
|
|
2253
6172
|
exports.BatchGetResourceConfigCommand = BatchGetResourceConfigCommand;
|
|
6173
|
+
exports.BatchGetResourceConfigRequest$ = BatchGetResourceConfigRequest$;
|
|
6174
|
+
exports.BatchGetResourceConfigResponse$ = BatchGetResourceConfigResponse$;
|
|
2254
6175
|
exports.ChronologicalOrder = ChronologicalOrder;
|
|
6176
|
+
exports.Compliance$ = Compliance$;
|
|
6177
|
+
exports.ComplianceByConfigRule$ = ComplianceByConfigRule$;
|
|
6178
|
+
exports.ComplianceByResource$ = ComplianceByResource$;
|
|
6179
|
+
exports.ComplianceContributorCount$ = ComplianceContributorCount$;
|
|
6180
|
+
exports.ComplianceSummary$ = ComplianceSummary$;
|
|
6181
|
+
exports.ComplianceSummaryByResourceType$ = ComplianceSummaryByResourceType$;
|
|
2255
6182
|
exports.ComplianceType = ComplianceType;
|
|
6183
|
+
exports.ConfigExportDeliveryInfo$ = ConfigExportDeliveryInfo$;
|
|
6184
|
+
exports.ConfigRule$ = ConfigRule$;
|
|
6185
|
+
exports.ConfigRuleComplianceFilters$ = ConfigRuleComplianceFilters$;
|
|
6186
|
+
exports.ConfigRuleComplianceSummaryFilters$ = ConfigRuleComplianceSummaryFilters$;
|
|
2256
6187
|
exports.ConfigRuleComplianceSummaryGroupKey = ConfigRuleComplianceSummaryGroupKey;
|
|
6188
|
+
exports.ConfigRuleEvaluationStatus$ = ConfigRuleEvaluationStatus$;
|
|
2257
6189
|
exports.ConfigRuleState = ConfigRuleState;
|
|
2258
6190
|
exports.ConfigService = ConfigService;
|
|
2259
6191
|
exports.ConfigServiceClient = ConfigServiceClient;
|
|
6192
|
+
exports.ConfigServiceServiceException = ConfigServiceServiceException;
|
|
6193
|
+
exports.ConfigServiceServiceException$ = ConfigServiceServiceException$;
|
|
6194
|
+
exports.ConfigSnapshotDeliveryProperties$ = ConfigSnapshotDeliveryProperties$;
|
|
6195
|
+
exports.ConfigStreamDeliveryInfo$ = ConfigStreamDeliveryInfo$;
|
|
6196
|
+
exports.ConfigurationAggregator$ = ConfigurationAggregator$;
|
|
6197
|
+
exports.ConfigurationItem$ = ConfigurationItem$;
|
|
2260
6198
|
exports.ConfigurationItemStatus = ConfigurationItemStatus;
|
|
6199
|
+
exports.ConfigurationRecorder$ = ConfigurationRecorder$;
|
|
6200
|
+
exports.ConfigurationRecorderFilter$ = ConfigurationRecorderFilter$;
|
|
2261
6201
|
exports.ConfigurationRecorderFilterName = ConfigurationRecorderFilterName;
|
|
6202
|
+
exports.ConfigurationRecorderStatus$ = ConfigurationRecorderStatus$;
|
|
6203
|
+
exports.ConfigurationRecorderSummary$ = ConfigurationRecorderSummary$;
|
|
6204
|
+
exports.ConflictException = ConflictException;
|
|
6205
|
+
exports.ConflictException$ = ConflictException$;
|
|
6206
|
+
exports.ConformancePackComplianceFilters$ = ConformancePackComplianceFilters$;
|
|
6207
|
+
exports.ConformancePackComplianceScore$ = ConformancePackComplianceScore$;
|
|
6208
|
+
exports.ConformancePackComplianceScoresFilters$ = ConformancePackComplianceScoresFilters$;
|
|
6209
|
+
exports.ConformancePackComplianceSummary$ = ConformancePackComplianceSummary$;
|
|
2262
6210
|
exports.ConformancePackComplianceType = ConformancePackComplianceType;
|
|
6211
|
+
exports.ConformancePackDetail$ = ConformancePackDetail$;
|
|
6212
|
+
exports.ConformancePackEvaluationFilters$ = ConformancePackEvaluationFilters$;
|
|
6213
|
+
exports.ConformancePackEvaluationResult$ = ConformancePackEvaluationResult$;
|
|
6214
|
+
exports.ConformancePackInputParameter$ = ConformancePackInputParameter$;
|
|
6215
|
+
exports.ConformancePackRuleCompliance$ = ConformancePackRuleCompliance$;
|
|
2263
6216
|
exports.ConformancePackState = ConformancePackState;
|
|
6217
|
+
exports.ConformancePackStatusDetail$ = ConformancePackStatusDetail$;
|
|
6218
|
+
exports.ConformancePackTemplateValidationException = ConformancePackTemplateValidationException;
|
|
6219
|
+
exports.ConformancePackTemplateValidationException$ = ConformancePackTemplateValidationException$;
|
|
6220
|
+
exports.CustomPolicyDetails$ = CustomPolicyDetails$;
|
|
6221
|
+
exports.DeleteAggregationAuthorization$ = DeleteAggregationAuthorization$;
|
|
2264
6222
|
exports.DeleteAggregationAuthorizationCommand = DeleteAggregationAuthorizationCommand;
|
|
6223
|
+
exports.DeleteAggregationAuthorizationRequest$ = DeleteAggregationAuthorizationRequest$;
|
|
6224
|
+
exports.DeleteConfigRule$ = DeleteConfigRule$;
|
|
2265
6225
|
exports.DeleteConfigRuleCommand = DeleteConfigRuleCommand;
|
|
6226
|
+
exports.DeleteConfigRuleRequest$ = DeleteConfigRuleRequest$;
|
|
6227
|
+
exports.DeleteConfigurationAggregator$ = DeleteConfigurationAggregator$;
|
|
2266
6228
|
exports.DeleteConfigurationAggregatorCommand = DeleteConfigurationAggregatorCommand;
|
|
6229
|
+
exports.DeleteConfigurationAggregatorRequest$ = DeleteConfigurationAggregatorRequest$;
|
|
6230
|
+
exports.DeleteConfigurationRecorder$ = DeleteConfigurationRecorder$;
|
|
2267
6231
|
exports.DeleteConfigurationRecorderCommand = DeleteConfigurationRecorderCommand;
|
|
6232
|
+
exports.DeleteConfigurationRecorderRequest$ = DeleteConfigurationRecorderRequest$;
|
|
6233
|
+
exports.DeleteConformancePack$ = DeleteConformancePack$;
|
|
2268
6234
|
exports.DeleteConformancePackCommand = DeleteConformancePackCommand;
|
|
6235
|
+
exports.DeleteConformancePackRequest$ = DeleteConformancePackRequest$;
|
|
6236
|
+
exports.DeleteDeliveryChannel$ = DeleteDeliveryChannel$;
|
|
2269
6237
|
exports.DeleteDeliveryChannelCommand = DeleteDeliveryChannelCommand;
|
|
6238
|
+
exports.DeleteDeliveryChannelRequest$ = DeleteDeliveryChannelRequest$;
|
|
6239
|
+
exports.DeleteEvaluationResults$ = DeleteEvaluationResults$;
|
|
2270
6240
|
exports.DeleteEvaluationResultsCommand = DeleteEvaluationResultsCommand;
|
|
6241
|
+
exports.DeleteEvaluationResultsRequest$ = DeleteEvaluationResultsRequest$;
|
|
6242
|
+
exports.DeleteEvaluationResultsResponse$ = DeleteEvaluationResultsResponse$;
|
|
6243
|
+
exports.DeleteOrganizationConfigRule$ = DeleteOrganizationConfigRule$;
|
|
2271
6244
|
exports.DeleteOrganizationConfigRuleCommand = DeleteOrganizationConfigRuleCommand;
|
|
6245
|
+
exports.DeleteOrganizationConfigRuleRequest$ = DeleteOrganizationConfigRuleRequest$;
|
|
6246
|
+
exports.DeleteOrganizationConformancePack$ = DeleteOrganizationConformancePack$;
|
|
2272
6247
|
exports.DeleteOrganizationConformancePackCommand = DeleteOrganizationConformancePackCommand;
|
|
6248
|
+
exports.DeleteOrganizationConformancePackRequest$ = DeleteOrganizationConformancePackRequest$;
|
|
6249
|
+
exports.DeletePendingAggregationRequest$ = DeletePendingAggregationRequest$;
|
|
2273
6250
|
exports.DeletePendingAggregationRequestCommand = DeletePendingAggregationRequestCommand;
|
|
6251
|
+
exports.DeletePendingAggregationRequestRequest$ = DeletePendingAggregationRequestRequest$;
|
|
6252
|
+
exports.DeleteRemediationConfiguration$ = DeleteRemediationConfiguration$;
|
|
2274
6253
|
exports.DeleteRemediationConfigurationCommand = DeleteRemediationConfigurationCommand;
|
|
6254
|
+
exports.DeleteRemediationConfigurationRequest$ = DeleteRemediationConfigurationRequest$;
|
|
6255
|
+
exports.DeleteRemediationConfigurationResponse$ = DeleteRemediationConfigurationResponse$;
|
|
6256
|
+
exports.DeleteRemediationExceptions$ = DeleteRemediationExceptions$;
|
|
2275
6257
|
exports.DeleteRemediationExceptionsCommand = DeleteRemediationExceptionsCommand;
|
|
6258
|
+
exports.DeleteRemediationExceptionsRequest$ = DeleteRemediationExceptionsRequest$;
|
|
6259
|
+
exports.DeleteRemediationExceptionsResponse$ = DeleteRemediationExceptionsResponse$;
|
|
6260
|
+
exports.DeleteResourceConfig$ = DeleteResourceConfig$;
|
|
2276
6261
|
exports.DeleteResourceConfigCommand = DeleteResourceConfigCommand;
|
|
6262
|
+
exports.DeleteResourceConfigRequest$ = DeleteResourceConfigRequest$;
|
|
6263
|
+
exports.DeleteRetentionConfiguration$ = DeleteRetentionConfiguration$;
|
|
2277
6264
|
exports.DeleteRetentionConfigurationCommand = DeleteRetentionConfigurationCommand;
|
|
6265
|
+
exports.DeleteRetentionConfigurationRequest$ = DeleteRetentionConfigurationRequest$;
|
|
6266
|
+
exports.DeleteServiceLinkedConfigurationRecorder$ = DeleteServiceLinkedConfigurationRecorder$;
|
|
2278
6267
|
exports.DeleteServiceLinkedConfigurationRecorderCommand = DeleteServiceLinkedConfigurationRecorderCommand;
|
|
6268
|
+
exports.DeleteServiceLinkedConfigurationRecorderRequest$ = DeleteServiceLinkedConfigurationRecorderRequest$;
|
|
6269
|
+
exports.DeleteServiceLinkedConfigurationRecorderResponse$ = DeleteServiceLinkedConfigurationRecorderResponse$;
|
|
6270
|
+
exports.DeleteStoredQuery$ = DeleteStoredQuery$;
|
|
2279
6271
|
exports.DeleteStoredQueryCommand = DeleteStoredQueryCommand;
|
|
6272
|
+
exports.DeleteStoredQueryRequest$ = DeleteStoredQueryRequest$;
|
|
6273
|
+
exports.DeleteStoredQueryResponse$ = DeleteStoredQueryResponse$;
|
|
6274
|
+
exports.DeliverConfigSnapshot$ = DeliverConfigSnapshot$;
|
|
2280
6275
|
exports.DeliverConfigSnapshotCommand = DeliverConfigSnapshotCommand;
|
|
6276
|
+
exports.DeliverConfigSnapshotRequest$ = DeliverConfigSnapshotRequest$;
|
|
6277
|
+
exports.DeliverConfigSnapshotResponse$ = DeliverConfigSnapshotResponse$;
|
|
6278
|
+
exports.DeliveryChannel$ = DeliveryChannel$;
|
|
6279
|
+
exports.DeliveryChannelStatus$ = DeliveryChannelStatus$;
|
|
2281
6280
|
exports.DeliveryStatus = DeliveryStatus;
|
|
6281
|
+
exports.DescribeAggregateComplianceByConfigRules$ = DescribeAggregateComplianceByConfigRules$;
|
|
2282
6282
|
exports.DescribeAggregateComplianceByConfigRulesCommand = DescribeAggregateComplianceByConfigRulesCommand;
|
|
6283
|
+
exports.DescribeAggregateComplianceByConfigRulesRequest$ = DescribeAggregateComplianceByConfigRulesRequest$;
|
|
6284
|
+
exports.DescribeAggregateComplianceByConfigRulesResponse$ = DescribeAggregateComplianceByConfigRulesResponse$;
|
|
6285
|
+
exports.DescribeAggregateComplianceByConformancePacks$ = DescribeAggregateComplianceByConformancePacks$;
|
|
2283
6286
|
exports.DescribeAggregateComplianceByConformancePacksCommand = DescribeAggregateComplianceByConformancePacksCommand;
|
|
6287
|
+
exports.DescribeAggregateComplianceByConformancePacksRequest$ = DescribeAggregateComplianceByConformancePacksRequest$;
|
|
6288
|
+
exports.DescribeAggregateComplianceByConformancePacksResponse$ = DescribeAggregateComplianceByConformancePacksResponse$;
|
|
6289
|
+
exports.DescribeAggregationAuthorizations$ = DescribeAggregationAuthorizations$;
|
|
2284
6290
|
exports.DescribeAggregationAuthorizationsCommand = DescribeAggregationAuthorizationsCommand;
|
|
6291
|
+
exports.DescribeAggregationAuthorizationsRequest$ = DescribeAggregationAuthorizationsRequest$;
|
|
6292
|
+
exports.DescribeAggregationAuthorizationsResponse$ = DescribeAggregationAuthorizationsResponse$;
|
|
6293
|
+
exports.DescribeComplianceByConfigRule$ = DescribeComplianceByConfigRule$;
|
|
2285
6294
|
exports.DescribeComplianceByConfigRuleCommand = DescribeComplianceByConfigRuleCommand;
|
|
6295
|
+
exports.DescribeComplianceByConfigRuleRequest$ = DescribeComplianceByConfigRuleRequest$;
|
|
6296
|
+
exports.DescribeComplianceByConfigRuleResponse$ = DescribeComplianceByConfigRuleResponse$;
|
|
6297
|
+
exports.DescribeComplianceByResource$ = DescribeComplianceByResource$;
|
|
2286
6298
|
exports.DescribeComplianceByResourceCommand = DescribeComplianceByResourceCommand;
|
|
6299
|
+
exports.DescribeComplianceByResourceRequest$ = DescribeComplianceByResourceRequest$;
|
|
6300
|
+
exports.DescribeComplianceByResourceResponse$ = DescribeComplianceByResourceResponse$;
|
|
6301
|
+
exports.DescribeConfigRuleEvaluationStatus$ = DescribeConfigRuleEvaluationStatus$;
|
|
2287
6302
|
exports.DescribeConfigRuleEvaluationStatusCommand = DescribeConfigRuleEvaluationStatusCommand;
|
|
6303
|
+
exports.DescribeConfigRuleEvaluationStatusRequest$ = DescribeConfigRuleEvaluationStatusRequest$;
|
|
6304
|
+
exports.DescribeConfigRuleEvaluationStatusResponse$ = DescribeConfigRuleEvaluationStatusResponse$;
|
|
6305
|
+
exports.DescribeConfigRules$ = DescribeConfigRules$;
|
|
2288
6306
|
exports.DescribeConfigRulesCommand = DescribeConfigRulesCommand;
|
|
6307
|
+
exports.DescribeConfigRulesFilters$ = DescribeConfigRulesFilters$;
|
|
6308
|
+
exports.DescribeConfigRulesRequest$ = DescribeConfigRulesRequest$;
|
|
6309
|
+
exports.DescribeConfigRulesResponse$ = DescribeConfigRulesResponse$;
|
|
6310
|
+
exports.DescribeConfigurationAggregatorSourcesStatus$ = DescribeConfigurationAggregatorSourcesStatus$;
|
|
2289
6311
|
exports.DescribeConfigurationAggregatorSourcesStatusCommand = DescribeConfigurationAggregatorSourcesStatusCommand;
|
|
6312
|
+
exports.DescribeConfigurationAggregatorSourcesStatusRequest$ = DescribeConfigurationAggregatorSourcesStatusRequest$;
|
|
6313
|
+
exports.DescribeConfigurationAggregatorSourcesStatusResponse$ = DescribeConfigurationAggregatorSourcesStatusResponse$;
|
|
6314
|
+
exports.DescribeConfigurationAggregators$ = DescribeConfigurationAggregators$;
|
|
2290
6315
|
exports.DescribeConfigurationAggregatorsCommand = DescribeConfigurationAggregatorsCommand;
|
|
6316
|
+
exports.DescribeConfigurationAggregatorsRequest$ = DescribeConfigurationAggregatorsRequest$;
|
|
6317
|
+
exports.DescribeConfigurationAggregatorsResponse$ = DescribeConfigurationAggregatorsResponse$;
|
|
6318
|
+
exports.DescribeConfigurationRecorderStatus$ = DescribeConfigurationRecorderStatus$;
|
|
2291
6319
|
exports.DescribeConfigurationRecorderStatusCommand = DescribeConfigurationRecorderStatusCommand;
|
|
6320
|
+
exports.DescribeConfigurationRecorderStatusRequest$ = DescribeConfigurationRecorderStatusRequest$;
|
|
6321
|
+
exports.DescribeConfigurationRecorderStatusResponse$ = DescribeConfigurationRecorderStatusResponse$;
|
|
6322
|
+
exports.DescribeConfigurationRecorders$ = DescribeConfigurationRecorders$;
|
|
2292
6323
|
exports.DescribeConfigurationRecordersCommand = DescribeConfigurationRecordersCommand;
|
|
6324
|
+
exports.DescribeConfigurationRecordersRequest$ = DescribeConfigurationRecordersRequest$;
|
|
6325
|
+
exports.DescribeConfigurationRecordersResponse$ = DescribeConfigurationRecordersResponse$;
|
|
6326
|
+
exports.DescribeConformancePackCompliance$ = DescribeConformancePackCompliance$;
|
|
2293
6327
|
exports.DescribeConformancePackComplianceCommand = DescribeConformancePackComplianceCommand;
|
|
6328
|
+
exports.DescribeConformancePackComplianceRequest$ = DescribeConformancePackComplianceRequest$;
|
|
6329
|
+
exports.DescribeConformancePackComplianceResponse$ = DescribeConformancePackComplianceResponse$;
|
|
6330
|
+
exports.DescribeConformancePackStatus$ = DescribeConformancePackStatus$;
|
|
2294
6331
|
exports.DescribeConformancePackStatusCommand = DescribeConformancePackStatusCommand;
|
|
6332
|
+
exports.DescribeConformancePackStatusRequest$ = DescribeConformancePackStatusRequest$;
|
|
6333
|
+
exports.DescribeConformancePackStatusResponse$ = DescribeConformancePackStatusResponse$;
|
|
6334
|
+
exports.DescribeConformancePacks$ = DescribeConformancePacks$;
|
|
2295
6335
|
exports.DescribeConformancePacksCommand = DescribeConformancePacksCommand;
|
|
6336
|
+
exports.DescribeConformancePacksRequest$ = DescribeConformancePacksRequest$;
|
|
6337
|
+
exports.DescribeConformancePacksResponse$ = DescribeConformancePacksResponse$;
|
|
6338
|
+
exports.DescribeDeliveryChannelStatus$ = DescribeDeliveryChannelStatus$;
|
|
2296
6339
|
exports.DescribeDeliveryChannelStatusCommand = DescribeDeliveryChannelStatusCommand;
|
|
6340
|
+
exports.DescribeDeliveryChannelStatusRequest$ = DescribeDeliveryChannelStatusRequest$;
|
|
6341
|
+
exports.DescribeDeliveryChannelStatusResponse$ = DescribeDeliveryChannelStatusResponse$;
|
|
6342
|
+
exports.DescribeDeliveryChannels$ = DescribeDeliveryChannels$;
|
|
2297
6343
|
exports.DescribeDeliveryChannelsCommand = DescribeDeliveryChannelsCommand;
|
|
6344
|
+
exports.DescribeDeliveryChannelsRequest$ = DescribeDeliveryChannelsRequest$;
|
|
6345
|
+
exports.DescribeDeliveryChannelsResponse$ = DescribeDeliveryChannelsResponse$;
|
|
6346
|
+
exports.DescribeOrganizationConfigRuleStatuses$ = DescribeOrganizationConfigRuleStatuses$;
|
|
2298
6347
|
exports.DescribeOrganizationConfigRuleStatusesCommand = DescribeOrganizationConfigRuleStatusesCommand;
|
|
6348
|
+
exports.DescribeOrganizationConfigRuleStatusesRequest$ = DescribeOrganizationConfigRuleStatusesRequest$;
|
|
6349
|
+
exports.DescribeOrganizationConfigRuleStatusesResponse$ = DescribeOrganizationConfigRuleStatusesResponse$;
|
|
6350
|
+
exports.DescribeOrganizationConfigRules$ = DescribeOrganizationConfigRules$;
|
|
2299
6351
|
exports.DescribeOrganizationConfigRulesCommand = DescribeOrganizationConfigRulesCommand;
|
|
6352
|
+
exports.DescribeOrganizationConfigRulesRequest$ = DescribeOrganizationConfigRulesRequest$;
|
|
6353
|
+
exports.DescribeOrganizationConfigRulesResponse$ = DescribeOrganizationConfigRulesResponse$;
|
|
6354
|
+
exports.DescribeOrganizationConformancePackStatuses$ = DescribeOrganizationConformancePackStatuses$;
|
|
2300
6355
|
exports.DescribeOrganizationConformancePackStatusesCommand = DescribeOrganizationConformancePackStatusesCommand;
|
|
6356
|
+
exports.DescribeOrganizationConformancePackStatusesRequest$ = DescribeOrganizationConformancePackStatusesRequest$;
|
|
6357
|
+
exports.DescribeOrganizationConformancePackStatusesResponse$ = DescribeOrganizationConformancePackStatusesResponse$;
|
|
6358
|
+
exports.DescribeOrganizationConformancePacks$ = DescribeOrganizationConformancePacks$;
|
|
2301
6359
|
exports.DescribeOrganizationConformancePacksCommand = DescribeOrganizationConformancePacksCommand;
|
|
6360
|
+
exports.DescribeOrganizationConformancePacksRequest$ = DescribeOrganizationConformancePacksRequest$;
|
|
6361
|
+
exports.DescribeOrganizationConformancePacksResponse$ = DescribeOrganizationConformancePacksResponse$;
|
|
6362
|
+
exports.DescribePendingAggregationRequests$ = DescribePendingAggregationRequests$;
|
|
2302
6363
|
exports.DescribePendingAggregationRequestsCommand = DescribePendingAggregationRequestsCommand;
|
|
6364
|
+
exports.DescribePendingAggregationRequestsRequest$ = DescribePendingAggregationRequestsRequest$;
|
|
6365
|
+
exports.DescribePendingAggregationRequestsResponse$ = DescribePendingAggregationRequestsResponse$;
|
|
6366
|
+
exports.DescribeRemediationConfigurations$ = DescribeRemediationConfigurations$;
|
|
2303
6367
|
exports.DescribeRemediationConfigurationsCommand = DescribeRemediationConfigurationsCommand;
|
|
6368
|
+
exports.DescribeRemediationConfigurationsRequest$ = DescribeRemediationConfigurationsRequest$;
|
|
6369
|
+
exports.DescribeRemediationConfigurationsResponse$ = DescribeRemediationConfigurationsResponse$;
|
|
6370
|
+
exports.DescribeRemediationExceptions$ = DescribeRemediationExceptions$;
|
|
2304
6371
|
exports.DescribeRemediationExceptionsCommand = DescribeRemediationExceptionsCommand;
|
|
6372
|
+
exports.DescribeRemediationExceptionsRequest$ = DescribeRemediationExceptionsRequest$;
|
|
6373
|
+
exports.DescribeRemediationExceptionsResponse$ = DescribeRemediationExceptionsResponse$;
|
|
6374
|
+
exports.DescribeRemediationExecutionStatus$ = DescribeRemediationExecutionStatus$;
|
|
2305
6375
|
exports.DescribeRemediationExecutionStatusCommand = DescribeRemediationExecutionStatusCommand;
|
|
6376
|
+
exports.DescribeRemediationExecutionStatusRequest$ = DescribeRemediationExecutionStatusRequest$;
|
|
6377
|
+
exports.DescribeRemediationExecutionStatusResponse$ = DescribeRemediationExecutionStatusResponse$;
|
|
6378
|
+
exports.DescribeRetentionConfigurations$ = DescribeRetentionConfigurations$;
|
|
2306
6379
|
exports.DescribeRetentionConfigurationsCommand = DescribeRetentionConfigurationsCommand;
|
|
6380
|
+
exports.DescribeRetentionConfigurationsRequest$ = DescribeRetentionConfigurationsRequest$;
|
|
6381
|
+
exports.DescribeRetentionConfigurationsResponse$ = DescribeRetentionConfigurationsResponse$;
|
|
6382
|
+
exports.DisassociateResourceTypes$ = DisassociateResourceTypes$;
|
|
2307
6383
|
exports.DisassociateResourceTypesCommand = DisassociateResourceTypesCommand;
|
|
6384
|
+
exports.DisassociateResourceTypesRequest$ = DisassociateResourceTypesRequest$;
|
|
6385
|
+
exports.DisassociateResourceTypesResponse$ = DisassociateResourceTypesResponse$;
|
|
6386
|
+
exports.Evaluation$ = Evaluation$;
|
|
6387
|
+
exports.EvaluationContext$ = EvaluationContext$;
|
|
2308
6388
|
exports.EvaluationMode = EvaluationMode;
|
|
6389
|
+
exports.EvaluationModeConfiguration$ = EvaluationModeConfiguration$;
|
|
6390
|
+
exports.EvaluationResult$ = EvaluationResult$;
|
|
6391
|
+
exports.EvaluationResultIdentifier$ = EvaluationResultIdentifier$;
|
|
6392
|
+
exports.EvaluationResultQualifier$ = EvaluationResultQualifier$;
|
|
6393
|
+
exports.EvaluationStatus$ = EvaluationStatus$;
|
|
2309
6394
|
exports.EventSource = EventSource;
|
|
6395
|
+
exports.ExclusionByResourceTypes$ = ExclusionByResourceTypes$;
|
|
6396
|
+
exports.ExecutionControls$ = ExecutionControls$;
|
|
6397
|
+
exports.ExternalEvaluation$ = ExternalEvaluation$;
|
|
6398
|
+
exports.FailedDeleteRemediationExceptionsBatch$ = FailedDeleteRemediationExceptionsBatch$;
|
|
6399
|
+
exports.FailedRemediationBatch$ = FailedRemediationBatch$;
|
|
6400
|
+
exports.FailedRemediationExceptionBatch$ = FailedRemediationExceptionBatch$;
|
|
6401
|
+
exports.FieldInfo$ = FieldInfo$;
|
|
6402
|
+
exports.GetAggregateComplianceDetailsByConfigRule$ = GetAggregateComplianceDetailsByConfigRule$;
|
|
2310
6403
|
exports.GetAggregateComplianceDetailsByConfigRuleCommand = GetAggregateComplianceDetailsByConfigRuleCommand;
|
|
6404
|
+
exports.GetAggregateComplianceDetailsByConfigRuleRequest$ = GetAggregateComplianceDetailsByConfigRuleRequest$;
|
|
6405
|
+
exports.GetAggregateComplianceDetailsByConfigRuleResponse$ = GetAggregateComplianceDetailsByConfigRuleResponse$;
|
|
6406
|
+
exports.GetAggregateConfigRuleComplianceSummary$ = GetAggregateConfigRuleComplianceSummary$;
|
|
2311
6407
|
exports.GetAggregateConfigRuleComplianceSummaryCommand = GetAggregateConfigRuleComplianceSummaryCommand;
|
|
6408
|
+
exports.GetAggregateConfigRuleComplianceSummaryRequest$ = GetAggregateConfigRuleComplianceSummaryRequest$;
|
|
6409
|
+
exports.GetAggregateConfigRuleComplianceSummaryResponse$ = GetAggregateConfigRuleComplianceSummaryResponse$;
|
|
6410
|
+
exports.GetAggregateConformancePackComplianceSummary$ = GetAggregateConformancePackComplianceSummary$;
|
|
2312
6411
|
exports.GetAggregateConformancePackComplianceSummaryCommand = GetAggregateConformancePackComplianceSummaryCommand;
|
|
6412
|
+
exports.GetAggregateConformancePackComplianceSummaryRequest$ = GetAggregateConformancePackComplianceSummaryRequest$;
|
|
6413
|
+
exports.GetAggregateConformancePackComplianceSummaryResponse$ = GetAggregateConformancePackComplianceSummaryResponse$;
|
|
6414
|
+
exports.GetAggregateDiscoveredResourceCounts$ = GetAggregateDiscoveredResourceCounts$;
|
|
2313
6415
|
exports.GetAggregateDiscoveredResourceCountsCommand = GetAggregateDiscoveredResourceCountsCommand;
|
|
6416
|
+
exports.GetAggregateDiscoveredResourceCountsRequest$ = GetAggregateDiscoveredResourceCountsRequest$;
|
|
6417
|
+
exports.GetAggregateDiscoveredResourceCountsResponse$ = GetAggregateDiscoveredResourceCountsResponse$;
|
|
6418
|
+
exports.GetAggregateResourceConfig$ = GetAggregateResourceConfig$;
|
|
2314
6419
|
exports.GetAggregateResourceConfigCommand = GetAggregateResourceConfigCommand;
|
|
6420
|
+
exports.GetAggregateResourceConfigRequest$ = GetAggregateResourceConfigRequest$;
|
|
6421
|
+
exports.GetAggregateResourceConfigResponse$ = GetAggregateResourceConfigResponse$;
|
|
6422
|
+
exports.GetComplianceDetailsByConfigRule$ = GetComplianceDetailsByConfigRule$;
|
|
2315
6423
|
exports.GetComplianceDetailsByConfigRuleCommand = GetComplianceDetailsByConfigRuleCommand;
|
|
6424
|
+
exports.GetComplianceDetailsByConfigRuleRequest$ = GetComplianceDetailsByConfigRuleRequest$;
|
|
6425
|
+
exports.GetComplianceDetailsByConfigRuleResponse$ = GetComplianceDetailsByConfigRuleResponse$;
|
|
6426
|
+
exports.GetComplianceDetailsByResource$ = GetComplianceDetailsByResource$;
|
|
2316
6427
|
exports.GetComplianceDetailsByResourceCommand = GetComplianceDetailsByResourceCommand;
|
|
6428
|
+
exports.GetComplianceDetailsByResourceRequest$ = GetComplianceDetailsByResourceRequest$;
|
|
6429
|
+
exports.GetComplianceDetailsByResourceResponse$ = GetComplianceDetailsByResourceResponse$;
|
|
6430
|
+
exports.GetComplianceSummaryByConfigRule$ = GetComplianceSummaryByConfigRule$;
|
|
2317
6431
|
exports.GetComplianceSummaryByConfigRuleCommand = GetComplianceSummaryByConfigRuleCommand;
|
|
6432
|
+
exports.GetComplianceSummaryByConfigRuleResponse$ = GetComplianceSummaryByConfigRuleResponse$;
|
|
6433
|
+
exports.GetComplianceSummaryByResourceType$ = GetComplianceSummaryByResourceType$;
|
|
2318
6434
|
exports.GetComplianceSummaryByResourceTypeCommand = GetComplianceSummaryByResourceTypeCommand;
|
|
6435
|
+
exports.GetComplianceSummaryByResourceTypeRequest$ = GetComplianceSummaryByResourceTypeRequest$;
|
|
6436
|
+
exports.GetComplianceSummaryByResourceTypeResponse$ = GetComplianceSummaryByResourceTypeResponse$;
|
|
6437
|
+
exports.GetConformancePackComplianceDetails$ = GetConformancePackComplianceDetails$;
|
|
2319
6438
|
exports.GetConformancePackComplianceDetailsCommand = GetConformancePackComplianceDetailsCommand;
|
|
6439
|
+
exports.GetConformancePackComplianceDetailsRequest$ = GetConformancePackComplianceDetailsRequest$;
|
|
6440
|
+
exports.GetConformancePackComplianceDetailsResponse$ = GetConformancePackComplianceDetailsResponse$;
|
|
6441
|
+
exports.GetConformancePackComplianceSummary$ = GetConformancePackComplianceSummary$;
|
|
2320
6442
|
exports.GetConformancePackComplianceSummaryCommand = GetConformancePackComplianceSummaryCommand;
|
|
6443
|
+
exports.GetConformancePackComplianceSummaryRequest$ = GetConformancePackComplianceSummaryRequest$;
|
|
6444
|
+
exports.GetConformancePackComplianceSummaryResponse$ = GetConformancePackComplianceSummaryResponse$;
|
|
6445
|
+
exports.GetCustomRulePolicy$ = GetCustomRulePolicy$;
|
|
2321
6446
|
exports.GetCustomRulePolicyCommand = GetCustomRulePolicyCommand;
|
|
6447
|
+
exports.GetCustomRulePolicyRequest$ = GetCustomRulePolicyRequest$;
|
|
6448
|
+
exports.GetCustomRulePolicyResponse$ = GetCustomRulePolicyResponse$;
|
|
6449
|
+
exports.GetDiscoveredResourceCounts$ = GetDiscoveredResourceCounts$;
|
|
2322
6450
|
exports.GetDiscoveredResourceCountsCommand = GetDiscoveredResourceCountsCommand;
|
|
6451
|
+
exports.GetDiscoveredResourceCountsRequest$ = GetDiscoveredResourceCountsRequest$;
|
|
6452
|
+
exports.GetDiscoveredResourceCountsResponse$ = GetDiscoveredResourceCountsResponse$;
|
|
6453
|
+
exports.GetOrganizationConfigRuleDetailedStatus$ = GetOrganizationConfigRuleDetailedStatus$;
|
|
2323
6454
|
exports.GetOrganizationConfigRuleDetailedStatusCommand = GetOrganizationConfigRuleDetailedStatusCommand;
|
|
6455
|
+
exports.GetOrganizationConfigRuleDetailedStatusRequest$ = GetOrganizationConfigRuleDetailedStatusRequest$;
|
|
6456
|
+
exports.GetOrganizationConfigRuleDetailedStatusResponse$ = GetOrganizationConfigRuleDetailedStatusResponse$;
|
|
6457
|
+
exports.GetOrganizationConformancePackDetailedStatus$ = GetOrganizationConformancePackDetailedStatus$;
|
|
2324
6458
|
exports.GetOrganizationConformancePackDetailedStatusCommand = GetOrganizationConformancePackDetailedStatusCommand;
|
|
6459
|
+
exports.GetOrganizationConformancePackDetailedStatusRequest$ = GetOrganizationConformancePackDetailedStatusRequest$;
|
|
6460
|
+
exports.GetOrganizationConformancePackDetailedStatusResponse$ = GetOrganizationConformancePackDetailedStatusResponse$;
|
|
6461
|
+
exports.GetOrganizationCustomRulePolicy$ = GetOrganizationCustomRulePolicy$;
|
|
2325
6462
|
exports.GetOrganizationCustomRulePolicyCommand = GetOrganizationCustomRulePolicyCommand;
|
|
6463
|
+
exports.GetOrganizationCustomRulePolicyRequest$ = GetOrganizationCustomRulePolicyRequest$;
|
|
6464
|
+
exports.GetOrganizationCustomRulePolicyResponse$ = GetOrganizationCustomRulePolicyResponse$;
|
|
6465
|
+
exports.GetResourceConfigHistory$ = GetResourceConfigHistory$;
|
|
2326
6466
|
exports.GetResourceConfigHistoryCommand = GetResourceConfigHistoryCommand;
|
|
6467
|
+
exports.GetResourceConfigHistoryRequest$ = GetResourceConfigHistoryRequest$;
|
|
6468
|
+
exports.GetResourceConfigHistoryResponse$ = GetResourceConfigHistoryResponse$;
|
|
6469
|
+
exports.GetResourceEvaluationSummary$ = GetResourceEvaluationSummary$;
|
|
2327
6470
|
exports.GetResourceEvaluationSummaryCommand = GetResourceEvaluationSummaryCommand;
|
|
6471
|
+
exports.GetResourceEvaluationSummaryRequest$ = GetResourceEvaluationSummaryRequest$;
|
|
6472
|
+
exports.GetResourceEvaluationSummaryResponse$ = GetResourceEvaluationSummaryResponse$;
|
|
6473
|
+
exports.GetStoredQuery$ = GetStoredQuery$;
|
|
2328
6474
|
exports.GetStoredQueryCommand = GetStoredQueryCommand;
|
|
6475
|
+
exports.GetStoredQueryRequest$ = GetStoredQueryRequest$;
|
|
6476
|
+
exports.GetStoredQueryResponse$ = GetStoredQueryResponse$;
|
|
6477
|
+
exports.GroupedResourceCount$ = GroupedResourceCount$;
|
|
6478
|
+
exports.IdempotentParameterMismatch = IdempotentParameterMismatch;
|
|
6479
|
+
exports.IdempotentParameterMismatch$ = IdempotentParameterMismatch$;
|
|
6480
|
+
exports.InsufficientDeliveryPolicyException = InsufficientDeliveryPolicyException;
|
|
6481
|
+
exports.InsufficientDeliveryPolicyException$ = InsufficientDeliveryPolicyException$;
|
|
6482
|
+
exports.InsufficientPermissionsException = InsufficientPermissionsException;
|
|
6483
|
+
exports.InsufficientPermissionsException$ = InsufficientPermissionsException$;
|
|
6484
|
+
exports.InvalidConfigurationRecorderNameException = InvalidConfigurationRecorderNameException;
|
|
6485
|
+
exports.InvalidConfigurationRecorderNameException$ = InvalidConfigurationRecorderNameException$;
|
|
6486
|
+
exports.InvalidDeliveryChannelNameException = InvalidDeliveryChannelNameException;
|
|
6487
|
+
exports.InvalidDeliveryChannelNameException$ = InvalidDeliveryChannelNameException$;
|
|
6488
|
+
exports.InvalidExpressionException = InvalidExpressionException;
|
|
6489
|
+
exports.InvalidExpressionException$ = InvalidExpressionException$;
|
|
6490
|
+
exports.InvalidLimitException = InvalidLimitException;
|
|
6491
|
+
exports.InvalidLimitException$ = InvalidLimitException$;
|
|
6492
|
+
exports.InvalidNextTokenException = InvalidNextTokenException;
|
|
6493
|
+
exports.InvalidNextTokenException$ = InvalidNextTokenException$;
|
|
6494
|
+
exports.InvalidParameterValueException = InvalidParameterValueException;
|
|
6495
|
+
exports.InvalidParameterValueException$ = InvalidParameterValueException$;
|
|
6496
|
+
exports.InvalidRecordingGroupException = InvalidRecordingGroupException;
|
|
6497
|
+
exports.InvalidRecordingGroupException$ = InvalidRecordingGroupException$;
|
|
6498
|
+
exports.InvalidResultTokenException = InvalidResultTokenException;
|
|
6499
|
+
exports.InvalidResultTokenException$ = InvalidResultTokenException$;
|
|
6500
|
+
exports.InvalidRoleException = InvalidRoleException;
|
|
6501
|
+
exports.InvalidRoleException$ = InvalidRoleException$;
|
|
6502
|
+
exports.InvalidS3KeyPrefixException = InvalidS3KeyPrefixException;
|
|
6503
|
+
exports.InvalidS3KeyPrefixException$ = InvalidS3KeyPrefixException$;
|
|
6504
|
+
exports.InvalidS3KmsKeyArnException = InvalidS3KmsKeyArnException;
|
|
6505
|
+
exports.InvalidS3KmsKeyArnException$ = InvalidS3KmsKeyArnException$;
|
|
6506
|
+
exports.InvalidSNSTopicARNException = InvalidSNSTopicARNException;
|
|
6507
|
+
exports.InvalidSNSTopicARNException$ = InvalidSNSTopicARNException$;
|
|
6508
|
+
exports.InvalidTimeRangeException = InvalidTimeRangeException;
|
|
6509
|
+
exports.InvalidTimeRangeException$ = InvalidTimeRangeException$;
|
|
6510
|
+
exports.LastDeliveryChannelDeleteFailedException = LastDeliveryChannelDeleteFailedException;
|
|
6511
|
+
exports.LastDeliveryChannelDeleteFailedException$ = LastDeliveryChannelDeleteFailedException$;
|
|
6512
|
+
exports.LimitExceededException = LimitExceededException;
|
|
6513
|
+
exports.LimitExceededException$ = LimitExceededException$;
|
|
6514
|
+
exports.ListAggregateDiscoveredResources$ = ListAggregateDiscoveredResources$;
|
|
2329
6515
|
exports.ListAggregateDiscoveredResourcesCommand = ListAggregateDiscoveredResourcesCommand;
|
|
6516
|
+
exports.ListAggregateDiscoveredResourcesRequest$ = ListAggregateDiscoveredResourcesRequest$;
|
|
6517
|
+
exports.ListAggregateDiscoveredResourcesResponse$ = ListAggregateDiscoveredResourcesResponse$;
|
|
6518
|
+
exports.ListConfigurationRecorders$ = ListConfigurationRecorders$;
|
|
2330
6519
|
exports.ListConfigurationRecordersCommand = ListConfigurationRecordersCommand;
|
|
6520
|
+
exports.ListConfigurationRecordersRequest$ = ListConfigurationRecordersRequest$;
|
|
6521
|
+
exports.ListConfigurationRecordersResponse$ = ListConfigurationRecordersResponse$;
|
|
6522
|
+
exports.ListConformancePackComplianceScores$ = ListConformancePackComplianceScores$;
|
|
2331
6523
|
exports.ListConformancePackComplianceScoresCommand = ListConformancePackComplianceScoresCommand;
|
|
6524
|
+
exports.ListConformancePackComplianceScoresRequest$ = ListConformancePackComplianceScoresRequest$;
|
|
6525
|
+
exports.ListConformancePackComplianceScoresResponse$ = ListConformancePackComplianceScoresResponse$;
|
|
6526
|
+
exports.ListDiscoveredResources$ = ListDiscoveredResources$;
|
|
2332
6527
|
exports.ListDiscoveredResourcesCommand = ListDiscoveredResourcesCommand;
|
|
6528
|
+
exports.ListDiscoveredResourcesRequest$ = ListDiscoveredResourcesRequest$;
|
|
6529
|
+
exports.ListDiscoveredResourcesResponse$ = ListDiscoveredResourcesResponse$;
|
|
6530
|
+
exports.ListResourceEvaluations$ = ListResourceEvaluations$;
|
|
2333
6531
|
exports.ListResourceEvaluationsCommand = ListResourceEvaluationsCommand;
|
|
6532
|
+
exports.ListResourceEvaluationsRequest$ = ListResourceEvaluationsRequest$;
|
|
6533
|
+
exports.ListResourceEvaluationsResponse$ = ListResourceEvaluationsResponse$;
|
|
6534
|
+
exports.ListStoredQueries$ = ListStoredQueries$;
|
|
2334
6535
|
exports.ListStoredQueriesCommand = ListStoredQueriesCommand;
|
|
6536
|
+
exports.ListStoredQueriesRequest$ = ListStoredQueriesRequest$;
|
|
6537
|
+
exports.ListStoredQueriesResponse$ = ListStoredQueriesResponse$;
|
|
6538
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
2335
6539
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
6540
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
6541
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
6542
|
+
exports.MaxActiveResourcesExceededException = MaxActiveResourcesExceededException;
|
|
6543
|
+
exports.MaxActiveResourcesExceededException$ = MaxActiveResourcesExceededException$;
|
|
6544
|
+
exports.MaxNumberOfConfigRulesExceededException = MaxNumberOfConfigRulesExceededException;
|
|
6545
|
+
exports.MaxNumberOfConfigRulesExceededException$ = MaxNumberOfConfigRulesExceededException$;
|
|
6546
|
+
exports.MaxNumberOfConfigurationRecordersExceededException = MaxNumberOfConfigurationRecordersExceededException;
|
|
6547
|
+
exports.MaxNumberOfConfigurationRecordersExceededException$ = MaxNumberOfConfigurationRecordersExceededException$;
|
|
6548
|
+
exports.MaxNumberOfConformancePacksExceededException = MaxNumberOfConformancePacksExceededException;
|
|
6549
|
+
exports.MaxNumberOfConformancePacksExceededException$ = MaxNumberOfConformancePacksExceededException$;
|
|
6550
|
+
exports.MaxNumberOfDeliveryChannelsExceededException = MaxNumberOfDeliveryChannelsExceededException;
|
|
6551
|
+
exports.MaxNumberOfDeliveryChannelsExceededException$ = MaxNumberOfDeliveryChannelsExceededException$;
|
|
6552
|
+
exports.MaxNumberOfOrganizationConfigRulesExceededException = MaxNumberOfOrganizationConfigRulesExceededException;
|
|
6553
|
+
exports.MaxNumberOfOrganizationConfigRulesExceededException$ = MaxNumberOfOrganizationConfigRulesExceededException$;
|
|
6554
|
+
exports.MaxNumberOfOrganizationConformancePacksExceededException = MaxNumberOfOrganizationConformancePacksExceededException;
|
|
6555
|
+
exports.MaxNumberOfOrganizationConformancePacksExceededException$ = MaxNumberOfOrganizationConformancePacksExceededException$;
|
|
6556
|
+
exports.MaxNumberOfRetentionConfigurationsExceededException = MaxNumberOfRetentionConfigurationsExceededException;
|
|
6557
|
+
exports.MaxNumberOfRetentionConfigurationsExceededException$ = MaxNumberOfRetentionConfigurationsExceededException$;
|
|
2336
6558
|
exports.MaximumExecutionFrequency = MaximumExecutionFrequency;
|
|
2337
6559
|
exports.MemberAccountRuleStatus = MemberAccountRuleStatus;
|
|
6560
|
+
exports.MemberAccountStatus$ = MemberAccountStatus$;
|
|
2338
6561
|
exports.MessageType = MessageType;
|
|
6562
|
+
exports.NoAvailableConfigurationRecorderException = NoAvailableConfigurationRecorderException;
|
|
6563
|
+
exports.NoAvailableConfigurationRecorderException$ = NoAvailableConfigurationRecorderException$;
|
|
6564
|
+
exports.NoAvailableDeliveryChannelException = NoAvailableDeliveryChannelException;
|
|
6565
|
+
exports.NoAvailableDeliveryChannelException$ = NoAvailableDeliveryChannelException$;
|
|
6566
|
+
exports.NoAvailableOrganizationException = NoAvailableOrganizationException;
|
|
6567
|
+
exports.NoAvailableOrganizationException$ = NoAvailableOrganizationException$;
|
|
6568
|
+
exports.NoRunningConfigurationRecorderException = NoRunningConfigurationRecorderException;
|
|
6569
|
+
exports.NoRunningConfigurationRecorderException$ = NoRunningConfigurationRecorderException$;
|
|
6570
|
+
exports.NoSuchBucketException = NoSuchBucketException;
|
|
6571
|
+
exports.NoSuchBucketException$ = NoSuchBucketException$;
|
|
6572
|
+
exports.NoSuchConfigRuleException = NoSuchConfigRuleException;
|
|
6573
|
+
exports.NoSuchConfigRuleException$ = NoSuchConfigRuleException$;
|
|
6574
|
+
exports.NoSuchConfigRuleInConformancePackException = NoSuchConfigRuleInConformancePackException;
|
|
6575
|
+
exports.NoSuchConfigRuleInConformancePackException$ = NoSuchConfigRuleInConformancePackException$;
|
|
6576
|
+
exports.NoSuchConfigurationAggregatorException = NoSuchConfigurationAggregatorException;
|
|
6577
|
+
exports.NoSuchConfigurationAggregatorException$ = NoSuchConfigurationAggregatorException$;
|
|
6578
|
+
exports.NoSuchConfigurationRecorderException = NoSuchConfigurationRecorderException;
|
|
6579
|
+
exports.NoSuchConfigurationRecorderException$ = NoSuchConfigurationRecorderException$;
|
|
6580
|
+
exports.NoSuchConformancePackException = NoSuchConformancePackException;
|
|
6581
|
+
exports.NoSuchConformancePackException$ = NoSuchConformancePackException$;
|
|
6582
|
+
exports.NoSuchDeliveryChannelException = NoSuchDeliveryChannelException;
|
|
6583
|
+
exports.NoSuchDeliveryChannelException$ = NoSuchDeliveryChannelException$;
|
|
6584
|
+
exports.NoSuchOrganizationConfigRuleException = NoSuchOrganizationConfigRuleException;
|
|
6585
|
+
exports.NoSuchOrganizationConfigRuleException$ = NoSuchOrganizationConfigRuleException$;
|
|
6586
|
+
exports.NoSuchOrganizationConformancePackException = NoSuchOrganizationConformancePackException;
|
|
6587
|
+
exports.NoSuchOrganizationConformancePackException$ = NoSuchOrganizationConformancePackException$;
|
|
6588
|
+
exports.NoSuchRemediationConfigurationException = NoSuchRemediationConfigurationException;
|
|
6589
|
+
exports.NoSuchRemediationConfigurationException$ = NoSuchRemediationConfigurationException$;
|
|
6590
|
+
exports.NoSuchRemediationExceptionException = NoSuchRemediationExceptionException;
|
|
6591
|
+
exports.NoSuchRemediationExceptionException$ = NoSuchRemediationExceptionException$;
|
|
6592
|
+
exports.NoSuchRetentionConfigurationException = NoSuchRetentionConfigurationException;
|
|
6593
|
+
exports.NoSuchRetentionConfigurationException$ = NoSuchRetentionConfigurationException$;
|
|
6594
|
+
exports.OrganizationAccessDeniedException = OrganizationAccessDeniedException;
|
|
6595
|
+
exports.OrganizationAccessDeniedException$ = OrganizationAccessDeniedException$;
|
|
6596
|
+
exports.OrganizationAggregationSource$ = OrganizationAggregationSource$;
|
|
6597
|
+
exports.OrganizationAllFeaturesNotEnabledException = OrganizationAllFeaturesNotEnabledException;
|
|
6598
|
+
exports.OrganizationAllFeaturesNotEnabledException$ = OrganizationAllFeaturesNotEnabledException$;
|
|
6599
|
+
exports.OrganizationConfigRule$ = OrganizationConfigRule$;
|
|
6600
|
+
exports.OrganizationConfigRuleStatus$ = OrganizationConfigRuleStatus$;
|
|
2339
6601
|
exports.OrganizationConfigRuleTriggerType = OrganizationConfigRuleTriggerType;
|
|
2340
6602
|
exports.OrganizationConfigRuleTriggerTypeNoSN = OrganizationConfigRuleTriggerTypeNoSN;
|
|
6603
|
+
exports.OrganizationConformancePack$ = OrganizationConformancePack$;
|
|
6604
|
+
exports.OrganizationConformancePackDetailedStatus$ = OrganizationConformancePackDetailedStatus$;
|
|
6605
|
+
exports.OrganizationConformancePackStatus$ = OrganizationConformancePackStatus$;
|
|
6606
|
+
exports.OrganizationConformancePackTemplateValidationException = OrganizationConformancePackTemplateValidationException;
|
|
6607
|
+
exports.OrganizationConformancePackTemplateValidationException$ = OrganizationConformancePackTemplateValidationException$;
|
|
6608
|
+
exports.OrganizationCustomPolicyRuleMetadata$ = OrganizationCustomPolicyRuleMetadata$;
|
|
6609
|
+
exports.OrganizationCustomPolicyRuleMetadataNoPolicy$ = OrganizationCustomPolicyRuleMetadataNoPolicy$;
|
|
6610
|
+
exports.OrganizationCustomRuleMetadata$ = OrganizationCustomRuleMetadata$;
|
|
6611
|
+
exports.OrganizationManagedRuleMetadata$ = OrganizationManagedRuleMetadata$;
|
|
2341
6612
|
exports.OrganizationResourceDetailedStatus = OrganizationResourceDetailedStatus;
|
|
6613
|
+
exports.OrganizationResourceDetailedStatusFilters$ = OrganizationResourceDetailedStatusFilters$;
|
|
2342
6614
|
exports.OrganizationResourceStatus = OrganizationResourceStatus;
|
|
2343
6615
|
exports.OrganizationRuleStatus = OrganizationRuleStatus;
|
|
6616
|
+
exports.OversizedConfigurationItemException = OversizedConfigurationItemException;
|
|
6617
|
+
exports.OversizedConfigurationItemException$ = OversizedConfigurationItemException$;
|
|
2344
6618
|
exports.Owner = Owner;
|
|
6619
|
+
exports.PendingAggregationRequest$ = PendingAggregationRequest$;
|
|
6620
|
+
exports.PutAggregationAuthorization$ = PutAggregationAuthorization$;
|
|
2345
6621
|
exports.PutAggregationAuthorizationCommand = PutAggregationAuthorizationCommand;
|
|
6622
|
+
exports.PutAggregationAuthorizationRequest$ = PutAggregationAuthorizationRequest$;
|
|
6623
|
+
exports.PutAggregationAuthorizationResponse$ = PutAggregationAuthorizationResponse$;
|
|
6624
|
+
exports.PutConfigRule$ = PutConfigRule$;
|
|
2346
6625
|
exports.PutConfigRuleCommand = PutConfigRuleCommand;
|
|
6626
|
+
exports.PutConfigRuleRequest$ = PutConfigRuleRequest$;
|
|
6627
|
+
exports.PutConfigurationAggregator$ = PutConfigurationAggregator$;
|
|
2347
6628
|
exports.PutConfigurationAggregatorCommand = PutConfigurationAggregatorCommand;
|
|
6629
|
+
exports.PutConfigurationAggregatorRequest$ = PutConfigurationAggregatorRequest$;
|
|
6630
|
+
exports.PutConfigurationAggregatorResponse$ = PutConfigurationAggregatorResponse$;
|
|
6631
|
+
exports.PutConfigurationRecorder$ = PutConfigurationRecorder$;
|
|
2348
6632
|
exports.PutConfigurationRecorderCommand = PutConfigurationRecorderCommand;
|
|
6633
|
+
exports.PutConfigurationRecorderRequest$ = PutConfigurationRecorderRequest$;
|
|
6634
|
+
exports.PutConformancePack$ = PutConformancePack$;
|
|
2349
6635
|
exports.PutConformancePackCommand = PutConformancePackCommand;
|
|
6636
|
+
exports.PutConformancePackRequest$ = PutConformancePackRequest$;
|
|
6637
|
+
exports.PutConformancePackResponse$ = PutConformancePackResponse$;
|
|
6638
|
+
exports.PutDeliveryChannel$ = PutDeliveryChannel$;
|
|
2350
6639
|
exports.PutDeliveryChannelCommand = PutDeliveryChannelCommand;
|
|
6640
|
+
exports.PutDeliveryChannelRequest$ = PutDeliveryChannelRequest$;
|
|
6641
|
+
exports.PutEvaluations$ = PutEvaluations$;
|
|
2351
6642
|
exports.PutEvaluationsCommand = PutEvaluationsCommand;
|
|
6643
|
+
exports.PutEvaluationsRequest$ = PutEvaluationsRequest$;
|
|
6644
|
+
exports.PutEvaluationsResponse$ = PutEvaluationsResponse$;
|
|
6645
|
+
exports.PutExternalEvaluation$ = PutExternalEvaluation$;
|
|
2352
6646
|
exports.PutExternalEvaluationCommand = PutExternalEvaluationCommand;
|
|
6647
|
+
exports.PutExternalEvaluationRequest$ = PutExternalEvaluationRequest$;
|
|
6648
|
+
exports.PutExternalEvaluationResponse$ = PutExternalEvaluationResponse$;
|
|
6649
|
+
exports.PutOrganizationConfigRule$ = PutOrganizationConfigRule$;
|
|
2353
6650
|
exports.PutOrganizationConfigRuleCommand = PutOrganizationConfigRuleCommand;
|
|
6651
|
+
exports.PutOrganizationConfigRuleRequest$ = PutOrganizationConfigRuleRequest$;
|
|
6652
|
+
exports.PutOrganizationConfigRuleResponse$ = PutOrganizationConfigRuleResponse$;
|
|
6653
|
+
exports.PutOrganizationConformancePack$ = PutOrganizationConformancePack$;
|
|
2354
6654
|
exports.PutOrganizationConformancePackCommand = PutOrganizationConformancePackCommand;
|
|
6655
|
+
exports.PutOrganizationConformancePackRequest$ = PutOrganizationConformancePackRequest$;
|
|
6656
|
+
exports.PutOrganizationConformancePackResponse$ = PutOrganizationConformancePackResponse$;
|
|
6657
|
+
exports.PutRemediationConfigurations$ = PutRemediationConfigurations$;
|
|
2355
6658
|
exports.PutRemediationConfigurationsCommand = PutRemediationConfigurationsCommand;
|
|
6659
|
+
exports.PutRemediationConfigurationsRequest$ = PutRemediationConfigurationsRequest$;
|
|
6660
|
+
exports.PutRemediationConfigurationsResponse$ = PutRemediationConfigurationsResponse$;
|
|
6661
|
+
exports.PutRemediationExceptions$ = PutRemediationExceptions$;
|
|
2356
6662
|
exports.PutRemediationExceptionsCommand = PutRemediationExceptionsCommand;
|
|
6663
|
+
exports.PutRemediationExceptionsRequest$ = PutRemediationExceptionsRequest$;
|
|
6664
|
+
exports.PutRemediationExceptionsResponse$ = PutRemediationExceptionsResponse$;
|
|
6665
|
+
exports.PutResourceConfig$ = PutResourceConfig$;
|
|
2357
6666
|
exports.PutResourceConfigCommand = PutResourceConfigCommand;
|
|
6667
|
+
exports.PutResourceConfigRequest$ = PutResourceConfigRequest$;
|
|
6668
|
+
exports.PutRetentionConfiguration$ = PutRetentionConfiguration$;
|
|
2358
6669
|
exports.PutRetentionConfigurationCommand = PutRetentionConfigurationCommand;
|
|
6670
|
+
exports.PutRetentionConfigurationRequest$ = PutRetentionConfigurationRequest$;
|
|
6671
|
+
exports.PutRetentionConfigurationResponse$ = PutRetentionConfigurationResponse$;
|
|
6672
|
+
exports.PutServiceLinkedConfigurationRecorder$ = PutServiceLinkedConfigurationRecorder$;
|
|
2359
6673
|
exports.PutServiceLinkedConfigurationRecorderCommand = PutServiceLinkedConfigurationRecorderCommand;
|
|
6674
|
+
exports.PutServiceLinkedConfigurationRecorderRequest$ = PutServiceLinkedConfigurationRecorderRequest$;
|
|
6675
|
+
exports.PutServiceLinkedConfigurationRecorderResponse$ = PutServiceLinkedConfigurationRecorderResponse$;
|
|
6676
|
+
exports.PutStoredQuery$ = PutStoredQuery$;
|
|
2360
6677
|
exports.PutStoredQueryCommand = PutStoredQueryCommand;
|
|
6678
|
+
exports.PutStoredQueryRequest$ = PutStoredQueryRequest$;
|
|
6679
|
+
exports.PutStoredQueryResponse$ = PutStoredQueryResponse$;
|
|
6680
|
+
exports.QueryInfo$ = QueryInfo$;
|
|
2361
6681
|
exports.RecorderStatus = RecorderStatus;
|
|
2362
6682
|
exports.RecordingFrequency = RecordingFrequency;
|
|
6683
|
+
exports.RecordingGroup$ = RecordingGroup$;
|
|
6684
|
+
exports.RecordingMode$ = RecordingMode$;
|
|
6685
|
+
exports.RecordingModeOverride$ = RecordingModeOverride$;
|
|
2363
6686
|
exports.RecordingScope = RecordingScope;
|
|
6687
|
+
exports.RecordingStrategy$ = RecordingStrategy$;
|
|
2364
6688
|
exports.RecordingStrategyType = RecordingStrategyType;
|
|
6689
|
+
exports.Relationship$ = Relationship$;
|
|
6690
|
+
exports.RemediationConfiguration$ = RemediationConfiguration$;
|
|
6691
|
+
exports.RemediationException$ = RemediationException$;
|
|
6692
|
+
exports.RemediationExceptionResourceKey$ = RemediationExceptionResourceKey$;
|
|
2365
6693
|
exports.RemediationExecutionState = RemediationExecutionState;
|
|
6694
|
+
exports.RemediationExecutionStatus$ = RemediationExecutionStatus$;
|
|
6695
|
+
exports.RemediationExecutionStep$ = RemediationExecutionStep$;
|
|
2366
6696
|
exports.RemediationExecutionStepState = RemediationExecutionStepState;
|
|
6697
|
+
exports.RemediationInProgressException = RemediationInProgressException;
|
|
6698
|
+
exports.RemediationInProgressException$ = RemediationInProgressException$;
|
|
6699
|
+
exports.RemediationParameterValue$ = RemediationParameterValue$;
|
|
2367
6700
|
exports.RemediationTargetType = RemediationTargetType;
|
|
6701
|
+
exports.ResourceConcurrentModificationException = ResourceConcurrentModificationException;
|
|
6702
|
+
exports.ResourceConcurrentModificationException$ = ResourceConcurrentModificationException$;
|
|
2368
6703
|
exports.ResourceConfigurationSchemaType = ResourceConfigurationSchemaType;
|
|
6704
|
+
exports.ResourceCount$ = ResourceCount$;
|
|
6705
|
+
exports.ResourceCountFilters$ = ResourceCountFilters$;
|
|
2369
6706
|
exports.ResourceCountGroupKey = ResourceCountGroupKey;
|
|
6707
|
+
exports.ResourceDetails$ = ResourceDetails$;
|
|
6708
|
+
exports.ResourceEvaluation$ = ResourceEvaluation$;
|
|
6709
|
+
exports.ResourceEvaluationFilters$ = ResourceEvaluationFilters$;
|
|
2370
6710
|
exports.ResourceEvaluationStatus = ResourceEvaluationStatus;
|
|
6711
|
+
exports.ResourceFilters$ = ResourceFilters$;
|
|
6712
|
+
exports.ResourceIdentifier$ = ResourceIdentifier$;
|
|
6713
|
+
exports.ResourceInUseException = ResourceInUseException;
|
|
6714
|
+
exports.ResourceInUseException$ = ResourceInUseException$;
|
|
6715
|
+
exports.ResourceKey$ = ResourceKey$;
|
|
6716
|
+
exports.ResourceNotDiscoveredException = ResourceNotDiscoveredException;
|
|
6717
|
+
exports.ResourceNotDiscoveredException$ = ResourceNotDiscoveredException$;
|
|
6718
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
6719
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
2371
6720
|
exports.ResourceType = ResourceType;
|
|
6721
|
+
exports.ResourceValue$ = ResourceValue$;
|
|
2372
6722
|
exports.ResourceValueType = ResourceValueType;
|
|
6723
|
+
exports.RetentionConfiguration$ = RetentionConfiguration$;
|
|
2373
6724
|
exports.RuleEvaluationVisibility = RuleEvaluationVisibility;
|
|
6725
|
+
exports.Scope$ = Scope$;
|
|
6726
|
+
exports.SelectAggregateResourceConfig$ = SelectAggregateResourceConfig$;
|
|
2374
6727
|
exports.SelectAggregateResourceConfigCommand = SelectAggregateResourceConfigCommand;
|
|
6728
|
+
exports.SelectAggregateResourceConfigRequest$ = SelectAggregateResourceConfigRequest$;
|
|
6729
|
+
exports.SelectAggregateResourceConfigResponse$ = SelectAggregateResourceConfigResponse$;
|
|
6730
|
+
exports.SelectResourceConfig$ = SelectResourceConfig$;
|
|
2375
6731
|
exports.SelectResourceConfigCommand = SelectResourceConfigCommand;
|
|
6732
|
+
exports.SelectResourceConfigRequest$ = SelectResourceConfigRequest$;
|
|
6733
|
+
exports.SelectResourceConfigResponse$ = SelectResourceConfigResponse$;
|
|
2376
6734
|
exports.SortBy = SortBy;
|
|
2377
6735
|
exports.SortOrder = SortOrder;
|
|
6736
|
+
exports.Source$ = Source$;
|
|
6737
|
+
exports.SourceDetail$ = SourceDetail$;
|
|
6738
|
+
exports.SsmControls$ = SsmControls$;
|
|
6739
|
+
exports.StartConfigRulesEvaluation$ = StartConfigRulesEvaluation$;
|
|
2378
6740
|
exports.StartConfigRulesEvaluationCommand = StartConfigRulesEvaluationCommand;
|
|
6741
|
+
exports.StartConfigRulesEvaluationRequest$ = StartConfigRulesEvaluationRequest$;
|
|
6742
|
+
exports.StartConfigRulesEvaluationResponse$ = StartConfigRulesEvaluationResponse$;
|
|
6743
|
+
exports.StartConfigurationRecorder$ = StartConfigurationRecorder$;
|
|
2379
6744
|
exports.StartConfigurationRecorderCommand = StartConfigurationRecorderCommand;
|
|
6745
|
+
exports.StartConfigurationRecorderRequest$ = StartConfigurationRecorderRequest$;
|
|
6746
|
+
exports.StartRemediationExecution$ = StartRemediationExecution$;
|
|
2380
6747
|
exports.StartRemediationExecutionCommand = StartRemediationExecutionCommand;
|
|
6748
|
+
exports.StartRemediationExecutionRequest$ = StartRemediationExecutionRequest$;
|
|
6749
|
+
exports.StartRemediationExecutionResponse$ = StartRemediationExecutionResponse$;
|
|
6750
|
+
exports.StartResourceEvaluation$ = StartResourceEvaluation$;
|
|
2381
6751
|
exports.StartResourceEvaluationCommand = StartResourceEvaluationCommand;
|
|
6752
|
+
exports.StartResourceEvaluationRequest$ = StartResourceEvaluationRequest$;
|
|
6753
|
+
exports.StartResourceEvaluationResponse$ = StartResourceEvaluationResponse$;
|
|
6754
|
+
exports.StaticValue$ = StaticValue$;
|
|
6755
|
+
exports.StatusDetailFilters$ = StatusDetailFilters$;
|
|
6756
|
+
exports.StopConfigurationRecorder$ = StopConfigurationRecorder$;
|
|
2382
6757
|
exports.StopConfigurationRecorderCommand = StopConfigurationRecorderCommand;
|
|
6758
|
+
exports.StopConfigurationRecorderRequest$ = StopConfigurationRecorderRequest$;
|
|
6759
|
+
exports.StoredQuery$ = StoredQuery$;
|
|
6760
|
+
exports.StoredQueryMetadata$ = StoredQueryMetadata$;
|
|
6761
|
+
exports.Tag$ = Tag$;
|
|
6762
|
+
exports.TagResource$ = TagResource$;
|
|
2383
6763
|
exports.TagResourceCommand = TagResourceCommand;
|
|
6764
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
6765
|
+
exports.TemplateSSMDocumentDetails$ = TemplateSSMDocumentDetails$;
|
|
6766
|
+
exports.TimeWindow$ = TimeWindow$;
|
|
6767
|
+
exports.TooManyTagsException = TooManyTagsException;
|
|
6768
|
+
exports.TooManyTagsException$ = TooManyTagsException$;
|
|
6769
|
+
exports.UnmodifiableEntityException = UnmodifiableEntityException;
|
|
6770
|
+
exports.UnmodifiableEntityException$ = UnmodifiableEntityException$;
|
|
6771
|
+
exports.UntagResource$ = UntagResource$;
|
|
2384
6772
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
6773
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
6774
|
+
exports.ValidationException = ValidationException;
|
|
6775
|
+
exports.ValidationException$ = ValidationException$;
|
|
6776
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
2385
6777
|
exports.paginateDescribeAggregateComplianceByConfigRules = paginateDescribeAggregateComplianceByConfigRules;
|
|
2386
6778
|
exports.paginateDescribeAggregateComplianceByConformancePacks = paginateDescribeAggregateComplianceByConformancePacks;
|
|
2387
6779
|
exports.paginateDescribeAggregationAuthorizations = paginateDescribeAggregationAuthorizations;
|