@aws-sdk/client-codestar-notifications 3.130.0 → 3.141.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +1 -1
  3. package/dist-cjs/commands/CreateNotificationRuleCommand.js +2 -2
  4. package/dist-cjs/commands/DeleteNotificationRuleCommand.js +2 -2
  5. package/dist-cjs/commands/DeleteTargetCommand.js +2 -2
  6. package/dist-cjs/commands/DescribeNotificationRuleCommand.js +2 -2
  7. package/dist-cjs/commands/ListEventTypesCommand.js +2 -2
  8. package/dist-cjs/commands/ListNotificationRulesCommand.js +2 -2
  9. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -2
  10. package/dist-cjs/commands/ListTargetsCommand.js +2 -2
  11. package/dist-cjs/commands/SubscribeCommand.js +2 -2
  12. package/dist-cjs/commands/TagResourceCommand.js +2 -2
  13. package/dist-cjs/commands/UnsubscribeCommand.js +2 -2
  14. package/dist-cjs/commands/UntagResourceCommand.js +2 -2
  15. package/dist-cjs/commands/UpdateNotificationRuleCommand.js +2 -2
  16. package/dist-cjs/models/models_0.js +145 -211
  17. package/dist-es/commands/CreateNotificationRuleCommand.js +3 -3
  18. package/dist-es/commands/DeleteNotificationRuleCommand.js +3 -3
  19. package/dist-es/commands/DeleteTargetCommand.js +3 -3
  20. package/dist-es/commands/DescribeNotificationRuleCommand.js +3 -3
  21. package/dist-es/commands/ListEventTypesCommand.js +3 -3
  22. package/dist-es/commands/ListNotificationRulesCommand.js +3 -3
  23. package/dist-es/commands/ListTagsForResourceCommand.js +3 -3
  24. package/dist-es/commands/ListTargetsCommand.js +3 -3
  25. package/dist-es/commands/SubscribeCommand.js +3 -3
  26. package/dist-es/commands/TagResourceCommand.js +3 -3
  27. package/dist-es/commands/UnsubscribeCommand.js +3 -3
  28. package/dist-es/commands/UntagResourceCommand.js +3 -3
  29. package/dist-es/commands/UpdateNotificationRuleCommand.js +3 -3
  30. package/dist-es/models/models_0.js +33 -132
  31. package/dist-types/models/models_0.d.ts +132 -198
  32. package/dist-types/ts3.4/models/models_0.d.ts +66 -132
  33. package/package.json +7 -7
@@ -59,12 +59,6 @@ export interface Target {
59
59
  */
60
60
  TargetAddress?: string;
61
61
  }
62
- export declare namespace Target {
63
- /**
64
- * @internal
65
- */
66
- const filterSensitiveLog: (obj: Target) => any;
67
- }
68
62
  export interface CreateNotificationRuleRequest {
69
63
  /**
70
64
  * <p>The name for the notification rule. Notifictaion rule names must be unique in your AWS
@@ -113,24 +107,12 @@ export interface CreateNotificationRuleRequest {
113
107
  */
114
108
  Status?: NotificationRuleStatus | string;
115
109
  }
116
- export declare namespace CreateNotificationRuleRequest {
117
- /**
118
- * @internal
119
- */
120
- const filterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
121
- }
122
110
  export interface CreateNotificationRuleResult {
123
111
  /**
124
112
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
125
113
  */
126
114
  Arn?: string;
127
115
  }
128
- export declare namespace CreateNotificationRuleResult {
129
- /**
130
- * @internal
131
- */
132
- const filterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
133
- }
134
116
  /**
135
117
  * <p>One of the AWS CodeStar Notifications limits has been exceeded. Limits apply to
136
118
  * accounts, notification rules, notifications, resources, and targets. For more
@@ -176,24 +158,12 @@ export interface DeleteNotificationRuleRequest {
176
158
  */
177
159
  Arn: string | undefined;
178
160
  }
179
- export declare namespace DeleteNotificationRuleRequest {
180
- /**
181
- * @internal
182
- */
183
- const filterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
184
- }
185
161
  export interface DeleteNotificationRuleResult {
186
162
  /**
187
163
  * <p>The Amazon Resource Name (ARN) of the deleted notification rule.</p>
188
164
  */
189
165
  Arn?: string;
190
166
  }
