@aws-sdk/client-ssm-incidents 3.297.0 → 3.299.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/commands/CreateReplicationSetCommand.js +2 -3
- package/dist-cjs/commands/CreateResponsePlanCommand.js +2 -3
- package/dist-cjs/commands/CreateTimelineEventCommand.js +2 -3
- package/dist-cjs/commands/DeleteIncidentRecordCommand.js +2 -3
- package/dist-cjs/commands/DeleteReplicationSetCommand.js +2 -3
- package/dist-cjs/commands/DeleteResourcePolicyCommand.js +2 -3
- package/dist-cjs/commands/DeleteResponsePlanCommand.js +2 -3
- package/dist-cjs/commands/DeleteTimelineEventCommand.js +2 -3
- package/dist-cjs/commands/GetIncidentRecordCommand.js +2 -3
- package/dist-cjs/commands/GetReplicationSetCommand.js +2 -3
- package/dist-cjs/commands/GetResourcePoliciesCommand.js +2 -3
- package/dist-cjs/commands/GetResponsePlanCommand.js +2 -3
- package/dist-cjs/commands/GetTimelineEventCommand.js +2 -3
- package/dist-cjs/commands/ListIncidentRecordsCommand.js +2 -3
- package/dist-cjs/commands/ListRelatedItemsCommand.js +2 -3
- package/dist-cjs/commands/ListReplicationSetsCommand.js +2 -3
- package/dist-cjs/commands/ListResponsePlansCommand.js +2 -3
- package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-cjs/commands/ListTimelineEventsCommand.js +2 -3
- package/dist-cjs/commands/PutResourcePolicyCommand.js +2 -3
- package/dist-cjs/commands/StartIncidentCommand.js +2 -3
- package/dist-cjs/commands/TagResourceCommand.js +2 -3
- package/dist-cjs/commands/UntagResourceCommand.js +2 -3
- package/dist-cjs/commands/UpdateDeletionProtectionCommand.js +2 -3
- package/dist-cjs/commands/UpdateIncidentRecordCommand.js +2 -3
- package/dist-cjs/commands/UpdateRelatedItemsCommand.js +2 -3
- package/dist-cjs/commands/UpdateReplicationSetCommand.js +2 -3
- package/dist-cjs/commands/UpdateResponsePlanCommand.js +2 -3
- package/dist-cjs/commands/UpdateTimelineEventCommand.js +2 -3
- package/dist-cjs/models/models_0.js +1 -482
- package/dist-es/commands/CreateReplicationSetCommand.js +2 -3
- package/dist-es/commands/CreateResponsePlanCommand.js +2 -3
- package/dist-es/commands/CreateTimelineEventCommand.js +2 -3
- package/dist-es/commands/DeleteIncidentRecordCommand.js +2 -3
- package/dist-es/commands/DeleteReplicationSetCommand.js +2 -3
- package/dist-es/commands/DeleteResourcePolicyCommand.js +2 -3
- package/dist-es/commands/DeleteResponsePlanCommand.js +2 -3
- package/dist-es/commands/DeleteTimelineEventCommand.js +2 -3
- package/dist-es/commands/GetIncidentRecordCommand.js +2 -3
- package/dist-es/commands/GetReplicationSetCommand.js +2 -3
- package/dist-es/commands/GetResourcePoliciesCommand.js +2 -3
- package/dist-es/commands/GetResponsePlanCommand.js +2 -3
- package/dist-es/commands/GetTimelineEventCommand.js +2 -3
- package/dist-es/commands/ListIncidentRecordsCommand.js +2 -3
- package/dist-es/commands/ListRelatedItemsCommand.js +2 -3
- package/dist-es/commands/ListReplicationSetsCommand.js +2 -3
- package/dist-es/commands/ListResponsePlansCommand.js +2 -3
- package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
- package/dist-es/commands/ListTimelineEventsCommand.js +2 -3
- package/dist-es/commands/PutResourcePolicyCommand.js +2 -3
- package/dist-es/commands/StartIncidentCommand.js +2 -3
- package/dist-es/commands/TagResourceCommand.js +2 -3
- package/dist-es/commands/UntagResourceCommand.js +2 -3
- package/dist-es/commands/UpdateDeletionProtectionCommand.js +2 -3
- package/dist-es/commands/UpdateIncidentRecordCommand.js +2 -3
- package/dist-es/commands/UpdateRelatedItemsCommand.js +2 -3
- package/dist-es/commands/UpdateReplicationSetCommand.js +2 -3
- package/dist-es/commands/UpdateResponsePlanCommand.js +2 -3
- package/dist-es/commands/UpdateTimelineEventCommand.js +2 -3
- package/dist-es/models/models_0.js +0 -387
- package/dist-types/models/models_0.d.ts +0 -368
- package/dist-types/ts3.4/models/models_0.d.ts +0 -258
- package/package.json +11 -10
|
@@ -273,390 +273,3 @@ export var UpdateReplicationSetAction;
|
|
|
273
273
|
return visitor._(value.$unknown[0], value.$unknown[1]);
|
|
274
274
|
};
|
|
275
275
|
})(UpdateReplicationSetAction || (UpdateReplicationSetAction = {}));
|
|
276
|
-
export const DynamicSsmParameterValueFilterSensitiveLog = (obj) => {
|
|
277
|
-
if (obj.variable !== undefined)
|
|
278
|
-
return { variable: obj.variable };
|
|
279
|
-
if (obj.$unknown !== undefined)
|
|
280
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
281
|
-
};
|
|
282
|
-
export const SsmAutomationFilterSensitiveLog = (obj) => ({
|
|
283
|
-
...obj,
|
|
284
|
-
...(obj.dynamicParameters && {
|
|
285
|
-
dynamicParameters: Object.entries(obj.dynamicParameters).reduce((acc, [key, value]) => ((acc[key] = DynamicSsmParameterValueFilterSensitiveLog(value)), acc), {}),
|
|
286
|
-
}),
|
|
287
|
-
});
|
|
288
|
-
export const ActionFilterSensitiveLog = (obj) => {
|
|
289
|
-
if (obj.ssmAutomation !== undefined)
|
|
290
|
-
return { ssmAutomation: SsmAutomationFilterSensitiveLog(obj.ssmAutomation) };
|
|
291
|
-
if (obj.$unknown !== undefined)
|
|
292
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
293
|
-
};
|
|
294
|
-
export const AddRegionActionFilterSensitiveLog = (obj) => ({
|
|
295
|
-
...obj,
|
|
296
|
-
});
|
|
297
|
-
export const AttributeValueListFilterSensitiveLog = (obj) => {
|
|
298
|
-
if (obj.stringValues !== undefined)
|
|
299
|
-
return { stringValues: obj.stringValues };
|
|
300
|
-
if (obj.integerValues !== undefined)
|
|
301
|
-
return { integerValues: obj.integerValues };
|
|
302
|
-
if (obj.$unknown !== undefined)
|
|
303
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
304
|
-
};
|
|
305
|
-
export const AutomationExecutionFilterSensitiveLog = (obj) => {
|
|
306
|
-
if (obj.ssmExecutionArn !== undefined)
|
|
307
|
-
return { ssmExecutionArn: obj.ssmExecutionArn };
|
|
308
|
-
if (obj.$unknown !== undefined)
|
|
309
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
310
|
-
};
|
|
311
|
-
export const EmptyChatChannelFilterSensitiveLog = (obj) => ({
|
|
312
|
-
...obj,
|
|
313
|
-
});
|
|
314
|
-
export const ChatChannelFilterSensitiveLog = (obj) => {
|
|
315
|
-
if (obj.empty !== undefined)
|
|
316
|
-
return { empty: EmptyChatChannelFilterSensitiveLog(obj.empty) };
|
|
317
|
-
if (obj.chatbotSns !== undefined)
|
|
318
|
-
return { chatbotSns: obj.chatbotSns };
|
|
319
|
-
if (obj.$unknown !== undefined)
|
|
320
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
321
|
-
};
|
|
322
|
-
export const ConditionFilterSensitiveLog = (obj) => {
|
|
323
|
-
if (obj.before !== undefined)
|
|
324
|
-
return { before: obj.before };
|
|
325
|
-
if (obj.after !== undefined)
|
|
326
|
-
return { after: obj.after };
|
|
327
|
-
if (obj.equals !== undefined)
|
|
328
|
-
return { equals: AttributeValueListFilterSensitiveLog(obj.equals) };
|
|
329
|
-
if (obj.$unknown !== undefined)
|
|
330
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
331
|
-
};
|
|
332
|
-
export const RegionMapInputValueFilterSensitiveLog = (obj) => ({
|
|
333
|
-
...obj,
|
|
334
|
-
});
|
|
335
|
-
export const CreateReplicationSetInputFilterSensitiveLog = (obj) => ({
|
|
336
|
-
...obj,
|
|
337
|
-
});
|
|
338
|
-
export const CreateReplicationSetOutputFilterSensitiveLog = (obj) => ({
|
|
339
|
-
...obj,
|
|
340
|
-
});
|
|
341
|
-
export const NotificationTargetItemFilterSensitiveLog = (obj) => {
|
|
342
|
-
if (obj.snsTopicArn !== undefined)
|
|
343
|
-
return { snsTopicArn: obj.snsTopicArn };
|
|
344
|
-
if (obj.$unknown !== undefined)
|
|
345
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
346
|
-
};
|
|
347
|
-
export const IncidentTemplateFilterSensitiveLog = (obj) => ({
|
|
348
|
-
...obj,
|
|
349
|
-
...(obj.notificationTargets && {
|
|
350
|
-
notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
|
|
351
|
-
}),
|
|
352
|
-
});
|
|
353
|
-
export const PagerDutyIncidentConfigurationFilterSensitiveLog = (obj) => ({
|
|
354
|
-
...obj,
|
|
355
|
-
});
|
|
356
|
-
export const PagerDutyConfigurationFilterSensitiveLog = (obj) => ({
|
|
357
|
-
...obj,
|
|
358
|
-
});
|
|
359
|
-
export const IntegrationFilterSensitiveLog = (obj) => {
|
|
360
|
-
if (obj.pagerDutyConfiguration !== undefined)
|
|
361
|
-
return { pagerDutyConfiguration: PagerDutyConfigurationFilterSensitiveLog(obj.pagerDutyConfiguration) };
|
|
362
|
-
if (obj.$unknown !== undefined)
|
|
363
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
364
|
-
};
|
|
365
|
-
export const CreateResponsePlanInputFilterSensitiveLog = (obj) => ({
|
|
366
|
-
...obj,
|
|
367
|
-
...(obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) }),
|
|
368
|
-
...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
|
|
369
|
-
...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
|
|
370
|
-
...(obj.integrations && { integrations: obj.integrations.map((item) => IntegrationFilterSensitiveLog(item)) }),
|
|
371
|
-
});
|
|
372
|
-
export const CreateResponsePlanOutputFilterSensitiveLog = (obj) => ({
|
|
373
|
-
...obj,
|
|
374
|
-
});
|
|
375
|
-
export const EventReferenceFilterSensitiveLog = (obj) => {
|
|
376
|
-
if (obj.resource !== undefined)
|
|
377
|
-
return { resource: obj.resource };
|
|
378
|
-
if (obj.relatedItemId !== undefined)
|
|
379
|
-
return { relatedItemId: obj.relatedItemId };
|
|
380
|
-
if (obj.$unknown !== undefined)
|
|
381
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
382
|
-
};
|
|
383
|
-
export const CreateTimelineEventInputFilterSensitiveLog = (obj) => ({
|
|
384
|
-
...obj,
|
|
385
|
-
...(obj.eventReferences && {
|
|
386
|
-
eventReferences: obj.eventReferences.map((item) => EventReferenceFilterSensitiveLog(item)),
|
|
387
|
-
}),
|
|
388
|
-
});
|
|
389
|
-
export const CreateTimelineEventOutputFilterSensitiveLog = (obj) => ({
|
|
390
|
-
...obj,
|
|
391
|
-
});
|
|
392
|
-
export const DeleteIncidentRecordInputFilterSensitiveLog = (obj) => ({
|
|
393
|
-
...obj,
|
|
394
|
-
});
|
|
395
|
-
export const DeleteIncidentRecordOutputFilterSensitiveLog = (obj) => ({
|
|
396
|
-
...obj,
|
|
397
|
-
});
|
|
398
|
-
export const DeleteRegionActionFilterSensitiveLog = (obj) => ({
|
|
399
|
-
...obj,
|
|
400
|
-
});
|
|
401
|
-
export const DeleteReplicationSetInputFilterSensitiveLog = (obj) => ({
|
|
402
|
-
...obj,
|
|
403
|
-
});
|
|
404
|
-
export const DeleteReplicationSetOutputFilterSensitiveLog = (obj) => ({
|
|
405
|
-
...obj,
|
|
406
|
-
});
|
|
407
|
-
export const DeleteResourcePolicyInputFilterSensitiveLog = (obj) => ({
|
|
408
|
-
...obj,
|
|
409
|
-
});
|
|
410
|
-
export const DeleteResourcePolicyOutputFilterSensitiveLog = (obj) => ({
|
|
411
|
-
...obj,
|
|
412
|
-
});
|
|
413
|
-
export const DeleteResponsePlanInputFilterSensitiveLog = (obj) => ({
|
|
414
|
-
...obj,
|
|
415
|
-
});
|
|
416
|
-
export const DeleteResponsePlanOutputFilterSensitiveLog = (obj) => ({
|
|
417
|
-
...obj,
|
|
418
|
-
});
|
|
419
|
-
export const DeleteTimelineEventInputFilterSensitiveLog = (obj) => ({
|
|
420
|
-
...obj,
|
|
421
|
-
});
|
|
422
|
-
export const DeleteTimelineEventOutputFilterSensitiveLog = (obj) => ({
|
|
423
|
-
...obj,
|
|
424
|
-
});
|
|
425
|
-
export const EventSummaryFilterSensitiveLog = (obj) => ({
|
|
426
|
-
...obj,
|
|
427
|
-
...(obj.eventReferences && {
|
|
428
|
-
eventReferences: obj.eventReferences.map((item) => EventReferenceFilterSensitiveLog(item)),
|
|
429
|
-
}),
|
|
430
|
-
});
|
|
431
|
-
export const FilterFilterSensitiveLog = (obj) => ({
|
|
432
|
-
...obj,
|
|
433
|
-
...(obj.condition && { condition: ConditionFilterSensitiveLog(obj.condition) }),
|
|
434
|
-
});
|
|
435
|
-
export const GetIncidentRecordInputFilterSensitiveLog = (obj) => ({
|
|
436
|
-
...obj,
|
|
437
|
-
});
|
|
438
|
-
export const IncidentRecordSourceFilterSensitiveLog = (obj) => ({
|
|
439
|
-
...obj,
|
|
440
|
-
});
|
|
441
|
-
export const IncidentRecordFilterSensitiveLog = (obj) => ({
|
|
442
|
-
...obj,
|
|
443
|
-
...(obj.automationExecutions && {
|
|
444
|
-
automationExecutions: obj.automationExecutions.map((item) => AutomationExecutionFilterSensitiveLog(item)),
|
|
445
|
-
}),
|
|
446
|
-
...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
|
|
447
|
-
...(obj.notificationTargets && {
|
|
448
|
-
notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
|
|
449
|
-
}),
|
|
450
|
-
});
|
|
451
|
-
export const GetIncidentRecordOutputFilterSensitiveLog = (obj) => ({
|
|
452
|
-
...obj,
|
|
453
|
-
...(obj.incidentRecord && { incidentRecord: IncidentRecordFilterSensitiveLog(obj.incidentRecord) }),
|
|
454
|
-
});
|
|
455
|
-
export const GetReplicationSetInputFilterSensitiveLog = (obj) => ({
|
|
456
|
-
...obj,
|
|
457
|
-
});
|
|
458
|
-
export const RegionInfoFilterSensitiveLog = (obj) => ({
|
|
459
|
-
...obj,
|
|
460
|
-
});
|
|
461
|
-
export const ReplicationSetFilterSensitiveLog = (obj) => ({
|
|
462
|
-
...obj,
|
|
463
|
-
});
|
|
464
|
-
export const GetReplicationSetOutputFilterSensitiveLog = (obj) => ({
|
|
465
|
-
...obj,
|
|
466
|
-
});
|
|
467
|
-
export const GetResourcePoliciesInputFilterSensitiveLog = (obj) => ({
|
|
468
|
-
...obj,
|
|
469
|
-
});
|
|
470
|
-
export const ResourcePolicyFilterSensitiveLog = (obj) => ({
|
|
471
|
-
...obj,
|
|
472
|
-
});
|
|
473
|
-
export const GetResourcePoliciesOutputFilterSensitiveLog = (obj) => ({
|
|
474
|
-
...obj,
|
|
475
|
-
});
|
|
476
|
-
export const GetResponsePlanInputFilterSensitiveLog = (obj) => ({
|
|
477
|
-
...obj,
|
|
478
|
-
});
|
|
479
|
-
export const GetResponsePlanOutputFilterSensitiveLog = (obj) => ({
|
|
480
|
-
...obj,
|
|
481
|
-
...(obj.incidentTemplate && { incidentTemplate: IncidentTemplateFilterSensitiveLog(obj.incidentTemplate) }),
|
|
482
|
-
...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
|
|
483
|
-
...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
|
|
484
|
-
...(obj.integrations && { integrations: obj.integrations.map((item) => IntegrationFilterSensitiveLog(item)) }),
|
|
485
|
-
});
|
|
486
|
-
export const GetTimelineEventInputFilterSensitiveLog = (obj) => ({
|
|
487
|
-
...obj,
|
|
488
|
-
});
|
|
489
|
-
export const TimelineEventFilterSensitiveLog = (obj) => ({
|
|
490
|
-
...obj,
|
|
491
|
-
...(obj.eventReferences && {
|
|
492
|
-
eventReferences: obj.eventReferences.map((item) => EventReferenceFilterSensitiveLog(item)),
|
|
493
|
-
}),
|
|
494
|
-
});
|
|
495
|
-
export const GetTimelineEventOutputFilterSensitiveLog = (obj) => ({
|
|
496
|
-
...obj,
|
|
497
|
-
...(obj.event && { event: TimelineEventFilterSensitiveLog(obj.event) }),
|
|
498
|
-
});
|
|
499
|
-
export const IncidentRecordSummaryFilterSensitiveLog = (obj) => ({
|
|
500
|
-
...obj,
|
|
501
|
-
});
|
|
502
|
-
export const PagerDutyIncidentDetailFilterSensitiveLog = (obj) => ({
|
|
503
|
-
...obj,
|
|
504
|
-
});
|
|
505
|
-
export const ItemValueFilterSensitiveLog = (obj) => {
|
|
506
|
-
if (obj.arn !== undefined)
|
|
507
|
-
return { arn: obj.arn };
|
|
508
|
-
if (obj.url !== undefined)
|
|
509
|
-
return { url: obj.url };
|
|
510
|
-
if (obj.metricDefinition !== undefined)
|
|
511
|
-
return { metricDefinition: obj.metricDefinition };
|
|
512
|
-
if (obj.pagerDutyIncidentDetail !== undefined)
|
|
513
|
-
return { pagerDutyIncidentDetail: PagerDutyIncidentDetailFilterSensitiveLog(obj.pagerDutyIncidentDetail) };
|
|
514
|
-
if (obj.$unknown !== undefined)
|
|
515
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
516
|
-
};
|
|
517
|
-
export const ItemIdentifierFilterSensitiveLog = (obj) => ({
|
|
518
|
-
...obj,
|
|
519
|
-
...(obj.value && { value: ItemValueFilterSensitiveLog(obj.value) }),
|
|
520
|
-
});
|
|
521
|
-
export const ListIncidentRecordsInputFilterSensitiveLog = (obj) => ({
|
|
522
|
-
...obj,
|
|
523
|
-
...(obj.filters && { filters: obj.filters.map((item) => FilterFilterSensitiveLog(item)) }),
|
|
524
|
-
});
|
|
525
|
-
export const ListIncidentRecordsOutputFilterSensitiveLog = (obj) => ({
|
|
526
|
-
...obj,
|
|
527
|
-
});
|
|
528
|
-
export const ListRelatedItemsInputFilterSensitiveLog = (obj) => ({
|
|
529
|
-
...obj,
|
|
530
|
-
});
|
|
531
|
-
export const RelatedItemFilterSensitiveLog = (obj) => ({
|
|
532
|
-
...obj,
|
|
533
|
-
...(obj.identifier && { identifier: ItemIdentifierFilterSensitiveLog(obj.identifier) }),
|
|
534
|
-
});
|
|
535
|
-
export const ListRelatedItemsOutputFilterSensitiveLog = (obj) => ({
|
|
536
|
-
...obj,
|
|
537
|
-
...(obj.relatedItems && { relatedItems: obj.relatedItems.map((item) => RelatedItemFilterSensitiveLog(item)) }),
|
|
538
|
-
});
|
|
539
|
-
export const ListReplicationSetsInputFilterSensitiveLog = (obj) => ({
|
|
540
|
-
...obj,
|
|
541
|
-
});
|
|
542
|
-
export const ListReplicationSetsOutputFilterSensitiveLog = (obj) => ({
|
|
543
|
-
...obj,
|
|
544
|
-
});
|
|
545
|
-
export const ListResponsePlansInputFilterSensitiveLog = (obj) => ({
|
|
546
|
-
...obj,
|
|
547
|
-
});
|
|
548
|
-
export const ResponsePlanSummaryFilterSensitiveLog = (obj) => ({
|
|
549
|
-
...obj,
|
|
550
|
-
});
|
|
551
|
-
export const ListResponsePlansOutputFilterSensitiveLog = (obj) => ({
|
|
552
|
-
...obj,
|
|
553
|
-
});
|
|
554
|
-
export const ListTagsForResourceRequestFilterSensitiveLog = (obj) => ({
|
|
555
|
-
...obj,
|
|
556
|
-
});
|
|
557
|
-
export const ListTagsForResourceResponseFilterSensitiveLog = (obj) => ({
|
|
558
|
-
...obj,
|
|
559
|
-
});
|
|
560
|
-
export const ListTimelineEventsInputFilterSensitiveLog = (obj) => ({
|
|
561
|
-
...obj,
|
|
562
|
-
...(obj.filters && { filters: obj.filters.map((item) => FilterFilterSensitiveLog(item)) }),
|
|
563
|
-
});
|
|
564
|
-
export const ListTimelineEventsOutputFilterSensitiveLog = (obj) => ({
|
|
565
|
-
...obj,
|
|
566
|
-
...(obj.eventSummaries && { eventSummaries: obj.eventSummaries.map((item) => EventSummaryFilterSensitiveLog(item)) }),
|
|
567
|
-
});
|
|
568
|
-
export const PutResourcePolicyInputFilterSensitiveLog = (obj) => ({
|
|
569
|
-
...obj,
|
|
570
|
-
});
|
|
571
|
-
export const PutResourcePolicyOutputFilterSensitiveLog = (obj) => ({
|
|
572
|
-
...obj,
|
|
573
|
-
});
|
|
574
|
-
export const RelatedItemsUpdateFilterSensitiveLog = (obj) => {
|
|
575
|
-
if (obj.itemToAdd !== undefined)
|
|
576
|
-
return { itemToAdd: RelatedItemFilterSensitiveLog(obj.itemToAdd) };
|
|
577
|
-
if (obj.itemToRemove !== undefined)
|
|
578
|
-
return { itemToRemove: ItemIdentifierFilterSensitiveLog(obj.itemToRemove) };
|
|
579
|
-
if (obj.$unknown !== undefined)
|
|
580
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
581
|
-
};
|
|
582
|
-
export const TriggerDetailsFilterSensitiveLog = (obj) => ({
|
|
583
|
-
...obj,
|
|
584
|
-
});
|
|
585
|
-
export const StartIncidentInputFilterSensitiveLog = (obj) => ({
|
|
586
|
-
...obj,
|
|
587
|
-
...(obj.relatedItems && { relatedItems: obj.relatedItems.map((item) => RelatedItemFilterSensitiveLog(item)) }),
|
|
588
|
-
});
|
|
589
|
-
export const StartIncidentOutputFilterSensitiveLog = (obj) => ({
|
|
590
|
-
...obj,
|
|
591
|
-
});
|
|
592
|
-
export const TagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
593
|
-
...obj,
|
|
594
|
-
});
|
|
595
|
-
export const TagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
596
|
-
...obj,
|
|
597
|
-
});
|
|
598
|
-
export const UntagResourceRequestFilterSensitiveLog = (obj) => ({
|
|
599
|
-
...obj,
|
|
600
|
-
});
|
|
601
|
-
export const UntagResourceResponseFilterSensitiveLog = (obj) => ({
|
|
602
|
-
...obj,
|
|
603
|
-
});
|
|
604
|
-
export const UpdateDeletionProtectionInputFilterSensitiveLog = (obj) => ({
|
|
605
|
-
...obj,
|
|
606
|
-
});
|
|
607
|
-
export const UpdateDeletionProtectionOutputFilterSensitiveLog = (obj) => ({
|
|
608
|
-
...obj,
|
|
609
|
-
});
|
|
610
|
-
export const UpdateIncidentRecordInputFilterSensitiveLog = (obj) => ({
|
|
611
|
-
...obj,
|
|
612
|
-
...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
|
|
613
|
-
...(obj.notificationTargets && {
|
|
614
|
-
notificationTargets: obj.notificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
|
|
615
|
-
}),
|
|
616
|
-
});
|
|
617
|
-
export const UpdateIncidentRecordOutputFilterSensitiveLog = (obj) => ({
|
|
618
|
-
...obj,
|
|
619
|
-
});
|
|
620
|
-
export const UpdateRelatedItemsInputFilterSensitiveLog = (obj) => ({
|
|
621
|
-
...obj,
|
|
622
|
-
...(obj.relatedItemsUpdate && { relatedItemsUpdate: RelatedItemsUpdateFilterSensitiveLog(obj.relatedItemsUpdate) }),
|
|
623
|
-
});
|
|
624
|
-
export const UpdateRelatedItemsOutputFilterSensitiveLog = (obj) => ({
|
|
625
|
-
...obj,
|
|
626
|
-
});
|
|
627
|
-
export const UpdateReplicationSetActionFilterSensitiveLog = (obj) => {
|
|
628
|
-
if (obj.addRegionAction !== undefined)
|
|
629
|
-
return { addRegionAction: AddRegionActionFilterSensitiveLog(obj.addRegionAction) };
|
|
630
|
-
if (obj.deleteRegionAction !== undefined)
|
|
631
|
-
return { deleteRegionAction: DeleteRegionActionFilterSensitiveLog(obj.deleteRegionAction) };
|
|
632
|
-
if (obj.$unknown !== undefined)
|
|
633
|
-
return { [obj.$unknown[0]]: "UNKNOWN" };
|
|
634
|
-
};
|
|
635
|
-
export const UpdateReplicationSetInputFilterSensitiveLog = (obj) => ({
|
|
636
|
-
...obj,
|
|
637
|
-
...(obj.actions && { actions: obj.actions.map((item) => UpdateReplicationSetActionFilterSensitiveLog(item)) }),
|
|
638
|
-
});
|
|
639
|
-
export const UpdateReplicationSetOutputFilterSensitiveLog = (obj) => ({
|
|
640
|
-
...obj,
|
|
641
|
-
});
|
|
642
|
-
export const UpdateResponsePlanInputFilterSensitiveLog = (obj) => ({
|
|
643
|
-
...obj,
|
|
644
|
-
...(obj.incidentTemplateNotificationTargets && {
|
|
645
|
-
incidentTemplateNotificationTargets: obj.incidentTemplateNotificationTargets.map((item) => NotificationTargetItemFilterSensitiveLog(item)),
|
|
646
|
-
}),
|
|
647
|
-
...(obj.chatChannel && { chatChannel: ChatChannelFilterSensitiveLog(obj.chatChannel) }),
|
|
648
|
-
...(obj.actions && { actions: obj.actions.map((item) => ActionFilterSensitiveLog(item)) }),
|
|
649
|
-
...(obj.integrations && { integrations: obj.integrations.map((item) => IntegrationFilterSensitiveLog(item)) }),
|
|
650
|
-
});
|
|
651
|
-
export const UpdateResponsePlanOutputFilterSensitiveLog = (obj) => ({
|
|
652
|
-
...obj,
|
|
653
|
-
});
|
|
654
|
-
export const UpdateTimelineEventInputFilterSensitiveLog = (obj) => ({
|
|
655
|
-
...obj,
|
|
656
|
-
...(obj.eventReferences && {
|
|
657
|
-
eventReferences: obj.eventReferences.map((item) => EventReferenceFilterSensitiveLog(item)),
|
|
658
|
-
}),
|
|
659
|
-
});
|
|
660
|
-
export const UpdateTimelineEventOutputFilterSensitiveLog = (obj) => ({
|
|
661
|
-
...obj,
|
|
662
|
-
});
|