@aws-sdk/client-accessanalyzer 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 +2109 -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/AccessAnalyzerServiceException.js +0 -8
- package/dist-cjs/models/errors.js +0 -134
- package/dist-cjs/runtimeConfig.browser.js +0 -32
- package/dist-cjs/runtimeConfig.js +0 -45
- package/dist-cjs/runtimeConfig.native.js +0 -12
- package/dist-cjs/runtimeConfig.shared.js +0 -38
- package/dist-cjs/schemas/schemas_0.js +0 -1762
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 { AwsRestJsonProtocol } = require("@aws-sdk/core/protocols");
|
|
16
|
+
const { Sha256 } = require("@smithy/core/checksum");
|
|
17
|
+
|
|
18
|
+
const defaultAccessAnalyzerHttpAuthSchemeParametersProvider = 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: "access-analyzer",
|
|
31
|
+
region: authParameters.region,
|
|
32
|
+
},
|
|
33
|
+
propertiesExtractor: (config, context) => ({
|
|
34
|
+
signingProperties: {
|
|
35
|
+
config,
|
|
36
|
+
context,
|
|
37
|
+
},
|
|
38
|
+
}),
|
|
39
|
+
};
|
|
40
|
+
}
|
|
41
|
+
const defaultAccessAnalyzerHttpAuthSchemeProvider = (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,1844 @@ 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://access-analyzer-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
94
|
+
[a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
|
|
95
|
+
["https://access-analyzer.{Region}.amazonaws.com", i],
|
|
96
|
+
["https://access-analyzer-fips.{Region}.{PartitionResult#dnsSuffix}", i],
|
|
97
|
+
[a, "FIPS is enabled but this partition does not support FIPS"],
|
|
98
|
+
["https://access-analyzer.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
|
|
99
|
+
[a, "DualStack is enabled but this partition does not support DualStack"],
|
|
100
|
+
["https://access-analyzer.{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 AccessAnalyzerServiceException extends ServiceException {
|
|
137
|
+
constructor(options) {
|
|
138
|
+
super(options);
|
|
139
|
+
Object.setPrototypeOf(this, AccessAnalyzerServiceException.prototype);
|
|
140
|
+
}
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
class AccessDeniedException extends AccessAnalyzerServiceException {
|
|
144
|
+
name = "AccessDeniedException";
|
|
145
|
+
$fault = "client";
|
|
146
|
+
constructor(opts) {
|
|
147
|
+
super({
|
|
148
|
+
name: "AccessDeniedException",
|
|
149
|
+
$fault: "client",
|
|
150
|
+
...opts,
|
|
151
|
+
});
|
|
152
|
+
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
class ConflictException extends AccessAnalyzerServiceException {
|
|
156
|
+
name = "ConflictException";
|
|
157
|
+
$fault = "client";
|
|
158
|
+
resourceId;
|
|
159
|
+
resourceType;
|
|
160
|
+
constructor(opts) {
|
|
161
|
+
super({
|
|
162
|
+
name: "ConflictException",
|
|
163
|
+
$fault: "client",
|
|
164
|
+
...opts,
|
|
165
|
+
});
|
|
166
|
+
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
167
|
+
this.resourceId = opts.resourceId;
|
|
168
|
+
this.resourceType = opts.resourceType;
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
class InternalServerException extends AccessAnalyzerServiceException {
|
|
172
|
+
name = "InternalServerException";
|
|
173
|
+
$fault = "server";
|
|
174
|
+
$retryable = {};
|
|
175
|
+
retryAfterSeconds;
|
|
176
|
+
constructor(opts) {
|
|
177
|
+
super({
|
|
178
|
+
name: "InternalServerException",
|
|
179
|
+
$fault: "server",
|
|
180
|
+
...opts,
|
|
181
|
+
});
|
|
182
|
+
Object.setPrototypeOf(this, InternalServerException.prototype);
|
|
183
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
class ResourceNotFoundException extends AccessAnalyzerServiceException {
|
|
187
|
+
name = "ResourceNotFoundException";
|
|
188
|
+
$fault = "client";
|
|
189
|
+
resourceId;
|
|
190
|
+
resourceType;
|
|
191
|
+
constructor(opts) {
|
|
192
|
+
super({
|
|
193
|
+
name: "ResourceNotFoundException",
|
|
194
|
+
$fault: "client",
|
|
195
|
+
...opts,
|
|
196
|
+
});
|
|
197
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
198
|
+
this.resourceId = opts.resourceId;
|
|
199
|
+
this.resourceType = opts.resourceType;
|
|
200
|
+
}
|
|
201
|
+
}
|
|
202
|
+
class ServiceQuotaExceededException extends AccessAnalyzerServiceException {
|
|
203
|
+
name = "ServiceQuotaExceededException";
|
|
204
|
+
$fault = "client";
|
|
205
|
+
resourceId;
|
|
206
|
+
resourceType;
|
|
207
|
+
constructor(opts) {
|
|
208
|
+
super({
|
|
209
|
+
name: "ServiceQuotaExceededException",
|
|
210
|
+
$fault: "client",
|
|
211
|
+
...opts,
|
|
212
|
+
});
|
|
213
|
+
Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
|
|
214
|
+
this.resourceId = opts.resourceId;
|
|
215
|
+
this.resourceType = opts.resourceType;
|
|
216
|
+
}
|
|
217
|
+
}
|
|
218
|
+
class ThrottlingException extends AccessAnalyzerServiceException {
|
|
219
|
+
name = "ThrottlingException";
|
|
220
|
+
$fault = "client";
|
|
221
|
+
$retryable = {
|
|
222
|
+
throttling: true,
|
|
223
|
+
};
|
|
224
|
+
retryAfterSeconds;
|
|
225
|
+
constructor(opts) {
|
|
226
|
+
super({
|
|
227
|
+
name: "ThrottlingException",
|
|
228
|
+
$fault: "client",
|
|
229
|
+
...opts,
|
|
230
|
+
});
|
|
231
|
+
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
232
|
+
this.retryAfterSeconds = opts.retryAfterSeconds;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
class ValidationException extends AccessAnalyzerServiceException {
|
|
236
|
+
name = "ValidationException";
|
|
237
|
+
$fault = "client";
|
|
238
|
+
reason;
|
|
239
|
+
fieldList;
|
|
240
|
+
constructor(opts) {
|
|
241
|
+
super({
|
|
242
|
+
name: "ValidationException",
|
|
243
|
+
$fault: "client",
|
|
244
|
+
...opts,
|
|
245
|
+
});
|
|
246
|
+
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
247
|
+
this.reason = opts.reason;
|
|
248
|
+
this.fieldList = opts.fieldList;
|
|
249
|
+
}
|
|
250
|
+
}
|
|
251
|
+
class InvalidParameterException extends AccessAnalyzerServiceException {
|
|
252
|
+
name = "InvalidParameterException";
|
|
253
|
+
$fault = "client";
|
|
254
|
+
constructor(opts) {
|
|
255
|
+
super({
|
|
256
|
+
name: "InvalidParameterException",
|
|
257
|
+
$fault: "client",
|
|
258
|
+
...opts,
|
|
259
|
+
});
|
|
260
|
+
Object.setPrototypeOf(this, InvalidParameterException.prototype);
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
class UnprocessableEntityException extends AccessAnalyzerServiceException {
|
|
264
|
+
name = "UnprocessableEntityException";
|
|
265
|
+
$fault = "client";
|
|
266
|
+
$retryable = {};
|
|
267
|
+
constructor(opts) {
|
|
268
|
+
super({
|
|
269
|
+
name: "UnprocessableEntityException",
|
|
270
|
+
$fault: "client",
|
|
271
|
+
...opts,
|
|
272
|
+
});
|
|
273
|
+
Object.setPrototypeOf(this, UnprocessableEntityException.prototype);
|
|
274
|
+
}
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
const _A = "Access";
|
|
278
|
+
const _AA = "AccountAggregations";
|
|
279
|
+
const _AAR = "ApplyArchiveRule";
|
|
280
|
+
const _AARR = "ApplyArchiveRuleRequest";
|
|
281
|
+
const _AC = "AnalyzerConfiguration";
|
|
282
|
+
const _ACPD = "AccessCheckPolicyDocument";
|
|
283
|
+
const _ADE = "AccessDeniedException";
|
|
284
|
+
const _AG = "AclGrantee";
|
|
285
|
+
const _AL = "AccessList";
|
|
286
|
+
const _ALn = "AnalyzersList";
|
|
287
|
+
const _AP = "AccessPreview";
|
|
288
|
+
const _APF = "AccessPreviewFinding";
|
|
289
|
+
const _APFL = "AccessPreviewFindingsList";
|
|
290
|
+
const _APL = "AccessPreviewsList";
|
|
291
|
+
const _APS = "AccessPreviewSummary";
|
|
292
|
+
const _APSR = "AccessPreviewStatusReason";
|
|
293
|
+
const _AR = "AnalysisRule";
|
|
294
|
+
const _ARC = "AnalysisRuleCriteria";
|
|
295
|
+
const _ARCL = "AnalysisRuleCriteriaList";
|
|
296
|
+
const _ARL = "AnalyzedResourcesList";
|
|
297
|
+
const _ARLr = "ArchiveRulesList";
|
|
298
|
+
const _ARS = "AnalyzedResourceSummary";
|
|
299
|
+
const _ARSr = "ArchiveRuleSummary";
|
|
300
|
+
const _ARn = "AnalyzedResource";
|
|
301
|
+
const _AS = "AnalyzerSummary";
|
|
302
|
+
const _C = "Criterion";
|
|
303
|
+
const _CA = "CreateAnalyzer";
|
|
304
|
+
const _CANG = "CheckAccessNotGranted";
|
|
305
|
+
const _CANGR = "CheckAccessNotGrantedRequest";
|
|
306
|
+
const _CANGRh = "CheckAccessNotGrantedResponse";
|
|
307
|
+
const _CAP = "CreateAccessPreview";
|
|
308
|
+
const _CAPR = "CreateAccessPreviewRequest";
|
|
309
|
+
const _CAPRr = "CreateAccessPreviewResponse";
|
|
310
|
+
const _CAR = "CreateAnalyzerRequest";
|
|
311
|
+
const _CARR = "CreateArchiveRuleRequest";
|
|
312
|
+
const _CARr = "CreateAnalyzerResponse";
|
|
313
|
+
const _CARre = "CreateArchiveRule";
|
|
314
|
+
const _CE = "ConflictException";
|
|
315
|
+
const _CM = "ConfigurationsMap";
|
|
316
|
+
const _CNNA = "CheckNoNewAccess";
|
|
317
|
+
const _CNNAR = "CheckNoNewAccessRequest";
|
|
318
|
+
const _CNNARh = "CheckNoNewAccessResponse";
|
|
319
|
+
const _CNPA = "CheckNoPublicAccess";
|
|
320
|
+
const _CNPAR = "CheckNoPublicAccessRequest";
|
|
321
|
+
const _CNPARh = "CheckNoPublicAccessResponse";
|
|
322
|
+
const _CPG = "CancelPolicyGeneration";
|
|
323
|
+
const _CPGR = "CancelPolicyGenerationRequest";
|
|
324
|
+
const _CPGRa = "CancelPolicyGenerationResponse";
|
|
325
|
+
const _CSLA = "CreateServiceLinkedAnalyzer";
|
|
326
|
+
const _CSLAR = "CreateServiceLinkedAnalyzerRequest";
|
|
327
|
+
const _CSLARr = "CreateServiceLinkedAnalyzerResponse";
|
|
328
|
+
const _CTD = "CloudTrailDetails";
|
|
329
|
+
const _CTP = "CloudTrailProperties";
|
|
330
|
+
const _Co = "Configuration";
|
|
331
|
+
const _DA = "DeleteAnalyzer";
|
|
332
|
+
const _DAR = "DeleteAnalyzerRequest";
|
|
333
|
+
const _DARR = "DeleteArchiveRuleRequest";
|
|
334
|
+
const _DARe = "DeleteArchiveRule";
|
|
335
|
+
const _DSC = "DynamodbStreamConfiguration";
|
|
336
|
+
const _DSLA = "DeleteServiceLinkedAnalyzer";
|
|
337
|
+
const _DSLAR = "DeleteServiceLinkedAnalyzerRequest";
|
|
338
|
+
const _DTC = "DynamodbTableConfiguration";
|
|
339
|
+
const _EAD = "ExternalAccessDetails";
|
|
340
|
+
const _EAFS = "ExternalAccessFindingsStatistics";
|
|
341
|
+
const _EFSC = "EfsFileSystemConfiguration";
|
|
342
|
+
const _ERC = "EcrRepositoryConfiguration";
|
|
343
|
+
const _ESC = "EbsSnapshotConfiguration";
|
|
344
|
+
const _F = "Finding";
|
|
345
|
+
const _FAAD = "FindingAggregationAccountDetails";
|
|
346
|
+
const _FCM = "FilterCriteriaMap";
|
|
347
|
+
const _FD = "FindingDetails";
|
|
348
|
+
const _FDL = "FindingDetailsList";
|
|
349
|
+
const _FL = "FindingsList";
|
|
350
|
+
const _FLV = "FindingsListV2";
|
|
351
|
+
const _FS = "FindingSource";
|
|
352
|
+
const _FSD = "FindingSourceDetail";
|
|
353
|
+
const _FSL = "FindingSourceList";
|
|
354
|
+
const _FSLi = "FindingsStatisticsList";
|
|
355
|
+
const _FSV = "FindingSummaryV2";
|
|
356
|
+
const _FSi = "FindingSummary";
|
|
357
|
+
const _FSin = "FindingsStatistics";
|
|
358
|
+
const _GA = "GetAnalyzer";
|
|
359
|
+
const _GAP = "GetAccessPreview";
|
|
360
|
+
const _GAPR = "GetAccessPreviewRequest";
|
|
361
|
+
const _GAPRe = "GetAccessPreviewResponse";
|
|
362
|
+
const _GAR = "GetAnalyzerRequest";
|
|
363
|
+
const _GARR = "GetAnalyzedResourceRequest";
|
|
364
|
+
const _GARRe = "GetAnalyzedResourceResponse";
|
|
365
|
+
const _GARRet = "GetArchiveRuleRequest";
|
|
366
|
+
const _GARRetr = "GetArchiveRuleResponse";
|
|
367
|
+
const _GARe = "GetAnalyzerResponse";
|
|
368
|
+
const _GARet = "GetAnalyzedResource";
|
|
369
|
+
const _GARetr = "GetArchiveRule";
|
|
370
|
+
const _GF = "GetFinding";
|
|
371
|
+
const _GFR = "GetFindingRequest";
|
|
372
|
+
const _GFRR = "GenerateFindingRecommendationRequest";
|
|
373
|
+
const _GFRRe = "GetFindingRecommendationRequest";
|
|
374
|
+
const _GFRRet = "GetFindingRecommendationResponse";
|
|
375
|
+
const _GFRe = "GetFindingResponse";
|
|
376
|
+
const _GFRen = "GenerateFindingRecommendation";
|
|
377
|
+
const _GFRet = "GetFindingRecommendation";
|
|
378
|
+
const _GFS = "GetFindingsStatistics";
|
|
379
|
+
const _GFSR = "GetFindingsStatisticsRequest";
|
|
380
|
+
const _GFSRe = "GetFindingsStatisticsResponse";
|
|
381
|
+
const _GFV = "GetFindingV2";
|
|
382
|
+
const _GFVR = "GetFindingV2Request";
|
|
383
|
+
const _GFVRe = "GetFindingV2Response";
|
|
384
|
+
const _GGP = "GetGeneratedPolicy";
|
|
385
|
+
const _GGPR = "GetGeneratedPolicyRequest";
|
|
386
|
+
const _GGPRe = "GetGeneratedPolicyResponse";
|
|
387
|
+
const _GP = "GeneratedPolicy";
|
|
388
|
+
const _GPL = "GeneratedPolicyList";
|
|
389
|
+
const _GPP = "GeneratedPolicyProperties";
|
|
390
|
+
const _GPR = "GeneratedPolicyResult";
|
|
391
|
+
const _IAAR = "InternalAccessAnalysisRule";
|
|
392
|
+
const _IAARC = "InternalAccessAnalysisRuleCriteria";
|
|
393
|
+
const _IAARCL = "InternalAccessAnalysisRuleCriteriaList";
|
|
394
|
+
const _IAC = "InternalAccessConfiguration";
|
|
395
|
+
const _IAD = "InternalAccessDetails";
|
|
396
|
+
const _IAFS = "InternalAccessFindingsStatistics";
|
|
397
|
+
const _IAR = "InlineArchiveRule";
|
|
398
|
+
const _IARL = "InlineArchiveRulesList";
|
|
399
|
+
const _IARTD = "InternalAccessResourceTypeDetails";
|
|
400
|
+
const _IARTSM = "InternalAccessResourceTypeStatisticsMap";
|
|
401
|
+
const _IC = "InternetConfiguration";
|
|
402
|
+
const _IPE = "InvalidParameterException";
|
|
403
|
+
const _IRC = "IamRoleConfiguration";
|
|
404
|
+
const _ISE = "InternalServerException";
|
|
405
|
+
const _JD = "JobDetails";
|
|
406
|
+
const _JE = "JobError";
|
|
407
|
+
const _KGC = "KmsGrantConfiguration";
|
|
408
|
+
const _KGCL = "KmsGrantConfigurationsList";
|
|
409
|
+
const _KGCm = "KmsGrantConstraints";
|
|
410
|
+
const _KKC = "KmsKeyConfiguration";
|
|
411
|
+
const _L = "Location";
|
|
412
|
+
const _LA = "ListAnalyzers";
|
|
413
|
+
const _LAP = "ListAccessPreviews";
|
|
414
|
+
const _LAPF = "ListAccessPreviewFindings";
|
|
415
|
+
const _LAPFR = "ListAccessPreviewFindingsRequest";
|
|
416
|
+
const _LAPFRi = "ListAccessPreviewFindingsResponse";
|
|
417
|
+
const _LAPR = "ListAccessPreviewsRequest";
|
|
418
|
+
const _LAPRi = "ListAccessPreviewsResponse";
|
|
419
|
+
const _LAR = "ListAnalyzersRequest";
|
|
420
|
+
const _LARR = "ListAnalyzedResourcesRequest";
|
|
421
|
+
const _LARRi = "ListAnalyzedResourcesResponse";
|
|
422
|
+
const _LARRis = "ListArchiveRulesRequest";
|
|
423
|
+
const _LARRist = "ListArchiveRulesResponse";
|
|
424
|
+
const _LARi = "ListAnalyzersResponse";
|
|
425
|
+
const _LARis = "ListAnalyzedResources";
|
|
426
|
+
const _LARist = "ListArchiveRules";
|
|
427
|
+
const _LF = "ListFindings";
|
|
428
|
+
const _LFR = "ListFindingsRequest";
|
|
429
|
+
const _LFRi = "ListFindingsResponse";
|
|
430
|
+
const _LFV = "ListFindingsV2";
|
|
431
|
+
const _LFVR = "ListFindingsV2Request";
|
|
432
|
+
const _LFVRi = "ListFindingsV2Response";
|
|
433
|
+
const _LL = "LocationList";
|
|
434
|
+
const _LPG = "ListPolicyGenerations";
|
|
435
|
+
const _LPGR = "ListPolicyGenerationsRequest";
|
|
436
|
+
const _LPGRi = "ListPolicyGenerationsResponse";
|
|
437
|
+
const _LTFR = "ListTagsForResource";
|
|
438
|
+
const _LTFRR = "ListTagsForResourceRequest";
|
|
439
|
+
const _LTFRRi = "ListTagsForResourceResponse";
|
|
440
|
+
const _NOC = "NetworkOriginConfiguration";
|
|
441
|
+
const _P = "Position";
|
|
442
|
+
const _PE = "PathElement";
|
|
443
|
+
const _PEL = "PathElementList";
|
|
444
|
+
const _PG = "PolicyGeneration";
|
|
445
|
+
const _PGD = "PolicyGenerationDetails";
|
|
446
|
+
const _PGL = "PolicyGenerationList";
|
|
447
|
+
const _RA = "Retry-After";
|
|
448
|
+
const _RDCSAM = "RdsDbClusterSnapshotAttributesMap";
|
|
449
|
+
const _RDCSAV = "RdsDbClusterSnapshotAttributeValue";
|
|
450
|
+
const _RDCSC = "RdsDbClusterSnapshotConfiguration";
|
|
451
|
+
const _RDSAM = "RdsDbSnapshotAttributesMap";
|
|
452
|
+
const _RDSAV = "RdsDbSnapshotAttributeValue";
|
|
453
|
+
const _RDSC = "RdsDbSnapshotConfiguration";
|
|
454
|
+
const _RE = "RecommendationError";
|
|
455
|
+
const _RNFE = "ResourceNotFoundException";
|
|
456
|
+
const _RS = "ReasonSummary";
|
|
457
|
+
const _RSL = "ReasonSummaryList";
|
|
458
|
+
const _RSLe = "RecommendedStepList";
|
|
459
|
+
const _RSe = "RecommendedStep";
|
|
460
|
+
const _RTD = "ResourceTypeDetails";
|
|
461
|
+
const _RTSM = "ResourceTypeStatisticsMap";
|
|
462
|
+
const _S = "Span";
|
|
463
|
+
const _SAPC = "S3AccessPointConfiguration";
|
|
464
|
+
const _SAPCM = "S3AccessPointConfigurationsMap";
|
|
465
|
+
const _SBAGC = "S3BucketAclGrantConfiguration";
|
|
466
|
+
const _SBAGCL = "S3BucketAclGrantConfigurationsList";
|
|
467
|
+
const _SBC = "S3BucketConfiguration";
|
|
468
|
+
const _SC = "SortCriteria";
|
|
469
|
+
const _SEDAPC = "S3ExpressDirectoryAccessPointConfiguration";
|
|
470
|
+
const _SEDAPCM = "S3ExpressDirectoryAccessPointConfigurationsMap";
|
|
471
|
+
const _SEDBC = "S3ExpressDirectoryBucketConfiguration";
|
|
472
|
+
const _SMSC = "SecretsManagerSecretConfiguration";
|
|
473
|
+
const _SPABC = "S3PublicAccessBlockConfiguration";
|
|
474
|
+
const _SPG = "StartPolicyGeneration";
|
|
475
|
+
const _SPGR = "StartPolicyGenerationRequest";
|
|
476
|
+
const _SPGRt = "StartPolicyGenerationResponse";
|
|
477
|
+
const _SQC = "SqsQueueConfiguration";
|
|
478
|
+
const _SQEE = "ServiceQuotaExceededException";
|
|
479
|
+
const _SR = "StatusReason";
|
|
480
|
+
const _SRS = "StartResourceScan";
|
|
481
|
+
const _SRSR = "StartResourceScanRequest";
|
|
482
|
+
const _STC = "SnsTopicConfiguration";
|
|
483
|
+
const _Su = "Substring";
|
|
484
|
+
const _T = "Trail";
|
|
485
|
+
const _TE = "ThrottlingException";
|
|
486
|
+
const _TL = "TagsList";
|
|
487
|
+
const _TLr = "TrailList";
|
|
488
|
+
const _TP = "TrailProperties";
|
|
489
|
+
const _TPL = "TrailPropertiesList";
|
|
490
|
+
const _TR = "TagResource";
|
|
491
|
+
const _TRR = "TagResourceRequest";
|
|
492
|
+
const _TRRa = "TagResourceResponse";
|
|
493
|
+
const _UA = "UnusedAction";
|
|
494
|
+
const _UAC = "UnusedAccessConfiguration";
|
|
495
|
+
const _UAFS = "UnusedAccessFindingsStatistics";
|
|
496
|
+
const _UAL = "UnusedActionList";
|
|
497
|
+
const _UAR = "UpdateAnalyzerRequest";
|
|
498
|
+
const _UARR = "UpdateArchiveRuleRequest";
|
|
499
|
+
const _UARp = "UpdateAnalyzerResponse";
|
|
500
|
+
const _UARpd = "UpdateArchiveRule";
|
|
501
|
+
const _UATS = "UnusedAccessTypeStatistics";
|
|
502
|
+
const _UATSL = "UnusedAccessTypeStatisticsList";
|
|
503
|
+
const _UAp = "UpdateAnalyzer";
|
|
504
|
+
const _UEE = "UnprocessableEntityException";
|
|
505
|
+
const _UF = "UpdateFindings";
|
|
506
|
+
const _UFR = "UpdateFindingsRequest";
|
|
507
|
+
const _UIRD = "UnusedIamRoleDetails";
|
|
508
|
+
const _UIUAKD = "UnusedIamUserAccessKeyDetails";
|
|
509
|
+
const _UIUPD = "UnusedIamUserPasswordDetails";
|
|
510
|
+
const _UPD = "UnusedPermissionDetails";
|
|
511
|
+
const _UPRS = "UnusedPermissionsRecommendedStep";
|
|
512
|
+
const _UR = "UntagResource";
|
|
513
|
+
const _URR = "UntagResourceRequest";
|
|
514
|
+
const _URRn = "UntagResourceResponse";
|
|
515
|
+
const _VC = "VpcConfiguration";
|
|
516
|
+
const _VE = "ValidationException";
|
|
517
|
+
const _VEF = "ValidationExceptionField";
|
|
518
|
+
const _VEFL = "ValidationExceptionFieldList";
|
|
519
|
+
const _VP = "ValidatePolicy";
|
|
520
|
+
const _VPF = "ValidatePolicyFinding";
|
|
521
|
+
const _VPFL = "ValidatePolicyFindingList";
|
|
522
|
+
const _VPR = "ValidatePolicyRequest";
|
|
523
|
+
const _VPRa = "ValidatePolicyResponse";
|
|
524
|
+
const _a = "actions";
|
|
525
|
+
const _aA = "analyzerArn";
|
|
526
|
+
const _aAn = "analyzedAt";
|
|
527
|
+
const _aI = "accountIds";
|
|
528
|
+
const _aKI = "accessKeyId";
|
|
529
|
+
const _aN = "analyzerName";
|
|
530
|
+
const _aNt = "attributeName";
|
|
531
|
+
const _aP = "accessPreview";
|
|
532
|
+
const _aPA = "accessPointArn";
|
|
533
|
+
const _aPAc = "accessPointAccount";
|
|
534
|
+
const _aPI = "accessPreviewId";
|
|
535
|
+
const _aPP = "accessPointPolicy";
|
|
536
|
+
const _aPc = "accessPreviews";
|
|
537
|
+
const _aPcc = "accessPoints";
|
|
538
|
+
const _aR = "accessRole";
|
|
539
|
+
const _aRl = "allRegions";
|
|
540
|
+
const _aRn = "analysisRule";
|
|
541
|
+
const _aRna = "analyzedResources";
|
|
542
|
+
const _aRr = "archiveRules";
|
|
543
|
+
const _aRrc = "archiveRule";
|
|
544
|
+
const _aT = "accessType";
|
|
545
|
+
const _ac = "action";
|
|
546
|
+
const _acc = "access";
|
|
547
|
+
const _acco = "account";
|
|
548
|
+
const _an = "analyzer";
|
|
549
|
+
const _ana = "analyzers";
|
|
550
|
+
const _ar = "arn";
|
|
551
|
+
const _at = "attributes";
|
|
552
|
+
const _bAG = "bucketAclGrants";
|
|
553
|
+
const _bP = "bucketPolicy";
|
|
554
|
+
const _bPAB = "bucketPublicAccessBlock";
|
|
555
|
+
const _c = "client";
|
|
556
|
+
const _cA = "createdAt";
|
|
557
|
+
const _cAo = "completedAt";
|
|
558
|
+
const _cO = "completedOn";
|
|
559
|
+
const _cT = "changeType";
|
|
560
|
+
const _cTA = "cloudTrailArn";
|
|
561
|
+
const _cTD = "cloudTrailDetails";
|
|
562
|
+
const _cTP = "cloudTrailProperties";
|
|
563
|
+
const _cTl = "clientToken";
|
|
564
|
+
const _co = "configurations";
|
|
565
|
+
const _cod = "code";
|
|
566
|
+
const _col = "column";
|
|
567
|
+
const _con = "condition";
|
|
568
|
+
const _conf = "configuration";
|
|
569
|
+
const _cons = "constraints";
|
|
570
|
+
const _cont = "contains";
|
|
571
|
+
const _d = "details";
|
|
572
|
+
const _dS = "dynamodbStream";
|
|
573
|
+
const _dT = "dynamodbTable";
|
|
574
|
+
const _de = "detail";
|
|
575
|
+
const _des = "description";
|
|
576
|
+
const _e = "error";
|
|
577
|
+
const _eAD = "externalAccessDetails";
|
|
578
|
+
const _eAFS = "externalAccessFindingsStatistics";
|
|
579
|
+
const _eCE = "encryptionContextEquals";
|
|
580
|
+
const _eCS = "encryptionContextSubset";
|
|
581
|
+
const _eFI = "existingFindingId";
|
|
582
|
+
const _eFS = "existingFindingStatus";
|
|
583
|
+
const _eFSf = "efsFileSystem";
|
|
584
|
+
const _ePD = "existingPolicyDocument";
|
|
585
|
+
const _ePI = "existingPolicyId";
|
|
586
|
+
const _eR = "ecrRepository";
|
|
587
|
+
const _eS = "ebsSnapshot";
|
|
588
|
+
const _eT = "endTime";
|
|
589
|
+
const _en = "end";
|
|
590
|
+
const _eq = "eq";
|
|
591
|
+
const _ex = "exclusions";
|
|
592
|
+
const _exi = "exists";
|
|
593
|
+
const _f = "filter";
|
|
594
|
+
const _fD = "findingDetails";
|
|
595
|
+
const _fL = "fieldList";
|
|
596
|
+
const _fS = "findingsStatistics";
|
|
597
|
+
const _fSP = "fileSystemPolicy";
|
|
598
|
+
const _fT = "findingType";
|
|
599
|
+
const _fi = "finding";
|
|
600
|
+
const _fin = "findings";
|
|
601
|
+
const _g = "groups";
|
|
602
|
+
const _gP = "generatedPolicies";
|
|
603
|
+
const _gPR = "generatedPolicyResult";
|
|
604
|
+
const _gPr = "granteePrincipal";
|
|
605
|
+
const _gr = "grants";
|
|
606
|
+
const _gra = "grantee";
|
|
607
|
+
const _h = "http";
|
|
608
|
+
const _hE = "httpError";
|
|
609
|
+
const _hH = "httpHeader";
|
|
610
|
+
const _hQ = "httpQuery";
|
|
611
|
+
const _i = "id";
|
|
612
|
+
const _iA = "issuingAccount";
|
|
613
|
+
const _iAD = "internalAccessDetails";
|
|
614
|
+
const _iAFS = "internalAccessFindingsStatistics";
|
|
615
|
+
const _iAn = "internalAccess";
|
|
616
|
+
const _iC = "isComplete";
|
|
617
|
+
const _iCn = "internetConfiguration";
|
|
618
|
+
const _iCs = "issueCode";
|
|
619
|
+
const _iP = "isPublic";
|
|
620
|
+
const _iPA = "ignorePublicAcls";
|
|
621
|
+
const _iR = "iamRole";
|
|
622
|
+
const _iRP = "includeResourcePlaceholders";
|
|
623
|
+
const _iSLT = "includeServiceLevelTemplate";
|
|
624
|
+
const _iT = "idempotencyToken";
|
|
625
|
+
const _id = "ids";
|
|
626
|
+
const _in = "inclusions";
|
|
627
|
+
const _ind = "index";
|
|
628
|
+
const _jD = "jobDetails";
|
|
629
|
+
const _jE = "jobError";
|
|
630
|
+
const _jI = "jobId";
|
|
631
|
+
const _k = "key";
|
|
632
|
+
const _kK = "kmsKey";
|
|
633
|
+
const _kKI = "kmsKeyId";
|
|
634
|
+
const _kP = "keyPolicies";
|
|
635
|
+
const _l = "line";
|
|
636
|
+
const _lA = "lastAccessed";
|
|
637
|
+
const _lML = "learnMoreLink";
|
|
638
|
+
const _lRA = "lastResourceAnalyzed";
|
|
639
|
+
const _lRAA = "lastResourceAnalyzedAt";
|
|
640
|
+
const _lUA = "lastUpdatedAt";
|
|
641
|
+
const _le = "length";
|
|
642
|
+
const _lo = "locations";
|
|
643
|
+
const _loc = "locale";
|
|
644
|
+
const _m = "message";
|
|
645
|
+
const _mB = "managedBy";
|
|
646
|
+
const _mR = "maxResults";
|
|
647
|
+
const _n = "name";
|
|
648
|
+
const _nO = "networkOrigin";
|
|
649
|
+
const _nOAF = "numberOfActiveFindings";
|
|
650
|
+
const _nPD = "newPolicyDocument";
|
|
651
|
+
const _nT = "nextToken";
|
|
652
|
+
const _ne = "neq";
|
|
653
|
+
const _o = "operations";
|
|
654
|
+
const _oB = "orderBy";
|
|
655
|
+
const _of = "offset";
|
|
656
|
+
const _p = "principal";
|
|
657
|
+
const _pA = "principalArn";
|
|
658
|
+
const _pAB = "publicAccessBlock";
|
|
659
|
+
const _pD = "policyDocument";
|
|
660
|
+
const _pG = "policyGenerations";
|
|
661
|
+
const _pGD = "policyGenerationDetails";
|
|
662
|
+
const _pOA = "principalOwnerAccount";
|
|
663
|
+
const _pT = "policyType";
|
|
664
|
+
const _pTr = "principalType";
|
|
665
|
+
const _pUA = "policyUpdatedAt";
|
|
666
|
+
const _pa = "path";
|
|
667
|
+
const _pe = "permission";
|
|
668
|
+
const _po = "policy";
|
|
669
|
+
const _pr = "properties";
|
|
670
|
+
const _qP = "queuePolicy";
|
|
671
|
+
const _r = "reason";
|
|
672
|
+
const _rA = "resourceArn";
|
|
673
|
+
const _rAS = "retryAfterSeconds";
|
|
674
|
+
const _rAe = "resourceArns";
|
|
675
|
+
const _rAec = "recommendedAction";
|
|
676
|
+
const _rCPR = "resourceControlPolicyRestriction";
|
|
677
|
+
const _rDCS = "rdsDbClusterSnapshot";
|
|
678
|
+
const _rDS = "rdsDbSnapshot";
|
|
679
|
+
const _rI = "resourceId";
|
|
680
|
+
const _rN = "ruleName";
|
|
681
|
+
const _rOA = "resourceOwnerAccount";
|
|
682
|
+
const _rP = "repositoryPolicy";
|
|
683
|
+
const _rPB = "restrictPublicBuckets";
|
|
684
|
+
const _rPe = "retiringPrincipal";
|
|
685
|
+
const _rPec = "recommendedPolicy";
|
|
686
|
+
const _rS = "recommendedSteps";
|
|
687
|
+
const _rT = "resourceType";
|
|
688
|
+
const _rTS = "resourceTypeStatistics";
|
|
689
|
+
const _rTe = "resourceTags";
|
|
690
|
+
const _rTec = "recommendationType";
|
|
691
|
+
const _rTes = "resourceTypes";
|
|
692
|
+
const _re = "resources";
|
|
693
|
+
const _rea = "reasons";
|
|
694
|
+
const _reg = "regions";
|
|
695
|
+
const _res = "resource";
|
|
696
|
+
const _resu = "result";
|
|
697
|
+
const _s = "smithy.ts.sdk.synthetic.com.amazonaws.accessanalyzer";
|
|
698
|
+
const _sA = "startedAt";
|
|
699
|
+
const _sB = "s3Bucket";
|
|
700
|
+
const _sCPR = "serviceControlPolicyRestriction";
|
|
701
|
+
const _sEDB = "s3ExpressDirectoryBucket";
|
|
702
|
+
const _sI = "statementIndex";
|
|
703
|
+
const _sIt = "statementId";
|
|
704
|
+
const _sMS = "secretsManagerSecret";
|
|
705
|
+
const _sN = "serviceNamespace";
|
|
706
|
+
const _sO = "startedOn";
|
|
707
|
+
const _sP = "streamPolicy";
|
|
708
|
+
const _sPe = "secretPolicy";
|
|
709
|
+
const _sQ = "sqsQueue";
|
|
710
|
+
const _sR = "statusReason";
|
|
711
|
+
const _sT = "startTime";
|
|
712
|
+
const _sTn = "snsTopic";
|
|
713
|
+
const _sV = "sharedVia";
|
|
714
|
+
const _se = "server";
|
|
715
|
+
const _so = "sources";
|
|
716
|
+
const _sor = "sort";
|
|
717
|
+
const _sp = "span";
|
|
718
|
+
const _st = "status";
|
|
719
|
+
const _sta = "start";
|
|
720
|
+
const _su = "substring";
|
|
721
|
+
const _t = "type";
|
|
722
|
+
const _tA = "topAccounts";
|
|
723
|
+
const _tACA = "totalActiveCrossAccount";
|
|
724
|
+
const _tAE = "totalActiveErrors";
|
|
725
|
+
const _tAF = "totalActiveFindings";
|
|
726
|
+
const _tAFo = "totalArchivedFindings";
|
|
727
|
+
const _tAP = "totalActivePublic";
|
|
728
|
+
const _tK = "tagKeys";
|
|
729
|
+
const _tP = "trailProperties";
|
|
730
|
+
const _tPa = "tablePolicy";
|
|
731
|
+
const _tPo = "topicPolicy";
|
|
732
|
+
const _tPr = "trustPolicy";
|
|
733
|
+
const _tRF = "totalResolvedFindings";
|
|
734
|
+
const _ta = "tags";
|
|
735
|
+
const _to = "total";
|
|
736
|
+
const _tr = "trails";
|
|
737
|
+
const _u = "uri";
|
|
738
|
+
const _uA = "updatedAt";
|
|
739
|
+
const _uAA = "unusedAccessAge";
|
|
740
|
+
const _uAFS = "unusedAccessFindingsStatistics";
|
|
741
|
+
const _uAT = "unusedAccessType";
|
|
742
|
+
const _uATS = "unusedAccessTypeStatistics";
|
|
743
|
+
const _uAn = "unusedAccess";
|
|
744
|
+
const _uI = "userIds";
|
|
745
|
+
const _uIRD = "unusedIamRoleDetails";
|
|
746
|
+
const _uIUAKD = "unusedIamUserAccessKeyDetails";
|
|
747
|
+
const _uIUPD = "unusedIamUserPasswordDetails";
|
|
748
|
+
const _uPD = "unusedPermissionDetails";
|
|
749
|
+
const _uPRS = "unusedPermissionsRecommendedStep";
|
|
750
|
+
const _v = "value";
|
|
751
|
+
const _vC = "vpcConfiguration";
|
|
752
|
+
const _vI = "vpcId";
|
|
753
|
+
const _vPRT = "validatePolicyResourceType";
|
|
754
|
+
const n0 = "com.amazonaws.accessanalyzer";
|
|
755
|
+
const _s_registry = TypeRegistry.for(_s);
|
|
756
|
+
var AccessAnalyzerServiceException$ = [-3, _s, "AccessAnalyzerServiceException", 0, [], []];
|
|
757
|
+
_s_registry.registerError(AccessAnalyzerServiceException$, AccessAnalyzerServiceException);
|
|
758
|
+
const n0_registry = TypeRegistry.for(n0);
|
|
759
|
+
var AccessDeniedException$ = [-3, n0, _ADE,
|
|
760
|
+
{ [_e]: _c, [_hE]: 403 },
|
|
761
|
+
[_m],
|
|
762
|
+
[0], 1
|
|
763
|
+
];
|
|
764
|
+
n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
|
|
765
|
+
var ConflictException$ = [-3, n0, _CE,
|
|
766
|
+
{ [_e]: _c, [_hE]: 409 },
|
|
767
|
+
[_m, _rI, _rT],
|
|
768
|
+
[0, 0, 0], 3
|
|
769
|
+
];
|
|
770
|
+
n0_registry.registerError(ConflictException$, ConflictException);
|
|
771
|
+
var InternalServerException$ = [-3, n0, _ISE,
|
|
772
|
+
{ [_e]: _se, [_hE]: 500 },
|
|
773
|
+
[_m, _rAS],
|
|
774
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
775
|
+
];
|
|
776
|
+
n0_registry.registerError(InternalServerException$, InternalServerException);
|
|
777
|
+
var InvalidParameterException$ = [-3, n0, _IPE,
|
|
778
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
779
|
+
[_m],
|
|
780
|
+
[0], 1
|
|
781
|
+
];
|
|
782
|
+
n0_registry.registerError(InvalidParameterException$, InvalidParameterException);
|
|
783
|
+
var ResourceNotFoundException$ = [-3, n0, _RNFE,
|
|
784
|
+
{ [_e]: _c, [_hE]: 404 },
|
|
785
|
+
[_m, _rI, _rT],
|
|
786
|
+
[0, 0, 0], 3
|
|
787
|
+
];
|
|
788
|
+
n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
|
|
789
|
+
var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
|
|
790
|
+
{ [_e]: _c, [_hE]: 402 },
|
|
791
|
+
[_m, _rI, _rT],
|
|
792
|
+
[0, 0, 0], 3
|
|
793
|
+
];
|
|
794
|
+
n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
|
|
795
|
+
var ThrottlingException$ = [-3, n0, _TE,
|
|
796
|
+
{ [_e]: _c, [_hE]: 429 },
|
|
797
|
+
[_m, _rAS],
|
|
798
|
+
[0, [1, { [_hH]: _RA }]], 1
|
|
799
|
+
];
|
|
800
|
+
n0_registry.registerError(ThrottlingException$, ThrottlingException);
|
|
801
|
+
var UnprocessableEntityException$ = [-3, n0, _UEE,
|
|
802
|
+
{ [_e]: _c, [_hE]: 422 },
|
|
803
|
+
[_m],
|
|
804
|
+
[0], 1
|
|
805
|
+
];
|
|
806
|
+
n0_registry.registerError(UnprocessableEntityException$, UnprocessableEntityException);
|
|
807
|
+
var ValidationException$ = [-3, n0, _VE,
|
|
808
|
+
{ [_e]: _c, [_hE]: 400 },
|
|
809
|
+
[_m, _r, _fL],
|
|
810
|
+
[0, 0, () => ValidationExceptionFieldList], 2
|
|
811
|
+
];
|
|
812
|
+
n0_registry.registerError(ValidationException$, ValidationException);
|
|
813
|
+
const errorTypeRegistries = [
|
|
814
|
+
_s_registry,
|
|
815
|
+
n0_registry,
|
|
816
|
+
];
|
|
817
|
+
var AccessCheckPolicyDocument = [0, n0, _ACPD, 8, 0];
|
|
818
|
+
var Access$ = [3, n0, _A,
|
|
819
|
+
0,
|
|
820
|
+
[_a, _re],
|
|
821
|
+
[64 | 0, 64 | 0]
|
|
822
|
+
];
|
|
823
|
+
var AccessPreview$ = [3, n0, _AP,
|
|
824
|
+
0,
|
|
825
|
+
[_i, _aA, _co, _cA, _st, _sR],
|
|
826
|
+
[0, 0, () => ConfigurationsMap, 5, 0, () => AccessPreviewStatusReason$], 5
|
|
827
|
+
];
|
|
828
|
+
var AccessPreviewFinding$ = [3, n0, _APF,
|
|
829
|
+
0,
|
|
830
|
+
[_i, _rT, _cA, _cT, _st, _rOA, _eFI, _eFS, _p, _ac, _con, _res, _iP, _e, _so, _rCPR],
|
|
831
|
+
[0, 0, 5, 0, 0, 0, 0, 0, 128 | 0, 64 | 0, 128 | 0, 0, 2, 0, () => FindingSourceList, 0], 6
|
|
832
|
+
];
|
|
833
|
+
var AccessPreviewStatusReason$ = [3, n0, _APSR,
|
|
834
|
+
0,
|
|
835
|
+
[_cod],
|
|
836
|
+
[0], 1
|
|
837
|
+
];
|
|
838
|
+
var AccessPreviewSummary$ = [3, n0, _APS,
|
|
839
|
+
0,
|
|
840
|
+
[_i, _aA, _cA, _st, _sR],
|
|
841
|
+
[0, 0, 5, 0, () => AccessPreviewStatusReason$], 4
|
|
842
|
+
];
|
|
843
|
+
var AnalysisRule$ = [3, n0, _AR,
|
|
844
|
+
0,
|
|
845
|
+
[_ex],
|
|
846
|
+
[() => AnalysisRuleCriteriaList]
|
|
847
|
+
];
|
|
848
|
+
var AnalysisRuleCriteria$ = [3, n0, _ARC,
|
|
849
|
+
0,
|
|
850
|
+
[_aI, _rTe],
|
|
851
|
+
[64 | 0, [1, n0, _TL, 0, 128 | 0]]
|
|
852
|
+
];
|
|
853
|
+
var AnalyzedResource$ = [3, n0, _ARn,
|
|
854
|
+
0,
|
|
855
|
+
[_rA, _rT, _cA, _aAn, _uA, _iP, _rOA, _a, _sV, _st, _e],
|
|
856
|
+
[0, 0, 5, 5, 5, 2, 0, 64 | 0, 64 | 0, 0, 0], 7
|
|
857
|
+
];
|
|
858
|
+
var AnalyzedResourceSummary$ = [3, n0, _ARS,
|
|
859
|
+
0,
|
|
860
|
+
[_rA, _rOA, _rT],
|
|
861
|
+
[0, 0, 0], 3
|
|
862
|
+
];
|
|
863
|
+
var AnalyzerSummary$ = [3, n0, _AS,
|
|
864
|
+
0,
|
|
865
|
+
[_ar, _n, _t, _cA, _st, _lRA, _lRAA, _ta, _sR, _conf, _mB],
|
|
866
|
+
[0, 0, 0, 5, 0, 0, 5, 128 | 0, () => StatusReason$, () => AnalyzerConfiguration$, 0], 5
|
|
867
|
+
];
|
|
868
|
+
var ApplyArchiveRuleRequest$ = [3, n0, _AARR,
|
|
869
|
+
0,
|
|
870
|
+
[_aA, _rN, _cTl],
|
|
871
|
+
[0, 0, [0, 4]], 2
|
|
872
|
+
];
|
|
873
|
+
var ArchiveRuleSummary$ = [3, n0, _ARSr,
|
|
874
|
+
0,
|
|
875
|
+
[_rN, _f, _cA, _uA],
|
|
876
|
+
[0, () => FilterCriteriaMap, 5, 5], 4
|
|
877
|
+
];
|
|
878
|
+
var CancelPolicyGenerationRequest$ = [3, n0, _CPGR,
|
|
879
|
+
0,
|
|
880
|
+
[_jI],
|
|
881
|
+
[[0, 1]], 1
|
|
882
|
+
];
|
|
883
|
+
var CancelPolicyGenerationResponse$ = [3, n0, _CPGRa,
|
|
884
|
+
0,
|
|
885
|
+
[],
|
|
886
|
+
[]
|
|
887
|
+
];
|
|
888
|
+
var CheckAccessNotGrantedRequest$ = [3, n0, _CANGR,
|
|
889
|
+
0,
|
|
890
|
+
[_pD, _acc, _pT],
|
|
891
|
+
[[() => AccessCheckPolicyDocument, 0], () => AccessList, 0], 3
|
|
892
|
+
];
|
|
893
|
+
var CheckAccessNotGrantedResponse$ = [3, n0, _CANGRh,
|
|
894
|
+
0,
|
|
895
|
+
[_resu, _m, _rea],
|
|
896
|
+
[0, 0, () => ReasonSummaryList]
|
|
897
|
+
];
|
|
898
|
+
var CheckNoNewAccessRequest$ = [3, n0, _CNNAR,
|
|
899
|
+
0,
|
|
900
|
+
[_nPD, _ePD, _pT],
|
|
901
|
+
[[() => AccessCheckPolicyDocument, 0], [() => AccessCheckPolicyDocument, 0], 0], 3
|
|
902
|
+
];
|
|
903
|
+
var CheckNoNewAccessResponse$ = [3, n0, _CNNARh,
|
|
904
|
+
0,
|
|
905
|
+
[_resu, _m, _rea],
|
|
906
|
+
[0, 0, () => ReasonSummaryList]
|
|
907
|
+
];
|
|
908
|
+
var CheckNoPublicAccessRequest$ = [3, n0, _CNPAR,
|
|
909
|
+
0,
|
|
910
|
+
[_pD, _rT],
|
|
911
|
+
[[() => AccessCheckPolicyDocument, 0], 0], 2
|
|
912
|
+
];
|
|
913
|
+
var CheckNoPublicAccessResponse$ = [3, n0, _CNPARh,
|
|
914
|
+
0,
|
|
915
|
+
[_resu, _m, _rea],
|
|
916
|
+
[0, 0, () => ReasonSummaryList]
|
|
917
|
+
];
|
|
918
|
+
var CloudTrailDetails$ = [3, n0, _CTD,
|
|
919
|
+
0,
|
|
920
|
+
[_tr, _aR, _sT, _eT],
|
|
921
|
+
[() => TrailList, 0, 5, 5], 3
|
|
922
|
+
];
|
|
923
|
+
var CloudTrailProperties$ = [3, n0, _CTP,
|
|
924
|
+
0,
|
|
925
|
+
[_tP, _sT, _eT],
|
|
926
|
+
[() => TrailPropertiesList, 5, 5], 3
|
|
927
|
+
];
|
|
928
|
+
var CreateAccessPreviewRequest$ = [3, n0, _CAPR,
|
|
929
|
+
0,
|
|
930
|
+
[_aA, _co, _cTl],
|
|
931
|
+
[0, () => ConfigurationsMap, [0, 4]], 2
|
|
932
|
+
];
|
|
933
|
+
var CreateAccessPreviewResponse$ = [3, n0, _CAPRr,
|
|
934
|
+
0,
|
|
935
|
+
[_i],
|
|
936
|
+
[0], 1
|
|
937
|
+
];
|
|
938
|
+
var CreateAnalyzerRequest$ = [3, n0, _CAR,
|
|
939
|
+
0,
|
|
940
|
+
[_aN, _t, _aRr, _ta, _cTl, _conf],
|
|
941
|
+
[0, 0, () => InlineArchiveRulesList, 128 | 0, [0, 4], () => AnalyzerConfiguration$], 2
|
|
942
|
+
];
|
|
943
|
+
var CreateAnalyzerResponse$ = [3, n0, _CARr,
|
|
944
|
+
0,
|
|
945
|
+
[_ar],
|
|
946
|
+
[0]
|
|
947
|
+
];
|
|
948
|
+
var CreateArchiveRuleRequest$ = [3, n0, _CARR,
|
|
949
|
+
0,
|
|
950
|
+
[_aN, _rN, _f, _cTl],
|
|
951
|
+
[[0, 1], 0, () => FilterCriteriaMap, [0, 4]], 3
|
|
952
|
+
];
|
|
953
|
+
var CreateServiceLinkedAnalyzerRequest$ = [3, n0, _CSLAR,
|
|
954
|
+
0,
|
|
955
|
+
[_t, _aRr, _cTl, _conf],
|
|
956
|
+
[0, () => InlineArchiveRulesList, [0, 4], () => AnalyzerConfiguration$], 1
|
|
957
|
+
];
|
|
958
|
+
var CreateServiceLinkedAnalyzerResponse$ = [3, n0, _CSLARr,
|
|
959
|
+
0,
|
|
960
|
+
[_ar],
|
|
961
|
+
[0]
|
|
962
|
+
];
|
|
963
|
+
var Criterion$ = [3, n0, _C,
|
|
964
|
+
0,
|
|
965
|
+
[_eq, _ne, _cont, _exi],
|
|
966
|
+
[64 | 0, 64 | 0, 64 | 0, 2]
|
|
967
|
+
];
|
|
968
|
+
var DeleteAnalyzerRequest$ = [3, n0, _DAR,
|
|
969
|
+
0,
|
|
970
|
+
[_aN, _cTl],
|
|
971
|
+
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
972
|
+
];
|
|
973
|
+
var DeleteArchiveRuleRequest$ = [3, n0, _DARR,
|
|
974
|
+
0,
|
|
975
|
+
[_aN, _rN, _cTl],
|
|
976
|
+
[[0, 1], [0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 2
|
|
977
|
+
];
|
|
978
|
+
var DeleteServiceLinkedAnalyzerRequest$ = [3, n0, _DSLAR,
|
|
979
|
+
0,
|
|
980
|
+
[_aN, _cTl],
|
|
981
|
+
[[0, 1], [0, { [_hQ]: _cTl, [_iT]: 1 }]], 1
|
|
982
|
+
];
|
|
983
|
+
var DynamodbStreamConfiguration$ = [3, n0, _DSC,
|
|
984
|
+
0,
|
|
985
|
+
[_sP],
|
|
986
|
+
[0]
|
|
987
|
+
];
|
|
988
|
+
var DynamodbTableConfiguration$ = [3, n0, _DTC,
|
|
989
|
+
0,
|
|
990
|
+
[_tPa],
|
|
991
|
+
[0]
|
|
992
|
+
];
|
|
993
|
+
var EbsSnapshotConfiguration$ = [3, n0, _ESC,
|
|
994
|
+
0,
|
|
995
|
+
[_uI, _g, _kKI],
|
|
996
|
+
[64 | 0, 64 | 0, 0]
|
|
997
|
+
];
|
|
998
|
+
var EcrRepositoryConfiguration$ = [3, n0, _ERC,
|
|
999
|
+
0,
|
|
1000
|
+
[_rP],
|
|
1001
|
+
[0]
|
|
1002
|
+
];
|
|
1003
|
+
var EfsFileSystemConfiguration$ = [3, n0, _EFSC,
|
|
1004
|
+
0,
|
|
1005
|
+
[_fSP],
|
|
1006
|
+
[0]
|
|
1007
|
+
];
|
|
1008
|
+
var ExternalAccessDetails$ = [3, n0, _EAD,
|
|
1009
|
+
0,
|
|
1010
|
+
[_con, _ac, _iP, _p, _so, _rCPR],
|
|
1011
|
+
[128 | 0, 64 | 0, 2, 128 | 0, () => FindingSourceList, 0], 1
|
|
1012
|
+
];
|
|
1013
|
+
var ExternalAccessFindingsStatistics$ = [3, n0, _EAFS,
|
|
1014
|
+
0,
|
|
1015
|
+
[_rTS, _tAF, _tAFo, _tRF],
|
|
1016
|
+
[() => ResourceTypeStatisticsMap, 1, 1, 1]
|
|
1017
|
+
];
|
|
1018
|
+
var Finding$ = [3, n0, _F,
|
|
1019
|
+
0,
|
|
1020
|
+
[_i, _rT, _con, _cA, _aAn, _uA, _st, _rOA, _p, _ac, _res, _iP, _e, _so, _rCPR],
|
|
1021
|
+
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
1022
|
+
];
|
|
1023
|
+
var FindingAggregationAccountDetails$ = [3, n0, _FAAD,
|
|
1024
|
+
0,
|
|
1025
|
+
[_acco, _nOAF, _d],
|
|
1026
|
+
[0, 1, 128 | 1]
|
|
1027
|
+
];
|
|
1028
|
+
var FindingSource$ = [3, n0, _FS,
|
|
1029
|
+
0,
|
|
1030
|
+
[_t, _de],
|
|
1031
|
+
[0, () => FindingSourceDetail$], 1
|
|
1032
|
+
];
|
|
1033
|
+
var FindingSourceDetail$ = [3, n0, _FSD,
|
|
1034
|
+
0,
|
|
1035
|
+
[_aPA, _aPAc],
|
|
1036
|
+
[0, 0]
|
|
1037
|
+
];
|
|
1038
|
+
var FindingSummary$ = [3, n0, _FSi,
|
|
1039
|
+
0,
|
|
1040
|
+
[_i, _rT, _con, _cA, _aAn, _uA, _st, _rOA, _p, _ac, _res, _iP, _e, _so, _rCPR],
|
|
1041
|
+
[0, 0, 128 | 0, 5, 5, 5, 0, 0, 128 | 0, 64 | 0, 0, 2, 0, () => FindingSourceList, 0], 8
|
|
1042
|
+
];
|
|
1043
|
+
var FindingSummaryV2$ = [3, n0, _FSV,
|
|
1044
|
+
0,
|
|
1045
|
+
[_aAn, _cA, _i, _rT, _rOA, _st, _uA, _e, _res, _fT],
|
|
1046
|
+
[5, 5, 0, 0, 0, 0, 5, 0, 0, 0], 7
|
|
1047
|
+
];
|
|
1048
|
+
var GeneratedPolicy$ = [3, n0, _GP,
|
|
1049
|
+
0,
|
|
1050
|
+
[_po],
|
|
1051
|
+
[0], 1
|
|
1052
|
+
];
|
|
1053
|
+
var GeneratedPolicyProperties$ = [3, n0, _GPP,
|
|
1054
|
+
0,
|
|
1055
|
+
[_pA, _iC, _cTP],
|
|
1056
|
+
[0, 2, () => CloudTrailProperties$], 1
|
|
1057
|
+
];
|
|
1058
|
+
var GeneratedPolicyResult$ = [3, n0, _GPR,
|
|
1059
|
+
0,
|
|
1060
|
+
[_pr, _gP],
|
|
1061
|
+
[() => GeneratedPolicyProperties$, () => GeneratedPolicyList], 1
|
|
1062
|
+
];
|
|
1063
|
+
var GenerateFindingRecommendationRequest$ = [3, n0, _GFRR,
|
|
1064
|
+
0,
|
|
1065
|
+
[_aA, _i],
|
|
1066
|
+
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
1067
|
+
];
|
|
1068
|
+
var GetAccessPreviewRequest$ = [3, n0, _GAPR,
|
|
1069
|
+
0,
|
|
1070
|
+
[_aPI, _aA],
|
|
1071
|
+
[[0, 1], [0, { [_hQ]: _aA }]], 2
|
|
1072
|
+
];
|
|
1073
|
+
var GetAccessPreviewResponse$ = [3, n0, _GAPRe,
|
|
1074
|
+
0,
|
|
1075
|
+
[_aP],
|
|
1076
|
+
[() => AccessPreview$], 1
|
|
1077
|
+
];
|
|
1078
|
+
var GetAnalyzedResourceRequest$ = [3, n0, _GARR,
|
|
1079
|
+
0,
|
|
1080
|
+
[_aA, _rA],
|
|
1081
|
+
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _rA }]], 2
|
|
1082
|
+
];
|
|
1083
|
+
var GetAnalyzedResourceResponse$ = [3, n0, _GARRe,
|
|
1084
|
+
0,
|
|
1085
|
+
[_res],
|
|
1086
|
+
[() => AnalyzedResource$]
|
|
1087
|
+
];
|
|
1088
|
+
var GetAnalyzerRequest$ = [3, n0, _GAR,
|
|
1089
|
+
0,
|
|
1090
|
+
[_aN],
|
|
1091
|
+
[[0, 1]], 1
|
|
1092
|
+
];
|
|
1093
|
+
var GetAnalyzerResponse$ = [3, n0, _GARe,
|
|
1094
|
+
0,
|
|
1095
|
+
[_an],
|
|
1096
|
+
[() => AnalyzerSummary$], 1
|
|
1097
|
+
];
|
|
1098
|
+
var GetArchiveRuleRequest$ = [3, n0, _GARRet,
|
|
1099
|
+
0,
|
|
1100
|
+
[_aN, _rN],
|
|
1101
|
+
[[0, 1], [0, 1]], 2
|
|
1102
|
+
];
|
|
1103
|
+
var GetArchiveRuleResponse$ = [3, n0, _GARRetr,
|
|
1104
|
+
0,
|
|
1105
|
+
[_aRrc],
|
|
1106
|
+
[() => ArchiveRuleSummary$], 1
|
|
1107
|
+
];
|
|
1108
|
+
var GetFindingRecommendationRequest$ = [3, n0, _GFRRe,
|
|
1109
|
+
0,
|
|
1110
|
+
[_aA, _i, _mR, _nT],
|
|
1111
|
+
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1112
|
+
];
|
|
1113
|
+
var GetFindingRecommendationResponse$ = [3, n0, _GFRRet,
|
|
1114
|
+
0,
|
|
1115
|
+
[_sA, _rA, _rTec, _st, _cAo, _nT, _e, _rS],
|
|
1116
|
+
[5, 0, 0, 0, 5, 0, () => RecommendationError$, () => RecommendedStepList], 4
|
|
1117
|
+
];
|
|
1118
|
+
var GetFindingRequest$ = [3, n0, _GFR,
|
|
1119
|
+
0,
|
|
1120
|
+
[_aA, _i],
|
|
1121
|
+
[[0, { [_hQ]: _aA }], [0, 1]], 2
|
|
1122
|
+
];
|
|
1123
|
+
var GetFindingResponse$ = [3, n0, _GFRe,
|
|
1124
|
+
0,
|
|
1125
|
+
[_fi],
|
|
1126
|
+
[() => Finding$]
|
|
1127
|
+
];
|
|
1128
|
+
var GetFindingsStatisticsRequest$ = [3, n0, _GFSR,
|
|
1129
|
+
0,
|
|
1130
|
+
[_aA],
|
|
1131
|
+
[0], 1
|
|
1132
|
+
];
|
|
1133
|
+
var GetFindingsStatisticsResponse$ = [3, n0, _GFSRe,
|
|
1134
|
+
0,
|
|
1135
|
+
[_fS, _lUA],
|
|
1136
|
+
[() => FindingsStatisticsList, 5]
|
|
1137
|
+
];
|
|
1138
|
+
var GetFindingV2Request$ = [3, n0, _GFVR,
|
|
1139
|
+
0,
|
|
1140
|
+
[_aA, _i, _mR, _nT],
|
|
1141
|
+
[[0, { [_hQ]: _aA }], [0, 1], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]], 2
|
|
1142
|
+
];
|
|
1143
|
+
var GetFindingV2Response$ = [3, n0, _GFVRe,
|
|
1144
|
+
0,
|
|
1145
|
+
[_aAn, _cA, _i, _rT, _rOA, _st, _uA, _fD, _e, _nT, _res, _fT],
|
|
1146
|
+
[5, 5, 0, 0, 0, 0, 5, () => FindingDetailsList, 0, 0, 0, 0], 8
|
|
1147
|
+
];
|
|
1148
|
+
var GetGeneratedPolicyRequest$ = [3, n0, _GGPR,
|
|
1149
|
+
0,
|
|
1150
|
+
[_jI, _iRP, _iSLT],
|
|
1151
|
+
[[0, 1], [2, { [_hQ]: _iRP }], [2, { [_hQ]: _iSLT }]], 1
|
|
1152
|
+
];
|
|
1153
|
+
var GetGeneratedPolicyResponse$ = [3, n0, _GGPRe,
|
|
1154
|
+
0,
|
|
1155
|
+
[_jD, _gPR],
|
|
1156
|
+
[() => JobDetails$, () => GeneratedPolicyResult$], 2
|
|
1157
|
+
];
|
|
1158
|
+
var IamRoleConfiguration$ = [3, n0, _IRC,
|
|
1159
|
+
0,
|
|
1160
|
+
[_tPr],
|
|
1161
|
+
[0]
|
|
1162
|
+
];
|
|
1163
|
+
var InlineArchiveRule$ = [3, n0, _IAR,
|
|
1164
|
+
0,
|
|
1165
|
+
[_rN, _f],
|
|
1166
|
+
[0, () => FilterCriteriaMap], 2
|
|
1167
|
+
];
|
|
1168
|
+
var InternalAccessAnalysisRule$ = [3, n0, _IAAR,
|
|
1169
|
+
0,
|
|
1170
|
+
[_in],
|
|
1171
|
+
[() => InternalAccessAnalysisRuleCriteriaList]
|
|
1172
|
+
];
|
|
1173
|
+
var InternalAccessAnalysisRuleCriteria$ = [3, n0, _IAARC,
|
|
1174
|
+
0,
|
|
1175
|
+
[_aI, _rTes, _rAe],
|
|
1176
|
+
[64 | 0, 64 | 0, 64 | 0]
|
|
1177
|
+
];
|
|
1178
|
+
var InternalAccessConfiguration$ = [3, n0, _IAC,
|
|
1179
|
+
0,
|
|
1180
|
+
[_aRn],
|
|
1181
|
+
[() => InternalAccessAnalysisRule$]
|
|
1182
|
+
];
|
|
1183
|
+
var InternalAccessDetails$ = [3, n0, _IAD,
|
|
1184
|
+
0,
|
|
1185
|
+
[_ac, _con, _p, _pOA, _aT, _pTr, _so, _rCPR, _sCPR],
|
|
1186
|
+
[64 | 0, 128 | 0, 128 | 0, 0, 0, 0, () => FindingSourceList, 0, 0]
|
|
1187
|
+
];
|
|
1188
|
+
var InternalAccessFindingsStatistics$ = [3, n0, _IAFS,
|
|
1189
|
+
0,
|
|
1190
|
+
[_rTS, _tAF, _tAFo, _tRF],
|
|
1191
|
+
[() => InternalAccessResourceTypeStatisticsMap, 1, 1, 1]
|
|
1192
|
+
];
|
|
1193
|
+
var InternalAccessResourceTypeDetails$ = [3, n0, _IARTD,
|
|
1194
|
+
0,
|
|
1195
|
+
[_tAF, _tRF, _tAFo],
|
|
1196
|
+
[1, 1, 1]
|
|
1197
|
+
];
|
|
1198
|
+
var InternetConfiguration$ = [3, n0, _IC,
|
|
1199
|
+
0,
|
|
1200
|
+
[],
|
|
1201
|
+
[]
|
|
1202
|
+
];
|
|
1203
|
+
var JobDetails$ = [3, n0, _JD,
|
|
1204
|
+
0,
|
|
1205
|
+
[_jI, _st, _sO, _cO, _jE],
|
|
1206
|
+
[0, 0, 5, 5, () => JobError$], 3
|
|
1207
|
+
];
|
|
1208
|
+
var JobError$ = [3, n0, _JE,
|
|
1209
|
+
0,
|
|
1210
|
+
[_cod, _m],
|
|
1211
|
+
[0, 0], 2
|
|
1212
|
+
];
|
|
1213
|
+
var KmsGrantConfiguration$ = [3, n0, _KGC,
|
|
1214
|
+
0,
|
|
1215
|
+
[_o, _gPr, _iA, _rPe, _cons],
|
|
1216
|
+
[64 | 0, 0, 0, 0, () => KmsGrantConstraints$], 3
|
|
1217
|
+
];
|
|
1218
|
+
var KmsGrantConstraints$ = [3, n0, _KGCm,
|
|
1219
|
+
0,
|
|
1220
|
+
[_eCE, _eCS],
|
|
1221
|
+
[128 | 0, 128 | 0]
|
|
1222
|
+
];
|
|
1223
|
+
var KmsKeyConfiguration$ = [3, n0, _KKC,
|
|
1224
|
+
0,
|
|
1225
|
+
[_kP, _gr],
|
|
1226
|
+
[128 | 0, () => KmsGrantConfigurationsList]
|
|
1227
|
+
];
|
|
1228
|
+
var ListAccessPreviewFindingsRequest$ = [3, n0, _LAPFR,
|
|
1229
|
+
0,
|
|
1230
|
+
[_aPI, _aA, _f, _nT, _mR],
|
|
1231
|
+
[[0, 1], 0, () => FilterCriteriaMap, 0, 1], 2
|
|
1232
|
+
];
|
|
1233
|
+
var ListAccessPreviewFindingsResponse$ = [3, n0, _LAPFRi,
|
|
1234
|
+
0,
|
|
1235
|
+
[_fin, _nT],
|
|
1236
|
+
[() => AccessPreviewFindingsList, 0], 1
|
|
1237
|
+
];
|
|
1238
|
+
var ListAccessPreviewsRequest$ = [3, n0, _LAPR,
|
|
1239
|
+
0,
|
|
1240
|
+
[_aA, _nT, _mR],
|
|
1241
|
+
[[0, { [_hQ]: _aA }], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1242
|
+
];
|
|
1243
|
+
var ListAccessPreviewsResponse$ = [3, n0, _LAPRi,
|
|
1244
|
+
0,
|
|
1245
|
+
[_aPc, _nT],
|
|
1246
|
+
[() => AccessPreviewsList, 0], 1
|
|
1247
|
+
];
|
|
1248
|
+
var ListAnalyzedResourcesRequest$ = [3, n0, _LARR,
|
|
1249
|
+
0,
|
|
1250
|
+
[_aA, _rT, _nT, _mR],
|
|
1251
|
+
[0, 0, 0, 1], 1
|
|
1252
|
+
];
|
|
1253
|
+
var ListAnalyzedResourcesResponse$ = [3, n0, _LARRi,
|
|
1254
|
+
0,
|
|
1255
|
+
[_aRna, _nT],
|
|
1256
|
+
[() => AnalyzedResourcesList, 0], 1
|
|
1257
|
+
];
|
|
1258
|
+
var ListAnalyzersRequest$ = [3, n0, _LAR,
|
|
1259
|
+
0,
|
|
1260
|
+
[_nT, _mR, _t],
|
|
1261
|
+
[[0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _t }]]
|
|
1262
|
+
];
|
|
1263
|
+
var ListAnalyzersResponse$ = [3, n0, _LARi,
|
|
1264
|
+
0,
|
|
1265
|
+
[_ana, _nT],
|
|
1266
|
+
[() => AnalyzersList, 0], 1
|
|
1267
|
+
];
|
|
1268
|
+
var ListArchiveRulesRequest$ = [3, n0, _LARRis,
|
|
1269
|
+
0,
|
|
1270
|
+
[_aN, _nT, _mR],
|
|
1271
|
+
[[0, 1], [0, { [_hQ]: _nT }], [1, { [_hQ]: _mR }]], 1
|
|
1272
|
+
];
|
|
1273
|
+
var ListArchiveRulesResponse$ = [3, n0, _LARRist,
|
|
1274
|
+
0,
|
|
1275
|
+
[_aRr, _nT],
|
|
1276
|
+
[() => ArchiveRulesList, 0], 1
|
|
1277
|
+
];
|
|
1278
|
+
var ListFindingsRequest$ = [3, n0, _LFR,
|
|
1279
|
+
0,
|
|
1280
|
+
[_aA, _f, _sor, _nT, _mR],
|
|
1281
|
+
[0, () => FilterCriteriaMap, () => SortCriteria$, 0, 1], 1
|
|
1282
|
+
];
|
|
1283
|
+
var ListFindingsResponse$ = [3, n0, _LFRi,
|
|
1284
|
+
0,
|
|
1285
|
+
[_fin, _nT],
|
|
1286
|
+
[() => FindingsList, 0], 1
|
|
1287
|
+
];
|
|
1288
|
+
var ListFindingsV2Request$ = [3, n0, _LFVR,
|
|
1289
|
+
0,
|
|
1290
|
+
[_aA, _f, _mR, _nT, _sor],
|
|
1291
|
+
[0, () => FilterCriteriaMap, 1, 0, () => SortCriteria$], 1
|
|
1292
|
+
];
|
|
1293
|
+
var ListFindingsV2Response$ = [3, n0, _LFVRi,
|
|
1294
|
+
0,
|
|
1295
|
+
[_fin, _nT],
|
|
1296
|
+
[() => FindingsListV2, 0], 1
|
|
1297
|
+
];
|
|
1298
|
+
var ListPolicyGenerationsRequest$ = [3, n0, _LPGR,
|
|
1299
|
+
0,
|
|
1300
|
+
[_pA, _mR, _nT],
|
|
1301
|
+
[[0, { [_hQ]: _pA }], [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }]]
|
|
1302
|
+
];
|
|
1303
|
+
var ListPolicyGenerationsResponse$ = [3, n0, _LPGRi,
|
|
1304
|
+
0,
|
|
1305
|
+
[_pG, _nT],
|
|
1306
|
+
[() => PolicyGenerationList, 0], 1
|
|
1307
|
+
];
|
|
1308
|
+
var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
|
|
1309
|
+
0,
|
|
1310
|
+
[_rA],
|
|
1311
|
+
[[0, 1]], 1
|
|
1312
|
+
];
|
|
1313
|
+
var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
|
|
1314
|
+
0,
|
|
1315
|
+
[_ta],
|
|
1316
|
+
[128 | 0]
|
|
1317
|
+
];
|
|
1318
|
+
var Location$ = [3, n0, _L,
|
|
1319
|
+
0,
|
|
1320
|
+
[_pa, _sp],
|
|
1321
|
+
[() => PathElementList, () => Span$], 2
|
|
1322
|
+
];
|
|
1323
|
+
var PolicyGeneration$ = [3, n0, _PG,
|
|
1324
|
+
0,
|
|
1325
|
+
[_jI, _pA, _st, _sO, _cO],
|
|
1326
|
+
[0, 0, 0, 5, 5], 4
|
|
1327
|
+
];
|
|
1328
|
+
var PolicyGenerationDetails$ = [3, n0, _PGD,
|
|
1329
|
+
0,
|
|
1330
|
+
[_pA],
|
|
1331
|
+
[0], 1
|
|
1332
|
+
];
|
|
1333
|
+
var Position$ = [3, n0, _P,
|
|
1334
|
+
0,
|
|
1335
|
+
[_l, _col, _of],
|
|
1336
|
+
[1, 1, 1], 3
|
|
1337
|
+
];
|
|
1338
|
+
var RdsDbClusterSnapshotConfiguration$ = [3, n0, _RDCSC,
|
|
1339
|
+
0,
|
|
1340
|
+
[_at, _kKI],
|
|
1341
|
+
[() => RdsDbClusterSnapshotAttributesMap, 0]
|
|
1342
|
+
];
|
|
1343
|
+
var RdsDbSnapshotConfiguration$ = [3, n0, _RDSC,
|
|
1344
|
+
0,
|
|
1345
|
+
[_at, _kKI],
|
|
1346
|
+
[() => RdsDbSnapshotAttributesMap, 0]
|
|
1347
|
+
];
|
|
1348
|
+
var ReasonSummary$ = [3, n0, _RS,
|
|
1349
|
+
0,
|
|
1350
|
+
[_des, _sI, _sIt],
|
|
1351
|
+
[0, 1, 0]
|
|
1352
|
+
];
|
|
1353
|
+
var RecommendationError$ = [3, n0, _RE,
|
|
1354
|
+
0,
|
|
1355
|
+
[_cod, _m],
|
|
1356
|
+
[0, 0], 2
|
|
1357
|
+
];
|
|
1358
|
+
var ResourceTypeDetails$ = [3, n0, _RTD,
|
|
1359
|
+
0,
|
|
1360
|
+
[_tAP, _tACA, _tAE],
|
|
1361
|
+
[1, 1, 1]
|
|
1362
|
+
];
|
|
1363
|
+
var S3AccessPointConfiguration$ = [3, n0, _SAPC,
|
|
1364
|
+
0,
|
|
1365
|
+
[_aPP, _pAB, _nO],
|
|
1366
|
+
[0, () => S3PublicAccessBlockConfiguration$, () => NetworkOriginConfiguration$]
|
|
1367
|
+
];
|
|
1368
|
+
var S3BucketAclGrantConfiguration$ = [3, n0, _SBAGC,
|
|
1369
|
+
0,
|
|
1370
|
+
[_pe, _gra],
|
|
1371
|
+
[0, () => AclGrantee$], 2
|
|
1372
|
+
];
|
|
1373
|
+
var S3BucketConfiguration$ = [3, n0, _SBC,
|
|
1374
|
+
0,
|
|
1375
|
+
[_bP, _bAG, _bPAB, _aPcc],
|
|
1376
|
+
[0, () => S3BucketAclGrantConfigurationsList, () => S3PublicAccessBlockConfiguration$, () => S3AccessPointConfigurationsMap]
|
|
1377
|
+
];
|
|
1378
|
+
var S3ExpressDirectoryAccessPointConfiguration$ = [3, n0, _SEDAPC,
|
|
1379
|
+
0,
|
|
1380
|
+
[_aPP, _nO],
|
|
1381
|
+
[0, () => NetworkOriginConfiguration$]
|
|
1382
|
+
];
|
|
1383
|
+
var S3ExpressDirectoryBucketConfiguration$ = [3, n0, _SEDBC,
|
|
1384
|
+
0,
|
|
1385
|
+
[_bP, _aPcc],
|
|
1386
|
+
[0, () => S3ExpressDirectoryAccessPointConfigurationsMap]
|
|
1387
|
+
];
|
|
1388
|
+
var S3PublicAccessBlockConfiguration$ = [3, n0, _SPABC,
|
|
1389
|
+
0,
|
|
1390
|
+
[_iPA, _rPB],
|
|
1391
|
+
[2, 2], 2
|
|
1392
|
+
];
|
|
1393
|
+
var SecretsManagerSecretConfiguration$ = [3, n0, _SMSC,
|
|
1394
|
+
0,
|
|
1395
|
+
[_kKI, _sPe],
|
|
1396
|
+
[0, 0]
|
|
1397
|
+
];
|
|
1398
|
+
var SnsTopicConfiguration$ = [3, n0, _STC,
|
|
1399
|
+
0,
|
|
1400
|
+
[_tPo],
|
|
1401
|
+
[0]
|
|
1402
|
+
];
|
|
1403
|
+
var SortCriteria$ = [3, n0, _SC,
|
|
1404
|
+
0,
|
|
1405
|
+
[_aNt, _oB],
|
|
1406
|
+
[0, 0]
|
|
1407
|
+
];
|
|
1408
|
+
var Span$ = [3, n0, _S,
|
|
1409
|
+
0,
|
|
1410
|
+
[_sta, _en],
|
|
1411
|
+
[() => Position$, () => Position$], 2
|
|
1412
|
+
];
|
|
1413
|
+
var SqsQueueConfiguration$ = [3, n0, _SQC,
|
|
1414
|
+
0,
|
|
1415
|
+
[_qP],
|
|
1416
|
+
[0]
|
|
1417
|
+
];
|
|
1418
|
+
var StartPolicyGenerationRequest$ = [3, n0, _SPGR,
|
|
1419
|
+
0,
|
|
1420
|
+
[_pGD, _cTD, _cTl],
|
|
1421
|
+
[() => PolicyGenerationDetails$, () => CloudTrailDetails$, [0, 4]], 1
|
|
1422
|
+
];
|
|
1423
|
+
var StartPolicyGenerationResponse$ = [3, n0, _SPGRt,
|
|
1424
|
+
0,
|
|
1425
|
+
[_jI],
|
|
1426
|
+
[0], 1
|
|
1427
|
+
];
|
|
1428
|
+
var StartResourceScanRequest$ = [3, n0, _SRSR,
|
|
1429
|
+
0,
|
|
1430
|
+
[_aA, _rA, _rOA],
|
|
1431
|
+
[0, 0, 0], 2
|
|
1432
|
+
];
|
|
1433
|
+
var StatusReason$ = [3, n0, _SR,
|
|
1434
|
+
0,
|
|
1435
|
+
[_cod],
|
|
1436
|
+
[0], 1
|
|
1437
|
+
];
|
|
1438
|
+
var Substring$ = [3, n0, _Su,
|
|
1439
|
+
0,
|
|
1440
|
+
[_sta, _le],
|
|
1441
|
+
[1, 1], 2
|
|
1442
|
+
];
|
|
1443
|
+
var TagResourceRequest$ = [3, n0, _TRR,
|
|
1444
|
+
0,
|
|
1445
|
+
[_rA, _ta],
|
|
1446
|
+
[[0, 1], 128 | 0], 2
|
|
1447
|
+
];
|
|
1448
|
+
var TagResourceResponse$ = [3, n0, _TRRa,
|
|
1449
|
+
0,
|
|
1450
|
+
[],
|
|
1451
|
+
[]
|
|
1452
|
+
];
|
|
1453
|
+
var Trail$ = [3, n0, _T,
|
|
1454
|
+
0,
|
|
1455
|
+
[_cTA, _reg, _aRl],
|
|
1456
|
+
[0, 64 | 0, 2], 1
|
|
1457
|
+
];
|
|
1458
|
+
var TrailProperties$ = [3, n0, _TP,
|
|
1459
|
+
0,
|
|
1460
|
+
[_cTA, _reg, _aRl],
|
|
1461
|
+
[0, 64 | 0, 2], 1
|
|
1462
|
+
];
|
|
1463
|
+
var UntagResourceRequest$ = [3, n0, _URR,
|
|
1464
|
+
0,
|
|
1465
|
+
[_rA, _tK],
|
|
1466
|
+
[[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
|
|
1467
|
+
];
|
|
1468
|
+
var UntagResourceResponse$ = [3, n0, _URRn,
|
|
1469
|
+
0,
|
|
1470
|
+
[],
|
|
1471
|
+
[]
|
|
1472
|
+
];
|
|
1473
|
+
var UnusedAccessConfiguration$ = [3, n0, _UAC,
|
|
1474
|
+
0,
|
|
1475
|
+
[_uAA, _aRn],
|
|
1476
|
+
[1, () => AnalysisRule$]
|
|
1477
|
+
];
|
|
1478
|
+
var UnusedAccessFindingsStatistics$ = [3, n0, _UAFS,
|
|
1479
|
+
0,
|
|
1480
|
+
[_uATS, _tA, _tAF, _tAFo, _tRF],
|
|
1481
|
+
[() => UnusedAccessTypeStatisticsList, () => AccountAggregations, 1, 1, 1]
|
|
1482
|
+
];
|
|
1483
|
+
var UnusedAccessTypeStatistics$ = [3, n0, _UATS,
|
|
1484
|
+
0,
|
|
1485
|
+
[_uAT, _to],
|
|
1486
|
+
[0, 1]
|
|
1487
|
+
];
|
|
1488
|
+
var UnusedAction$ = [3, n0, _UA,
|
|
1489
|
+
0,
|
|
1490
|
+
[_ac, _lA],
|
|
1491
|
+
[0, 5], 1
|
|
1492
|
+
];
|
|
1493
|
+
var UnusedIamRoleDetails$ = [3, n0, _UIRD,
|
|
1494
|
+
0,
|
|
1495
|
+
[_lA],
|
|
1496
|
+
[5]
|
|
1497
|
+
];
|
|
1498
|
+
var UnusedIamUserAccessKeyDetails$ = [3, n0, _UIUAKD,
|
|
1499
|
+
0,
|
|
1500
|
+
[_aKI, _lA],
|
|
1501
|
+
[0, 5], 1
|
|
1502
|
+
];
|
|
1503
|
+
var UnusedIamUserPasswordDetails$ = [3, n0, _UIUPD,
|
|
1504
|
+
0,
|
|
1505
|
+
[_lA],
|
|
1506
|
+
[5]
|
|
1507
|
+
];
|
|
1508
|
+
var UnusedPermissionDetails$ = [3, n0, _UPD,
|
|
1509
|
+
0,
|
|
1510
|
+
[_sN, _a, _lA],
|
|
1511
|
+
[0, () => UnusedActionList, 5], 1
|
|
1512
|
+
];
|
|
1513
|
+
var UnusedPermissionsRecommendedStep$ = [3, n0, _UPRS,
|
|
1514
|
+
0,
|
|
1515
|
+
[_rAec, _pUA, _rPec, _ePI],
|
|
1516
|
+
[0, 5, 0, 0], 1
|
|
1517
|
+
];
|
|
1518
|
+
var UpdateAnalyzerRequest$ = [3, n0, _UAR,
|
|
1519
|
+
0,
|
|
1520
|
+
[_aN, _conf],
|
|
1521
|
+
[[0, 1], () => AnalyzerConfiguration$], 1
|
|
1522
|
+
];
|
|
1523
|
+
var UpdateAnalyzerResponse$ = [3, n0, _UARp,
|
|
1524
|
+
0,
|
|
1525
|
+
[_conf],
|
|
1526
|
+
[() => AnalyzerConfiguration$]
|
|
1527
|
+
];
|
|
1528
|
+
var UpdateArchiveRuleRequest$ = [3, n0, _UARR,
|
|
1529
|
+
0,
|
|
1530
|
+
[_aN, _rN, _f, _cTl],
|
|
1531
|
+
[[0, 1], [0, 1], () => FilterCriteriaMap, [0, 4]], 3
|
|
1532
|
+
];
|
|
1533
|
+
var UpdateFindingsRequest$ = [3, n0, _UFR,
|
|
1534
|
+
0,
|
|
1535
|
+
[_aA, _st, _id, _rA, _cTl],
|
|
1536
|
+
[0, 0, 64 | 0, 0, [0, 4]], 2
|
|
1537
|
+
];
|
|
1538
|
+
var ValidatePolicyFinding$ = [3, n0, _VPF,
|
|
1539
|
+
0,
|
|
1540
|
+
[_fD, _fT, _iCs, _lML, _lo],
|
|
1541
|
+
[0, 0, 0, 0, () => LocationList], 5
|
|
1542
|
+
];
|
|
1543
|
+
var ValidatePolicyRequest$ = [3, n0, _VPR,
|
|
1544
|
+
0,
|
|
1545
|
+
[_pD, _pT, _loc, _mR, _nT, _vPRT],
|
|
1546
|
+
[0, 0, 0, [1, { [_hQ]: _mR }], [0, { [_hQ]: _nT }], 0], 2
|
|
1547
|
+
];
|
|
1548
|
+
var ValidatePolicyResponse$ = [3, n0, _VPRa,
|
|
1549
|
+
0,
|
|
1550
|
+
[_fin, _nT],
|
|
1551
|
+
[() => ValidatePolicyFindingList, 0], 1
|
|
1552
|
+
];
|
|
1553
|
+
var ValidationExceptionField$ = [3, n0, _VEF,
|
|
1554
|
+
0,
|
|
1555
|
+
[_n, _m],
|
|
1556
|
+
[0, 0], 2
|
|
1557
|
+
];
|
|
1558
|
+
var VpcConfiguration$ = [3, n0, _VC,
|
|
1559
|
+
0,
|
|
1560
|
+
[_vI],
|
|
1561
|
+
[0], 1
|
|
1562
|
+
];
|
|
1563
|
+
var __Unit = "unit";
|
|
1564
|
+
var AccessList = [1, n0, _AL,
|
|
1565
|
+
0, () => Access$
|
|
1566
|
+
];
|
|
1567
|
+
var AccessPreviewFindingsList = [1, n0, _APFL,
|
|
1568
|
+
0, () => AccessPreviewFinding$
|
|
1569
|
+
];
|
|
1570
|
+
var AccessPreviewsList = [1, n0, _APL,
|
|
1571
|
+
0, () => AccessPreviewSummary$
|
|
1572
|
+
];
|
|
1573
|
+
var AccountAggregations = [1, n0, _AA,
|
|
1574
|
+
0, () => FindingAggregationAccountDetails$
|
|
1575
|
+
];
|
|
1576
|
+
var AnalysisRuleCriteriaList = [1, n0, _ARCL,
|
|
1577
|
+
0, () => AnalysisRuleCriteria$
|
|
1578
|
+
];
|
|
1579
|
+
var AnalyzedResourcesList = [1, n0, _ARL,
|
|
1580
|
+
0, () => AnalyzedResourceSummary$
|
|
1581
|
+
];
|
|
1582
|
+
var AnalyzersList = [1, n0, _ALn,
|
|
1583
|
+
0, () => AnalyzerSummary$
|
|
1584
|
+
];
|
|
1585
|
+
var ArchiveRulesList = [1, n0, _ARLr,
|
|
1586
|
+
0, () => ArchiveRuleSummary$
|
|
1587
|
+
];
|
|
1588
|
+
var FindingDetailsList = [1, n0, _FDL,
|
|
1589
|
+
0, () => FindingDetails$
|
|
1590
|
+
];
|
|
1591
|
+
var FindingsList = [1, n0, _FL,
|
|
1592
|
+
0, () => FindingSummary$
|
|
1593
|
+
];
|
|
1594
|
+
var FindingsListV2 = [1, n0, _FLV,
|
|
1595
|
+
0, () => FindingSummaryV2$
|
|
1596
|
+
];
|
|
1597
|
+
var FindingSourceList = [1, n0, _FSL,
|
|
1598
|
+
0, () => FindingSource$
|
|
1599
|
+
];
|
|
1600
|
+
var FindingsStatisticsList = [1, n0, _FSLi,
|
|
1601
|
+
0, () => FindingsStatistics$
|
|
1602
|
+
];
|
|
1603
|
+
var GeneratedPolicyList = [1, n0, _GPL,
|
|
1604
|
+
0, () => GeneratedPolicy$
|
|
1605
|
+
];
|
|
1606
|
+
var InlineArchiveRulesList = [1, n0, _IARL,
|
|
1607
|
+
0, () => InlineArchiveRule$
|
|
1608
|
+
];
|
|
1609
|
+
var InternalAccessAnalysisRuleCriteriaList = [1, n0, _IAARCL,
|
|
1610
|
+
0, () => InternalAccessAnalysisRuleCriteria$
|
|
1611
|
+
];
|
|
1612
|
+
var KmsGrantConfigurationsList = [1, n0, _KGCL,
|
|
1613
|
+
0, () => KmsGrantConfiguration$
|
|
1614
|
+
];
|
|
1615
|
+
var LocationList = [1, n0, _LL,
|
|
1616
|
+
0, () => Location$
|
|
1617
|
+
];
|
|
1618
|
+
var PathElementList = [1, n0, _PEL,
|
|
1619
|
+
0, () => PathElement$
|
|
1620
|
+
];
|
|
1621
|
+
var PolicyGenerationList = [1, n0, _PGL,
|
|
1622
|
+
0, () => PolicyGeneration$
|
|
1623
|
+
];
|
|
1624
|
+
var ReasonSummaryList = [1, n0, _RSL,
|
|
1625
|
+
0, () => ReasonSummary$
|
|
1626
|
+
];
|
|
1627
|
+
var RecommendedStepList = [1, n0, _RSLe,
|
|
1628
|
+
0, () => RecommendedStep$
|
|
1629
|
+
];
|
|
1630
|
+
var S3BucketAclGrantConfigurationsList = [1, n0, _SBAGCL,
|
|
1631
|
+
0, () => S3BucketAclGrantConfiguration$
|
|
1632
|
+
];
|
|
1633
|
+
var TrailList = [1, n0, _TLr,
|
|
1634
|
+
0, () => Trail$
|
|
1635
|
+
];
|
|
1636
|
+
var TrailPropertiesList = [1, n0, _TPL,
|
|
1637
|
+
0, () => TrailProperties$
|
|
1638
|
+
];
|
|
1639
|
+
var UnusedAccessTypeStatisticsList = [1, n0, _UATSL,
|
|
1640
|
+
0, () => UnusedAccessTypeStatistics$
|
|
1641
|
+
];
|
|
1642
|
+
var UnusedActionList = [1, n0, _UAL,
|
|
1643
|
+
0, () => UnusedAction$
|
|
1644
|
+
];
|
|
1645
|
+
var ValidatePolicyFindingList = [1, n0, _VPFL,
|
|
1646
|
+
0, () => ValidatePolicyFinding$
|
|
1647
|
+
];
|
|
1648
|
+
var ValidationExceptionFieldList = [1, n0, _VEFL,
|
|
1649
|
+
0, () => ValidationExceptionField$
|
|
1650
|
+
];
|
|
1651
|
+
var ConfigurationsMap = [2, n0, _CM,
|
|
1652
|
+
0, 0, () => Configuration$
|
|
1653
|
+
];
|
|
1654
|
+
var FilterCriteriaMap = [2, n0, _FCM,
|
|
1655
|
+
0, 0, () => Criterion$
|
|
1656
|
+
];
|
|
1657
|
+
var InternalAccessResourceTypeStatisticsMap = [2, n0, _IARTSM,
|
|
1658
|
+
0, 0, () => InternalAccessResourceTypeDetails$
|
|
1659
|
+
];
|
|
1660
|
+
var RdsDbClusterSnapshotAttributesMap = [2, n0, _RDCSAM,
|
|
1661
|
+
0, 0, () => RdsDbClusterSnapshotAttributeValue$
|
|
1662
|
+
];
|
|
1663
|
+
var RdsDbSnapshotAttributesMap = [2, n0, _RDSAM,
|
|
1664
|
+
0, 0, () => RdsDbSnapshotAttributeValue$
|
|
1665
|
+
];
|
|
1666
|
+
var ResourceTypeStatisticsMap = [2, n0, _RTSM,
|
|
1667
|
+
0, 0, () => ResourceTypeDetails$
|
|
1668
|
+
];
|
|
1669
|
+
var S3AccessPointConfigurationsMap = [2, n0, _SAPCM,
|
|
1670
|
+
0, 0, () => S3AccessPointConfiguration$
|
|
1671
|
+
];
|
|
1672
|
+
var S3ExpressDirectoryAccessPointConfigurationsMap = [2, n0, _SEDAPCM,
|
|
1673
|
+
0, 0, () => S3ExpressDirectoryAccessPointConfiguration$
|
|
1674
|
+
];
|
|
1675
|
+
var AclGrantee$ = [4, n0, _AG,
|
|
1676
|
+
0,
|
|
1677
|
+
[_i, _u],
|
|
1678
|
+
[0, 0]
|
|
1679
|
+
];
|
|
1680
|
+
var AnalyzerConfiguration$ = [4, n0, _AC,
|
|
1681
|
+
0,
|
|
1682
|
+
[_uAn, _iAn],
|
|
1683
|
+
[() => UnusedAccessConfiguration$, () => InternalAccessConfiguration$]
|
|
1684
|
+
];
|
|
1685
|
+
var Configuration$ = [4, n0, _Co,
|
|
1686
|
+
0,
|
|
1687
|
+
[_eS, _eR, _iR, _eFSf, _kK, _rDCS, _rDS, _sMS, _sB, _sTn, _sQ, _sEDB, _dS, _dT],
|
|
1688
|
+
[() => EbsSnapshotConfiguration$, () => EcrRepositoryConfiguration$, () => IamRoleConfiguration$, () => EfsFileSystemConfiguration$, () => KmsKeyConfiguration$, () => RdsDbClusterSnapshotConfiguration$, () => RdsDbSnapshotConfiguration$, () => SecretsManagerSecretConfiguration$, () => S3BucketConfiguration$, () => SnsTopicConfiguration$, () => SqsQueueConfiguration$, () => S3ExpressDirectoryBucketConfiguration$, () => DynamodbStreamConfiguration$, () => DynamodbTableConfiguration$]
|
|
1689
|
+
];
|
|
1690
|
+
var FindingDetails$ = [4, n0, _FD,
|
|
1691
|
+
0,
|
|
1692
|
+
[_iAD, _eAD, _uPD, _uIUAKD, _uIRD, _uIUPD],
|
|
1693
|
+
[() => InternalAccessDetails$, () => ExternalAccessDetails$, () => UnusedPermissionDetails$, () => UnusedIamUserAccessKeyDetails$, () => UnusedIamRoleDetails$, () => UnusedIamUserPasswordDetails$]
|
|
1694
|
+
];
|
|
1695
|
+
var FindingsStatistics$ = [4, n0, _FSin,
|
|
1696
|
+
0,
|
|
1697
|
+
[_eAFS, _iAFS, _uAFS],
|
|
1698
|
+
[() => ExternalAccessFindingsStatistics$, () => InternalAccessFindingsStatistics$, () => UnusedAccessFindingsStatistics$]
|
|
1699
|
+
];
|
|
1700
|
+
var NetworkOriginConfiguration$ = [4, n0, _NOC,
|
|
1701
|
+
0,
|
|
1702
|
+
[_vC, _iCn],
|
|
1703
|
+
[() => VpcConfiguration$, () => InternetConfiguration$]
|
|
1704
|
+
];
|
|
1705
|
+
var PathElement$ = [4, n0, _PE,
|
|
1706
|
+
0,
|
|
1707
|
+
[_ind, _k, _su, _v],
|
|
1708
|
+
[1, 0, () => Substring$, 0]
|
|
1709
|
+
];
|
|
1710
|
+
var RdsDbClusterSnapshotAttributeValue$ = [4, n0, _RDCSAV,
|
|
1711
|
+
0,
|
|
1712
|
+
[_aI],
|
|
1713
|
+
[64 | 0]
|
|
1714
|
+
];
|
|
1715
|
+
var RdsDbSnapshotAttributeValue$ = [4, n0, _RDSAV,
|
|
1716
|
+
0,
|
|
1717
|
+
[_aI],
|
|
1718
|
+
[64 | 0]
|
|
1719
|
+
];
|
|
1720
|
+
var RecommendedStep$ = [4, n0, _RSe,
|
|
1721
|
+
0,
|
|
1722
|
+
[_uPRS],
|
|
1723
|
+
[() => UnusedPermissionsRecommendedStep$]
|
|
1724
|
+
];
|
|
1725
|
+
var ApplyArchiveRule$ = [9, n0, _AAR,
|
|
1726
|
+
{ [_h]: ["PUT", "/archive-rule", 200] }, () => ApplyArchiveRuleRequest$, () => __Unit
|
|
1727
|
+
];
|
|
1728
|
+
var CancelPolicyGeneration$ = [9, n0, _CPG,
|
|
1729
|
+
{ [_h]: ["PUT", "/policy/generation/{jobId}", 200] }, () => CancelPolicyGenerationRequest$, () => CancelPolicyGenerationResponse$
|
|
1730
|
+
];
|
|
1731
|
+
var CheckAccessNotGranted$ = [9, n0, _CANG,
|
|
1732
|
+
{ [_h]: ["POST", "/policy/check-access-not-granted", 200] }, () => CheckAccessNotGrantedRequest$, () => CheckAccessNotGrantedResponse$
|
|
1733
|
+
];
|
|
1734
|
+
var CheckNoNewAccess$ = [9, n0, _CNNA,
|
|
1735
|
+
{ [_h]: ["POST", "/policy/check-no-new-access", 200] }, () => CheckNoNewAccessRequest$, () => CheckNoNewAccessResponse$
|
|
1736
|
+
];
|
|
1737
|
+
var CheckNoPublicAccess$ = [9, n0, _CNPA,
|
|
1738
|
+
{ [_h]: ["POST", "/policy/check-no-public-access", 200] }, () => CheckNoPublicAccessRequest$, () => CheckNoPublicAccessResponse$
|
|
1739
|
+
];
|
|
1740
|
+
var CreateAccessPreview$ = [9, n0, _CAP,
|
|
1741
|
+
{ [_h]: ["PUT", "/access-preview", 200] }, () => CreateAccessPreviewRequest$, () => CreateAccessPreviewResponse$
|
|
1742
|
+
];
|
|
1743
|
+
var CreateAnalyzer$ = [9, n0, _CA,
|
|
1744
|
+
{ [_h]: ["PUT", "/analyzer", 200] }, () => CreateAnalyzerRequest$, () => CreateAnalyzerResponse$
|
|
1745
|
+
];
|
|
1746
|
+
var CreateArchiveRule$ = [9, n0, _CARre,
|
|
1747
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule", 200] }, () => CreateArchiveRuleRequest$, () => __Unit
|
|
1748
|
+
];
|
|
1749
|
+
var CreateServiceLinkedAnalyzer$ = [9, n0, _CSLA,
|
|
1750
|
+
{ [_h]: ["PUT", "/service-linked-analyzer", 200] }, () => CreateServiceLinkedAnalyzerRequest$, () => CreateServiceLinkedAnalyzerResponse$
|
|
1751
|
+
];
|
|
1752
|
+
var DeleteAnalyzer$ = [9, n0, _DA,
|
|
1753
|
+
{ [_h]: ["DELETE", "/analyzer/{analyzerName}", 200] }, () => DeleteAnalyzerRequest$, () => __Unit
|
|
1754
|
+
];
|
|
1755
|
+
var DeleteArchiveRule$ = [9, n0, _DARe,
|
|
1756
|
+
{ [_h]: ["DELETE", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => DeleteArchiveRuleRequest$, () => __Unit
|
|
1757
|
+
];
|
|
1758
|
+
var DeleteServiceLinkedAnalyzer$ = [9, n0, _DSLA,
|
|
1759
|
+
{ [_h]: ["DELETE", "/service-linked-analyzer/{analyzerName}", 200] }, () => DeleteServiceLinkedAnalyzerRequest$, () => __Unit
|
|
1760
|
+
];
|
|
1761
|
+
var GenerateFindingRecommendation$ = [9, n0, _GFRen,
|
|
1762
|
+
{ [_h]: ["POST", "/recommendation/{id}", 200] }, () => GenerateFindingRecommendationRequest$, () => __Unit
|
|
1763
|
+
];
|
|
1764
|
+
var GetAccessPreview$ = [9, n0, _GAP,
|
|
1765
|
+
{ [_h]: ["GET", "/access-preview/{accessPreviewId}", 200] }, () => GetAccessPreviewRequest$, () => GetAccessPreviewResponse$
|
|
1766
|
+
];
|
|
1767
|
+
var GetAnalyzedResource$ = [9, n0, _GARet,
|
|
1768
|
+
{ [_h]: ["GET", "/analyzed-resource", 200] }, () => GetAnalyzedResourceRequest$, () => GetAnalyzedResourceResponse$
|
|
1769
|
+
];
|
|
1770
|
+
var GetAnalyzer$ = [9, n0, _GA,
|
|
1771
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}", 200] }, () => GetAnalyzerRequest$, () => GetAnalyzerResponse$
|
|
1772
|
+
];
|
|
1773
|
+
var GetArchiveRule$ = [9, n0, _GARetr,
|
|
1774
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => GetArchiveRuleRequest$, () => GetArchiveRuleResponse$
|
|
1775
|
+
];
|
|
1776
|
+
var GetFinding$ = [9, n0, _GF,
|
|
1777
|
+
{ [_h]: ["GET", "/finding/{id}", 200] }, () => GetFindingRequest$, () => GetFindingResponse$
|
|
1778
|
+
];
|
|
1779
|
+
var GetFindingRecommendation$ = [9, n0, _GFRet,
|
|
1780
|
+
{ [_h]: ["GET", "/recommendation/{id}", 200] }, () => GetFindingRecommendationRequest$, () => GetFindingRecommendationResponse$
|
|
1781
|
+
];
|
|
1782
|
+
var GetFindingsStatistics$ = [9, n0, _GFS,
|
|
1783
|
+
{ [_h]: ["POST", "/analyzer/findings/statistics", 200] }, () => GetFindingsStatisticsRequest$, () => GetFindingsStatisticsResponse$
|
|
1784
|
+
];
|
|
1785
|
+
var GetFindingV2$ = [9, n0, _GFV,
|
|
1786
|
+
{ [_h]: ["GET", "/findingv2/{id}", 200] }, () => GetFindingV2Request$, () => GetFindingV2Response$
|
|
1787
|
+
];
|
|
1788
|
+
var GetGeneratedPolicy$ = [9, n0, _GGP,
|
|
1789
|
+
{ [_h]: ["GET", "/policy/generation/{jobId}", 200] }, () => GetGeneratedPolicyRequest$, () => GetGeneratedPolicyResponse$
|
|
1790
|
+
];
|
|
1791
|
+
var ListAccessPreviewFindings$ = [9, n0, _LAPF,
|
|
1792
|
+
{ [_h]: ["POST", "/access-preview/{accessPreviewId}", 200] }, () => ListAccessPreviewFindingsRequest$, () => ListAccessPreviewFindingsResponse$
|
|
1793
|
+
];
|
|
1794
|
+
var ListAccessPreviews$ = [9, n0, _LAP,
|
|
1795
|
+
{ [_h]: ["GET", "/access-preview", 200] }, () => ListAccessPreviewsRequest$, () => ListAccessPreviewsResponse$
|
|
1796
|
+
];
|
|
1797
|
+
var ListAnalyzedResources$ = [9, n0, _LARis,
|
|
1798
|
+
{ [_h]: ["POST", "/analyzed-resource", 200] }, () => ListAnalyzedResourcesRequest$, () => ListAnalyzedResourcesResponse$
|
|
1799
|
+
];
|
|
1800
|
+
var ListAnalyzers$ = [9, n0, _LA,
|
|
1801
|
+
{ [_h]: ["GET", "/analyzer", 200] }, () => ListAnalyzersRequest$, () => ListAnalyzersResponse$
|
|
1802
|
+
];
|
|
1803
|
+
var ListArchiveRules$ = [9, n0, _LARist,
|
|
1804
|
+
{ [_h]: ["GET", "/analyzer/{analyzerName}/archive-rule", 200] }, () => ListArchiveRulesRequest$, () => ListArchiveRulesResponse$
|
|
1805
|
+
];
|
|
1806
|
+
var ListFindings$ = [9, n0, _LF,
|
|
1807
|
+
{ [_h]: ["POST", "/finding", 200] }, () => ListFindingsRequest$, () => ListFindingsResponse$
|
|
1808
|
+
];
|
|
1809
|
+
var ListFindingsV2$ = [9, n0, _LFV,
|
|
1810
|
+
{ [_h]: ["POST", "/findingv2", 200] }, () => ListFindingsV2Request$, () => ListFindingsV2Response$
|
|
1811
|
+
];
|
|
1812
|
+
var ListPolicyGenerations$ = [9, n0, _LPG,
|
|
1813
|
+
{ [_h]: ["GET", "/policy/generation", 200] }, () => ListPolicyGenerationsRequest$, () => ListPolicyGenerationsResponse$
|
|
1814
|
+
];
|
|
1815
|
+
var ListTagsForResource$ = [9, n0, _LTFR,
|
|
1816
|
+
{ [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
|
|
1817
|
+
];
|
|
1818
|
+
var StartPolicyGeneration$ = [9, n0, _SPG,
|
|
1819
|
+
{ [_h]: ["PUT", "/policy/generation", 200] }, () => StartPolicyGenerationRequest$, () => StartPolicyGenerationResponse$
|
|
1820
|
+
];
|
|
1821
|
+
var StartResourceScan$ = [9, n0, _SRS,
|
|
1822
|
+
{ [_h]: ["POST", "/resource/scan", 200] }, () => StartResourceScanRequest$, () => __Unit
|
|
1823
|
+
];
|
|
1824
|
+
var TagResource$ = [9, n0, _TR,
|
|
1825
|
+
{ [_h]: ["POST", "/tags/{resourceArn}", 200] }, () => TagResourceRequest$, () => TagResourceResponse$
|
|
1826
|
+
];
|
|
1827
|
+
var UntagResource$ = [9, n0, _UR,
|
|
1828
|
+
{ [_h]: ["DELETE", "/tags/{resourceArn}", 200] }, () => UntagResourceRequest$, () => UntagResourceResponse$
|
|
1829
|
+
];
|
|
1830
|
+
var UpdateAnalyzer$ = [9, n0, _UAp,
|
|
1831
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}", 200] }, () => UpdateAnalyzerRequest$, () => UpdateAnalyzerResponse$
|
|
1832
|
+
];
|
|
1833
|
+
var UpdateArchiveRule$ = [9, n0, _UARpd,
|
|
1834
|
+
{ [_h]: ["PUT", "/analyzer/{analyzerName}/archive-rule/{ruleName}", 200] }, () => UpdateArchiveRuleRequest$, () => __Unit
|
|
1835
|
+
];
|
|
1836
|
+
var UpdateFindings$ = [9, n0, _UF,
|
|
1837
|
+
{ [_h]: ["PUT", "/finding", 200] }, () => UpdateFindingsRequest$, () => __Unit
|
|
1838
|
+
];
|
|
1839
|
+
var ValidatePolicy$ = [9, n0, _VP,
|
|
1840
|
+
{ [_h]: ["POST", "/policy/validation", 200] }, () => ValidatePolicyRequest$, () => ValidatePolicyResponse$
|
|
1841
|
+
];
|
|
1842
|
+
|
|
1843
|
+
const getRuntimeConfig$1 = (config) => {
|
|
1844
|
+
return {
|
|
1845
|
+
apiVersion: "2019-11-01",
|
|
1846
|
+
base64Decoder: config?.base64Decoder ?? fromBase64,
|
|
1847
|
+
base64Encoder: config?.base64Encoder ?? toBase64,
|
|
1848
|
+
disableHostPrefix: config?.disableHostPrefix ?? false,
|
|
1849
|
+
endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
|
|
1850
|
+
extensions: config?.extensions ?? [],
|
|
1851
|
+
httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultAccessAnalyzerHttpAuthSchemeProvider,
|
|
1852
|
+
httpAuthSchemes: config?.httpAuthSchemes ?? [
|
|
1853
|
+
{
|
|
1854
|
+
schemeId: "aws.auth#sigv4",
|
|
1855
|
+
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
1856
|
+
signer: new AwsSdkSigV4Signer(),
|
|
1857
|
+
},
|
|
1858
|
+
],
|
|
1859
|
+
logger: config?.logger ?? new NoOpLogger(),
|
|
1860
|
+
protocol: config?.protocol ?? AwsRestJsonProtocol,
|
|
1861
|
+
protocolSettings: config?.protocolSettings ?? {
|
|
1862
|
+
defaultNamespace: "com.amazonaws.accessanalyzer",
|
|
1863
|
+
errorTypeRegistries,
|
|
1864
|
+
version: "2019-11-01",
|
|
1865
|
+
serviceTarget: "AccessAnalyzer",
|
|
1866
|
+
},
|
|
1867
|
+
serviceId: config?.serviceId ?? "AccessAnalyzer",
|
|
1868
|
+
sha256: config?.sha256 ?? Sha256,
|
|
1869
|
+
urlParser: config?.urlParser ?? parseUrl,
|
|
1870
|
+
utf8Decoder: config?.utf8Decoder ?? fromUtf8,
|
|
1871
|
+
utf8Encoder: config?.utf8Encoder ?? toUtf8,
|
|
1872
|
+
};
|
|
1873
|
+
};
|
|
1874
|
+
|
|
1875
|
+
const getRuntimeConfig = (config) => {
|
|
1876
|
+
emitWarningIfUnsupportedVersion(process.version);
|
|
1877
|
+
const defaultsMode = resolveDefaultsModeConfig(config);
|
|
1878
|
+
const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
|
|
1879
|
+
const clientSharedValues = getRuntimeConfig$1(config);
|
|
1880
|
+
emitWarningIfUnsupportedVersion$1(process.version);
|
|
1881
|
+
const loaderConfig = {
|
|
1882
|
+
profile: config?.profile,
|
|
1883
|
+
logger: clientSharedValues.logger,
|
|
1884
|
+
};
|
|
1885
|
+
return {
|
|
1886
|
+
...clientSharedValues,
|
|
1887
|
+
...config,
|
|
1888
|
+
runtime: "node",
|
|
1889
|
+
defaultsMode,
|
|
1890
|
+
authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
1891
|
+
bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
|
|
1892
|
+
credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
|
|
1893
|
+
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
|
|
1894
|
+
maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
|
|
1895
|
+
region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
|
|
1896
|
+
requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
|
|
1897
|
+
retryMode: config?.retryMode ??
|
|
1898
|
+
loadConfig({
|
|
1899
|
+
...NODE_RETRY_MODE_CONFIG_OPTIONS,
|
|
1900
|
+
default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
|
|
1901
|
+
}, config),
|
|
1902
|
+
streamCollector: config?.streamCollector ?? streamCollector,
|
|
1903
|
+
useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1904
|
+
useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
|
|
1905
|
+
userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
|
|
34
1909
|
const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
|
|
35
1910
|
const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
|
|
36
1911
|
let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
|
|
@@ -890,80 +2765,299 @@ const ValidatePolicyFindingType = {
|
|
|
890
2765
|
WARNING: "WARNING",
|
|
891
2766
|
};
|
|
892
2767
|
|
|
2768
|
+
exports.Access$ = Access$;
|
|
893
2769
|
exports.AccessAnalyzer = AccessAnalyzer;
|
|
894
2770
|
exports.AccessAnalyzerClient = AccessAnalyzerClient;
|
|
2771
|
+
exports.AccessAnalyzerServiceException = AccessAnalyzerServiceException;
|
|
2772
|
+
exports.AccessAnalyzerServiceException$ = AccessAnalyzerServiceException$;
|
|
895
2773
|
exports.AccessCheckPolicyType = AccessCheckPolicyType;
|
|
896
2774
|
exports.AccessCheckResourceType = AccessCheckResourceType;
|
|
2775
|
+
exports.AccessDeniedException = AccessDeniedException;
|
|
2776
|
+
exports.AccessDeniedException$ = AccessDeniedException$;
|
|
2777
|
+
exports.AccessPreview$ = AccessPreview$;
|
|
2778
|
+
exports.AccessPreviewFinding$ = AccessPreviewFinding$;
|
|
897
2779
|
exports.AccessPreviewStatus = AccessPreviewStatus;
|
|
2780
|
+
exports.AccessPreviewStatusReason$ = AccessPreviewStatusReason$;
|
|
898
2781
|
exports.AccessPreviewStatusReasonCode = AccessPreviewStatusReasonCode;
|
|
2782
|
+
exports.AccessPreviewSummary$ = AccessPreviewSummary$;
|
|
2783
|
+
exports.AclGrantee$ = AclGrantee$;
|
|
899
2784
|
exports.AclPermission = AclPermission;
|
|
2785
|
+
exports.AnalysisRule$ = AnalysisRule$;
|
|
2786
|
+
exports.AnalysisRuleCriteria$ = AnalysisRuleCriteria$;
|
|
2787
|
+
exports.AnalyzedResource$ = AnalyzedResource$;
|
|
2788
|
+
exports.AnalyzedResourceSummary$ = AnalyzedResourceSummary$;
|
|
2789
|
+
exports.AnalyzerConfiguration$ = AnalyzerConfiguration$;
|
|
900
2790
|
exports.AnalyzerStatus = AnalyzerStatus;
|
|
2791
|
+
exports.AnalyzerSummary$ = AnalyzerSummary$;
|
|
2792
|
+
exports.ApplyArchiveRule$ = ApplyArchiveRule$;
|
|
901
2793
|
exports.ApplyArchiveRuleCommand = ApplyArchiveRuleCommand;
|
|
2794
|
+
exports.ApplyArchiveRuleRequest$ = ApplyArchiveRuleRequest$;
|
|
2795
|
+
exports.ArchiveRuleSummary$ = ArchiveRuleSummary$;
|
|
2796
|
+
exports.CancelPolicyGeneration$ = CancelPolicyGeneration$;
|
|
902
2797
|
exports.CancelPolicyGenerationCommand = CancelPolicyGenerationCommand;
|
|
2798
|
+
exports.CancelPolicyGenerationRequest$ = CancelPolicyGenerationRequest$;
|
|
2799
|
+
exports.CancelPolicyGenerationResponse$ = CancelPolicyGenerationResponse$;
|
|
2800
|
+
exports.CheckAccessNotGranted$ = CheckAccessNotGranted$;
|
|
903
2801
|
exports.CheckAccessNotGrantedCommand = CheckAccessNotGrantedCommand;
|
|
2802
|
+
exports.CheckAccessNotGrantedRequest$ = CheckAccessNotGrantedRequest$;
|
|
2803
|
+
exports.CheckAccessNotGrantedResponse$ = CheckAccessNotGrantedResponse$;
|
|
904
2804
|
exports.CheckAccessNotGrantedResult = CheckAccessNotGrantedResult;
|
|
2805
|
+
exports.CheckNoNewAccess$ = CheckNoNewAccess$;
|
|
905
2806
|
exports.CheckNoNewAccessCommand = CheckNoNewAccessCommand;
|
|
2807
|
+
exports.CheckNoNewAccessRequest$ = CheckNoNewAccessRequest$;
|
|
2808
|
+
exports.CheckNoNewAccessResponse$ = CheckNoNewAccessResponse$;
|
|
906
2809
|
exports.CheckNoNewAccessResult = CheckNoNewAccessResult;
|
|
2810
|
+
exports.CheckNoPublicAccess$ = CheckNoPublicAccess$;
|
|
907
2811
|
exports.CheckNoPublicAccessCommand = CheckNoPublicAccessCommand;
|
|
2812
|
+
exports.CheckNoPublicAccessRequest$ = CheckNoPublicAccessRequest$;
|
|
2813
|
+
exports.CheckNoPublicAccessResponse$ = CheckNoPublicAccessResponse$;
|
|
908
2814
|
exports.CheckNoPublicAccessResult = CheckNoPublicAccessResult;
|
|
2815
|
+
exports.CloudTrailDetails$ = CloudTrailDetails$;
|
|
2816
|
+
exports.CloudTrailProperties$ = CloudTrailProperties$;
|
|
2817
|
+
exports.Configuration$ = Configuration$;
|
|
2818
|
+
exports.ConflictException = ConflictException;
|
|
2819
|
+
exports.ConflictException$ = ConflictException$;
|
|
2820
|
+
exports.CreateAccessPreview$ = CreateAccessPreview$;
|
|
909
2821
|
exports.CreateAccessPreviewCommand = CreateAccessPreviewCommand;
|
|
2822
|
+
exports.CreateAccessPreviewRequest$ = CreateAccessPreviewRequest$;
|
|
2823
|
+
exports.CreateAccessPreviewResponse$ = CreateAccessPreviewResponse$;
|
|
2824
|
+
exports.CreateAnalyzer$ = CreateAnalyzer$;
|
|
910
2825
|
exports.CreateAnalyzerCommand = CreateAnalyzerCommand;
|
|
2826
|
+
exports.CreateAnalyzerRequest$ = CreateAnalyzerRequest$;
|
|
2827
|
+
exports.CreateAnalyzerResponse$ = CreateAnalyzerResponse$;
|
|
2828
|
+
exports.CreateArchiveRule$ = CreateArchiveRule$;
|
|
911
2829
|
exports.CreateArchiveRuleCommand = CreateArchiveRuleCommand;
|
|
2830
|
+
exports.CreateArchiveRuleRequest$ = CreateArchiveRuleRequest$;
|
|
2831
|
+
exports.CreateServiceLinkedAnalyzer$ = CreateServiceLinkedAnalyzer$;
|
|
912
2832
|
exports.CreateServiceLinkedAnalyzerCommand = CreateServiceLinkedAnalyzerCommand;
|
|
2833
|
+
exports.CreateServiceLinkedAnalyzerRequest$ = CreateServiceLinkedAnalyzerRequest$;
|
|
2834
|
+
exports.CreateServiceLinkedAnalyzerResponse$ = CreateServiceLinkedAnalyzerResponse$;
|
|
2835
|
+
exports.Criterion$ = Criterion$;
|
|
2836
|
+
exports.DeleteAnalyzer$ = DeleteAnalyzer$;
|
|
913
2837
|
exports.DeleteAnalyzerCommand = DeleteAnalyzerCommand;
|
|
2838
|
+
exports.DeleteAnalyzerRequest$ = DeleteAnalyzerRequest$;
|
|
2839
|
+
exports.DeleteArchiveRule$ = DeleteArchiveRule$;
|
|
914
2840
|
exports.DeleteArchiveRuleCommand = DeleteArchiveRuleCommand;
|
|
2841
|
+
exports.DeleteArchiveRuleRequest$ = DeleteArchiveRuleRequest$;
|
|
2842
|
+
exports.DeleteServiceLinkedAnalyzer$ = DeleteServiceLinkedAnalyzer$;
|
|
915
2843
|
exports.DeleteServiceLinkedAnalyzerCommand = DeleteServiceLinkedAnalyzerCommand;
|
|
2844
|
+
exports.DeleteServiceLinkedAnalyzerRequest$ = DeleteServiceLinkedAnalyzerRequest$;
|
|
2845
|
+
exports.DynamodbStreamConfiguration$ = DynamodbStreamConfiguration$;
|
|
2846
|
+
exports.DynamodbTableConfiguration$ = DynamodbTableConfiguration$;
|
|
2847
|
+
exports.EbsSnapshotConfiguration$ = EbsSnapshotConfiguration$;
|
|
2848
|
+
exports.EcrRepositoryConfiguration$ = EcrRepositoryConfiguration$;
|
|
2849
|
+
exports.EfsFileSystemConfiguration$ = EfsFileSystemConfiguration$;
|
|
2850
|
+
exports.ExternalAccessDetails$ = ExternalAccessDetails$;
|
|
2851
|
+
exports.ExternalAccessFindingsStatistics$ = ExternalAccessFindingsStatistics$;
|
|
2852
|
+
exports.Finding$ = Finding$;
|
|
2853
|
+
exports.FindingAggregationAccountDetails$ = FindingAggregationAccountDetails$;
|
|
916
2854
|
exports.FindingChangeType = FindingChangeType;
|
|
2855
|
+
exports.FindingDetails$ = FindingDetails$;
|
|
2856
|
+
exports.FindingSource$ = FindingSource$;
|
|
2857
|
+
exports.FindingSourceDetail$ = FindingSourceDetail$;
|
|
917
2858
|
exports.FindingSourceType = FindingSourceType;
|
|
918
2859
|
exports.FindingStatus = FindingStatus;
|
|
919
2860
|
exports.FindingStatusUpdate = FindingStatusUpdate;
|
|
2861
|
+
exports.FindingSummary$ = FindingSummary$;
|
|
2862
|
+
exports.FindingSummaryV2$ = FindingSummaryV2$;
|
|
920
2863
|
exports.FindingType = FindingType;
|
|
2864
|
+
exports.FindingsStatistics$ = FindingsStatistics$;
|
|
2865
|
+
exports.GenerateFindingRecommendation$ = GenerateFindingRecommendation$;
|
|
921
2866
|
exports.GenerateFindingRecommendationCommand = GenerateFindingRecommendationCommand;
|
|
2867
|
+
exports.GenerateFindingRecommendationRequest$ = GenerateFindingRecommendationRequest$;
|
|
2868
|
+
exports.GeneratedPolicy$ = GeneratedPolicy$;
|
|
2869
|
+
exports.GeneratedPolicyProperties$ = GeneratedPolicyProperties$;
|
|
2870
|
+
exports.GeneratedPolicyResult$ = GeneratedPolicyResult$;
|
|
2871
|
+
exports.GetAccessPreview$ = GetAccessPreview$;
|
|
922
2872
|
exports.GetAccessPreviewCommand = GetAccessPreviewCommand;
|
|
2873
|
+
exports.GetAccessPreviewRequest$ = GetAccessPreviewRequest$;
|
|
2874
|
+
exports.GetAccessPreviewResponse$ = GetAccessPreviewResponse$;
|
|
2875
|
+
exports.GetAnalyzedResource$ = GetAnalyzedResource$;
|
|
923
2876
|
exports.GetAnalyzedResourceCommand = GetAnalyzedResourceCommand;
|
|
2877
|
+
exports.GetAnalyzedResourceRequest$ = GetAnalyzedResourceRequest$;
|
|
2878
|
+
exports.GetAnalyzedResourceResponse$ = GetAnalyzedResourceResponse$;
|
|
2879
|
+
exports.GetAnalyzer$ = GetAnalyzer$;
|
|
924
2880
|
exports.GetAnalyzerCommand = GetAnalyzerCommand;
|
|
2881
|
+
exports.GetAnalyzerRequest$ = GetAnalyzerRequest$;
|
|
2882
|
+
exports.GetAnalyzerResponse$ = GetAnalyzerResponse$;
|
|
2883
|
+
exports.GetArchiveRule$ = GetArchiveRule$;
|
|
925
2884
|
exports.GetArchiveRuleCommand = GetArchiveRuleCommand;
|
|
2885
|
+
exports.GetArchiveRuleRequest$ = GetArchiveRuleRequest$;
|
|
2886
|
+
exports.GetArchiveRuleResponse$ = GetArchiveRuleResponse$;
|
|
2887
|
+
exports.GetFinding$ = GetFinding$;
|
|
926
2888
|
exports.GetFindingCommand = GetFindingCommand;
|
|
2889
|
+
exports.GetFindingRecommendation$ = GetFindingRecommendation$;
|
|
927
2890
|
exports.GetFindingRecommendationCommand = GetFindingRecommendationCommand;
|
|
2891
|
+
exports.GetFindingRecommendationRequest$ = GetFindingRecommendationRequest$;
|
|
2892
|
+
exports.GetFindingRecommendationResponse$ = GetFindingRecommendationResponse$;
|
|
2893
|
+
exports.GetFindingRequest$ = GetFindingRequest$;
|
|
2894
|
+
exports.GetFindingResponse$ = GetFindingResponse$;
|
|
2895
|
+
exports.GetFindingV2$ = GetFindingV2$;
|
|
928
2896
|
exports.GetFindingV2Command = GetFindingV2Command;
|
|
2897
|
+
exports.GetFindingV2Request$ = GetFindingV2Request$;
|
|
2898
|
+
exports.GetFindingV2Response$ = GetFindingV2Response$;
|
|
2899
|
+
exports.GetFindingsStatistics$ = GetFindingsStatistics$;
|
|
929
2900
|
exports.GetFindingsStatisticsCommand = GetFindingsStatisticsCommand;
|
|
2901
|
+
exports.GetFindingsStatisticsRequest$ = GetFindingsStatisticsRequest$;
|
|
2902
|
+
exports.GetFindingsStatisticsResponse$ = GetFindingsStatisticsResponse$;
|
|
2903
|
+
exports.GetGeneratedPolicy$ = GetGeneratedPolicy$;
|
|
930
2904
|
exports.GetGeneratedPolicyCommand = GetGeneratedPolicyCommand;
|
|
2905
|
+
exports.GetGeneratedPolicyRequest$ = GetGeneratedPolicyRequest$;
|
|
2906
|
+
exports.GetGeneratedPolicyResponse$ = GetGeneratedPolicyResponse$;
|
|
2907
|
+
exports.IamRoleConfiguration$ = IamRoleConfiguration$;
|
|
2908
|
+
exports.InlineArchiveRule$ = InlineArchiveRule$;
|
|
2909
|
+
exports.InternalAccessAnalysisRule$ = InternalAccessAnalysisRule$;
|
|
2910
|
+
exports.InternalAccessAnalysisRuleCriteria$ = InternalAccessAnalysisRuleCriteria$;
|
|
2911
|
+
exports.InternalAccessConfiguration$ = InternalAccessConfiguration$;
|
|
2912
|
+
exports.InternalAccessDetails$ = InternalAccessDetails$;
|
|
2913
|
+
exports.InternalAccessFindingsStatistics$ = InternalAccessFindingsStatistics$;
|
|
2914
|
+
exports.InternalAccessResourceTypeDetails$ = InternalAccessResourceTypeDetails$;
|
|
931
2915
|
exports.InternalAccessType = InternalAccessType;
|
|
2916
|
+
exports.InternalServerException = InternalServerException;
|
|
2917
|
+
exports.InternalServerException$ = InternalServerException$;
|
|
2918
|
+
exports.InternetConfiguration$ = InternetConfiguration$;
|
|
2919
|
+
exports.InvalidParameterException = InvalidParameterException;
|
|
2920
|
+
exports.InvalidParameterException$ = InvalidParameterException$;
|
|
2921
|
+
exports.JobDetails$ = JobDetails$;
|
|
2922
|
+
exports.JobError$ = JobError$;
|
|
932
2923
|
exports.JobErrorCode = JobErrorCode;
|
|
933
2924
|
exports.JobStatus = JobStatus;
|
|
2925
|
+
exports.KmsGrantConfiguration$ = KmsGrantConfiguration$;
|
|
2926
|
+
exports.KmsGrantConstraints$ = KmsGrantConstraints$;
|
|
934
2927
|
exports.KmsGrantOperation = KmsGrantOperation;
|
|
2928
|
+
exports.KmsKeyConfiguration$ = KmsKeyConfiguration$;
|
|
2929
|
+
exports.ListAccessPreviewFindings$ = ListAccessPreviewFindings$;
|
|
935
2930
|
exports.ListAccessPreviewFindingsCommand = ListAccessPreviewFindingsCommand;
|
|
2931
|
+
exports.ListAccessPreviewFindingsRequest$ = ListAccessPreviewFindingsRequest$;
|
|
2932
|
+
exports.ListAccessPreviewFindingsResponse$ = ListAccessPreviewFindingsResponse$;
|
|
2933
|
+
exports.ListAccessPreviews$ = ListAccessPreviews$;
|
|
936
2934
|
exports.ListAccessPreviewsCommand = ListAccessPreviewsCommand;
|
|
2935
|
+
exports.ListAccessPreviewsRequest$ = ListAccessPreviewsRequest$;
|
|
2936
|
+
exports.ListAccessPreviewsResponse$ = ListAccessPreviewsResponse$;
|
|
2937
|
+
exports.ListAnalyzedResources$ = ListAnalyzedResources$;
|
|
937
2938
|
exports.ListAnalyzedResourcesCommand = ListAnalyzedResourcesCommand;
|
|
2939
|
+
exports.ListAnalyzedResourcesRequest$ = ListAnalyzedResourcesRequest$;
|
|
2940
|
+
exports.ListAnalyzedResourcesResponse$ = ListAnalyzedResourcesResponse$;
|
|
2941
|
+
exports.ListAnalyzers$ = ListAnalyzers$;
|
|
938
2942
|
exports.ListAnalyzersCommand = ListAnalyzersCommand;
|
|
2943
|
+
exports.ListAnalyzersRequest$ = ListAnalyzersRequest$;
|
|
2944
|
+
exports.ListAnalyzersResponse$ = ListAnalyzersResponse$;
|
|
2945
|
+
exports.ListArchiveRules$ = ListArchiveRules$;
|
|
939
2946
|
exports.ListArchiveRulesCommand = ListArchiveRulesCommand;
|
|
2947
|
+
exports.ListArchiveRulesRequest$ = ListArchiveRulesRequest$;
|
|
2948
|
+
exports.ListArchiveRulesResponse$ = ListArchiveRulesResponse$;
|
|
2949
|
+
exports.ListFindings$ = ListFindings$;
|
|
940
2950
|
exports.ListFindingsCommand = ListFindingsCommand;
|
|
2951
|
+
exports.ListFindingsRequest$ = ListFindingsRequest$;
|
|
2952
|
+
exports.ListFindingsResponse$ = ListFindingsResponse$;
|
|
2953
|
+
exports.ListFindingsV2$ = ListFindingsV2$;
|
|
941
2954
|
exports.ListFindingsV2Command = ListFindingsV2Command;
|
|
2955
|
+
exports.ListFindingsV2Request$ = ListFindingsV2Request$;
|
|
2956
|
+
exports.ListFindingsV2Response$ = ListFindingsV2Response$;
|
|
2957
|
+
exports.ListPolicyGenerations$ = ListPolicyGenerations$;
|
|
942
2958
|
exports.ListPolicyGenerationsCommand = ListPolicyGenerationsCommand;
|
|
2959
|
+
exports.ListPolicyGenerationsRequest$ = ListPolicyGenerationsRequest$;
|
|
2960
|
+
exports.ListPolicyGenerationsResponse$ = ListPolicyGenerationsResponse$;
|
|
2961
|
+
exports.ListTagsForResource$ = ListTagsForResource$;
|
|
943
2962
|
exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
|
|
2963
|
+
exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
|
|
2964
|
+
exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
|
|
944
2965
|
exports.Locale = Locale;
|
|
2966
|
+
exports.Location$ = Location$;
|
|
2967
|
+
exports.NetworkOriginConfiguration$ = NetworkOriginConfiguration$;
|
|
945
2968
|
exports.OrderBy = OrderBy;
|
|
2969
|
+
exports.PathElement$ = PathElement$;
|
|
2970
|
+
exports.PolicyGeneration$ = PolicyGeneration$;
|
|
2971
|
+
exports.PolicyGenerationDetails$ = PolicyGenerationDetails$;
|
|
946
2972
|
exports.PolicyType = PolicyType;
|
|
2973
|
+
exports.Position$ = Position$;
|
|
947
2974
|
exports.PrincipalType = PrincipalType;
|
|
2975
|
+
exports.RdsDbClusterSnapshotAttributeValue$ = RdsDbClusterSnapshotAttributeValue$;
|
|
2976
|
+
exports.RdsDbClusterSnapshotConfiguration$ = RdsDbClusterSnapshotConfiguration$;
|
|
2977
|
+
exports.RdsDbSnapshotAttributeValue$ = RdsDbSnapshotAttributeValue$;
|
|
2978
|
+
exports.RdsDbSnapshotConfiguration$ = RdsDbSnapshotConfiguration$;
|
|
948
2979
|
exports.ReasonCode = ReasonCode;
|
|
2980
|
+
exports.ReasonSummary$ = ReasonSummary$;
|
|
2981
|
+
exports.RecommendationError$ = RecommendationError$;
|
|
949
2982
|
exports.RecommendationType = RecommendationType;
|
|
950
2983
|
exports.RecommendedRemediationAction = RecommendedRemediationAction;
|
|
2984
|
+
exports.RecommendedStep$ = RecommendedStep$;
|
|
951
2985
|
exports.ResourceControlPolicyRestriction = ResourceControlPolicyRestriction;
|
|
2986
|
+
exports.ResourceNotFoundException = ResourceNotFoundException;
|
|
2987
|
+
exports.ResourceNotFoundException$ = ResourceNotFoundException$;
|
|
952
2988
|
exports.ResourceType = ResourceType;
|
|
2989
|
+
exports.ResourceTypeDetails$ = ResourceTypeDetails$;
|
|
2990
|
+
exports.S3AccessPointConfiguration$ = S3AccessPointConfiguration$;
|
|
2991
|
+
exports.S3BucketAclGrantConfiguration$ = S3BucketAclGrantConfiguration$;
|
|
2992
|
+
exports.S3BucketConfiguration$ = S3BucketConfiguration$;
|
|
2993
|
+
exports.S3ExpressDirectoryAccessPointConfiguration$ = S3ExpressDirectoryAccessPointConfiguration$;
|
|
2994
|
+
exports.S3ExpressDirectoryBucketConfiguration$ = S3ExpressDirectoryBucketConfiguration$;
|
|
2995
|
+
exports.S3PublicAccessBlockConfiguration$ = S3PublicAccessBlockConfiguration$;
|
|
2996
|
+
exports.SecretsManagerSecretConfiguration$ = SecretsManagerSecretConfiguration$;
|
|
953
2997
|
exports.ServiceControlPolicyRestriction = ServiceControlPolicyRestriction;
|
|
2998
|
+
exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
|
|
2999
|
+
exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
|
|
3000
|
+
exports.SnsTopicConfiguration$ = SnsTopicConfiguration$;
|
|
3001
|
+
exports.SortCriteria$ = SortCriteria$;
|
|
3002
|
+
exports.Span$ = Span$;
|
|
3003
|
+
exports.SqsQueueConfiguration$ = SqsQueueConfiguration$;
|
|
3004
|
+
exports.StartPolicyGeneration$ = StartPolicyGeneration$;
|
|
954
3005
|
exports.StartPolicyGenerationCommand = StartPolicyGenerationCommand;
|
|
3006
|
+
exports.StartPolicyGenerationRequest$ = StartPolicyGenerationRequest$;
|
|
3007
|
+
exports.StartPolicyGenerationResponse$ = StartPolicyGenerationResponse$;
|
|
3008
|
+
exports.StartResourceScan$ = StartResourceScan$;
|
|
955
3009
|
exports.StartResourceScanCommand = StartResourceScanCommand;
|
|
3010
|
+
exports.StartResourceScanRequest$ = StartResourceScanRequest$;
|
|
956
3011
|
exports.Status = Status;
|
|
3012
|
+
exports.StatusReason$ = StatusReason$;
|
|
3013
|
+
exports.Substring$ = Substring$;
|
|
3014
|
+
exports.TagResource$ = TagResource$;
|
|
957
3015
|
exports.TagResourceCommand = TagResourceCommand;
|
|
3016
|
+
exports.TagResourceRequest$ = TagResourceRequest$;
|
|
3017
|
+
exports.TagResourceResponse$ = TagResourceResponse$;
|
|
3018
|
+
exports.ThrottlingException = ThrottlingException;
|
|
3019
|
+
exports.ThrottlingException$ = ThrottlingException$;
|
|
3020
|
+
exports.Trail$ = Trail$;
|
|
3021
|
+
exports.TrailProperties$ = TrailProperties$;
|
|
958
3022
|
exports.Type = Type;
|
|
3023
|
+
exports.UnprocessableEntityException = UnprocessableEntityException;
|
|
3024
|
+
exports.UnprocessableEntityException$ = UnprocessableEntityException$;
|
|
3025
|
+
exports.UntagResource$ = UntagResource$;
|
|
959
3026
|
exports.UntagResourceCommand = UntagResourceCommand;
|
|
3027
|
+
exports.UntagResourceRequest$ = UntagResourceRequest$;
|
|
3028
|
+
exports.UntagResourceResponse$ = UntagResourceResponse$;
|
|
3029
|
+
exports.UnusedAccessConfiguration$ = UnusedAccessConfiguration$;
|
|
3030
|
+
exports.UnusedAccessFindingsStatistics$ = UnusedAccessFindingsStatistics$;
|
|
3031
|
+
exports.UnusedAccessTypeStatistics$ = UnusedAccessTypeStatistics$;
|
|
3032
|
+
exports.UnusedAction$ = UnusedAction$;
|
|
3033
|
+
exports.UnusedIamRoleDetails$ = UnusedIamRoleDetails$;
|
|
3034
|
+
exports.UnusedIamUserAccessKeyDetails$ = UnusedIamUserAccessKeyDetails$;
|
|
3035
|
+
exports.UnusedIamUserPasswordDetails$ = UnusedIamUserPasswordDetails$;
|
|
3036
|
+
exports.UnusedPermissionDetails$ = UnusedPermissionDetails$;
|
|
3037
|
+
exports.UnusedPermissionsRecommendedStep$ = UnusedPermissionsRecommendedStep$;
|
|
3038
|
+
exports.UpdateAnalyzer$ = UpdateAnalyzer$;
|
|
960
3039
|
exports.UpdateAnalyzerCommand = UpdateAnalyzerCommand;
|
|
3040
|
+
exports.UpdateAnalyzerRequest$ = UpdateAnalyzerRequest$;
|
|
3041
|
+
exports.UpdateAnalyzerResponse$ = UpdateAnalyzerResponse$;
|
|
3042
|
+
exports.UpdateArchiveRule$ = UpdateArchiveRule$;
|
|
961
3043
|
exports.UpdateArchiveRuleCommand = UpdateArchiveRuleCommand;
|
|
3044
|
+
exports.UpdateArchiveRuleRequest$ = UpdateArchiveRuleRequest$;
|
|
3045
|
+
exports.UpdateFindings$ = UpdateFindings$;
|
|
962
3046
|
exports.UpdateFindingsCommand = UpdateFindingsCommand;
|
|
3047
|
+
exports.UpdateFindingsRequest$ = UpdateFindingsRequest$;
|
|
3048
|
+
exports.ValidatePolicy$ = ValidatePolicy$;
|
|
963
3049
|
exports.ValidatePolicyCommand = ValidatePolicyCommand;
|
|
3050
|
+
exports.ValidatePolicyFinding$ = ValidatePolicyFinding$;
|
|
964
3051
|
exports.ValidatePolicyFindingType = ValidatePolicyFindingType;
|
|
3052
|
+
exports.ValidatePolicyRequest$ = ValidatePolicyRequest$;
|
|
965
3053
|
exports.ValidatePolicyResourceType = ValidatePolicyResourceType;
|
|
3054
|
+
exports.ValidatePolicyResponse$ = ValidatePolicyResponse$;
|
|
3055
|
+
exports.ValidationException = ValidationException;
|
|
3056
|
+
exports.ValidationException$ = ValidationException$;
|
|
3057
|
+
exports.ValidationExceptionField$ = ValidationExceptionField$;
|
|
966
3058
|
exports.ValidationExceptionReason = ValidationExceptionReason;
|
|
3059
|
+
exports.VpcConfiguration$ = VpcConfiguration$;
|
|
3060
|
+
exports.errorTypeRegistries = errorTypeRegistries;
|
|
967
3061
|
exports.paginateGetFindingRecommendation = paginateGetFindingRecommendation;
|
|
968
3062
|
exports.paginateGetFindingV2 = paginateGetFindingV2;
|
|
969
3063
|
exports.paginateListAccessPreviewFindings = paginateListAccessPreviewFindings;
|