@aws-sdk/client-ssm-incidents 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 CHANGED
@@ -1,21 +1,58 @@
1
- var __exportStar = (m, e) => { Object.assign(e, m); };
2
- const { getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
1
+ const { awsEndpointFunctions, emitWarningIfUnsupportedVersion: emitWarningIfUnsupportedVersion$1, createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS, getAwsRegionExtensionConfiguration, resolveAwsRegionExtensionConfiguration, resolveUserAgentConfig, resolveHostHeaderConfig, getUserAgentPlugin, getHostHeaderPlugin, getLoggerPlugin, getRecursionDetectionPlugin } = require("@aws-sdk/core/client");
3
2
  const { getHttpAuthSchemeEndpointRuleSetPlugin, DefaultIdentityProviderConfig, getHttpSigningPlugin, createPaginator } = require("@smithy/core");
4
- const { getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
3
+ const { normalizeProvider, getSmithyContext, ServiceException, NoOpLogger, emitWarningIfUnsupportedVersion, loadConfigsForDefaultMode, getDefaultExtensionConfiguration, resolveDefaultRuntimeConfig, Client, Command, createWaiter, checkExceptions, WaiterState, createAggregatedClient } = require("@smithy/core/client");
5
4
  exports.$Command = Command;
6
5
  exports.__Client = Client;
7
- const { resolveRegionConfig } = require("@smithy/core/config");
8
- const { resolveEndpointConfig, getEndpointPlugin } = require("@smithy/core/endpoints");
9
- const { getHttpHandlerExtensionConfiguration, resolveHttpHandlerRuntimeConfig, getContentLengthPlugin } = require("@smithy/core/protocols");
10
- const { resolveRetryConfig, getRetryPlugin } = require("@smithy/core/retry");
11
- const { getSchemaSerdePlugin } = require("@smithy/core/schema");
12
- const { resolveHttpAuthSchemeConfig, defaultSSMIncidentsHttpAuthSchemeParametersProvider } = require("./auth/httpAuthSchemeProvider");
13
- const { getRuntimeConfig } = require("./runtimeConfig");
14
- const { BatchGetIncidentFindings$, CreateReplicationSet$, CreateResponsePlan$, CreateTimelineEvent$, DeleteIncidentRecord$, DeleteReplicationSet$, DeleteResourcePolicy$, DeleteResponsePlan$, DeleteTimelineEvent$, GetIncidentRecord$, GetReplicationSet$, GetResourcePolicies$, GetResponsePlan$, GetTimelineEvent$, ListIncidentFindings$, ListIncidentRecords$, ListRelatedItems$, ListReplicationSets$, ListResponsePlans$, ListTagsForResource$, ListTimelineEvents$, PutResourcePolicy$, StartIncident$, TagResource$, UntagResource$, UpdateDeletionProtection$, UpdateIncidentRecord$, UpdateRelatedItems$, UpdateReplicationSet$, UpdateResponsePlan$, UpdateTimelineEvent$ } = require("./schemas/schemas_0");
15
- __exportStar(require("./schemas/schemas_0"), exports);
16
- __exportStar(require("./models/errors"), exports);
17
- const { SSMIncidentsServiceException } = require("./models/SSMIncidentsServiceException");
18
- exports.SSMIncidentsServiceException = SSMIncidentsServiceException;
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 defaultSSMIncidentsHttpAuthSchemeParametersProvider = 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: "ssm-incidents",
31
+ region: authParameters.region,
32
+ },
33
+ propertiesExtractor: (config, context) => ({
34
+ signingProperties: {
35
+ config,
36
+ context,
37
+ },
38
+ }),
39
+ };
40
+ }
41
+ const defaultSSMIncidentsHttpAuthSchemeProvider = (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,1253 @@ 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
+ ],
87
+ results: [
88
+ [a],
89
+ [a, "Invalid Configuration: FIPS and custom endpoint are not supported"],
90
+ [a, "Invalid Configuration: Dualstack and custom endpoint are not supported"],
91
+ [g, i],
92
+ ["https://ssm-incidents-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
93
+ [a, "FIPS and DualStack are enabled, but this partition does not support one or both"],
94
+ ["https://ssm-incidents-fips.{Region}.{PartitionResult#dnsSuffix}", i],
95
+ [a, "FIPS is enabled but this partition does not support FIPS"],
96
+ ["https://ssm-incidents.{Region}.{PartitionResult#dualStackDnsSuffix}", i],
97
+ [a, "DualStack is enabled but this partition does not support DualStack"],
98
+ ["https://ssm-incidents.{Region}.{PartitionResult#dnsSuffix}", i],
99
+ [a, "Invalid Configuration: Missing Region"]
100
+ ]
101
+ };
102
+ const root = 2;
103
+ const r = 100_000_000;
104
+ const nodes = new Int32Array([
105
+ -1, 1, -1,
106
+ 0, 12, 3,
107
+ 1, 4, r + 11,
108
+ 2, 5, r + 11,
109
+ 3, 8, 6,
110
+ 4, 7, r + 10,
111
+ 5, r + 8, r + 9,
112
+ 4, 10, 9,
113
+ 6, r + 6, r + 7,
114
+ 5, 11, r + 5,
115
+ 6, r + 4, r + 5,
116
+ 3, r + 1, 13,
117
+ 4, r + 2, r + 3,
118
+ ]);
119
+ const bdd = BinaryDecisionDiagram.from(nodes, root, _data.conditions, _data.results);
120
+
121
+ const cache = new EndpointCache({
122
+ size: 50,
123
+ params: ["Endpoint", "Region", "UseDualStack", "UseFIPS"],
124
+ });
125
+ const defaultEndpointResolver = (endpointParams, context = {}) => {
126
+ return cache.get(endpointParams, () => decideEndpoint(bdd, {
127
+ endpointParams: endpointParams,
128
+ logger: context.logger,
129
+ }));
130
+ };
131
+ customEndpointFunctions.aws = awsEndpointFunctions;
132
+
133
+ class SSMIncidentsServiceException extends ServiceException {
134
+ constructor(options) {
135
+ super(options);
136
+ Object.setPrototypeOf(this, SSMIncidentsServiceException.prototype);
137
+ }
138
+ }
139
+
140
+ class AccessDeniedException extends SSMIncidentsServiceException {
141
+ name = "AccessDeniedException";
142
+ $fault = "client";
143
+ constructor(opts) {
144
+ super({
145
+ name: "AccessDeniedException",
146
+ $fault: "client",
147
+ ...opts,
148
+ });
149
+ Object.setPrototypeOf(this, AccessDeniedException.prototype);
150
+ }
151
+ }
152
+ class InternalServerException extends SSMIncidentsServiceException {
153
+ name = "InternalServerException";
154
+ $fault = "server";
155
+ constructor(opts) {
156
+ super({
157
+ name: "InternalServerException",
158
+ $fault: "server",
159
+ ...opts,
160
+ });
161
+ Object.setPrototypeOf(this, InternalServerException.prototype);
162
+ }
163
+ }
164
+ class ResourceNotFoundException extends SSMIncidentsServiceException {
165
+ name = "ResourceNotFoundException";
166
+ $fault = "client";
167
+ resourceIdentifier;
168
+ resourceType;
169
+ constructor(opts) {
170
+ super({
171
+ name: "ResourceNotFoundException",
172
+ $fault: "client",
173
+ ...opts,
174
+ });
175
+ Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
176
+ this.resourceIdentifier = opts.resourceIdentifier;
177
+ this.resourceType = opts.resourceType;
178
+ }
179
+ }
180
+ class ThrottlingException extends SSMIncidentsServiceException {
181
+ name = "ThrottlingException";
182
+ $fault = "client";
183
+ serviceCode;
184
+ quotaCode;
185
+ constructor(opts) {
186
+ super({
187
+ name: "ThrottlingException",
188
+ $fault: "client",
189
+ ...opts,
190
+ });
191
+ Object.setPrototypeOf(this, ThrottlingException.prototype);
192
+ this.serviceCode = opts.serviceCode;
193
+ this.quotaCode = opts.quotaCode;
194
+ }
195
+ }
196
+ class ValidationException extends SSMIncidentsServiceException {
197
+ name = "ValidationException";
198
+ $fault = "client";
199
+ constructor(opts) {
200
+ super({
201
+ name: "ValidationException",
202
+ $fault: "client",
203
+ ...opts,
204
+ });
205
+ Object.setPrototypeOf(this, ValidationException.prototype);
206
+ }
207
+ }
208
+ class ConflictException extends SSMIncidentsServiceException {
209
+ name = "ConflictException";
210
+ $fault = "client";
211
+ resourceIdentifier;
212
+ resourceType;
213
+ retryAfter;
214
+ constructor(opts) {
215
+ super({
216
+ name: "ConflictException",
217
+ $fault: "client",
218
+ ...opts,
219
+ });
220
+ Object.setPrototypeOf(this, ConflictException.prototype);
221
+ this.resourceIdentifier = opts.resourceIdentifier;
222
+ this.resourceType = opts.resourceType;
223
+ this.retryAfter = opts.retryAfter;
224
+ }
225
+ }
226
+ class ServiceQuotaExceededException extends SSMIncidentsServiceException {
227
+ name = "ServiceQuotaExceededException";
228
+ $fault = "client";
229
+ resourceIdentifier;
230
+ resourceType;
231
+ serviceCode;
232
+ quotaCode;
233
+ constructor(opts) {
234
+ super({
235
+ name: "ServiceQuotaExceededException",
236
+ $fault: "client",
237
+ ...opts,
238
+ });
239
+ Object.setPrototypeOf(this, ServiceQuotaExceededException.prototype);
240
+ this.resourceIdentifier = opts.resourceIdentifier;
241
+ this.resourceType = opts.resourceType;
242
+ this.serviceCode = opts.serviceCode;
243
+ this.quotaCode = opts.quotaCode;
244
+ }
245
+ }
246
+
247
+ const _A = "Action";
248
+ const _ADE = "AccessDeniedException";
249
+ const _AE = "AutomationExecution";
250
+ const _AES = "AutomationExecutionSet";
251
+ const _AL = "ActionsList";
252
+ const _ARA = "AddRegionAction";
253
+ const _AVL = "AttributeValueList";
254
+ const _BGIF = "BatchGetIncidentFindings";
255
+ const _BGIFE = "BatchGetIncidentFindingsError";
256
+ const _BGIFEL = "BatchGetIncidentFindingsErrorList";
257
+ const _BGIFI = "BatchGetIncidentFindingsInput";
258
+ const _BGIFO = "BatchGetIncidentFindingsOutput";
259
+ const _C = "Condition";
260
+ const _CC = "ChatChannel";
261
+ const _CDD = "CodeDeployDeployment";
262
+ const _CE = "ConflictException";
263
+ const _CFSU = "CloudFormationStackUpdate";
264
+ const _CRP = "CreateResponsePlan";
265
+ const _CRPI = "CreateResponsePlanInput";
266
+ const _CRPO = "CreateResponsePlanOutput";
267
+ const _CRS = "CreateReplicationSet";
268
+ const _CRSI = "CreateReplicationSetInput";
269
+ const _CRSO = "CreateReplicationSetOutput";
270
+ const _CTE = "CreateTimelineEvent";
271
+ const _CTEI = "CreateTimelineEventInput";
272
+ const _CTEO = "CreateTimelineEventOutput";
273
+ const _DIR = "DeleteIncidentRecord";
274
+ const _DIRI = "DeleteIncidentRecordInput";
275
+ const _DIRO = "DeleteIncidentRecordOutput";
276
+ const _DRA = "DeleteRegionAction";
277
+ const _DRP = "DeleteResourcePolicy";
278
+ const _DRPI = "DeleteResourcePolicyInput";
279
+ const _DRPIe = "DeleteResponsePlanInput";
280
+ const _DRPO = "DeleteResourcePolicyOutput";
281
+ const _DRPOe = "DeleteResponsePlanOutput";
282
+ const _DRPe = "DeleteResponsePlan";
283
+ const _DRS = "DeleteReplicationSet";
284
+ const _DRSI = "DeleteReplicationSetInput";
285
+ const _DRSO = "DeleteReplicationSetOutput";
286
+ const _DSP = "DynamicSsmParameters";
287
+ const _DSPV = "DynamicSsmParameterValue";
288
+ const _DTE = "DeleteTimelineEvent";
289
+ const _DTEI = "DeleteTimelineEventInput";
290
+ const _DTEO = "DeleteTimelineEventOutput";
291
+ const _ECC = "EmptyChatChannel";
292
+ const _ER = "EventReference";
293
+ const _ERL = "EventReferenceList";
294
+ const _ES = "EventSummary";
295
+ const _ESL = "EventSummaryList";
296
+ const _F = "Filter";
297
+ const _FD = "FindingDetails";
298
+ const _FL = "FilterList";
299
+ const _FLi = "FindingList";
300
+ const _FS = "FindingSummary";
301
+ const _FSL = "FindingSummaryList";
302
+ const _Fi = "Finding";
303
+ const _GIR = "GetIncidentRecord";
304
+ const _GIRI = "GetIncidentRecordInput";
305
+ const _GIRO = "GetIncidentRecordOutput";
306
+ const _GRP = "GetResourcePolicies";
307
+ const _GRPI = "GetResourcePoliciesInput";
308
+ const _GRPIe = "GetResponsePlanInput";
309
+ const _GRPO = "GetResourcePoliciesOutput";
310
+ const _GRPOe = "GetResponsePlanOutput";
311
+ const _GRPe = "GetResponsePlan";
312
+ const _GRS = "GetReplicationSet";
313
+ const _GRSI = "GetReplicationSetInput";
314
+ const _GRSO = "GetReplicationSetOutput";
315
+ const _GTE = "GetTimelineEvent";
316
+ const _GTEI = "GetTimelineEventInput";
317
+ const _GTEO = "GetTimelineEventOutput";
318
+ const _I = "Integrations";
319
+ const _II = "ItemIdentifier";
320
+ const _IR = "IncidentRecord";
321
+ const _IRS = "IncidentRecordSource";
322
+ const _IRSL = "IncidentRecordSummaryList";
323
+ const _IRSn = "IncidentRecordSummary";
324
+ const _ISE = "InternalServerException";
325
+ const _IT = "IncidentTemplate";
326
+ const _IV = "ItemValue";
327
+ const _In = "Integration";
328
+ const _LIF = "ListIncidentFindings";
329
+ const _LIFI = "ListIncidentFindingsInput";
330
+ const _LIFO = "ListIncidentFindingsOutput";
331
+ const _LIR = "ListIncidentRecords";
332
+ const _LIRI = "ListIncidentRecordsInput";
333
+ const _LIRO = "ListIncidentRecordsOutput";
334
+ const _LRI = "ListRelatedItems";
335
+ const _LRII = "ListRelatedItemsInput";
336
+ const _LRIO = "ListRelatedItemsOutput";
337
+ const _LRP = "ListResponsePlans";
338
+ const _LRPI = "ListResponsePlansInput";
339
+ const _LRPO = "ListResponsePlansOutput";
340
+ const _LRS = "ListReplicationSets";
341
+ const _LRSI = "ListReplicationSetsInput";
342
+ const _LRSO = "ListReplicationSetsOutput";
343
+ const _LTE = "ListTimelineEvents";
344
+ const _LTEI = "ListTimelineEventsInput";
345
+ const _LTEO = "ListTimelineEventsOutput";
346
+ const _LTFR = "ListTagsForResource";
347
+ const _LTFRR = "ListTagsForResourceRequest";
348
+ const _LTFRRi = "ListTagsForResourceResponse";
349
+ const _NTI = "NotificationTargetItem";
350
+ const _NTS = "NotificationTargetSet";
351
+ const _PDC = "PagerDutyConfiguration";
352
+ const _PDIC = "PagerDutyIncidentConfiguration";
353
+ const _PDID = "PagerDutyIncidentDetail";
354
+ const _PRP = "PutResourcePolicy";
355
+ const _PRPI = "PutResourcePolicyInput";
356
+ const _PRPO = "PutResourcePolicyOutput";
357
+ const _RI = "RegionInfo";
358
+ const _RIL = "RelatedItemList";
359
+ const _RIM = "RegionInfoMap";
360
+ const _RIU = "RelatedItemsUpdate";
361
+ const _RIe = "RelatedItem";
362
+ const _RMI = "RegionMapInput";
363
+ const _RMIV = "RegionMapInputValue";
364
+ const _RNFE = "ResourceNotFoundException";
365
+ const _RP = "ResourcePolicy";
366
+ const _RPL = "ResourcePolicyList";
367
+ const _RPS = "ResponsePlanSummary";
368
+ const _RPSL = "ResponsePlanSummaryList";
369
+ const _RS = "ReplicationSet";
370
+ const _SA = "SsmAutomation";
371
+ const _SI = "StartIncident";
372
+ const _SII = "StartIncidentInput";
373
+ const _SIO = "StartIncidentOutput";
374
+ const _SP = "SsmParameters";
375
+ const _SQEE = "ServiceQuotaExceededException";
376
+ const _TD = "TriggerDetails";
377
+ const _TE = "ThrottlingException";
378
+ const _TEi = "TimelineEvent";
379
+ const _TR = "TagResource";
380
+ const _TRR = "TagResourceRequest";
381
+ const _TRRa = "TagResourceResponse";
382
+ const _UAL = "UpdateActionList";
383
+ const _UDP = "UpdateDeletionProtection";
384
+ const _UDPI = "UpdateDeletionProtectionInput";
385
+ const _UDPO = "UpdateDeletionProtectionOutput";
386
+ const _UIR = "UpdateIncidentRecord";
387
+ const _UIRI = "UpdateIncidentRecordInput";
388
+ const _UIRO = "UpdateIncidentRecordOutput";
389
+ const _UR = "UntagResource";
390
+ const _URI = "UpdateRelatedItems";
391
+ const _URII = "UpdateRelatedItemsInput";
392
+ const _URIO = "UpdateRelatedItemsOutput";
393
+ const _URP = "UpdateResponsePlan";
394
+ const _URPI = "UpdateResponsePlanInput";
395
+ const _URPO = "UpdateResponsePlanOutput";
396
+ const _URR = "UntagResourceRequest";
397
+ const _URRn = "UntagResourceResponse";
398
+ const _URS = "UpdateReplicationSet";
399
+ const _URSA = "UpdateReplicationSetAction";
400
+ const _URSI = "UpdateReplicationSetInput";
401
+ const _URSO = "UpdateReplicationSetOutput";
402
+ const _UTE = "UpdateTimelineEvent";
403
+ const _UTEI = "UpdateTimelineEventInput";
404
+ const _UTEO = "UpdateTimelineEventOutput";
405
+ const _VE = "ValidationException";
406
+ const _a = "arn";
407
+ const _aE = "automationExecutions";
408
+ const _aR = "autoResolve";
409
+ const _aRA = "addRegionAction";
410
+ const _ac = "actions";
411
+ const _af = "after";
412
+ const _b = "before";
413
+ const _c = "client";
414
+ const _cB = "createdBy";
415
+ const _cC = "chatChannel";
416
+ const _cDD = "codeDeployDeployment";
417
+ const _cFSU = "cloudFormationStackUpdate";
418
+ const _cS = "chatbotSns";
419
+ const _cT = "clientToken";
420
+ const _cTr = "creationTime";
421
+ const _cTre = "createdTime";
422
+ const _co = "code";
423
+ const _con = "condition";
424
+ const _d = "details";
425
+ const _dGA = "deploymentGroupArn";
426
+ const _dI = "deploymentId";
427
+ const _dN = "displayName";
428
+ const _dNo = "documentName";
429
+ const _dP = "deletionProtected";
430
+ const _dPy = "dynamicParameters";
431
+ const _dRA = "deleteRegionAction";
432
+ const _dS = "dedupeString";
433
+ const _dV = "documentVersion";
434
+ const _e = "error";
435
+ const _eD = "eventData";
436
+ const _eI = "eventId";
437
+ const _eR = "eventReferences";
438
+ const _eS = "eventSummaries";
439
+ const _eT = "endTime";
440
+ const _eTv = "eventTime";
441
+ const _eTve = "eventType";
442
+ const _eUT = "eventUpdatedTime";
443
+ const _em = "empty";
444
+ const _en = "engagements";
445
+ const _eq = "equals";
446
+ const _er = "errors";
447
+ const _ev = "event";
448
+ const _f = "findings";
449
+ const _fI = "findingId";
450
+ const _fIi = "findingIds";
451
+ const _fi = "filters";
452
+ const _gI = "generatedId";
453
+ const _h = "http";
454
+ const _hE = "httpError";
455
+ const _hQ = "httpQuery";
456
+ const _i = "integrations";
457
+ const _iB = "invokedBy";
458
+ const _iR = "incidentRecord";
459
+ const _iRA = "incidentRecordArn";
460
+ const _iRS = "incidentRecordSource";
461
+ const _iRSn = "incidentRecordSummaries";
462
+ const _iT = "incidentTemplate";
463
+ const _iTA = "itemToAdd";
464
+ const _iTDS = "incidentTemplateDedupeString";
465
+ const _iTI = "incidentTemplateImpact";
466
+ const _iTNT = "incidentTemplateNotificationTargets";
467
+ const _iTR = "itemToRemove";
468
+ const _iTS = "incidentTemplateSummary";
469
+ const _iTT = "incidentTemplateTitle";
470
+ const _iTTn = "incidentTemplateTags";
471
+ const _iTn = "incidentTags";
472
+ const _iV = "integerValues";
473
+ const _id = "id";
474
+ const _ide = "identifier";
475
+ const _im = "impact";
476
+ const _k = "key";
477
+ const _lMB = "lastModifiedBy";
478
+ const _lMT = "lastModifiedTime";
479
+ const _m = "message";
480
+ const _mD = "metricDefinition";
481
+ const _mR = "maxResults";
482
+ const _n = "name";
483
+ const _nT = "nextToken";
484
+ const _nTo = "notificationTargets";
485
+ const _p = "policy";
486
+ const _pD = "policyDocument";
487
+ const _pDC = "pagerDutyConfiguration";
488
+ const _pDIC = "pagerDutyIncidentConfiguration";
489
+ const _pDID = "pagerDutyIncidentDetail";
490
+ const _pI = "policyId";
491
+ const _pa = "parameters";
492
+ const _qC = "quotaCode";
493
+ const _r = "regions";
494
+ const _rA = "retryAfter";
495
+ const _rAe = "resourceArn";
496
+ const _rAo = "roleArn";
497
+ const _rD = "rawData";
498
+ const _rI = "resourceIdentifier";
499
+ const _rII = "relatedItemId";
500
+ const _rIU = "relatedItemsUpdate";
501
+ const _rIe = "relatedItems";
502
+ const _rM = "regionMap";
503
+ const _rN = "regionName";
504
+ const _rP = "resourcePolicies";
505
+ const _rPA = "responsePlanArn";
506
+ const _rPS = "responsePlanSummaries";
507
+ const _rRSR = "ramResourceShareRegion";
508
+ const _rS = "replicationSet";
509
+ const _rSA = "replicationSetArns";
510
+ const _rT = "resourceType";
511
+ const _rTe = "resolvedTime";
512
+ const _re = "resource";
513
+ const _s = "smithy.ts.sdk.synthetic.com.amazonaws.ssmincidents";
514
+ const _sA = "stackArn";
515
+ const _sAs = "ssmAutomation";
516
+ const _sB = "sortBy";
517
+ const _sC = "serviceCode";
518
+ const _sEA = "ssmExecutionArn";
519
+ const _sI = "secretId";
520
+ const _sIe = "serviceId";
521
+ const _sKKI = "sseKmsKeyId";
522
+ const _sM = "statusMessage";
523
+ const _sO = "sortOrder";
524
+ const _sT = "startTime";
525
+ const _sTA = "snsTopicArn";
526
+ const _sUDT = "statusUpdateDateTime";
527
+ const _sV = "stringValues";
528
+ const _se = "server";
529
+ const _so = "source";
530
+ const _st = "status";
531
+ const _su = "summary";
532
+ const _t = "tags";
533
+ const _tA = "targetAccount";
534
+ const _tAr = "triggerArn";
535
+ const _tD = "triggerDetails";
536
+ const _tK = "tagKeys";
537
+ const _ti = "title";
538
+ const _tim = "timestamp";
539
+ const _ty = "type";
540
+ const _u = "url";
541
+ const _v = "value";
542
+ const _va = "variable";
543
+ const n0 = "com.amazonaws.ssmincidents";
544
+ const _s_registry = TypeRegistry.for(_s);
545
+ var SSMIncidentsServiceException$ = [-3, _s, "SSMIncidentsServiceException", 0, [], []];
546
+ _s_registry.registerError(SSMIncidentsServiceException$, SSMIncidentsServiceException);
547
+ const n0_registry = TypeRegistry.for(n0);
548
+ var AccessDeniedException$ = [-3, n0, _ADE,
549
+ { [_e]: _c, [_hE]: 403 },
550
+ [_m],
551
+ [0], 1
552
+ ];
553
+ n0_registry.registerError(AccessDeniedException$, AccessDeniedException);
554
+ var ConflictException$ = [-3, n0, _CE,
555
+ { [_e]: _c, [_hE]: 409 },
556
+ [_m, _rI, _rT, _rA],
557
+ [0, 0, 0, 4], 1
558
+ ];
559
+ n0_registry.registerError(ConflictException$, ConflictException);
560
+ var InternalServerException$ = [-3, n0, _ISE,
561
+ { [_e]: _se, [_hE]: 500 },
562
+ [_m],
563
+ [0], 1
564
+ ];
565
+ n0_registry.registerError(InternalServerException$, InternalServerException);
566
+ var ResourceNotFoundException$ = [-3, n0, _RNFE,
567
+ { [_e]: _c, [_hE]: 404 },
568
+ [_m, _rI, _rT],
569
+ [0, 0, 0], 1
570
+ ];
571
+ n0_registry.registerError(ResourceNotFoundException$, ResourceNotFoundException);
572
+ var ServiceQuotaExceededException$ = [-3, n0, _SQEE,
573
+ { [_e]: _c, [_hE]: 402 },
574
+ [_m, _sC, _qC, _rI, _rT],
575
+ [0, 0, 0, 0, 0], 3
576
+ ];
577
+ n0_registry.registerError(ServiceQuotaExceededException$, ServiceQuotaExceededException);
578
+ var ThrottlingException$ = [-3, n0, _TE,
579
+ { [_e]: _c, [_hE]: 429 },
580
+ [_m, _sC, _qC],
581
+ [0, 0, 0], 3
582
+ ];
583
+ n0_registry.registerError(ThrottlingException$, ThrottlingException);
584
+ var ValidationException$ = [-3, n0, _VE,
585
+ { [_e]: _c, [_hE]: 400 },
586
+ [_m],
587
+ [0], 1
588
+ ];
589
+ n0_registry.registerError(ValidationException$, ValidationException);
590
+ const errorTypeRegistries = [
591
+ _s_registry,
592
+ n0_registry,
593
+ ];
594
+ var AddRegionAction$ = [3, n0, _ARA,
595
+ 0,
596
+ [_rN, _sKKI],
597
+ [0, 0], 1
598
+ ];
599
+ var BatchGetIncidentFindingsError$ = [3, n0, _BGIFE,
600
+ 0,
601
+ [_fI, _co, _m],
602
+ [0, 0, 0], 3
603
+ ];
604
+ var BatchGetIncidentFindingsInput$ = [3, n0, _BGIFI,
605
+ 0,
606
+ [_iRA, _fIi],
607
+ [0, 64 | 0], 2
608
+ ];
609
+ var BatchGetIncidentFindingsOutput$ = [3, n0, _BGIFO,
610
+ 0,
611
+ [_f, _er],
612
+ [() => FindingList, () => BatchGetIncidentFindingsErrorList], 2
613
+ ];
614
+ var CloudFormationStackUpdate$ = [3, n0, _CFSU,
615
+ 0,
616
+ [_sT, _sA, _eT],
617
+ [4, 0, 4], 2
618
+ ];
619
+ var CodeDeployDeployment$ = [3, n0, _CDD,
620
+ 0,
621
+ [_sT, _dGA, _dI, _eT],
622
+ [4, 0, 0, 4], 3
623
+ ];
624
+ var CreateReplicationSetInput$ = [3, n0, _CRSI,
625
+ 0,
626
+ [_r, _cT, _t],
627
+ [() => RegionMapInput, [0, 4], 128 | 0], 1
628
+ ];
629
+ var CreateReplicationSetOutput$ = [3, n0, _CRSO,
630
+ 0,
631
+ [_a],
632
+ [0], 1
633
+ ];
634
+ var CreateResponsePlanInput$ = [3, n0, _CRPI,
635
+ 0,
636
+ [_n, _iT, _cT, _dN, _cC, _en, _ac, _t, _i],
637
+ [0, () => IncidentTemplate$, [0, 4], 0, () => ChatChannel$, 64 | 0, () => ActionsList, 128 | 0, () => Integrations], 2
638
+ ];
639
+ var CreateResponsePlanOutput$ = [3, n0, _CRPO,
640
+ 0,
641
+ [_a],
642
+ [0], 1
643
+ ];
644
+ var CreateTimelineEventInput$ = [3, n0, _CTEI,
645
+ 0,
646
+ [_iRA, _eTv, _eTve, _eD, _cT, _eR],
647
+ [0, 4, 0, 0, [0, 4], () => EventReferenceList], 4
648
+ ];
649
+ var CreateTimelineEventOutput$ = [3, n0, _CTEO,
650
+ 0,
651
+ [_iRA, _eI],
652
+ [0, 0], 2
653
+ ];
654
+ var DeleteIncidentRecordInput$ = [3, n0, _DIRI,
655
+ 0,
656
+ [_a],
657
+ [0], 1
658
+ ];
659
+ var DeleteIncidentRecordOutput$ = [3, n0, _DIRO,
660
+ 0,
661
+ [],
662
+ []
663
+ ];
664
+ var DeleteRegionAction$ = [3, n0, _DRA,
665
+ 0,
666
+ [_rN],
667
+ [0], 1
668
+ ];
669
+ var DeleteReplicationSetInput$ = [3, n0, _DRSI,
670
+ 0,
671
+ [_a],
672
+ [[0, { [_hQ]: _a }]], 1
673
+ ];
674
+ var DeleteReplicationSetOutput$ = [3, n0, _DRSO,
675
+ 0,
676
+ [],
677
+ []
678
+ ];
679
+ var DeleteResourcePolicyInput$ = [3, n0, _DRPI,
680
+ 0,
681
+ [_rAe, _pI],
682
+ [0, 0], 2
683
+ ];
684
+ var DeleteResourcePolicyOutput$ = [3, n0, _DRPO,
685
+ 0,
686
+ [],
687
+ []
688
+ ];
689
+ var DeleteResponsePlanInput$ = [3, n0, _DRPIe,
690
+ 0,
691
+ [_a],
692
+ [0], 1
693
+ ];
694
+ var DeleteResponsePlanOutput$ = [3, n0, _DRPOe,
695
+ 0,
696
+ [],
697
+ []
698
+ ];
699
+ var DeleteTimelineEventInput$ = [3, n0, _DTEI,
700
+ 0,
701
+ [_iRA, _eI],
702
+ [0, 0], 2
703
+ ];
704
+ var DeleteTimelineEventOutput$ = [3, n0, _DTEO,
705
+ 0,
706
+ [],
707
+ []
708
+ ];
709
+ var EmptyChatChannel$ = [3, n0, _ECC,
710
+ 0,
711
+ [],
712
+ []
713
+ ];
714
+ var EventSummary$ = [3, n0, _ES,
715
+ 0,
716
+ [_iRA, _eI, _eTv, _eUT, _eTve, _eR],
717
+ [0, 0, 4, 4, 0, () => EventReferenceList], 5
718
+ ];
719
+ var Filter$ = [3, n0, _F,
720
+ 0,
721
+ [_k, _con],
722
+ [0, () => Condition$], 2
723
+ ];
724
+ var Finding$ = [3, n0, _Fi,
725
+ 0,
726
+ [_id, _cTr, _lMT, _d],
727
+ [0, 4, 4, () => FindingDetails$], 3
728
+ ];
729
+ var FindingSummary$ = [3, n0, _FS,
730
+ 0,
731
+ [_id, _lMT],
732
+ [0, 4], 2
733
+ ];
734
+ var GetIncidentRecordInput$ = [3, n0, _GIRI,
735
+ 0,
736
+ [_a],
737
+ [[0, { [_hQ]: _a }]], 1
738
+ ];
739
+ var GetIncidentRecordOutput$ = [3, n0, _GIRO,
740
+ 0,
741
+ [_iR],
742
+ [() => IncidentRecord$], 1
743
+ ];
744
+ var GetReplicationSetInput$ = [3, n0, _GRSI,
745
+ 0,
746
+ [_a],
747
+ [[0, { [_hQ]: _a }]], 1
748
+ ];
749
+ var GetReplicationSetOutput$ = [3, n0, _GRSO,
750
+ 0,
751
+ [_rS],
752
+ [() => ReplicationSet$], 1
753
+ ];
754
+ var GetResourcePoliciesInput$ = [3, n0, _GRPI,
755
+ 0,
756
+ [_rAe, _mR, _nT],
757
+ [[0, { [_hQ]: _rAe }], 1, 0], 1
758
+ ];
759
+ var GetResourcePoliciesOutput$ = [3, n0, _GRPO,
760
+ 0,
761
+ [_rP, _nT],
762
+ [() => ResourcePolicyList, 0], 1
763
+ ];
764
+ var GetResponsePlanInput$ = [3, n0, _GRPIe,
765
+ 0,
766
+ [_a],
767
+ [[0, { [_hQ]: _a }]], 1
768
+ ];
769
+ var GetResponsePlanOutput$ = [3, n0, _GRPOe,
770
+ 0,
771
+ [_a, _n, _iT, _dN, _cC, _en, _ac, _i],
772
+ [0, 0, () => IncidentTemplate$, 0, () => ChatChannel$, 64 | 0, () => ActionsList, () => Integrations], 3
773
+ ];
774
+ var GetTimelineEventInput$ = [3, n0, _GTEI,
775
+ 0,
776
+ [_iRA, _eI],
777
+ [[0, { [_hQ]: _iRA }], [0, { [_hQ]: _eI }]], 2
778
+ ];
779
+ var GetTimelineEventOutput$ = [3, n0, _GTEO,
780
+ 0,
781
+ [_ev],
782
+ [() => TimelineEvent$], 1
783
+ ];
784
+ var IncidentRecord$ = [3, n0, _IR,
785
+ 0,
786
+ [_a, _ti, _st, _im, _cTr, _lMT, _lMB, _iRS, _dS, _su, _rTe, _aE, _cC, _nTo],
787
+ [0, 0, 0, 1, 4, 4, 0, () => IncidentRecordSource$, 0, 0, 4, () => AutomationExecutionSet, () => ChatChannel$, () => NotificationTargetSet], 9
788
+ ];
789
+ var IncidentRecordSource$ = [3, n0, _IRS,
790
+ 0,
791
+ [_cB, _so, _iB, _rAe],
792
+ [0, 0, 0, 0], 2
793
+ ];
794
+ var IncidentRecordSummary$ = [3, n0, _IRSn,
795
+ 0,
796
+ [_a, _ti, _st, _im, _cTr, _iRS, _rTe],
797
+ [0, 0, 0, 1, 4, () => IncidentRecordSource$, 4], 6
798
+ ];
799
+ var IncidentTemplate$ = [3, n0, _IT,
800
+ 0,
801
+ [_ti, _im, _su, _dS, _nTo, _iTn],
802
+ [0, 1, 0, 0, () => NotificationTargetSet, 128 | 0], 2
803
+ ];
804
+ var ItemIdentifier$ = [3, n0, _II,
805
+ 0,
806
+ [_v, _ty],
807
+ [() => ItemValue$, 0], 2
808
+ ];
809
+ var ListIncidentFindingsInput$ = [3, n0, _LIFI,
810
+ 0,
811
+ [_iRA, _mR, _nT],
812
+ [0, 1, 0], 1
813
+ ];
814
+ var ListIncidentFindingsOutput$ = [3, n0, _LIFO,
815
+ 0,
816
+ [_f, _nT],
817
+ [() => FindingSummaryList, 0], 1
818
+ ];
819
+ var ListIncidentRecordsInput$ = [3, n0, _LIRI,
820
+ 0,
821
+ [_fi, _mR, _nT],
822
+ [() => FilterList, 1, 0]
823
+ ];
824
+ var ListIncidentRecordsOutput$ = [3, n0, _LIRO,
825
+ 0,
826
+ [_iRSn, _nT],
827
+ [() => IncidentRecordSummaryList, 0], 1
828
+ ];
829
+ var ListRelatedItemsInput$ = [3, n0, _LRII,
830
+ 0,
831
+ [_iRA, _mR, _nT],
832
+ [0, 1, 0], 1
833
+ ];
834
+ var ListRelatedItemsOutput$ = [3, n0, _LRIO,
835
+ 0,
836
+ [_rIe, _nT],
837
+ [() => RelatedItemList, 0], 1
838
+ ];
839
+ var ListReplicationSetsInput$ = [3, n0, _LRSI,
840
+ 0,
841
+ [_mR, _nT],
842
+ [1, 0]
843
+ ];
844
+ var ListReplicationSetsOutput$ = [3, n0, _LRSO,
845
+ 0,
846
+ [_rSA, _nT],
847
+ [64 | 0, 0], 1
848
+ ];
849
+ var ListResponsePlansInput$ = [3, n0, _LRPI,
850
+ 0,
851
+ [_mR, _nT],
852
+ [1, 0]
853
+ ];
854
+ var ListResponsePlansOutput$ = [3, n0, _LRPO,
855
+ 0,
856
+ [_rPS, _nT],
857
+ [() => ResponsePlanSummaryList, 0], 1
858
+ ];
859
+ var ListTagsForResourceRequest$ = [3, n0, _LTFRR,
860
+ 0,
861
+ [_rAe],
862
+ [[0, 1]], 1
863
+ ];
864
+ var ListTagsForResourceResponse$ = [3, n0, _LTFRRi,
865
+ 0,
866
+ [_t],
867
+ [128 | 0], 1
868
+ ];
869
+ var ListTimelineEventsInput$ = [3, n0, _LTEI,
870
+ 0,
871
+ [_iRA, _fi, _sB, _sO, _mR, _nT],
872
+ [0, () => FilterList, 0, 0, 1, 0], 1
873
+ ];
874
+ var ListTimelineEventsOutput$ = [3, n0, _LTEO,
875
+ 0,
876
+ [_eS, _nT],
877
+ [() => EventSummaryList, 0], 1
878
+ ];
879
+ var PagerDutyConfiguration$ = [3, n0, _PDC,
880
+ 0,
881
+ [_n, _sI, _pDIC],
882
+ [0, 0, () => PagerDutyIncidentConfiguration$], 3
883
+ ];
884
+ var PagerDutyIncidentConfiguration$ = [3, n0, _PDIC,
885
+ 0,
886
+ [_sIe],
887
+ [0], 1
888
+ ];
889
+ var PagerDutyIncidentDetail$ = [3, n0, _PDID,
890
+ 0,
891
+ [_id, _aR, _sI],
892
+ [0, 2, 0], 1
893
+ ];
894
+ var PutResourcePolicyInput$ = [3, n0, _PRPI,
895
+ 0,
896
+ [_rAe, _p],
897
+ [0, 0], 2
898
+ ];
899
+ var PutResourcePolicyOutput$ = [3, n0, _PRPO,
900
+ 0,
901
+ [_pI],
902
+ [0], 1
903
+ ];
904
+ var RegionInfo$ = [3, n0, _RI,
905
+ 0,
906
+ [_st, _sUDT, _sKKI, _sM],
907
+ [0, 4, 0, 0], 2
908
+ ];
909
+ var RegionMapInputValue$ = [3, n0, _RMIV,
910
+ 0,
911
+ [_sKKI],
912
+ [0]
913
+ ];
914
+ var RelatedItem$ = [3, n0, _RIe,
915
+ 0,
916
+ [_ide, _ti, _gI],
917
+ [() => ItemIdentifier$, 0, 0], 1
918
+ ];
919
+ var ReplicationSet$ = [3, n0, _RS,
920
+ 0,
921
+ [_rM, _st, _dP, _cTre, _cB, _lMT, _lMB, _a],
922
+ [() => RegionInfoMap, 0, 2, 4, 0, 4, 0, 0], 7
923
+ ];
924
+ var ResourcePolicy$ = [3, n0, _RP,
925
+ 0,
926
+ [_pD, _pI, _rRSR],
927
+ [0, 0, 0], 3
928
+ ];
929
+ var ResponsePlanSummary$ = [3, n0, _RPS,
930
+ 0,
931
+ [_a, _n, _dN],
932
+ [0, 0, 0], 2
933
+ ];
934
+ var SsmAutomation$ = [3, n0, _SA,
935
+ 0,
936
+ [_rAo, _dNo, _dV, _tA, _pa, _dPy],
937
+ [0, 0, 0, 0, [2, n0, _SP, 0, 0, 64 | 0], () => DynamicSsmParameters], 2
938
+ ];
939
+ var StartIncidentInput$ = [3, n0, _SII,
940
+ 0,
941
+ [_rPA, _cT, _ti, _im, _tD, _rIe],
942
+ [0, [0, 4], 0, 1, () => TriggerDetails$, () => RelatedItemList], 1
943
+ ];
944
+ var StartIncidentOutput$ = [3, n0, _SIO,
945
+ 0,
946
+ [_iRA],
947
+ [0], 1
948
+ ];
949
+ var TagResourceRequest$ = [3, n0, _TRR,
950
+ 0,
951
+ [_rAe, _t],
952
+ [[0, 1], 128 | 0], 2
953
+ ];
954
+ var TagResourceResponse$ = [3, n0, _TRRa,
955
+ 0,
956
+ [],
957
+ []
958
+ ];
959
+ var TimelineEvent$ = [3, n0, _TEi,
960
+ 0,
961
+ [_iRA, _eI, _eTv, _eUT, _eTve, _eD, _eR],
962
+ [0, 0, 4, 4, 0, 0, () => EventReferenceList], 6
963
+ ];
964
+ var TriggerDetails$ = [3, n0, _TD,
965
+ 0,
966
+ [_so, _tim, _tAr, _rD],
967
+ [0, 4, 0, 0], 2
968
+ ];
969
+ var UntagResourceRequest$ = [3, n0, _URR,
970
+ 0,
971
+ [_rAe, _tK],
972
+ [[0, 1], [64 | 0, { [_hQ]: _tK }]], 2
973
+ ];
974
+ var UntagResourceResponse$ = [3, n0, _URRn,
975
+ 0,
976
+ [],
977
+ []
978
+ ];
979
+ var UpdateDeletionProtectionInput$ = [3, n0, _UDPI,
980
+ 0,
981
+ [_a, _dP, _cT],
982
+ [0, 2, [0, 4]], 2
983
+ ];
984
+ var UpdateDeletionProtectionOutput$ = [3, n0, _UDPO,
985
+ 0,
986
+ [],
987
+ []
988
+ ];
989
+ var UpdateIncidentRecordInput$ = [3, n0, _UIRI,
990
+ 0,
991
+ [_a, _cT, _ti, _su, _im, _st, _cC, _nTo],
992
+ [0, [0, 4], 0, 0, 1, 0, () => ChatChannel$, () => NotificationTargetSet], 1
993
+ ];
994
+ var UpdateIncidentRecordOutput$ = [3, n0, _UIRO,
995
+ 0,
996
+ [],
997
+ []
998
+ ];
999
+ var UpdateRelatedItemsInput$ = [3, n0, _URII,
1000
+ 0,
1001
+ [_iRA, _rIU, _cT],
1002
+ [0, () => RelatedItemsUpdate$, [0, 4]], 2
1003
+ ];
1004
+ var UpdateRelatedItemsOutput$ = [3, n0, _URIO,
1005
+ 0,
1006
+ [],
1007
+ []
1008
+ ];
1009
+ var UpdateReplicationSetInput$ = [3, n0, _URSI,
1010
+ 0,
1011
+ [_a, _ac, _cT],
1012
+ [0, () => UpdateActionList, [0, 4]], 2
1013
+ ];
1014
+ var UpdateReplicationSetOutput$ = [3, n0, _URSO,
1015
+ 0,
1016
+ [],
1017
+ []
1018
+ ];
1019
+ var UpdateResponsePlanInput$ = [3, n0, _URPI,
1020
+ 0,
1021
+ [_a, _cT, _dN, _iTT, _iTI, _iTS, _iTDS, _iTNT, _cC, _en, _ac, _iTTn, _i],
1022
+ [0, [0, 4], 0, 0, 1, 0, 0, () => NotificationTargetSet, () => ChatChannel$, 64 | 0, () => ActionsList, 128 | 0, () => Integrations], 1
1023
+ ];
1024
+ var UpdateResponsePlanOutput$ = [3, n0, _URPO,
1025
+ 0,
1026
+ [],
1027
+ []
1028
+ ];
1029
+ var UpdateTimelineEventInput$ = [3, n0, _UTEI,
1030
+ 0,
1031
+ [_iRA, _eI, _cT, _eTv, _eTve, _eD, _eR],
1032
+ [0, 0, [0, 4], 4, 0, 0, () => EventReferenceList], 2
1033
+ ];
1034
+ var UpdateTimelineEventOutput$ = [3, n0, _UTEO,
1035
+ 0,
1036
+ [],
1037
+ []
1038
+ ];
1039
+ var ActionsList = [1, n0, _AL,
1040
+ 0, () => Action$
1041
+ ];
1042
+ var AutomationExecutionSet = [1, n0, _AES,
1043
+ 0, () => AutomationExecution$
1044
+ ];
1045
+ var BatchGetIncidentFindingsErrorList = [1, n0, _BGIFEL,
1046
+ 0, () => BatchGetIncidentFindingsError$
1047
+ ];
1048
+ var EventReferenceList = [1, n0, _ERL,
1049
+ 0, () => EventReference$
1050
+ ];
1051
+ var EventSummaryList = [1, n0, _ESL,
1052
+ 0, () => EventSummary$
1053
+ ];
1054
+ var FilterList = [1, n0, _FL,
1055
+ 0, () => Filter$
1056
+ ];
1057
+ var FindingList = [1, n0, _FLi,
1058
+ 0, () => Finding$
1059
+ ];
1060
+ var FindingSummaryList = [1, n0, _FSL,
1061
+ 0, () => FindingSummary$
1062
+ ];
1063
+ var IncidentRecordSummaryList = [1, n0, _IRSL,
1064
+ 0, () => IncidentRecordSummary$
1065
+ ];
1066
+ var Integrations = [1, n0, _I,
1067
+ 0, () => Integration$
1068
+ ];
1069
+ var NotificationTargetSet = [1, n0, _NTS,
1070
+ 0, () => NotificationTargetItem$
1071
+ ];
1072
+ var RelatedItemList = [1, n0, _RIL,
1073
+ 0, () => RelatedItem$
1074
+ ];
1075
+ var ResourcePolicyList = [1, n0, _RPL,
1076
+ 0, () => ResourcePolicy$
1077
+ ];
1078
+ var ResponsePlanSummaryList = [1, n0, _RPSL,
1079
+ 0, () => ResponsePlanSummary$
1080
+ ];
1081
+ var UpdateActionList = [1, n0, _UAL,
1082
+ 0, () => UpdateReplicationSetAction$
1083
+ ];
1084
+ var DynamicSsmParameters = [2, n0, _DSP,
1085
+ 0, 0, () => DynamicSsmParameterValue$
1086
+ ];
1087
+ var RegionInfoMap = [2, n0, _RIM,
1088
+ 0, 0, () => RegionInfo$
1089
+ ];
1090
+ var RegionMapInput = [2, n0, _RMI,
1091
+ 0, 0, () => RegionMapInputValue$
1092
+ ];
1093
+ var Action$ = [4, n0, _A,
1094
+ 0,
1095
+ [_sAs],
1096
+ [() => SsmAutomation$]
1097
+ ];
1098
+ var AttributeValueList$ = [4, n0, _AVL,
1099
+ 0,
1100
+ [_sV, _iV],
1101
+ [64 | 0, 64 | 1]
1102
+ ];
1103
+ var AutomationExecution$ = [4, n0, _AE,
1104
+ 0,
1105
+ [_sEA],
1106
+ [0]
1107
+ ];
1108
+ var ChatChannel$ = [4, n0, _CC,
1109
+ 0,
1110
+ [_em, _cS],
1111
+ [() => EmptyChatChannel$, 64 | 0]
1112
+ ];
1113
+ var Condition$ = [4, n0, _C,
1114
+ 0,
1115
+ [_b, _af, _eq],
1116
+ [4, 4, () => AttributeValueList$]
1117
+ ];
1118
+ var DynamicSsmParameterValue$ = [4, n0, _DSPV,
1119
+ 0,
1120
+ [_va],
1121
+ [0]
1122
+ ];
1123
+ var EventReference$ = [4, n0, _ER,
1124
+ 0,
1125
+ [_re, _rII],
1126
+ [0, 0]
1127
+ ];
1128
+ var FindingDetails$ = [4, n0, _FD,
1129
+ 0,
1130
+ [_cDD, _cFSU],
1131
+ [() => CodeDeployDeployment$, () => CloudFormationStackUpdate$]
1132
+ ];
1133
+ var Integration$ = [4, n0, _In,
1134
+ 0,
1135
+ [_pDC],
1136
+ [() => PagerDutyConfiguration$]
1137
+ ];
1138
+ var ItemValue$ = [4, n0, _IV,
1139
+ 0,
1140
+ [_a, _u, _mD, _pDID],
1141
+ [0, 0, 0, () => PagerDutyIncidentDetail$]
1142
+ ];
1143
+ var NotificationTargetItem$ = [4, n0, _NTI,
1144
+ 0,
1145
+ [_sTA],
1146
+ [0]
1147
+ ];
1148
+ var RelatedItemsUpdate$ = [4, n0, _RIU,
1149
+ 0,
1150
+ [_iTA, _iTR],
1151
+ [() => RelatedItem$, () => ItemIdentifier$]
1152
+ ];
1153
+ var UpdateReplicationSetAction$ = [4, n0, _URSA,
1154
+ 0,
1155
+ [_aRA, _dRA],
1156
+ [() => AddRegionAction$, () => DeleteRegionAction$]
1157
+ ];
1158
+ var BatchGetIncidentFindings$ = [9, n0, _BGIF,
1159
+ { [_h]: ["POST", "/batchGetIncidentFindings", 200] }, () => BatchGetIncidentFindingsInput$, () => BatchGetIncidentFindingsOutput$
1160
+ ];
1161
+ var CreateReplicationSet$ = [9, n0, _CRS,
1162
+ { [_h]: ["POST", "/createReplicationSet", 201] }, () => CreateReplicationSetInput$, () => CreateReplicationSetOutput$
1163
+ ];
1164
+ var CreateResponsePlan$ = [9, n0, _CRP,
1165
+ { [_h]: ["POST", "/createResponsePlan", 201] }, () => CreateResponsePlanInput$, () => CreateResponsePlanOutput$
1166
+ ];
1167
+ var CreateTimelineEvent$ = [9, n0, _CTE,
1168
+ { [_h]: ["POST", "/createTimelineEvent", 201] }, () => CreateTimelineEventInput$, () => CreateTimelineEventOutput$
1169
+ ];
1170
+ var DeleteIncidentRecord$ = [9, n0, _DIR,
1171
+ { [_h]: ["POST", "/deleteIncidentRecord", 204] }, () => DeleteIncidentRecordInput$, () => DeleteIncidentRecordOutput$
1172
+ ];
1173
+ var DeleteReplicationSet$ = [9, n0, _DRS,
1174
+ { [_h]: ["POST", "/deleteReplicationSet", 204] }, () => DeleteReplicationSetInput$, () => DeleteReplicationSetOutput$
1175
+ ];
1176
+ var DeleteResourcePolicy$ = [9, n0, _DRP,
1177
+ { [_h]: ["POST", "/deleteResourcePolicy", 200] }, () => DeleteResourcePolicyInput$, () => DeleteResourcePolicyOutput$
1178
+ ];
1179
+ var DeleteResponsePlan$ = [9, n0, _DRPe,
1180
+ { [_h]: ["POST", "/deleteResponsePlan", 204] }, () => DeleteResponsePlanInput$, () => DeleteResponsePlanOutput$
1181
+ ];
1182
+ var DeleteTimelineEvent$ = [9, n0, _DTE,
1183
+ { [_h]: ["POST", "/deleteTimelineEvent", 204] }, () => DeleteTimelineEventInput$, () => DeleteTimelineEventOutput$
1184
+ ];
1185
+ var GetIncidentRecord$ = [9, n0, _GIR,
1186
+ { [_h]: ["GET", "/getIncidentRecord", 200] }, () => GetIncidentRecordInput$, () => GetIncidentRecordOutput$
1187
+ ];
1188
+ var GetReplicationSet$ = [9, n0, _GRS,
1189
+ { [_h]: ["GET", "/getReplicationSet", 200] }, () => GetReplicationSetInput$, () => GetReplicationSetOutput$
1190
+ ];
1191
+ var GetResourcePolicies$ = [9, n0, _GRP,
1192
+ { [_h]: ["POST", "/getResourcePolicies", 200] }, () => GetResourcePoliciesInput$, () => GetResourcePoliciesOutput$
1193
+ ];
1194
+ var GetResponsePlan$ = [9, n0, _GRPe,
1195
+ { [_h]: ["GET", "/getResponsePlan", 200] }, () => GetResponsePlanInput$, () => GetResponsePlanOutput$
1196
+ ];
1197
+ var GetTimelineEvent$ = [9, n0, _GTE,
1198
+ { [_h]: ["GET", "/getTimelineEvent", 200] }, () => GetTimelineEventInput$, () => GetTimelineEventOutput$
1199
+ ];
1200
+ var ListIncidentFindings$ = [9, n0, _LIF,
1201
+ { [_h]: ["POST", "/listIncidentFindings", 200] }, () => ListIncidentFindingsInput$, () => ListIncidentFindingsOutput$
1202
+ ];
1203
+ var ListIncidentRecords$ = [9, n0, _LIR,
1204
+ { [_h]: ["POST", "/listIncidentRecords", 200] }, () => ListIncidentRecordsInput$, () => ListIncidentRecordsOutput$
1205
+ ];
1206
+ var ListRelatedItems$ = [9, n0, _LRI,
1207
+ { [_h]: ["POST", "/listRelatedItems", 200] }, () => ListRelatedItemsInput$, () => ListRelatedItemsOutput$
1208
+ ];
1209
+ var ListReplicationSets$ = [9, n0, _LRS,
1210
+ { [_h]: ["POST", "/listReplicationSets", 200] }, () => ListReplicationSetsInput$, () => ListReplicationSetsOutput$
1211
+ ];
1212
+ var ListResponsePlans$ = [9, n0, _LRP,
1213
+ { [_h]: ["POST", "/listResponsePlans", 200] }, () => ListResponsePlansInput$, () => ListResponsePlansOutput$
1214
+ ];
1215
+ var ListTagsForResource$ = [9, n0, _LTFR,
1216
+ { [_h]: ["GET", "/tags/{resourceArn}", 200] }, () => ListTagsForResourceRequest$, () => ListTagsForResourceResponse$
1217
+ ];
1218
+ var ListTimelineEvents$ = [9, n0, _LTE,
1219
+ { [_h]: ["POST", "/listTimelineEvents", 200] }, () => ListTimelineEventsInput$, () => ListTimelineEventsOutput$
1220
+ ];
1221
+ var PutResourcePolicy$ = [9, n0, _PRP,
1222
+ { [_h]: ["POST", "/putResourcePolicy", 200] }, () => PutResourcePolicyInput$, () => PutResourcePolicyOutput$
1223
+ ];
1224
+ var StartIncident$ = [9, n0, _SI,
1225
+ { [_h]: ["POST", "/startIncident", 200] }, () => StartIncidentInput$, () => StartIncidentOutput$
1226
+ ];
1227
+ var TagResource$ = [9, n0, _TR,
1228
+ { [_h]: ["POST", "/tags/{resourceArn}", 204] }, () => TagResourceRequest$, () => TagResourceResponse$
1229
+ ];
1230
+ var UntagResource$ = [9, n0, _UR,
1231
+ { [_h]: ["DELETE", "/tags/{resourceArn}", 204] }, () => UntagResourceRequest$, () => UntagResourceResponse$
1232
+ ];
1233
+ var UpdateDeletionProtection$ = [9, n0, _UDP,
1234
+ { [_h]: ["POST", "/updateDeletionProtection", 204] }, () => UpdateDeletionProtectionInput$, () => UpdateDeletionProtectionOutput$
1235
+ ];
1236
+ var UpdateIncidentRecord$ = [9, n0, _UIR,
1237
+ { [_h]: ["POST", "/updateIncidentRecord", 204] }, () => UpdateIncidentRecordInput$, () => UpdateIncidentRecordOutput$
1238
+ ];
1239
+ var UpdateRelatedItems$ = [9, n0, _URI,
1240
+ { [_h]: ["POST", "/updateRelatedItems", 204] }, () => UpdateRelatedItemsInput$, () => UpdateRelatedItemsOutput$
1241
+ ];
1242
+ var UpdateReplicationSet$ = [9, n0, _URS,
1243
+ { [_h]: ["POST", "/updateReplicationSet", 204] }, () => UpdateReplicationSetInput$, () => UpdateReplicationSetOutput$
1244
+ ];
1245
+ var UpdateResponsePlan$ = [9, n0, _URP,
1246
+ { [_h]: ["POST", "/updateResponsePlan", 204] }, () => UpdateResponsePlanInput$, () => UpdateResponsePlanOutput$
1247
+ ];
1248
+ var UpdateTimelineEvent$ = [9, n0, _UTE,
1249
+ { [_h]: ["POST", "/updateTimelineEvent", 204] }, () => UpdateTimelineEventInput$, () => UpdateTimelineEventOutput$
1250
+ ];
1251
+
1252
+ const getRuntimeConfig$1 = (config) => {
1253
+ return {
1254
+ apiVersion: "2018-05-10",
1255
+ base64Decoder: config?.base64Decoder ?? fromBase64,
1256
+ base64Encoder: config?.base64Encoder ?? toBase64,
1257
+ disableHostPrefix: config?.disableHostPrefix ?? false,
1258
+ endpointProvider: config?.endpointProvider ?? defaultEndpointResolver,
1259
+ extensions: config?.extensions ?? [],
1260
+ httpAuthSchemeProvider: config?.httpAuthSchemeProvider ?? defaultSSMIncidentsHttpAuthSchemeProvider,
1261
+ httpAuthSchemes: config?.httpAuthSchemes ?? [
1262
+ {
1263
+ schemeId: "aws.auth#sigv4",
1264
+ identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
1265
+ signer: new AwsSdkSigV4Signer(),
1266
+ },
1267
+ ],
1268
+ logger: config?.logger ?? new NoOpLogger(),
1269
+ protocol: config?.protocol ?? AwsRestJsonProtocol,
1270
+ protocolSettings: config?.protocolSettings ?? {
1271
+ defaultNamespace: "com.amazonaws.ssmincidents",
1272
+ errorTypeRegistries,
1273
+ version: "2018-05-10",
1274
+ serviceTarget: "SSMIncidents",
1275
+ },
1276
+ serviceId: config?.serviceId ?? "SSM Incidents",
1277
+ sha256: config?.sha256 ?? Sha256,
1278
+ urlParser: config?.urlParser ?? parseUrl,
1279
+ utf8Decoder: config?.utf8Decoder ?? fromUtf8,
1280
+ utf8Encoder: config?.utf8Encoder ?? toUtf8,
1281
+ };
1282
+ };
1283
+
1284
+ const getRuntimeConfig = (config) => {
1285
+ emitWarningIfUnsupportedVersion(process.version);
1286
+ const defaultsMode = resolveDefaultsModeConfig(config);
1287
+ const defaultConfigProvider = () => defaultsMode().then(loadConfigsForDefaultMode);
1288
+ const clientSharedValues = getRuntimeConfig$1(config);
1289
+ emitWarningIfUnsupportedVersion$1(process.version);
1290
+ const loaderConfig = {
1291
+ profile: config?.profile,
1292
+ logger: clientSharedValues.logger,
1293
+ };
1294
+ return {
1295
+ ...clientSharedValues,
1296
+ ...config,
1297
+ runtime: "node",
1298
+ defaultsMode,
1299
+ authSchemePreference: config?.authSchemePreference ?? loadConfig(NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
1300
+ bodyLengthChecker: config?.bodyLengthChecker ?? calculateBodyLength,
1301
+ credentialDefaultProvider: config?.credentialDefaultProvider ?? defaultProvider,
1302
+ defaultUserAgentProvider: config?.defaultUserAgentProvider ?? createDefaultUserAgentProvider({ serviceId: clientSharedValues.serviceId, clientVersion: packageInfo.version }),
1303
+ maxAttempts: config?.maxAttempts ?? loadConfig(NODE_MAX_ATTEMPT_CONFIG_OPTIONS, config),
1304
+ region: config?.region ?? loadConfig(NODE_REGION_CONFIG_OPTIONS, { ...NODE_REGION_CONFIG_FILE_OPTIONS, ...loaderConfig }),
1305
+ requestHandler: NodeHttpHandler.create(config?.requestHandler ?? defaultConfigProvider),
1306
+ retryMode: config?.retryMode ??
1307
+ loadConfig({
1308
+ ...NODE_RETRY_MODE_CONFIG_OPTIONS,
1309
+ default: async () => (await defaultConfigProvider()).retryMode || DEFAULT_RETRY_MODE,
1310
+ }, config),
1311
+ streamCollector: config?.streamCollector ?? streamCollector,
1312
+ useDualstackEndpoint: config?.useDualstackEndpoint ?? loadConfig(NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1313
+ useFipsEndpoint: config?.useFipsEndpoint ?? loadConfig(NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, loaderConfig),
1314
+ userAgentAppId: config?.userAgentAppId ?? loadConfig(NODE_APP_ID_CONFIG_OPTIONS, loaderConfig),
1315
+ };
1316
+ };
1317
+
34
1318
  const getHttpAuthExtensionConfiguration = (runtimeConfig) => {
35
1319
  const _httpAuthSchemes = runtimeConfig.httpAuthSchemes;
36
1320
  let _httpAuthSchemeProvider = runtimeConfig.httpAuthSchemeProvider;
@@ -700,49 +1984,199 @@ const SortOrder = {
700
1984
  DESCENDING: "DESCENDING",
701
1985
  };
702
1986
 
1987
+ exports.AccessDeniedException = AccessDeniedException;
1988
+ exports.AccessDeniedException$ = AccessDeniedException$;
1989
+ exports.Action$ = Action$;
1990
+ exports.AddRegionAction$ = AddRegionAction$;
1991
+ exports.AttributeValueList$ = AttributeValueList$;
1992
+ exports.AutomationExecution$ = AutomationExecution$;
1993
+ exports.BatchGetIncidentFindings$ = BatchGetIncidentFindings$;
703
1994
  exports.BatchGetIncidentFindingsCommand = BatchGetIncidentFindingsCommand;
1995
+ exports.BatchGetIncidentFindingsError$ = BatchGetIncidentFindingsError$;
1996
+ exports.BatchGetIncidentFindingsInput$ = BatchGetIncidentFindingsInput$;
1997
+ exports.BatchGetIncidentFindingsOutput$ = BatchGetIncidentFindingsOutput$;
1998
+ exports.ChatChannel$ = ChatChannel$;
1999
+ exports.CloudFormationStackUpdate$ = CloudFormationStackUpdate$;
2000
+ exports.CodeDeployDeployment$ = CodeDeployDeployment$;
2001
+ exports.Condition$ = Condition$;
2002
+ exports.ConflictException = ConflictException;
2003
+ exports.ConflictException$ = ConflictException$;
2004
+ exports.CreateReplicationSet$ = CreateReplicationSet$;
704
2005
  exports.CreateReplicationSetCommand = CreateReplicationSetCommand;
2006
+ exports.CreateReplicationSetInput$ = CreateReplicationSetInput$;
2007
+ exports.CreateReplicationSetOutput$ = CreateReplicationSetOutput$;
2008
+ exports.CreateResponsePlan$ = CreateResponsePlan$;
705
2009
  exports.CreateResponsePlanCommand = CreateResponsePlanCommand;
2010
+ exports.CreateResponsePlanInput$ = CreateResponsePlanInput$;
2011
+ exports.CreateResponsePlanOutput$ = CreateResponsePlanOutput$;
2012
+ exports.CreateTimelineEvent$ = CreateTimelineEvent$;
706
2013
  exports.CreateTimelineEventCommand = CreateTimelineEventCommand;
2014
+ exports.CreateTimelineEventInput$ = CreateTimelineEventInput$;
2015
+ exports.CreateTimelineEventOutput$ = CreateTimelineEventOutput$;
2016
+ exports.DeleteIncidentRecord$ = DeleteIncidentRecord$;
707
2017
  exports.DeleteIncidentRecordCommand = DeleteIncidentRecordCommand;
2018
+ exports.DeleteIncidentRecordInput$ = DeleteIncidentRecordInput$;
2019
+ exports.DeleteIncidentRecordOutput$ = DeleteIncidentRecordOutput$;
2020
+ exports.DeleteRegionAction$ = DeleteRegionAction$;
2021
+ exports.DeleteReplicationSet$ = DeleteReplicationSet$;
708
2022
  exports.DeleteReplicationSetCommand = DeleteReplicationSetCommand;
2023
+ exports.DeleteReplicationSetInput$ = DeleteReplicationSetInput$;
2024
+ exports.DeleteReplicationSetOutput$ = DeleteReplicationSetOutput$;
2025
+ exports.DeleteResourcePolicy$ = DeleteResourcePolicy$;
709
2026
  exports.DeleteResourcePolicyCommand = DeleteResourcePolicyCommand;
2027
+ exports.DeleteResourcePolicyInput$ = DeleteResourcePolicyInput$;
2028
+ exports.DeleteResourcePolicyOutput$ = DeleteResourcePolicyOutput$;
2029
+ exports.DeleteResponsePlan$ = DeleteResponsePlan$;
710
2030
  exports.DeleteResponsePlanCommand = DeleteResponsePlanCommand;
2031
+ exports.DeleteResponsePlanInput$ = DeleteResponsePlanInput$;
2032
+ exports.DeleteResponsePlanOutput$ = DeleteResponsePlanOutput$;
2033
+ exports.DeleteTimelineEvent$ = DeleteTimelineEvent$;
711
2034
  exports.DeleteTimelineEventCommand = DeleteTimelineEventCommand;
2035
+ exports.DeleteTimelineEventInput$ = DeleteTimelineEventInput$;
2036
+ exports.DeleteTimelineEventOutput$ = DeleteTimelineEventOutput$;
2037
+ exports.DynamicSsmParameterValue$ = DynamicSsmParameterValue$;
2038
+ exports.EmptyChatChannel$ = EmptyChatChannel$;
2039
+ exports.EventReference$ = EventReference$;
2040
+ exports.EventSummary$ = EventSummary$;
2041
+ exports.Filter$ = Filter$;
2042
+ exports.Finding$ = Finding$;
2043
+ exports.FindingDetails$ = FindingDetails$;
2044
+ exports.FindingSummary$ = FindingSummary$;
2045
+ exports.GetIncidentRecord$ = GetIncidentRecord$;
712
2046
  exports.GetIncidentRecordCommand = GetIncidentRecordCommand;
2047
+ exports.GetIncidentRecordInput$ = GetIncidentRecordInput$;
2048
+ exports.GetIncidentRecordOutput$ = GetIncidentRecordOutput$;
2049
+ exports.GetReplicationSet$ = GetReplicationSet$;
713
2050
  exports.GetReplicationSetCommand = GetReplicationSetCommand;
2051
+ exports.GetReplicationSetInput$ = GetReplicationSetInput$;
2052
+ exports.GetReplicationSetOutput$ = GetReplicationSetOutput$;
2053
+ exports.GetResourcePolicies$ = GetResourcePolicies$;
714
2054
  exports.GetResourcePoliciesCommand = GetResourcePoliciesCommand;
2055
+ exports.GetResourcePoliciesInput$ = GetResourcePoliciesInput$;
2056
+ exports.GetResourcePoliciesOutput$ = GetResourcePoliciesOutput$;
2057
+ exports.GetResponsePlan$ = GetResponsePlan$;
715
2058
  exports.GetResponsePlanCommand = GetResponsePlanCommand;
2059
+ exports.GetResponsePlanInput$ = GetResponsePlanInput$;
2060
+ exports.GetResponsePlanOutput$ = GetResponsePlanOutput$;
2061
+ exports.GetTimelineEvent$ = GetTimelineEvent$;
716
2062
  exports.GetTimelineEventCommand = GetTimelineEventCommand;
2063
+ exports.GetTimelineEventInput$ = GetTimelineEventInput$;
2064
+ exports.GetTimelineEventOutput$ = GetTimelineEventOutput$;
2065
+ exports.IncidentRecord$ = IncidentRecord$;
2066
+ exports.IncidentRecordSource$ = IncidentRecordSource$;
717
2067
  exports.IncidentRecordStatus = IncidentRecordStatus;
2068
+ exports.IncidentRecordSummary$ = IncidentRecordSummary$;
2069
+ exports.IncidentTemplate$ = IncidentTemplate$;
2070
+ exports.Integration$ = Integration$;
2071
+ exports.InternalServerException = InternalServerException;
2072
+ exports.InternalServerException$ = InternalServerException$;
2073
+ exports.ItemIdentifier$ = ItemIdentifier$;
718
2074
  exports.ItemType = ItemType;
2075
+ exports.ItemValue$ = ItemValue$;
2076
+ exports.ListIncidentFindings$ = ListIncidentFindings$;
719
2077
  exports.ListIncidentFindingsCommand = ListIncidentFindingsCommand;
2078
+ exports.ListIncidentFindingsInput$ = ListIncidentFindingsInput$;
2079
+ exports.ListIncidentFindingsOutput$ = ListIncidentFindingsOutput$;
2080
+ exports.ListIncidentRecords$ = ListIncidentRecords$;
720
2081
  exports.ListIncidentRecordsCommand = ListIncidentRecordsCommand;
2082
+ exports.ListIncidentRecordsInput$ = ListIncidentRecordsInput$;
2083
+ exports.ListIncidentRecordsOutput$ = ListIncidentRecordsOutput$;
2084
+ exports.ListRelatedItems$ = ListRelatedItems$;
721
2085
  exports.ListRelatedItemsCommand = ListRelatedItemsCommand;
2086
+ exports.ListRelatedItemsInput$ = ListRelatedItemsInput$;
2087
+ exports.ListRelatedItemsOutput$ = ListRelatedItemsOutput$;
2088
+ exports.ListReplicationSets$ = ListReplicationSets$;
722
2089
  exports.ListReplicationSetsCommand = ListReplicationSetsCommand;
2090
+ exports.ListReplicationSetsInput$ = ListReplicationSetsInput$;
2091
+ exports.ListReplicationSetsOutput$ = ListReplicationSetsOutput$;
2092
+ exports.ListResponsePlans$ = ListResponsePlans$;
723
2093
  exports.ListResponsePlansCommand = ListResponsePlansCommand;
2094
+ exports.ListResponsePlansInput$ = ListResponsePlansInput$;
2095
+ exports.ListResponsePlansOutput$ = ListResponsePlansOutput$;
2096
+ exports.ListTagsForResource$ = ListTagsForResource$;
724
2097
  exports.ListTagsForResourceCommand = ListTagsForResourceCommand;
2098
+ exports.ListTagsForResourceRequest$ = ListTagsForResourceRequest$;
2099
+ exports.ListTagsForResourceResponse$ = ListTagsForResourceResponse$;
2100
+ exports.ListTimelineEvents$ = ListTimelineEvents$;
725
2101
  exports.ListTimelineEventsCommand = ListTimelineEventsCommand;
2102
+ exports.ListTimelineEventsInput$ = ListTimelineEventsInput$;
2103
+ exports.ListTimelineEventsOutput$ = ListTimelineEventsOutput$;
2104
+ exports.NotificationTargetItem$ = NotificationTargetItem$;
2105
+ exports.PagerDutyConfiguration$ = PagerDutyConfiguration$;
2106
+ exports.PagerDutyIncidentConfiguration$ = PagerDutyIncidentConfiguration$;
2107
+ exports.PagerDutyIncidentDetail$ = PagerDutyIncidentDetail$;
2108
+ exports.PutResourcePolicy$ = PutResourcePolicy$;
726
2109
  exports.PutResourcePolicyCommand = PutResourcePolicyCommand;
2110
+ exports.PutResourcePolicyInput$ = PutResourcePolicyInput$;
2111
+ exports.PutResourcePolicyOutput$ = PutResourcePolicyOutput$;
2112
+ exports.RegionInfo$ = RegionInfo$;
2113
+ exports.RegionMapInputValue$ = RegionMapInputValue$;
727
2114
  exports.RegionStatus = RegionStatus;
2115
+ exports.RelatedItem$ = RelatedItem$;
2116
+ exports.RelatedItemsUpdate$ = RelatedItemsUpdate$;
2117
+ exports.ReplicationSet$ = ReplicationSet$;
728
2118
  exports.ReplicationSetStatus = ReplicationSetStatus;
2119
+ exports.ResourceNotFoundException = ResourceNotFoundException;
2120
+ exports.ResourceNotFoundException$ = ResourceNotFoundException$;
2121
+ exports.ResourcePolicy$ = ResourcePolicy$;
729
2122
  exports.ResourceType = ResourceType;
2123
+ exports.ResponsePlanSummary$ = ResponsePlanSummary$;
730
2124
  exports.SSMIncidents = SSMIncidents;
731
2125
  exports.SSMIncidentsClient = SSMIncidentsClient;
2126
+ exports.SSMIncidentsServiceException = SSMIncidentsServiceException;
2127
+ exports.SSMIncidentsServiceException$ = SSMIncidentsServiceException$;
732
2128
  exports.ServiceCode = ServiceCode;
2129
+ exports.ServiceQuotaExceededException = ServiceQuotaExceededException;
2130
+ exports.ServiceQuotaExceededException$ = ServiceQuotaExceededException$;
733
2131
  exports.SortOrder = SortOrder;
2132
+ exports.SsmAutomation$ = SsmAutomation$;
734
2133
  exports.SsmTargetAccount = SsmTargetAccount;
2134
+ exports.StartIncident$ = StartIncident$;
735
2135
  exports.StartIncidentCommand = StartIncidentCommand;
2136
+ exports.StartIncidentInput$ = StartIncidentInput$;
2137
+ exports.StartIncidentOutput$ = StartIncidentOutput$;
2138
+ exports.TagResource$ = TagResource$;
736
2139
  exports.TagResourceCommand = TagResourceCommand;
2140
+ exports.TagResourceRequest$ = TagResourceRequest$;
2141
+ exports.TagResourceResponse$ = TagResourceResponse$;
2142
+ exports.ThrottlingException = ThrottlingException;
2143
+ exports.ThrottlingException$ = ThrottlingException$;
2144
+ exports.TimelineEvent$ = TimelineEvent$;
737
2145
  exports.TimelineEventSort = TimelineEventSort;
2146
+ exports.TriggerDetails$ = TriggerDetails$;
2147
+ exports.UntagResource$ = UntagResource$;
738
2148
  exports.UntagResourceCommand = UntagResourceCommand;
2149
+ exports.UntagResourceRequest$ = UntagResourceRequest$;
2150
+ exports.UntagResourceResponse$ = UntagResourceResponse$;
2151
+ exports.UpdateDeletionProtection$ = UpdateDeletionProtection$;
739
2152
  exports.UpdateDeletionProtectionCommand = UpdateDeletionProtectionCommand;
2153
+ exports.UpdateDeletionProtectionInput$ = UpdateDeletionProtectionInput$;
2154
+ exports.UpdateDeletionProtectionOutput$ = UpdateDeletionProtectionOutput$;
2155
+ exports.UpdateIncidentRecord$ = UpdateIncidentRecord$;
740
2156
  exports.UpdateIncidentRecordCommand = UpdateIncidentRecordCommand;
2157
+ exports.UpdateIncidentRecordInput$ = UpdateIncidentRecordInput$;
2158
+ exports.UpdateIncidentRecordOutput$ = UpdateIncidentRecordOutput$;
2159
+ exports.UpdateRelatedItems$ = UpdateRelatedItems$;
741
2160
  exports.UpdateRelatedItemsCommand = UpdateRelatedItemsCommand;
2161
+ exports.UpdateRelatedItemsInput$ = UpdateRelatedItemsInput$;
2162
+ exports.UpdateRelatedItemsOutput$ = UpdateRelatedItemsOutput$;
2163
+ exports.UpdateReplicationSet$ = UpdateReplicationSet$;
2164
+ exports.UpdateReplicationSetAction$ = UpdateReplicationSetAction$;
742
2165
  exports.UpdateReplicationSetCommand = UpdateReplicationSetCommand;
2166
+ exports.UpdateReplicationSetInput$ = UpdateReplicationSetInput$;
2167
+ exports.UpdateReplicationSetOutput$ = UpdateReplicationSetOutput$;
2168
+ exports.UpdateResponsePlan$ = UpdateResponsePlan$;
743
2169
  exports.UpdateResponsePlanCommand = UpdateResponsePlanCommand;
2170
+ exports.UpdateResponsePlanInput$ = UpdateResponsePlanInput$;
2171
+ exports.UpdateResponsePlanOutput$ = UpdateResponsePlanOutput$;
2172
+ exports.UpdateTimelineEvent$ = UpdateTimelineEvent$;
744
2173
  exports.UpdateTimelineEventCommand = UpdateTimelineEventCommand;
2174
+ exports.UpdateTimelineEventInput$ = UpdateTimelineEventInput$;
2175
+ exports.UpdateTimelineEventOutput$ = UpdateTimelineEventOutput$;
2176
+ exports.ValidationException = ValidationException;
2177
+ exports.ValidationException$ = ValidationException$;
745
2178
  exports.VariableType = VariableType;
2179
+ exports.errorTypeRegistries = errorTypeRegistries;
746
2180
  exports.paginateGetResourcePolicies = paginateGetResourcePolicies;
747
2181
  exports.paginateListIncidentFindings = paginateListIncidentFindings;
748
2182
  exports.paginateListIncidentRecords = paginateListIncidentRecords;