191
- export declare namespace DeleteNotificationRuleResult {
192
- /**
193
- * @internal
194
- */
195
- const filterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
196
- }
197
167
  export interface DeleteTargetRequest {
198
168
  /**
199
169
  * <p>The Amazon Resource Name (ARN) of the SNS topic to delete.</p>
@@ -206,32 +176,14 @@ export interface DeleteTargetRequest {
206
176
  */
207
177
  ForceUnsubscribeAll?: boolean;
208
178
  }
209
- export declare namespace DeleteTargetRequest {
210
- /**
211
- * @internal
212
- */
213
- const filterSensitiveLog: (obj: DeleteTargetRequest) => any;
214
- }
215
179
  export interface DeleteTargetResult {
216
180
  }
217
- export declare namespace DeleteTargetResult {
218
- /**
219
- * @internal
220
- */
221
- const filterSensitiveLog: (obj: DeleteTargetResult) => any;
222
- }
223
181
  export interface DescribeNotificationRuleRequest {
224
182
  /**
225
183
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
226
184
  */
227
185
  Arn: string | undefined;
228
186
  }
229
- export declare namespace DescribeNotificationRuleRequest {
230
- /**
231
- * @internal
232
- */
233
- const filterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
234
- }
235
187
  /**
236
188
  * <p>Returns information about an event that has triggered a notification rule.</p>
237
189
  */
@@ -253,12 +205,6 @@ export interface EventTypeSummary {
253
205
  */
254
206
  ResourceType?: string;
255
207
  }
