@aws-sdk/client-config-service 3.1068.0 → 3.1070.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/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +372 -392
- package/dist-cjs/models/ConfigServiceServiceException.js +4 -8
- package/dist-cjs/models/errors.js +113 -173
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +969 -638
- package/package.json +9 -9
|
@@ -1,9 +1,5 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
exports.NoAvailableDeliveryChannelException = exports.MaxNumberOfRetentionConfigurationsExceededException = exports.MaxNumberOfOrganizationConformancePacksExceededException = exports.MaxNumberOfOrganizationConfigRulesExceededException = exports.MaxNumberOfDeliveryChannelsExceededException = exports.MaxNumberOfConformancePacksExceededException = exports.MaxNumberOfConfigurationRecordersExceededException = exports.MaxNumberOfConfigRulesExceededException = exports.MaxActiveResourcesExceededException = exports.LimitExceededException = exports.InvalidSNSTopicARNException = exports.InvalidS3KmsKeyArnException = exports.InvalidS3KeyPrefixException = exports.InvalidRoleException = exports.InvalidResultTokenException = exports.InvalidRecordingGroupException = exports.InvalidExpressionException = exports.InvalidDeliveryChannelNameException = exports.InvalidConfigurationRecorderNameException = exports.InsufficientDeliveryPolicyException = exports.IdempotentParameterMismatch = exports.InvalidTimeRangeException = exports.ResourceNotDiscoveredException = exports.OversizedConfigurationItemException = exports.NoSuchConfigRuleInConformancePackException = exports.InvalidNextTokenException = exports.InvalidLimitException = exports.ResourceNotFoundException = exports.NoSuchRetentionConfigurationException = exports.NoRunningConfigurationRecorderException = exports.NoSuchRemediationExceptionException = exports.RemediationInProgressException = exports.NoSuchRemediationConfigurationException = exports.InsufficientPermissionsException = exports.NoSuchOrganizationConformancePackException = exports.OrganizationAccessDeniedException = exports.NoSuchOrganizationConfigRuleException = exports.NoSuchDeliveryChannelException = exports.LastDeliveryChannelDeleteFailedException = exports.NoSuchConformancePackException = exports.UnmodifiableEntityException = exports.ResourceInUseException = exports.NoSuchConfigRuleException = exports.InvalidParameterValueException = exports.ConformancePackTemplateValidationException = exports.NoAvailableConfigurationRecorderException = exports.NoSuchConfigurationAggregatorException = exports.ValidationException = exports.NoSuchConfigurationRecorderException = exports.ConflictException = void 0;
|
|
4
|
-
exports.TooManyTagsException = exports.ResourceConcurrentModificationException = exports.OrganizationConformancePackTemplateValidationException = exports.OrganizationAllFeaturesNotEnabledException = exports.NoSuchBucketException = exports.NoAvailableOrganizationException = void 0;
|
|
5
|
-
const ConfigServiceServiceException_1 = require("./ConfigServiceServiceException");
|
|
6
|
-
class ConflictException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
1
|
+
const { ConfigServiceServiceException: __BaseException } = require("./ConfigServiceServiceException");
|
|
2
|
+
exports.ConflictException = class ConflictException extends __BaseException {
|
|
7
3
|
name = "ConflictException";
|
|
8
4
|
$fault = "client";
|
|
9
5
|
constructor(opts) {
|
|
@@ -14,9 +10,8 @@ class ConflictException extends ConfigServiceServiceException_1.ConfigServiceSer
|
|
|
14
10
|
});
|
|
15
11
|
Object.setPrototypeOf(this, ConflictException.prototype);
|
|
16
12
|
}
|
|
17
|
-
}
|
|
18
|
-
exports.
|
|
19
|
-
class NoSuchConfigurationRecorderException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
13
|
+
};
|
|
14
|
+
exports.NoSuchConfigurationRecorderException = class NoSuchConfigurationRecorderException extends __BaseException {
|
|
20
15
|
name = "NoSuchConfigurationRecorderException";
|
|
21
16
|
$fault = "client";
|
|
22
17
|
constructor(opts) {
|
|
@@ -27,9 +22,8 @@ class NoSuchConfigurationRecorderException extends ConfigServiceServiceException
|
|
|
27
22
|
});
|
|
28
23
|
Object.setPrototypeOf(this, NoSuchConfigurationRecorderException.prototype);
|
|
29
24
|
}
|
|
30
|
-
}
|
|
31
|
-
exports.
|
|
32
|
-
class ValidationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
25
|
+
};
|
|
26
|
+
exports.ValidationException = class ValidationException extends __BaseException {
|
|
33
27
|
name = "ValidationException";
|
|
34
28
|
$fault = "client";
|
|
35
29
|
constructor(opts) {
|
|
@@ -40,9 +34,8 @@ class ValidationException extends ConfigServiceServiceException_1.ConfigServiceS
|
|
|
40
34
|
});
|
|
41
35
|
Object.setPrototypeOf(this, ValidationException.prototype);
|
|
42
36
|
}
|
|
43
|
-
}
|
|
44
|
-
exports.
|
|
45
|
-
class NoSuchConfigurationAggregatorException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
37
|
+
};
|
|
38
|
+
exports.NoSuchConfigurationAggregatorException = class NoSuchConfigurationAggregatorException extends __BaseException {
|
|
46
39
|
name = "NoSuchConfigurationAggregatorException";
|
|
47
40
|
$fault = "client";
|
|
48
41
|
constructor(opts) {
|
|
@@ -53,9 +46,8 @@ class NoSuchConfigurationAggregatorException extends ConfigServiceServiceExcepti
|
|
|
53
46
|
});
|
|
54
47
|
Object.setPrototypeOf(this, NoSuchConfigurationAggregatorException.prototype);
|
|
55
48
|
}
|
|
56
|
-
}
|
|
57
|
-
exports.
|
|
58
|
-
class NoAvailableConfigurationRecorderException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
49
|
+
};
|
|
50
|
+
exports.NoAvailableConfigurationRecorderException = class NoAvailableConfigurationRecorderException extends __BaseException {
|
|
59
51
|
name = "NoAvailableConfigurationRecorderException";
|
|
60
52
|
$fault = "client";
|
|
61
53
|
constructor(opts) {
|
|
@@ -66,9 +58,8 @@ class NoAvailableConfigurationRecorderException extends ConfigServiceServiceExce
|
|
|
66
58
|
});
|
|
67
59
|
Object.setPrototypeOf(this, NoAvailableConfigurationRecorderException.prototype);
|
|
68
60
|
}
|
|
69
|
-
}
|
|
70
|
-
exports.
|
|
71
|
-
class ConformancePackTemplateValidationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
61
|
+
};
|
|
62
|
+
exports.ConformancePackTemplateValidationException = class ConformancePackTemplateValidationException extends __BaseException {
|
|
72
63
|
name = "ConformancePackTemplateValidationException";
|
|
73
64
|
$fault = "client";
|
|
74
65
|
constructor(opts) {
|
|
@@ -79,9 +70,8 @@ class ConformancePackTemplateValidationException extends ConfigServiceServiceExc
|
|
|
79
70
|
});
|
|
80
71
|
Object.setPrototypeOf(this, ConformancePackTemplateValidationException.prototype);
|
|
81
72
|
}
|
|
82
|
-
}
|
|
83
|
-
exports.
|
|
84
|
-
class InvalidParameterValueException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
73
|
+
};
|
|
74
|
+
exports.InvalidParameterValueException = class InvalidParameterValueException extends __BaseException {
|
|
85
75
|
name = "InvalidParameterValueException";
|
|
86
76
|
$fault = "client";
|
|
87
77
|
constructor(opts) {
|
|
@@ -92,9 +82,8 @@ class InvalidParameterValueException extends ConfigServiceServiceException_1.Con
|
|
|
92
82
|
});
|
|
93
83
|
Object.setPrototypeOf(this, InvalidParameterValueException.prototype);
|
|
94
84
|
}
|
|
95
|
-
}
|
|
96
|
-
exports.
|
|
97
|
-
class NoSuchConfigRuleException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
85
|
+
};
|
|
86
|
+
exports.NoSuchConfigRuleException = class NoSuchConfigRuleException extends __BaseException {
|
|
98
87
|
name = "NoSuchConfigRuleException";
|
|
99
88
|
$fault = "client";
|
|
100
89
|
constructor(opts) {
|
|
@@ -105,9 +94,8 @@ class NoSuchConfigRuleException extends ConfigServiceServiceException_1.ConfigSe
|
|
|
105
94
|
});
|
|
106
95
|
Object.setPrototypeOf(this, NoSuchConfigRuleException.prototype);
|
|
107
96
|
}
|
|
108
|
-
}
|
|
109
|
-
exports.
|
|
110
|
-
class ResourceInUseException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
97
|
+
};
|
|
98
|
+
exports.ResourceInUseException = class ResourceInUseException extends __BaseException {
|
|
111
99
|
name = "ResourceInUseException";
|
|
112
100
|
$fault = "client";
|
|
113
101
|
constructor(opts) {
|
|
@@ -118,9 +106,8 @@ class ResourceInUseException extends ConfigServiceServiceException_1.ConfigServi
|
|
|
118
106
|
});
|
|
119
107
|
Object.setPrototypeOf(this, ResourceInUseException.prototype);
|
|
120
108
|
}
|
|
121
|
-
}
|
|
122
|
-
exports.
|
|
123
|
-
class UnmodifiableEntityException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
109
|
+
};
|
|
110
|
+
exports.UnmodifiableEntityException = class UnmodifiableEntityException extends __BaseException {
|
|
124
111
|
name = "UnmodifiableEntityException";
|
|
125
112
|
$fault = "client";
|
|
126
113
|
constructor(opts) {
|
|
@@ -131,9 +118,8 @@ class UnmodifiableEntityException extends ConfigServiceServiceException_1.Config
|
|
|
131
118
|
});
|
|
132
119
|
Object.setPrototypeOf(this, UnmodifiableEntityException.prototype);
|
|
133
120
|
}
|
|
134
|
-
}
|
|
135
|
-
exports.
|
|
136
|
-
class NoSuchConformancePackException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
121
|
+
};
|
|
122
|
+
exports.NoSuchConformancePackException = class NoSuchConformancePackException extends __BaseException {
|
|
137
123
|
name = "NoSuchConformancePackException";
|
|
138
124
|
$fault = "client";
|
|
139
125
|
constructor(opts) {
|
|
@@ -144,9 +130,8 @@ class NoSuchConformancePackException extends ConfigServiceServiceException_1.Con
|
|
|
144
130
|
});
|
|
145
131
|
Object.setPrototypeOf(this, NoSuchConformancePackException.prototype);
|
|
146
132
|
}
|
|
147
|
-
}
|
|
148
|
-
exports.
|
|
149
|
-
class LastDeliveryChannelDeleteFailedException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
133
|
+
};
|
|
134
|
+
exports.LastDeliveryChannelDeleteFailedException = class LastDeliveryChannelDeleteFailedException extends __BaseException {
|
|
150
135
|
name = "LastDeliveryChannelDeleteFailedException";
|
|
151
136
|
$fault = "client";
|
|
152
137
|
constructor(opts) {
|
|
@@ -157,9 +142,8 @@ class LastDeliveryChannelDeleteFailedException extends ConfigServiceServiceExcep
|
|
|
157
142
|
});
|
|
158
143
|
Object.setPrototypeOf(this, LastDeliveryChannelDeleteFailedException.prototype);
|
|
159
144
|
}
|
|
160
|
-
}
|
|
161
|
-
exports.
|
|
162
|
-
class NoSuchDeliveryChannelException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
145
|
+
};
|
|
146
|
+
exports.NoSuchDeliveryChannelException = class NoSuchDeliveryChannelException extends __BaseException {
|
|
163
147
|
name = "NoSuchDeliveryChannelException";
|
|
164
148
|
$fault = "client";
|
|
165
149
|
constructor(opts) {
|
|
@@ -170,9 +154,8 @@ class NoSuchDeliveryChannelException extends ConfigServiceServiceException_1.Con
|
|
|
170
154
|
});
|
|
171
155
|
Object.setPrototypeOf(this, NoSuchDeliveryChannelException.prototype);
|
|
172
156
|
}
|
|
173
|
-
}
|
|
174
|
-
exports.
|
|
175
|
-
class NoSuchOrganizationConfigRuleException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
157
|
+
};
|
|
158
|
+
exports.NoSuchOrganizationConfigRuleException = class NoSuchOrganizationConfigRuleException extends __BaseException {
|
|
176
159
|
name = "NoSuchOrganizationConfigRuleException";
|
|
177
160
|
$fault = "client";
|
|
178
161
|
constructor(opts) {
|
|
@@ -183,9 +166,8 @@ class NoSuchOrganizationConfigRuleException extends ConfigServiceServiceExceptio
|
|
|
183
166
|
});
|
|
184
167
|
Object.setPrototypeOf(this, NoSuchOrganizationConfigRuleException.prototype);
|
|
185
168
|
}
|
|
186
|
-
}
|
|
187
|
-
exports.
|
|
188
|
-
class OrganizationAccessDeniedException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
169
|
+
};
|
|
170
|
+
exports.OrganizationAccessDeniedException = class OrganizationAccessDeniedException extends __BaseException {
|
|
189
171
|
name = "OrganizationAccessDeniedException";
|
|
190
172
|
$fault = "client";
|
|
191
173
|
constructor(opts) {
|
|
@@ -196,9 +178,8 @@ class OrganizationAccessDeniedException extends ConfigServiceServiceException_1.
|
|
|
196
178
|
});
|
|
197
179
|
Object.setPrototypeOf(this, OrganizationAccessDeniedException.prototype);
|
|
198
180
|
}
|
|
199
|
-
}
|
|
200
|
-
exports.
|
|
201
|
-
class NoSuchOrganizationConformancePackException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
181
|
+
};
|
|
182
|
+
exports.NoSuchOrganizationConformancePackException = class NoSuchOrganizationConformancePackException extends __BaseException {
|
|
202
183
|
name = "NoSuchOrganizationConformancePackException";
|
|
203
184
|
$fault = "client";
|
|
204
185
|
constructor(opts) {
|
|
@@ -209,9 +190,8 @@ class NoSuchOrganizationConformancePackException extends ConfigServiceServiceExc
|
|
|
209
190
|
});
|
|
210
191
|
Object.setPrototypeOf(this, NoSuchOrganizationConformancePackException.prototype);
|
|
211
192
|
}
|
|
212
|
-
}
|
|
213
|
-
exports.
|
|
214
|
-
class InsufficientPermissionsException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
193
|
+
};
|
|
194
|
+
exports.InsufficientPermissionsException = class InsufficientPermissionsException extends __BaseException {
|
|
215
195
|
name = "InsufficientPermissionsException";
|
|
216
196
|
$fault = "client";
|
|
217
197
|
constructor(opts) {
|
|
@@ -222,9 +202,8 @@ class InsufficientPermissionsException extends ConfigServiceServiceException_1.C
|
|
|
222
202
|
});
|
|
223
203
|
Object.setPrototypeOf(this, InsufficientPermissionsException.prototype);
|
|
224
204
|
}
|
|
225
|
-
}
|
|
226
|
-
exports.
|
|
227
|
-
class NoSuchRemediationConfigurationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
205
|
+
};
|
|
206
|
+
exports.NoSuchRemediationConfigurationException = class NoSuchRemediationConfigurationException extends __BaseException {
|
|
228
207
|
name = "NoSuchRemediationConfigurationException";
|
|
229
208
|
$fault = "client";
|
|
230
209
|
constructor(opts) {
|
|
@@ -235,9 +214,8 @@ class NoSuchRemediationConfigurationException extends ConfigServiceServiceExcept
|
|
|
235
214
|
});
|
|
236
215
|
Object.setPrototypeOf(this, NoSuchRemediationConfigurationException.prototype);
|
|
237
216
|
}
|
|
238
|
-
}
|
|
239
|
-
exports.
|
|
240
|
-
class RemediationInProgressException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
217
|
+
};
|
|
218
|
+
exports.RemediationInProgressException = class RemediationInProgressException extends __BaseException {
|
|
241
219
|
name = "RemediationInProgressException";
|
|
242
220
|
$fault = "client";
|
|
243
221
|
constructor(opts) {
|
|
@@ -248,9 +226,8 @@ class RemediationInProgressException extends ConfigServiceServiceException_1.Con
|
|
|
248
226
|
});
|
|
249
227
|
Object.setPrototypeOf(this, RemediationInProgressException.prototype);
|
|
250
228
|
}
|
|
251
|
-
}
|
|
252
|
-
exports.
|
|
253
|
-
class NoSuchRemediationExceptionException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
229
|
+
};
|
|
230
|
+
exports.NoSuchRemediationExceptionException = class NoSuchRemediationExceptionException extends __BaseException {
|
|
254
231
|
name = "NoSuchRemediationExceptionException";
|
|
255
232
|
$fault = "client";
|
|
256
233
|
constructor(opts) {
|
|
@@ -261,9 +238,8 @@ class NoSuchRemediationExceptionException extends ConfigServiceServiceException_
|
|
|
261
238
|
});
|
|
262
239
|
Object.setPrototypeOf(this, NoSuchRemediationExceptionException.prototype);
|
|
263
240
|
}
|
|
264
|
-
}
|
|
265
|
-
exports.
|
|
266
|
-
class NoRunningConfigurationRecorderException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
241
|
+
};
|
|
242
|
+
exports.NoRunningConfigurationRecorderException = class NoRunningConfigurationRecorderException extends __BaseException {
|
|
267
243
|
name = "NoRunningConfigurationRecorderException";
|
|
268
244
|
$fault = "client";
|
|
269
245
|
constructor(opts) {
|
|
@@ -274,9 +250,8 @@ class NoRunningConfigurationRecorderException extends ConfigServiceServiceExcept
|
|
|
274
250
|
});
|
|
275
251
|
Object.setPrototypeOf(this, NoRunningConfigurationRecorderException.prototype);
|
|
276
252
|
}
|
|
277
|
-
}
|
|
278
|
-
exports.
|
|
279
|
-
class NoSuchRetentionConfigurationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
253
|
+
};
|
|
254
|
+
exports.NoSuchRetentionConfigurationException = class NoSuchRetentionConfigurationException extends __BaseException {
|
|
280
255
|
name = "NoSuchRetentionConfigurationException";
|
|
281
256
|
$fault = "client";
|
|
282
257
|
constructor(opts) {
|
|
@@ -287,9 +262,8 @@ class NoSuchRetentionConfigurationException extends ConfigServiceServiceExceptio
|
|
|
287
262
|
});
|
|
288
263
|
Object.setPrototypeOf(this, NoSuchRetentionConfigurationException.prototype);
|
|
289
264
|
}
|
|
290
|
-
}
|
|
291
|
-
exports.
|
|
292
|
-
class ResourceNotFoundException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
265
|
+
};
|
|
266
|
+
exports.ResourceNotFoundException = class ResourceNotFoundException extends __BaseException {
|
|
293
267
|
name = "ResourceNotFoundException";
|
|
294
268
|
$fault = "client";
|
|
295
269
|
constructor(opts) {
|
|
@@ -300,9 +274,8 @@ class ResourceNotFoundException extends ConfigServiceServiceException_1.ConfigSe
|
|
|
300
274
|
});
|
|
301
275
|
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
302
276
|
}
|
|
303
|
-
}
|
|
304
|
-
exports.
|
|
305
|
-
class InvalidLimitException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
277
|
+
};
|
|
278
|
+
exports.InvalidLimitException = class InvalidLimitException extends __BaseException {
|
|
306
279
|
name = "InvalidLimitException";
|
|
307
280
|
$fault = "client";
|
|
308
281
|
constructor(opts) {
|
|
@@ -313,9 +286,8 @@ class InvalidLimitException extends ConfigServiceServiceException_1.ConfigServic
|
|
|
313
286
|
});
|
|
314
287
|
Object.setPrototypeOf(this, InvalidLimitException.prototype);
|
|
315
288
|
}
|
|
316
|
-
}
|
|
317
|
-
exports.
|
|
318
|
-
class InvalidNextTokenException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
289
|
+
};
|
|
290
|
+
exports.InvalidNextTokenException = class InvalidNextTokenException extends __BaseException {
|
|
319
291
|
name = "InvalidNextTokenException";
|
|
320
292
|
$fault = "client";
|
|
321
293
|
constructor(opts) {
|
|
@@ -326,9 +298,8 @@ class InvalidNextTokenException extends ConfigServiceServiceException_1.ConfigSe
|
|
|
326
298
|
});
|
|
327
299
|
Object.setPrototypeOf(this, InvalidNextTokenException.prototype);
|
|
328
300
|
}
|
|
329
|
-
}
|
|
330
|
-
exports.
|
|
331
|
-
class NoSuchConfigRuleInConformancePackException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
301
|
+
};
|
|
302
|
+
exports.NoSuchConfigRuleInConformancePackException = class NoSuchConfigRuleInConformancePackException extends __BaseException {
|
|
332
303
|
name = "NoSuchConfigRuleInConformancePackException";
|
|
333
304
|
$fault = "client";
|
|
334
305
|
constructor(opts) {
|
|
@@ -339,9 +310,8 @@ class NoSuchConfigRuleInConformancePackException extends ConfigServiceServiceExc
|
|
|
339
310
|
});
|
|
340
311
|
Object.setPrototypeOf(this, NoSuchConfigRuleInConformancePackException.prototype);
|
|
341
312
|
}
|
|
342
|
-
}
|
|
343
|
-
exports.
|
|
344
|
-
class OversizedConfigurationItemException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
313
|
+
};
|
|
314
|
+
exports.OversizedConfigurationItemException = class OversizedConfigurationItemException extends __BaseException {
|
|
345
315
|
name = "OversizedConfigurationItemException";
|
|
346
316
|
$fault = "client";
|
|
347
317
|
constructor(opts) {
|
|
@@ -352,9 +322,8 @@ class OversizedConfigurationItemException extends ConfigServiceServiceException_
|
|
|
352
322
|
});
|
|
353
323
|
Object.setPrototypeOf(this, OversizedConfigurationItemException.prototype);
|
|
354
324
|
}
|
|
355
|
-
}
|
|
356
|
-
exports.
|
|
357
|
-
class ResourceNotDiscoveredException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
325
|
+
};
|
|
326
|
+
exports.ResourceNotDiscoveredException = class ResourceNotDiscoveredException extends __BaseException {
|
|
358
327
|
name = "ResourceNotDiscoveredException";
|
|
359
328
|
$fault = "client";
|
|
360
329
|
constructor(opts) {
|
|
@@ -365,9 +334,8 @@ class ResourceNotDiscoveredException extends ConfigServiceServiceException_1.Con
|
|
|
365
334
|
});
|
|
366
335
|
Object.setPrototypeOf(this, ResourceNotDiscoveredException.prototype);
|
|
367
336
|
}
|
|
368
|
-
}
|
|
369
|
-
exports.
|
|
370
|
-
class InvalidTimeRangeException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
337
|
+
};
|
|
338
|
+
exports.InvalidTimeRangeException = class InvalidTimeRangeException extends __BaseException {
|
|
371
339
|
name = "InvalidTimeRangeException";
|
|
372
340
|
$fault = "client";
|
|
373
341
|
constructor(opts) {
|
|
@@ -378,9 +346,8 @@ class InvalidTimeRangeException extends ConfigServiceServiceException_1.ConfigSe
|
|
|
378
346
|
});
|
|
379
347
|
Object.setPrototypeOf(this, InvalidTimeRangeException.prototype);
|
|
380
348
|
}
|
|
381
|
-
}
|
|
382
|
-
exports.
|
|
383
|
-
class IdempotentParameterMismatch extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
349
|
+
};
|
|
350
|
+
exports.IdempotentParameterMismatch = class IdempotentParameterMismatch extends __BaseException {
|
|
384
351
|
name = "IdempotentParameterMismatch";
|
|
385
352
|
$fault = "client";
|
|
386
353
|
constructor(opts) {
|
|
@@ -391,9 +358,8 @@ class IdempotentParameterMismatch extends ConfigServiceServiceException_1.Config
|
|
|
391
358
|
});
|
|
392
359
|
Object.setPrototypeOf(this, IdempotentParameterMismatch.prototype);
|
|
393
360
|
}
|
|
394
|
-
}
|
|
395
|
-
exports.
|
|
396
|
-
class InsufficientDeliveryPolicyException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
361
|
+
};
|
|
362
|
+
exports.InsufficientDeliveryPolicyException = class InsufficientDeliveryPolicyException extends __BaseException {
|
|
397
363
|
name = "InsufficientDeliveryPolicyException";
|
|
398
364
|
$fault = "client";
|
|
399
365
|
constructor(opts) {
|
|
@@ -404,9 +370,8 @@ class InsufficientDeliveryPolicyException extends ConfigServiceServiceException_
|
|
|
404
370
|
});
|
|
405
371
|
Object.setPrototypeOf(this, InsufficientDeliveryPolicyException.prototype);
|
|
406
372
|
}
|
|
407
|
-
}
|
|
408
|
-
exports.
|
|
409
|
-
class InvalidConfigurationRecorderNameException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
373
|
+
};
|
|
374
|
+
exports.InvalidConfigurationRecorderNameException = class InvalidConfigurationRecorderNameException extends __BaseException {
|
|
410
375
|
name = "InvalidConfigurationRecorderNameException";
|
|
411
376
|
$fault = "client";
|
|
412
377
|
constructor(opts) {
|
|
@@ -417,9 +382,8 @@ class InvalidConfigurationRecorderNameException extends ConfigServiceServiceExce
|
|
|
417
382
|
});
|
|
418
383
|
Object.setPrototypeOf(this, InvalidConfigurationRecorderNameException.prototype);
|
|
419
384
|
}
|
|
420
|
-
}
|
|
421
|
-
exports.
|
|
422
|
-
class InvalidDeliveryChannelNameException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
385
|
+
};
|
|
386
|
+
exports.InvalidDeliveryChannelNameException = class InvalidDeliveryChannelNameException extends __BaseException {
|
|
423
387
|
name = "InvalidDeliveryChannelNameException";
|
|
424
388
|
$fault = "client";
|
|
425
389
|
constructor(opts) {
|
|
@@ -430,9 +394,8 @@ class InvalidDeliveryChannelNameException extends ConfigServiceServiceException_
|
|
|
430
394
|
});
|
|
431
395
|
Object.setPrototypeOf(this, InvalidDeliveryChannelNameException.prototype);
|
|
432
396
|
}
|
|
433
|
-
}
|
|
434
|
-
exports.
|
|
435
|
-
class InvalidExpressionException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
397
|
+
};
|
|
398
|
+
exports.InvalidExpressionException = class InvalidExpressionException extends __BaseException {
|
|
436
399
|
name = "InvalidExpressionException";
|
|
437
400
|
$fault = "client";
|
|
438
401
|
constructor(opts) {
|
|
@@ -443,9 +406,8 @@ class InvalidExpressionException extends ConfigServiceServiceException_1.ConfigS
|
|
|
443
406
|
});
|
|
444
407
|
Object.setPrototypeOf(this, InvalidExpressionException.prototype);
|
|
445
408
|
}
|
|
446
|
-
}
|
|
447
|
-
exports.
|
|
448
|
-
class InvalidRecordingGroupException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
409
|
+
};
|
|
410
|
+
exports.InvalidRecordingGroupException = class InvalidRecordingGroupException extends __BaseException {
|
|
449
411
|
name = "InvalidRecordingGroupException";
|
|
450
412
|
$fault = "client";
|
|
451
413
|
constructor(opts) {
|
|
@@ -456,9 +418,8 @@ class InvalidRecordingGroupException extends ConfigServiceServiceException_1.Con
|
|
|
456
418
|
});
|
|
457
419
|
Object.setPrototypeOf(this, InvalidRecordingGroupException.prototype);
|
|
458
420
|
}
|
|
459
|
-
}
|
|
460
|
-
exports.
|
|
461
|
-
class InvalidResultTokenException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
421
|
+
};
|
|
422
|
+
exports.InvalidResultTokenException = class InvalidResultTokenException extends __BaseException {
|
|
462
423
|
name = "InvalidResultTokenException";
|
|
463
424
|
$fault = "client";
|
|
464
425
|
constructor(opts) {
|
|
@@ -469,9 +430,8 @@ class InvalidResultTokenException extends ConfigServiceServiceException_1.Config
|
|
|
469
430
|
});
|
|
470
431
|
Object.setPrototypeOf(this, InvalidResultTokenException.prototype);
|
|
471
432
|
}
|
|
472
|
-
}
|
|
473
|
-
exports.
|
|
474
|
-
class InvalidRoleException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
433
|
+
};
|
|
434
|
+
exports.InvalidRoleException = class InvalidRoleException extends __BaseException {
|
|
475
435
|
name = "InvalidRoleException";
|
|
476
436
|
$fault = "client";
|
|
477
437
|
constructor(opts) {
|
|
@@ -482,9 +442,8 @@ class InvalidRoleException extends ConfigServiceServiceException_1.ConfigService
|
|
|
482
442
|
});
|
|
483
443
|
Object.setPrototypeOf(this, InvalidRoleException.prototype);
|
|
484
444
|
}
|
|
485
|
-
}
|
|
486
|
-
exports.
|
|
487
|
-
class InvalidS3KeyPrefixException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
445
|
+
};
|
|
446
|
+
exports.InvalidS3KeyPrefixException = class InvalidS3KeyPrefixException extends __BaseException {
|
|
488
447
|
name = "InvalidS3KeyPrefixException";
|
|
489
448
|
$fault = "client";
|
|
490
449
|
constructor(opts) {
|
|
@@ -495,9 +454,8 @@ class InvalidS3KeyPrefixException extends ConfigServiceServiceException_1.Config
|
|
|
495
454
|
});
|
|
496
455
|
Object.setPrototypeOf(this, InvalidS3KeyPrefixException.prototype);
|
|
497
456
|
}
|
|
498
|
-
}
|
|
499
|
-
exports.
|
|
500
|
-
class InvalidS3KmsKeyArnException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
457
|
+
};
|
|
458
|
+
exports.InvalidS3KmsKeyArnException = class InvalidS3KmsKeyArnException extends __BaseException {
|
|
501
459
|
name = "InvalidS3KmsKeyArnException";
|
|
502
460
|
$fault = "client";
|
|
503
461
|
constructor(opts) {
|
|
@@ -508,9 +466,8 @@ class InvalidS3KmsKeyArnException extends ConfigServiceServiceException_1.Config
|
|
|
508
466
|
});
|
|
509
467
|
Object.setPrototypeOf(this, InvalidS3KmsKeyArnException.prototype);
|
|
510
468
|
}
|
|
511
|
-
}
|
|
512
|
-
exports.
|
|
513
|
-
class InvalidSNSTopicARNException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
469
|
+
};
|
|
470
|
+
exports.InvalidSNSTopicARNException = class InvalidSNSTopicARNException extends __BaseException {
|
|
514
471
|
name = "InvalidSNSTopicARNException";
|
|
515
472
|
$fault = "client";
|
|
516
473
|
constructor(opts) {
|
|
@@ -521,9 +478,8 @@ class InvalidSNSTopicARNException extends ConfigServiceServiceException_1.Config
|
|
|
521
478
|
});
|
|
522
479
|
Object.setPrototypeOf(this, InvalidSNSTopicARNException.prototype);
|
|
523
480
|
}
|
|
524
|
-
}
|
|
525
|
-
exports.
|
|
526
|
-
class LimitExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
481
|
+
};
|
|
482
|
+
exports.LimitExceededException = class LimitExceededException extends __BaseException {
|
|
527
483
|
name = "LimitExceededException";
|
|
528
484
|
$fault = "client";
|
|
529
485
|
constructor(opts) {
|
|
@@ -534,9 +490,8 @@ class LimitExceededException extends ConfigServiceServiceException_1.ConfigServi
|
|
|
534
490
|
});
|
|
535
491
|
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
536
492
|
}
|
|
537
|
-
}
|
|
538
|
-
exports.
|
|
539
|
-
class MaxActiveResourcesExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
493
|
+
};
|
|
494
|
+
exports.MaxActiveResourcesExceededException = class MaxActiveResourcesExceededException extends __BaseException {
|
|
540
495
|
name = "MaxActiveResourcesExceededException";
|
|
541
496
|
$fault = "client";
|
|
542
497
|
constructor(opts) {
|
|
@@ -547,9 +502,8 @@ class MaxActiveResourcesExceededException extends ConfigServiceServiceException_
|
|
|
547
502
|
});
|
|
548
503
|
Object.setPrototypeOf(this, MaxActiveResourcesExceededException.prototype);
|
|
549
504
|
}
|
|
550
|
-
}
|
|
551
|
-
exports.
|
|
552
|
-
class MaxNumberOfConfigRulesExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
505
|
+
};
|
|
506
|
+
exports.MaxNumberOfConfigRulesExceededException = class MaxNumberOfConfigRulesExceededException extends __BaseException {
|
|
553
507
|
name = "MaxNumberOfConfigRulesExceededException";
|
|
554
508
|
$fault = "client";
|
|
555
509
|
constructor(opts) {
|
|
@@ -560,9 +514,8 @@ class MaxNumberOfConfigRulesExceededException extends ConfigServiceServiceExcept
|
|
|
560
514
|
});
|
|
561
515
|
Object.setPrototypeOf(this, MaxNumberOfConfigRulesExceededException.prototype);
|
|
562
516
|
}
|
|
563
|
-
}
|
|
564
|
-
exports.
|
|
565
|
-
class MaxNumberOfConfigurationRecordersExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
517
|
+
};
|
|
518
|
+
exports.MaxNumberOfConfigurationRecordersExceededException = class MaxNumberOfConfigurationRecordersExceededException extends __BaseException {
|
|
566
519
|
name = "MaxNumberOfConfigurationRecordersExceededException";
|
|
567
520
|
$fault = "client";
|
|
568
521
|
constructor(opts) {
|
|
@@ -573,9 +526,8 @@ class MaxNumberOfConfigurationRecordersExceededException extends ConfigServiceSe
|
|
|
573
526
|
});
|
|
574
527
|
Object.setPrototypeOf(this, MaxNumberOfConfigurationRecordersExceededException.prototype);
|
|
575
528
|
}
|
|
576
|
-
}
|
|
577
|
-
exports.
|
|
578
|
-
class MaxNumberOfConformancePacksExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
529
|
+
};
|
|
530
|
+
exports.MaxNumberOfConformancePacksExceededException = class MaxNumberOfConformancePacksExceededException extends __BaseException {
|
|
579
531
|
name = "MaxNumberOfConformancePacksExceededException";
|
|
580
532
|
$fault = "client";
|
|
581
533
|
constructor(opts) {
|
|
@@ -586,9 +538,8 @@ class MaxNumberOfConformancePacksExceededException extends ConfigServiceServiceE
|
|
|
586
538
|
});
|
|
587
539
|
Object.setPrototypeOf(this, MaxNumberOfConformancePacksExceededException.prototype);
|
|
588
540
|
}
|
|
589
|
-
}
|
|
590
|
-
exports.
|
|
591
|
-
class MaxNumberOfDeliveryChannelsExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
541
|
+
};
|
|
542
|
+
exports.MaxNumberOfDeliveryChannelsExceededException = class MaxNumberOfDeliveryChannelsExceededException extends __BaseException {
|
|
592
543
|
name = "MaxNumberOfDeliveryChannelsExceededException";
|
|
593
544
|
$fault = "client";
|
|
594
545
|
constructor(opts) {
|
|
@@ -599,9 +550,8 @@ class MaxNumberOfDeliveryChannelsExceededException extends ConfigServiceServiceE
|
|
|
599
550
|
});
|
|
600
551
|
Object.setPrototypeOf(this, MaxNumberOfDeliveryChannelsExceededException.prototype);
|
|
601
552
|
}
|
|
602
|
-
}
|
|
603
|
-
exports.
|
|
604
|
-
class MaxNumberOfOrganizationConfigRulesExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
553
|
+
};
|
|
554
|
+
exports.MaxNumberOfOrganizationConfigRulesExceededException = class MaxNumberOfOrganizationConfigRulesExceededException extends __BaseException {
|
|
605
555
|
name = "MaxNumberOfOrganizationConfigRulesExceededException";
|
|
606
556
|
$fault = "client";
|
|
607
557
|
constructor(opts) {
|
|
@@ -612,9 +562,8 @@ class MaxNumberOfOrganizationConfigRulesExceededException extends ConfigServiceS
|
|
|
612
562
|
});
|
|
613
563
|
Object.setPrototypeOf(this, MaxNumberOfOrganizationConfigRulesExceededException.prototype);
|
|
614
564
|
}
|
|
615
|
-
}
|
|
616
|
-
exports.
|
|
617
|
-
class MaxNumberOfOrganizationConformancePacksExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
565
|
+
};
|
|
566
|
+
exports.MaxNumberOfOrganizationConformancePacksExceededException = class MaxNumberOfOrganizationConformancePacksExceededException extends __BaseException {
|
|
618
567
|
name = "MaxNumberOfOrganizationConformancePacksExceededException";
|
|
619
568
|
$fault = "client";
|
|
620
569
|
constructor(opts) {
|
|
@@ -625,9 +574,8 @@ class MaxNumberOfOrganizationConformancePacksExceededException extends ConfigSer
|
|
|
625
574
|
});
|
|
626
575
|
Object.setPrototypeOf(this, MaxNumberOfOrganizationConformancePacksExceededException.prototype);
|
|
627
576
|
}
|
|
628
|
-
}
|
|
629
|
-
exports.
|
|
630
|
-
class MaxNumberOfRetentionConfigurationsExceededException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
577
|
+
};
|
|
578
|
+
exports.MaxNumberOfRetentionConfigurationsExceededException = class MaxNumberOfRetentionConfigurationsExceededException extends __BaseException {
|
|
631
579
|
name = "MaxNumberOfRetentionConfigurationsExceededException";
|
|
632
580
|
$fault = "client";
|
|
633
581
|
constructor(opts) {
|
|
@@ -638,9 +586,8 @@ class MaxNumberOfRetentionConfigurationsExceededException extends ConfigServiceS
|
|
|
638
586
|
});
|
|
639
587
|
Object.setPrototypeOf(this, MaxNumberOfRetentionConfigurationsExceededException.prototype);
|
|
640
588
|
}
|
|
641
|
-
}
|
|
642
|
-
exports.
|
|
643
|
-
class NoAvailableDeliveryChannelException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
589
|
+
};
|
|
590
|
+
exports.NoAvailableDeliveryChannelException = class NoAvailableDeliveryChannelException extends __BaseException {
|
|
644
591
|
name = "NoAvailableDeliveryChannelException";
|
|
645
592
|
$fault = "client";
|
|
646
593
|
constructor(opts) {
|
|
@@ -651,9 +598,8 @@ class NoAvailableDeliveryChannelException extends ConfigServiceServiceException_
|
|
|
651
598
|
});
|
|
652
599
|
Object.setPrototypeOf(this, NoAvailableDeliveryChannelException.prototype);
|
|
653
600
|
}
|
|
654
|
-
}
|
|
655
|
-
exports.
|
|
656
|
-
class NoAvailableOrganizationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
601
|
+
};
|
|
602
|
+
exports.NoAvailableOrganizationException = class NoAvailableOrganizationException extends __BaseException {
|
|
657
603
|
name = "NoAvailableOrganizationException";
|
|
658
604
|
$fault = "client";
|
|
659
605
|
constructor(opts) {
|
|
@@ -664,9 +610,8 @@ class NoAvailableOrganizationException extends ConfigServiceServiceException_1.C
|
|
|
664
610
|
});
|
|
665
611
|
Object.setPrototypeOf(this, NoAvailableOrganizationException.prototype);
|
|
666
612
|
}
|
|
667
|
-
}
|
|
668
|
-
exports.
|
|
669
|
-
class NoSuchBucketException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
613
|
+
};
|
|
614
|
+
exports.NoSuchBucketException = class NoSuchBucketException extends __BaseException {
|
|
670
615
|
name = "NoSuchBucketException";
|
|
671
616
|
$fault = "client";
|
|
672
617
|
constructor(opts) {
|
|
@@ -677,9 +622,8 @@ class NoSuchBucketException extends ConfigServiceServiceException_1.ConfigServic
|
|
|
677
622
|
});
|
|
678
623
|
Object.setPrototypeOf(this, NoSuchBucketException.prototype);
|
|
679
624
|
}
|
|
680
|
-
}
|
|
681
|
-
exports.
|
|
682
|
-
class OrganizationAllFeaturesNotEnabledException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
625
|
+
};
|
|
626
|
+
exports.OrganizationAllFeaturesNotEnabledException = class OrganizationAllFeaturesNotEnabledException extends __BaseException {
|
|
683
627
|
name = "OrganizationAllFeaturesNotEnabledException";
|
|
684
628
|
$fault = "client";
|
|
685
629
|
constructor(opts) {
|
|
@@ -690,9 +634,8 @@ class OrganizationAllFeaturesNotEnabledException extends ConfigServiceServiceExc
|
|
|
690
634
|
});
|
|
691
635
|
Object.setPrototypeOf(this, OrganizationAllFeaturesNotEnabledException.prototype);
|
|
692
636
|
}
|
|
693
|
-
}
|
|
694
|
-
exports.
|
|
695
|
-
class OrganizationConformancePackTemplateValidationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
637
|
+
};
|
|
638
|
+
exports.OrganizationConformancePackTemplateValidationException = class OrganizationConformancePackTemplateValidationException extends __BaseException {
|
|
696
639
|
name = "OrganizationConformancePackTemplateValidationException";
|
|
697
640
|
$fault = "client";
|
|
698
641
|
constructor(opts) {
|
|
@@ -703,9 +646,8 @@ class OrganizationConformancePackTemplateValidationException extends ConfigServi
|
|
|
703
646
|
});
|
|
704
647
|
Object.setPrototypeOf(this, OrganizationConformancePackTemplateValidationException.prototype);
|
|
705
648
|
}
|
|
706
|
-
}
|
|
707
|
-
exports.
|
|
708
|
-
class ResourceConcurrentModificationException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
649
|
+
};
|
|
650
|
+
exports.ResourceConcurrentModificationException = class ResourceConcurrentModificationException extends __BaseException {
|
|
709
651
|
name = "ResourceConcurrentModificationException";
|
|
710
652
|
$fault = "client";
|
|
711
653
|
constructor(opts) {
|
|
@@ -716,9 +658,8 @@ class ResourceConcurrentModificationException extends ConfigServiceServiceExcept
|
|
|
716
658
|
});
|
|
717
659
|
Object.setPrototypeOf(this, ResourceConcurrentModificationException.prototype);
|
|
718
660
|
}
|
|
719
|
-
}
|
|
720
|
-
exports.
|
|
721
|
-
class TooManyTagsException extends ConfigServiceServiceException_1.ConfigServiceServiceException {
|
|
661
|
+
};
|
|
662
|
+
exports.TooManyTagsException = class TooManyTagsException extends __BaseException {
|
|
722
663
|
name = "TooManyTagsException";
|
|
723
664
|
$fault = "client";
|
|
724
665
|
constructor(opts) {
|
|
@@ -729,5 +670,4 @@ class TooManyTagsException extends ConfigServiceServiceException_1.ConfigService
|
|
|
729
670
|
});
|
|
730
671
|
Object.setPrototypeOf(this, TooManyTagsException.prototype);
|
|
731
672
|
}
|
|
732
|
-
}
|
|
733
|
-
exports.TooManyTagsException = TooManyTagsException;
|
|
673
|
+
};
|