256
- export declare namespace EventTypeSummary {
257
- /**
258
- * @internal
259
- */
260
- const filterSensitiveLog: (obj: EventTypeSummary) => any;
261
- }
262
208
  export declare enum TargetStatus {
263
209
  ACTIVE = "ACTIVE",
264
210
  DEACTIVATED = "DEACTIVATED",
@@ -283,12 +229,6 @@ export interface TargetSummary {
283
229
  */
284
230
  TargetStatus?: TargetStatus | string;
285
231
  }
286
- export declare namespace TargetSummary {
287
- /**
288
- * @internal
289
- */
290
- const filterSensitiveLog: (obj: TargetSummary) => any;
291
- }
292
232
  export interface DescribeNotificationRuleResult {
293
233
  /**
294
234
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -340,12 +280,6 @@ export interface DescribeNotificationRuleResult {
340
280
  */
341
281
  Tags?: Record<string, string>;
342
282
  }
343
- export declare namespace DescribeNotificationRuleResult {
344
- /**
345
- * @internal
346
- */
347
- const filterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
348
- }
349
283
  /**
350
284
  * <p>AWS CodeStar Notifications can't find a resource that matches the provided ARN. </p>
351
285
  */
@@ -389,12 +323,6 @@ export interface ListEventTypesFilter {
389
323
  */
390
324
  Value: string | undefined;
391
325
  }
392
- export declare namespace ListEventTypesFilter {
393
- /**
394
- * @internal
395
- */
396
- const filterSensitiveLog: (obj: ListEventTypesFilter) => any;
397
- }
398
326
  export interface ListEventTypesRequest {
399
327
  /**
400
328
  * <p>The filters to use to return information by service or resource type.</p>
@@ -411,12 +339,6 @@ export interface ListEventTypesRequest {
411
339
  */
412
340
  MaxResults?: number;
413
341
  }
414
- export declare namespace ListEventTypesRequest {
415
- /**
416
- * @internal
417
- */
418
- const filterSensitiveLog: (obj: ListEventTypesRequest) => any;
419
- }
420
342
  export interface ListEventTypesResult {
421
343
  /**
422
344
  * <p>Information about each event, including service name, resource type, event ID, and event
@@ -428,12 +350,6 @@ export interface ListEventTypesResult {
428
350
  */
429
351
  NextToken?: string;
430
352
  }
431
- export declare namespace ListEventTypesResult {
432
- /**
433
- * @internal
434
- */
435
- const filterSensitiveLog: (obj: ListEventTypesResult) => any;
436
- }
437
353
  export declare enum ListNotificationRulesFilterName {
438
354
  CREATED_BY = "CREATED_BY",
439
355
  EVENT_TYPE_ID = "EVENT_TYPE_ID",
@@ -455,12 +371,6 @@ export interface ListNotificationRulesFilter {
455
371
  */
456
372
  Value: string | undefined;
457
373
  }
458
- export declare namespace ListNotificationRulesFilter {
459
- /**
460
- * @internal
461
- */
462
- const filterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
463
- }
464
374
  export interface ListNotificationRulesRequest {
465
375
  /**
466
376
  * <p>The filters to use to return information by service or resource type. For valid values,
@@ -481,12 +391,6 @@ export interface ListNotificationRulesRequest {
481
391
  */
482
392
  MaxResults?: number;
483
393
  }
484
- export declare namespace ListNotificationRulesRequest {
485
- /**
486
- * @internal
487
- */
488
- const filterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
489
- }
490
394
  /**
491
395
  * <p>Information about a specified notification rule.</p>
492
396
  */
@@ -500,12 +404,6 @@ export interface NotificationRuleSummary {
500
404
  */
501
405
  Arn?: string;
502
406
  }
503
- export declare namespace NotificationRuleSummary {
504
- /**
505
- * @internal
506
- */
507
- const filterSensitiveLog: (obj: NotificationRuleSummary) => any;
508
- }
509
407
  export interface ListNotificationRulesResult {
510
408
  /**
511
409
  * <p>An enumeration token that can be used in a request to return the next batch of the results.</p>
@@ -516,36 +414,18 @@ export interface ListNotificationRulesResult {
516
414
  */
517
415
  NotificationRules?: NotificationRuleSummary[];
518
416
  }
519
- export declare namespace ListNotificationRulesResult {
520
- /**
521
- * @internal
522
- */
523
- const filterSensitiveLog: (obj: ListNotificationRulesResult) => any;
524
- }
525
417
  export interface ListTagsForResourceRequest {
526
418
  /**
527
419
  * <p>The Amazon Resource Name (ARN) for the notification rule.</p>
528
420
  */
529
421
  Arn: string | undefined;
530
422
  }
531
- export declare namespace ListTagsForResourceRequest {
532
- /**
533
- * @internal
534
- */
535
- const filterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
536
- }
537
423
  export interface ListTagsForResourceResult {
538
424
  /**
539
425
  * <p>The tags associated with the notification rule.</p>
540
426
  */
541
427
  Tags?: Record<string, string>;
542
428
  }
543
- export declare namespace ListTagsForResourceResult {
544
- /**
545
- * @internal
546
- */
547
- const filterSensitiveLog: (obj: ListTagsForResourceResult) => any;
548
- }
549
429
  export declare enum ListTargetsFilterName {
550
430
  TARGET_ADDRESS = "TARGET_ADDRESS",
551
431
  TARGET_STATUS = "TARGET_STATUS",
@@ -570,12 +450,6 @@ export interface ListTargetsFilter {
570
450
  */
571
451
  Value: string | undefined;
572
452
  }
573
- export declare namespace ListTargetsFilter {
574
- /**
575
- * @internal
576
- */
577
- const filterSensitiveLog: (obj: ListTargetsFilter) => any;
578
- }
579
453
  export interface ListTargetsRequest {
580
454
  /**
581
455
  * <p>The filters to use to return information by service or resource type. Valid filters
@@ -596,12 +470,6 @@ export interface ListTargetsRequest {
596
470
  */
597
471
  MaxResults?: number;
598
472
  }
599
- export declare namespace ListTargetsRequest {
600
- /**
601
- * @internal
602
- */
603
- const filterSensitiveLog: (obj: ListTargetsRequest) => any;
604
- }
605
473
  export interface ListTargetsResult {
606
474
  /**
607
475
  * <p>The list of notification rule targets. </p>
@@ -613,12 +481,6 @@ export interface ListTargetsResult {
613
481
  */
614
482
  NextToken?: string;
615
483
  }
616
- export declare namespace ListTargetsResult {
617
- /**
618
- * @internal
619
- */
620
- const filterSensitiveLog: (obj: ListTargetsResult) => any;
621
- }
622
484
  export interface SubscribeRequest {
623
485
  /**
624
486
  * <p>The Amazon Resource Name (ARN) of the notification rule for which you want to create the association.</p>
@@ -634,24 +496,12 @@ export interface SubscribeRequest {
634
496
  */
635
497
  ClientRequestToken?: string;
636
498
  }
637
- export declare namespace SubscribeRequest {
638
- /**
639
- * @internal
640
- */
641
- const filterSensitiveLog: (obj: SubscribeRequest) => any;
642
- }
643
499
  export interface SubscribeResult {
644
500
  /**
645
501
  * <p>The Amazon Resource Name (ARN) of the notification rule for which you have created assocations.</p>
646
502
  */
647
503
  Arn?: string;
648
504
  }
649
- export declare namespace SubscribeResult {
650
- /**
651
- * @internal
652
- */
653
- const filterSensitiveLog: (obj: SubscribeResult) => any;
654
- }
655
505
  export interface TagResourceRequest {
656
506
  /**
657
507
  * <p>The Amazon Resource Name (ARN) of the notification rule to tag.</p>
@@ -662,24 +512,12 @@ export interface TagResourceRequest {
662
512
  */
663
513
  Tags: Record<string, string> | undefined;
664
514
  }
665
- export declare namespace TagResourceRequest {
666
- /**
667
- * @internal
668
- */
669
- const filterSensitiveLog: (obj: TagResourceRequest) => any;
670
- }
671
515
  export interface TagResourceResult {
672
516
  /**
673
517
  * <p>The list of tags associated with the resource.</p>
674
518
  */
675
519
  Tags?: Record<string, string>;
676
520
  }
677
- export declare namespace TagResourceResult {
678
- /**
679
- * @internal
680
- */
681
- const filterSensitiveLog: (obj: TagResourceResult) => any;
682
- }
683
521
  export interface UnsubscribeRequest {
684
522
  /**
685
523
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -690,24 +528,12 @@ export interface UnsubscribeRequest {
690
528
  */
691
529
  TargetAddress: string | undefined;
692
530
  }
693
- export declare namespace UnsubscribeRequest {
694
- /**
695
- * @internal
696
- */
697
- const filterSensitiveLog: (obj: UnsubscribeRequest) => any;
698
- }
699
531
  export interface UnsubscribeResult {
700
532
  /**
701
533
  * <p>The Amazon Resource Name (ARN) of the the notification rule from which you have removed a subscription.</p>
702
534
  */
703
535
  Arn: string | undefined;
704
536
  }
705
- export declare namespace UnsubscribeResult {
706
- /**
707
- * @internal
708
- */
709
- const filterSensitiveLog: (obj: UnsubscribeResult) => any;
710
- }
711
537
  export interface UntagResourceRequest {
712
538
  /**
713
539
  * <p>The Amazon Resource Name (ARN) of the notification rule from which to remove the
@@ -719,20 +545,8 @@ export interface UntagResourceRequest {
719
545
  */
720
546
  TagKeys: string[] | undefined;
721
547
  }
722
- export declare namespace UntagResourceRequest {
723
- /**
724
- * @internal
725
- */
726
- const filterSensitiveLog: (obj: UntagResourceRequest) => any;
727
- }
728
548
  export interface UntagResourceResult {
729
549
  }
730
- export declare namespace UntagResourceResult {
731
- /**
732
- * @internal
733
- */
734
- const filterSensitiveLog: (obj: UntagResourceResult) => any;
735
- }
736
550
  export interface UpdateNotificationRuleRequest {
737
551
  /**
738
552
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -763,17 +577,137 @@ export interface UpdateNotificationRuleRequest {
763
577
  */
764
578
  DetailType?: DetailType | string;
765
579
  }
766
- export declare namespace UpdateNotificationRuleRequest {
767
- /**
768
- * @internal
769
- */
770
- const filterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
771
- }
772
580
  export interface UpdateNotificationRuleResult {
773
581
  }
774
- export declare namespace UpdateNotificationRuleResult {
775
- /**
776
- * @internal
777
- */
778
- const filterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
779
- }
582
+ /**
583
+ * @internal
584
+ */
585
+ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
586
+ /**
587
+ * @internal
588
+ */
589
+ export declare const CreateNotificationRuleRequestFilterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
590
+ /**
591
+ * @internal
592
+ */
593
+ export declare const CreateNotificationRuleResultFilterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
594
+ /**
595
+ * @internal
596
+ */
597
+ export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
598
+ /**
599
+ * @internal
600
+ */
601
+ export declare const DeleteNotificationRuleResultFilterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
602
+ /**
603
+ * @internal
604
+ */
605
+ export declare const DeleteTargetRequestFilterSensitiveLog: (obj: DeleteTargetRequest) => any;
606
+ /**
607
+ * @internal
608
+ */
609
+ export declare const DeleteTargetResultFilterSensitiveLog: (obj: DeleteTargetResult) => any;
610
+ /**
611
+ * @internal
612
+ */
613
+ export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
614
+ /**
615
+ * @internal
616
+ */
617
+ export declare const EventTypeSummaryFilterSensitiveLog: (obj: EventTypeSummary) => any;
618
+ /**
619
+ * @internal
620
+ */
621
+ export declare const TargetSummaryFilterSensitiveLog: (obj: TargetSummary) => any;
622
+ /**
623
+ * @internal
624
+ */
625
+ export declare const DescribeNotificationRuleResultFilterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
626
+ /**
627
+ * @internal
628
+ */
629
+ export declare const ListEventTypesFilterFilterSensitiveLog: (obj: ListEventTypesFilter) => any;
630
+ /**
631
+ * @internal
632
+ */
633
+ export declare const ListEventTypesRequestFilterSensitiveLog: (obj: ListEventTypesRequest) => any;
634
+ /**
635
+ * @internal
636
+ */
637
+ export declare const ListEventTypesResultFilterSensitiveLog: (obj: ListEventTypesResult) => any;
638
+ /**
639
+ * @internal
640
+ */
641
+ export declare const ListNotificationRulesFilterFilterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
642
+ /**
643
+ * @internal
644
+ */
645
+ export declare const ListNotificationRulesRequestFilterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
646
+ /**
647
+ * @internal
648
+ */
649
+ export declare const NotificationRuleSummaryFilterSensitiveLog: (obj: NotificationRuleSummary) => any;
650
+ /**
651
+ * @internal
652
+ */
653
+ export declare const ListNotificationRulesResultFilterSensitiveLog: (obj: ListNotificationRulesResult) => any;
654
+ /**
655
+ * @internal
656
+ */
657
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
658
+ /**
659
+ * @internal
660
+ */
661
+ export declare const ListTagsForResourceResultFilterSensitiveLog: (obj: ListTagsForResourceResult) => any;
662
+ /**
663
+ * @internal
664
+ */
665
+ export declare const ListTargetsFilterFilterSensitiveLog: (obj: ListTargetsFilter) => any;
666
+ /**
667
+ * @internal
668
+ */
669
+ export declare const ListTargetsRequestFilterSensitiveLog: (obj: ListTargetsRequest) => any;
670
+ /**
671
+ * @internal
672
+ */
673
+ export declare const ListTargetsResultFilterSensitiveLog: (obj: ListTargetsResult) => any;
674
+ /**
675
+ * @internal
676
+ */
677
+ export declare const SubscribeRequestFilterSensitiveLog: (obj: SubscribeRequest) => any;
678
+ /**
679
+ * @internal
680
+ */
681
+ export declare const SubscribeResultFilterSensitiveLog: (obj: SubscribeResult) => any;
682
+ /**
683
+ * @internal
684
+ */
685
+ export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
686
+ /**
687
+ * @internal
688
+ */
689
+ export declare const TagResourceResultFilterSensitiveLog: (obj: TagResourceResult) => any;
690
+ /**
691
+ * @internal
692
+ */
693
+ export declare const UnsubscribeRequestFilterSensitiveLog: (obj: UnsubscribeRequest) => any;
694
+ /**
695
+ * @internal
696
+ */
697
+ export declare const UnsubscribeResultFilterSensitiveLog: (obj: UnsubscribeResult) => any;
698
+ /**
699
+ * @internal
700
+ */
701
+ export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
702
+ /**
703
+ * @internal
704
+ */
705
+ export declare const UntagResourceResultFilterSensitiveLog: (obj: UntagResourceResult) => any;
706
+ /**
707
+ * @internal
708
+ */
709
+ export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
710
+ /**
711
+ * @internal
712
+ */
713
+ export declare const UpdateNotificationRuleResultFilterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;