@aws-sdk/client-codestar-notifications 3.296.0 → 3.298.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 (51) hide show
  1. package/dist-cjs/commands/CreateNotificationRuleCommand.js +1 -1
  2. package/dist-cjs/commands/DeleteNotificationRuleCommand.js +2 -3
  3. package/dist-cjs/commands/DeleteTargetCommand.js +1 -1
  4. package/dist-cjs/commands/DescribeNotificationRuleCommand.js +1 -1
  5. package/dist-cjs/commands/ListEventTypesCommand.js +2 -3
  6. package/dist-cjs/commands/ListNotificationRulesCommand.js +2 -3
  7. package/dist-cjs/commands/ListTagsForResourceCommand.js +2 -3
  8. package/dist-cjs/commands/ListTargetsCommand.js +1 -1
  9. package/dist-cjs/commands/SubscribeCommand.js +1 -1
  10. package/dist-cjs/commands/TagResourceCommand.js +2 -3
  11. package/dist-cjs/commands/UnsubscribeCommand.js +1 -1
  12. package/dist-cjs/commands/UntagResourceCommand.js +2 -3
  13. package/dist-cjs/commands/UpdateNotificationRuleCommand.js +1 -1
  14. package/dist-cjs/models/models_0.js +1 -97
  15. package/dist-es/commands/CreateNotificationRuleCommand.js +2 -2
  16. package/dist-es/commands/DeleteNotificationRuleCommand.js +2 -3
  17. package/dist-es/commands/DeleteTargetCommand.js +2 -2
  18. package/dist-es/commands/DescribeNotificationRuleCommand.js +2 -2
  19. package/dist-es/commands/ListEventTypesCommand.js +2 -3
  20. package/dist-es/commands/ListNotificationRulesCommand.js +2 -3
  21. package/dist-es/commands/ListTagsForResourceCommand.js +2 -3
  22. package/dist-es/commands/ListTargetsCommand.js +2 -2
  23. package/dist-es/commands/SubscribeCommand.js +2 -2
  24. package/dist-es/commands/TagResourceCommand.js +2 -3
  25. package/dist-es/commands/UnsubscribeCommand.js +2 -2
  26. package/dist-es/commands/UntagResourceCommand.js +2 -3
  27. package/dist-es/commands/UpdateNotificationRuleCommand.js +2 -2
  28. package/dist-es/models/models_0.js +0 -72
  29. package/dist-types/CodestarNotifications.d.ts +14 -0
  30. package/dist-types/CodestarNotificationsClient.d.ts +24 -4
  31. package/dist-types/commands/CreateNotificationRuleCommand.d.ts +16 -0
  32. package/dist-types/commands/DeleteNotificationRuleCommand.d.ts +16 -0
  33. package/dist-types/commands/DeleteTargetCommand.d.ts +16 -0
  34. package/dist-types/commands/DescribeNotificationRuleCommand.d.ts +16 -0
  35. package/dist-types/commands/ListEventTypesCommand.d.ts +16 -0
  36. package/dist-types/commands/ListNotificationRulesCommand.d.ts +16 -0
  37. package/dist-types/commands/ListTagsForResourceCommand.d.ts +16 -0
  38. package/dist-types/commands/ListTargetsCommand.d.ts +16 -0
  39. package/dist-types/commands/SubscribeCommand.d.ts +16 -0
  40. package/dist-types/commands/TagResourceCommand.d.ts +16 -0
  41. package/dist-types/commands/UnsubscribeCommand.d.ts +16 -0
  42. package/dist-types/commands/UntagResourceCommand.d.ts +16 -0
  43. package/dist-types/commands/UpdateNotificationRuleCommand.d.ts +16 -0
  44. package/dist-types/models/CodestarNotificationsServiceException.d.ts +2 -0
  45. package/dist-types/models/models_0.d.ts +111 -96
  46. package/dist-types/pagination/Interfaces.d.ts +3 -0
  47. package/dist-types/pagination/ListEventTypesPaginator.d.ts +3 -0
  48. package/dist-types/pagination/ListNotificationRulesPaginator.d.ts +3 -0
  49. package/dist-types/pagination/ListTargetsPaginator.d.ts +3 -0
  50. package/dist-types/ts3.4/models/models_0.d.ts +0 -72
  51. package/package.json +4 -3
@@ -1,6 +1,7 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
3
3
  /**
4
+ * @public
4
5
  * <p>AWS CodeStar Notifications can't create the notification rule because you do not have sufficient
5
6
  * permissions.</p>
6
7
  */
@@ -14,6 +15,7 @@ export declare class AccessDeniedException extends __BaseException {
14
15
  constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
15
16
  }
16
17
  /**
18
+ * @public
17
19
  * <p>AWS CodeStar Notifications can't complete the request because the resource is being modified by
18
20
  * another process. Wait a few minutes and try again.</p>
19
21
  */
@@ -27,6 +29,7 @@ export declare class ConcurrentModificationException extends __BaseException {
27
29
  constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
28
30
  }
29
31
  /**
32
+ * @public
30
33
  * <p>Some or all of the configuration is incomplete, missing, or not valid.</p>
31
34
  */
32
35
  export declare class ConfigurationException extends __BaseException {
@@ -38,15 +41,22 @@ export declare class ConfigurationException extends __BaseException {
38
41
  */
39
42
  constructor(opts: __ExceptionOptionType<ConfigurationException, __BaseException>);
40
43
  }
44
+ /**
45
+ * @public
46
+ */
41
47
  export declare enum DetailType {
42
48
  BASIC = "BASIC",
43
49
  FULL = "FULL"
44
50
  }
51
+ /**
52
+ * @public
53
+ */
45
54
  export declare enum NotificationRuleStatus {
46
55
  DISABLED = "DISABLED",
47
56
  ENABLED = "ENABLED"
48
57
  }
49
58
  /**
59
+ * @public
50
60
  * <p>Information about the Chatbot topics or Chatbot clients associated with a notification rule.</p>
51
61
  */
52
62
  export interface Target {
@@ -67,6 +77,9 @@ export interface Target {
67
77
  */
68
78
  TargetAddress?: string;
69
79
  }
80
+ /**
81
+ * @public
82
+ */
70
83
  export interface CreateNotificationRuleRequest {
71
84
  /**
72
85
  * <p>The name for the notification rule. Notification rule names must be unique in your Amazon Web Services account.</p>
@@ -114,6 +127,9 @@ export interface CreateNotificationRuleRequest {
114
127
  */
115
128
  Status?: NotificationRuleStatus | string;
116
129
  }
130
+ /**
131
+ * @public
132
+ */
117
133
  export interface CreateNotificationRuleResult {
118
134
  /**
119
135
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -121,6 +137,7 @@ export interface CreateNotificationRuleResult {
121
137
  Arn?: string;
122
138
  }
123
139
  /**
140
+ * @public
124
141
  * <p>One of the AWS CodeStar Notifications limits has been exceeded. Limits apply to
125
142
  * accounts, notification rules, notifications, resources, and targets. For more
126
143
  * information, see Limits.</p>
@@ -135,6 +152,7 @@ export declare class LimitExceededException extends __BaseException {
135
152
  constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
136
153
  }
137
154
  /**
155
+ * @public
138
156
  * <p>A resource with the same name or ID already exists. Notification rule names must be
139
157
  * unique in your Amazon Web Services account.</p>
140
158
  */
@@ -148,6 +166,7 @@ export declare class ResourceAlreadyExistsException extends __BaseException {
148
166
  constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
149
167
  }
150
168
  /**
169
+ * @public
151
170
  * <p>One or more parameter values are not valid.</p>
152
171
  */
153
172
  export declare class ValidationException extends __BaseException {
@@ -159,18 +178,27 @@ export declare class ValidationException extends __BaseException {
159
178
  */
160
179
  constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
161
180
  }
181
+ /**
182
+ * @public
183
+ */
162
184
  export interface DeleteNotificationRuleRequest {
163
185
  /**
164
186
  * <p>The Amazon Resource Name (ARN) of the notification rule you want to delete.</p>
165
187
  */
166
188
  Arn: string | undefined;
167
189
  }
190
+ /**
191
+ * @public
192
+ */
168
193
  export interface DeleteNotificationRuleResult {
169
194
  /**
170
195
  * <p>The Amazon Resource Name (ARN) of the deleted notification rule.</p>
171
196
  */
172
197
  Arn?: string;
173
198
  }
199
+ /**
200
+ * @public
201
+ */
174
202
  export interface DeleteTargetRequest {
175
203
  /**
176
204
  * <p>The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client to delete.</p>
@@ -183,8 +211,14 @@ export interface DeleteTargetRequest {
183
211
  */
184
212
  ForceUnsubscribeAll?: boolean;
185
213
  }
214
+ /**
215
+ * @public
216
+ */
186
217
  export interface DeleteTargetResult {
187
218
  }
219
+ /**
220
+ * @public
221
+ */
188
222
  export interface DescribeNotificationRuleRequest {
189
223
  /**
190
224
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -192,6 +226,7 @@ export interface DescribeNotificationRuleRequest {
192
226
  Arn: string | undefined;
193
227
  }
194
228
  /**
229
+ * @public
195
230
  * <p>Returns information about an event that has triggered a notification rule.</p>
196
231
  */
197
232
  export interface EventTypeSummary {
@@ -214,6 +249,9 @@ export interface EventTypeSummary {
214
249
  */
215
250
  ResourceType?: string;
216
251
  }
252
+ /**
253
+ * @public
254
+ */
217
255
  export declare enum TargetStatus {
218
256
  ACTIVE = "ACTIVE",
219
257
  DEACTIVATED = "DEACTIVATED",
@@ -222,6 +260,7 @@ export declare enum TargetStatus {
222
260
  UNREACHABLE = "UNREACHABLE"
223
261
  }
224
262
  /**
263
+ * @public
225
264
  * <p>Information about the targets specified for a notification rule.</p>
226
265
  */
227
266
  export interface TargetSummary {
@@ -246,6 +285,9 @@ export interface TargetSummary {
246
285
  */
247
286
  TargetStatus?: TargetStatus | string;
248
287
  }
288
+ /**
289
+ * @public
290
+ */
249
291
  export interface DescribeNotificationRuleResult {
250
292
  /**
251
293
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -298,6 +340,7 @@ export interface DescribeNotificationRuleResult {
298
340
  Tags?: Record<string, string>;
299
341
  }
300
342
  /**
343
+ * @public
301
344
  * <p>AWS CodeStar Notifications can't find a resource that matches the provided ARN. </p>
302
345
  */
303
346
  export declare class ResourceNotFoundException extends __BaseException {
@@ -310,6 +353,7 @@ export declare class ResourceNotFoundException extends __BaseException {
310
353
  constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
311
354
  }
312
355
  /**
356
+ * @public
313
357
  * <p>The value for the enumeration token used in the request to return the next batch of the results is not valid. </p>
314
358
  */
315
359
  export declare class InvalidNextTokenException extends __BaseException {
@@ -321,11 +365,15 @@ export declare class InvalidNextTokenException extends __BaseException {
321
365
  */
322
366
  constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
323
367
  }
368
+ /**
369
+ * @public
370
+ */
324
371
  export declare enum ListEventTypesFilterName {
325
372
  RESOURCE_TYPE = "RESOURCE_TYPE",
326
373
  SERVICE_NAME = "SERVICE_NAME"
327
374
  }
328
375
  /**
376
+ * @public
329
377
  * <p>Information about a filter to apply to the list of returned event types. You can filter
330
378
  * by resource type or service name.</p>
331
379
  */
@@ -340,6 +388,9 @@ export interface ListEventTypesFilter {
340
388
  */
341
389
  Value: string | undefined;
342
390
  }
391
+ /**
392
+ * @public
393
+ */
343
394
  export interface ListEventTypesRequest {
344
395
  /**
345
396
  * <p>The filters to use to return information by service or resource type.</p>
@@ -356,6 +407,9 @@ export interface ListEventTypesRequest {
356
407
  */
357
408
  MaxResults?: number;
358
409
  }
410
+ /**
411
+ * @public
412
+ */
359
413
  export interface ListEventTypesResult {
360
414
  /**
361
415
  * <p>Information about each event, including service name, resource type, event ID, and event
@@ -367,6 +421,9 @@ export interface ListEventTypesResult {
367
421
  */
368
422
  NextToken?: string;
369
423
  }
424
+ /**
425
+ * @public
426
+ */
370
427
  export declare enum ListNotificationRulesFilterName {
371
428
  CREATED_BY = "CREATED_BY",
372
429
  EVENT_TYPE_ID = "EVENT_TYPE_ID",
@@ -374,6 +431,7 @@ export declare enum ListNotificationRulesFilterName {
374
431
  TARGET_ADDRESS = "TARGET_ADDRESS"
375
432
  }
376
433
  /**
434
+ * @public
377
435
  * <p>Information about a filter to apply to the list of returned notification rules. You can
378
436
  * filter by event type, owner, resource, or target.</p>
379
437
  */
@@ -388,6 +446,9 @@ export interface ListNotificationRulesFilter {
388
446
  */
389
447
  Value: string | undefined;
390
448
  }
449
+ /**
450
+ * @public
451
+ */
391
452
  export interface ListNotificationRulesRequest {
392
453
  /**
393
454
  * <p>The filters to use to return information by service or resource type. For valid values,
@@ -409,6 +470,7 @@ export interface ListNotificationRulesRequest {
409
470
  MaxResults?: number;
410
471
  }
411
472
  /**
473
+ * @public
412
474
  * <p>Information about a specified notification rule.</p>
413
475
  */
414
476
  export interface NotificationRuleSummary {
@@ -421,6 +483,9 @@ export interface NotificationRuleSummary {
421
483
  */
422
484
  Arn?: string;
423
485
  }
486
+ /**
487
+ * @public
488
+ */
424
489
  export interface ListNotificationRulesResult {
425
490
  /**
426
491
  * <p>An enumeration token that can be used in a request to return the next batch of the results.</p>
@@ -431,24 +496,34 @@ export interface ListNotificationRulesResult {
431
496
  */
432
497
  NotificationRules?: NotificationRuleSummary[];
433
498
  }
499
+ /**
500
+ * @public
501
+ */
434
502
  export interface ListTagsForResourceRequest {
435
503
  /**
436
504
  * <p>The Amazon Resource Name (ARN) for the notification rule.</p>
437
505
  */
438
506
  Arn: string | undefined;
439
507
  }
508
+ /**
509
+ * @public
510
+ */
440
511
  export interface ListTagsForResourceResult {
441
512
  /**
442
513
  * <p>The tags associated with the notification rule.</p>
443
514
  */
444
515
  Tags?: Record<string, string>;
445
516
  }
517
+ /**
518
+ * @public
519
+ */
446
520
  export declare enum ListTargetsFilterName {
447
521
  TARGET_ADDRESS = "TARGET_ADDRESS",
448
522
  TARGET_STATUS = "TARGET_STATUS",
449
523
  TARGET_TYPE = "TARGET_TYPE"
450
524
  }
451
525
  /**
526
+ * @public
452
527
  * <p>Information about a filter to apply to the list of returned targets. You can filter by
453
528
  * target type, address, or status. For example, to filter results to notification rules
454
529
  * that have active Chatbot topics as targets, you could specify a ListTargetsFilter
@@ -467,6 +542,9 @@ export interface ListTargetsFilter {
467
542
  */
468
543
  Value: string | undefined;
469
544
  }
545
+ /**
546
+ * @public
547
+ */
470
548
  export interface ListTargetsRequest {
471
549
  /**
472
550
  * <p>The filters to use to return information by service or resource type. Valid filters
@@ -487,6 +565,9 @@ export interface ListTargetsRequest {
487
565
  */
488
566
  MaxResults?: number;
489
567
  }
568
+ /**
569
+ * @public
570
+ */
490
571
  export interface ListTargetsResult {
491
572
  /**
492
573
  * <p>The list of notification rule targets. </p>
@@ -498,6 +579,9 @@ export interface ListTargetsResult {
498
579
  */
499
580
  NextToken?: string;
500
581
  }
582
+ /**
583
+ * @public
584
+ */
501
585
  export interface SubscribeRequest {
502
586
  /**
503
587
  * <p>The Amazon Resource Name (ARN) of the notification rule for which you want to create the association.</p>
@@ -513,12 +597,18 @@ export interface SubscribeRequest {
513
597
  */
514
598
  ClientRequestToken?: string;
515
599
  }
600
+ /**
601
+ * @public
602
+ */
516
603
  export interface SubscribeResult {
517
604
  /**
518
605
  * <p>The Amazon Resource Name (ARN) of the notification rule for which you have created assocations.</p>
519
606
  */
520
607
  Arn?: string;
521
608
  }
609
+ /**
610
+ * @public
611
+ */
522
612
  export interface TagResourceRequest {
523
613
  /**
524
614
  * <p>The Amazon Resource Name (ARN) of the notification rule to tag.</p>
@@ -529,12 +619,18 @@ export interface TagResourceRequest {
529
619
  */
530
620
  Tags: Record<string, string> | undefined;
531
621
  }
622
+ /**
623
+ * @public
624
+ */
532
625
  export interface TagResourceResult {
533
626
  /**
534
627
  * <p>The list of tags associated with the resource.</p>
535
628
  */
536
629
  Tags?: Record<string, string>;
537
630
  }
631
+ /**
632
+ * @public
633
+ */
538
634
  export interface UnsubscribeRequest {
539
635
  /**
540
636
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -545,12 +641,18 @@ export interface UnsubscribeRequest {
545
641
  */
546
642
  TargetAddress: string | undefined;
547
643
  }
644
+ /**
645
+ * @public
646
+ */
548
647
  export interface UnsubscribeResult {
549
648
  /**
550
649
  * <p>The Amazon Resource Name (ARN) of the the notification rule from which you have removed a subscription.</p>
551
650
  */
552
651
  Arn: string | undefined;
553
652
  }
653
+ /**
654
+ * @public
655
+ */
554
656
  export interface UntagResourceRequest {
555
657
  /**
556
658
  * <p>The Amazon Resource Name (ARN) of the notification rule from which to remove the
@@ -562,8 +664,14 @@ export interface UntagResourceRequest {
562
664
  */
563
665
  TagKeys: string[] | undefined;
564
666
  }
667
+ /**
668
+ * @public
669
+ */
565
670
  export interface UntagResourceResult {
566
671
  }
672
+ /**
673
+ * @public
674
+ */
567
675
  export interface UpdateNotificationRuleRequest {
568
676
  /**
569
677
  * <p>The Amazon Resource Name (ARN) of the notification rule.</p>
@@ -596,6 +704,9 @@ export interface UpdateNotificationRuleRequest {
596
704
  */
597
705
  DetailType?: DetailType | string;
598
706
  }
707
+ /**
708
+ * @public
709
+ */
599
710
  export interface UpdateNotificationRuleResult {
600
711
  }
601
712
  /**
@@ -606,34 +717,10 @@ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
606
717
  * @internal
607
718
  */
608
719
  export declare const CreateNotificationRuleRequestFilterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
609
- /**
610
- * @internal
611
- */
612
- export declare const CreateNotificationRuleResultFilterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
613
- /**
614
- * @internal
615
- */
616
- export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
617
- /**
618
- * @internal
619
- */
620
- export declare const DeleteNotificationRuleResultFilterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
621
720
  /**
622
721
  * @internal
623
722
  */
624
723
  export declare const DeleteTargetRequestFilterSensitiveLog: (obj: DeleteTargetRequest) => any;
625
- /**
626
- * @internal
627
- */
628
- export declare const DeleteTargetResultFilterSensitiveLog: (obj: DeleteTargetResult) => any;
629
- /**
630
- * @internal
631
- */
632
- export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
633
- /**
634
- * @internal
635
- */
636
- export declare const EventTypeSummaryFilterSensitiveLog: (obj: EventTypeSummary) => any;
637
724
  /**
638
725
  * @internal
639
726
  */
@@ -642,50 +729,6 @@ export declare const TargetSummaryFilterSensitiveLog: (obj: TargetSummary) => an
642
729
  * @internal
643
730
  */
644
731
  export declare const DescribeNotificationRuleResultFilterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
645
- /**
646
- * @internal
647
- */
648
- export declare const ListEventTypesFilterFilterSensitiveLog: (obj: ListEventTypesFilter) => any;
649
- /**
650
- * @internal
651
- */
652
- export declare const ListEventTypesRequestFilterSensitiveLog: (obj: ListEventTypesRequest) => any;
653
- /**
654
- * @internal
655
- */
656
- export declare const ListEventTypesResultFilterSensitiveLog: (obj: ListEventTypesResult) => any;
657
- /**
658
- * @internal
659
- */
660
- export declare const ListNotificationRulesFilterFilterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
661
- /**
662
- * @internal
663
- */
664
- export declare const ListNotificationRulesRequestFilterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
665
- /**
666
- * @internal
667
- */
668
- export declare const NotificationRuleSummaryFilterSensitiveLog: (obj: NotificationRuleSummary) => any;
669
- /**
670
- * @internal
671
- */
672
- export declare const ListNotificationRulesResultFilterSensitiveLog: (obj: ListNotificationRulesResult) => any;
673
- /**
674
- * @internal
675
- */
676
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
677
- /**
678
- * @internal
679
- */
680
- export declare const ListTagsForResourceResultFilterSensitiveLog: (obj: ListTagsForResourceResult) => any;
681
- /**
682
- * @internal
683
- */
684
- export declare const ListTargetsFilterFilterSensitiveLog: (obj: ListTargetsFilter) => any;
685
- /**
686
- * @internal
687
- */
688
- export declare const ListTargetsRequestFilterSensitiveLog: (obj: ListTargetsRequest) => any;
689
732
  /**
690
733
  * @internal
691
734
  */
@@ -694,39 +737,11 @@ export declare const ListTargetsResultFilterSensitiveLog: (obj: ListTargetsResul
694
737
  * @internal
695
738
  */
696
739
  export declare const SubscribeRequestFilterSensitiveLog: (obj: SubscribeRequest) => any;
697
- /**
698
- * @internal
699
- */
700
- export declare const SubscribeResultFilterSensitiveLog: (obj: SubscribeResult) => any;
701
- /**
702
- * @internal
703
- */
704
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
705
- /**
706
- * @internal
707
- */
708
- export declare const TagResourceResultFilterSensitiveLog: (obj: TagResourceResult) => any;
709
740
  /**
710
741
  * @internal
711
742
  */
712
743
  export declare const UnsubscribeRequestFilterSensitiveLog: (obj: UnsubscribeRequest) => any;
713
- /**
714
- * @internal
715
- */
716
- export declare const UnsubscribeResultFilterSensitiveLog: (obj: UnsubscribeResult) => any;
717
- /**
718
- * @internal
719
- */
720
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
721
- /**
722
- * @internal
723
- */
724
- export declare const UntagResourceResultFilterSensitiveLog: (obj: UntagResourceResult) => any;
725
744
  /**
726
745
  * @internal
727
746
  */
728
747
  export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
729
- /**
730
- * @internal
731
- */
732
- export declare const UpdateNotificationRuleResultFilterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
@@ -1,5 +1,8 @@
1
1
  import { PaginationConfiguration } from "@aws-sdk/types";
2
2
  import { CodestarNotificationsClient } from "../CodestarNotificationsClient";
3
+ /**
4
+ * @public
5
+ */
3
6
  export interface CodestarNotificationsPaginationConfiguration extends PaginationConfiguration {
4
7
  client: CodestarNotificationsClient;
5
8
  }
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
3
3
  import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListEventTypes(config: CodestarNotificationsPaginationConfiguration, input: ListEventTypesCommandInput, ...additionalArguments: any): Paginator<ListEventTypesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
3
3
  import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListNotificationRules(config: CodestarNotificationsPaginationConfiguration, input: ListNotificationRulesCommandInput, ...additionalArguments: any): Paginator<ListNotificationRulesCommandOutput>;
@@ -1,4 +1,7 @@
1
1
  import { Paginator } from "@aws-sdk/types";
2
2
  import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
3
3
  import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
4
7
  export declare function paginateListTargets(config: CodestarNotificationsPaginationConfiguration, input: ListTargetsCommandInput, ...additionalArguments: any): Paginator<ListTargetsCommandOutput>;
@@ -241,96 +241,24 @@ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
241
241
  export declare const CreateNotificationRuleRequestFilterSensitiveLog: (
242
242
  obj: CreateNotificationRuleRequest
243
243
  ) => any;
244
- export declare const CreateNotificationRuleResultFilterSensitiveLog: (
245
- obj: CreateNotificationRuleResult
246
- ) => any;
247
- export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (
248
- obj: DeleteNotificationRuleRequest
249
- ) => any;
250
- export declare const DeleteNotificationRuleResultFilterSensitiveLog: (
251
- obj: DeleteNotificationRuleResult
252
- ) => any;
253
244
  export declare const DeleteTargetRequestFilterSensitiveLog: (
254
245
  obj: DeleteTargetRequest
255
246
  ) => any;
256
- export declare const DeleteTargetResultFilterSensitiveLog: (
257
- obj: DeleteTargetResult
258
- ) => any;
259
- export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (
260
- obj: DescribeNotificationRuleRequest
261
- ) => any;
262
- export declare const EventTypeSummaryFilterSensitiveLog: (
263
- obj: EventTypeSummary
264
- ) => any;
265
247
  export declare const TargetSummaryFilterSensitiveLog: (
266
248
  obj: TargetSummary
267
249
  ) => any;
268
250
  export declare const DescribeNotificationRuleResultFilterSensitiveLog: (
269
251
  obj: DescribeNotificationRuleResult
270
252
  ) => any;
271
- export declare const ListEventTypesFilterFilterSensitiveLog: (
272
- obj: ListEventTypesFilter
273
- ) => any;
274
- export declare const ListEventTypesRequestFilterSensitiveLog: (
275
- obj: ListEventTypesRequest
276
- ) => any;
277
- export declare const ListEventTypesResultFilterSensitiveLog: (
278
- obj: ListEventTypesResult
279
- ) => any;
280
- export declare const ListNotificationRulesFilterFilterSensitiveLog: (
281
- obj: ListNotificationRulesFilter
282
- ) => any;
283
- export declare const ListNotificationRulesRequestFilterSensitiveLog: (
284
- obj: ListNotificationRulesRequest
285
- ) => any;
286
- export declare const NotificationRuleSummaryFilterSensitiveLog: (
287
- obj: NotificationRuleSummary
288
- ) => any;
289
- export declare const ListNotificationRulesResultFilterSensitiveLog: (
290
- obj: ListNotificationRulesResult
291
- ) => any;
292
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (
293
- obj: ListTagsForResourceRequest
294
- ) => any;
295
- export declare const ListTagsForResourceResultFilterSensitiveLog: (
296
- obj: ListTagsForResourceResult
297
- ) => any;
298
- export declare const ListTargetsFilterFilterSensitiveLog: (
299
- obj: ListTargetsFilter
300
- ) => any;
301
- export declare const ListTargetsRequestFilterSensitiveLog: (
302
- obj: ListTargetsRequest
303
- ) => any;
304
253
  export declare const ListTargetsResultFilterSensitiveLog: (
305
254
  obj: ListTargetsResult
306
255
  ) => any;
307
256
  export declare const SubscribeRequestFilterSensitiveLog: (
308
257
  obj: SubscribeRequest
309
258
  ) => any;
310
- export declare const SubscribeResultFilterSensitiveLog: (
311
- obj: SubscribeResult
312
- ) => any;
313
- export declare const TagResourceRequestFilterSensitiveLog: (
314
- obj: TagResourceRequest
315
- ) => any;
316
- export declare const TagResourceResultFilterSensitiveLog: (
317
- obj: TagResourceResult
318
- ) => any;
319
259
  export declare const UnsubscribeRequestFilterSensitiveLog: (
320
260
  obj: UnsubscribeRequest
321
261
  ) => any;
322
- export declare const UnsubscribeResultFilterSensitiveLog: (
323
- obj: UnsubscribeResult
324
- ) => any;
325
- export declare const UntagResourceRequestFilterSensitiveLog: (
326
- obj: UntagResourceRequest
327
- ) => any;
328
- export declare const UntagResourceResultFilterSensitiveLog: (
329
- obj: UntagResourceResult
330
- ) => any;
331
262
  export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (
332
263
  obj: UpdateNotificationRuleRequest
333
264
  ) => any;
334
- export declare const UpdateNotificationRuleResultFilterSensitiveLog: (
335
- obj: UpdateNotificationRuleResult
336
- ) => any;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-codestar-notifications",
3
3
  "description": "AWS SDK for JavaScript Codestar Notifications Client for Node.js, Browser and React Native",
4
- "version": "3.296.0",
4
+ "version": "3.298.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -11,6 +11,7 @@
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
12
  "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
13
  "clean": "rimraf ./dist-* && rimraf *.tsbuildinfo",
14
+ "extract:docs": "api-extractor run --local",
14
15
  "generate:client": "node ../../scripts/generate-clients/single-service --solo codestar-notifications"
15
16
  },
16
17
  "main": "./dist-cjs/index.js",
@@ -20,9 +21,9 @@
20
21
  "dependencies": {
21
22
  "@aws-crypto/sha256-browser": "3.0.0",
22
23
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.296.0",
24
+ "@aws-sdk/client-sts": "3.298.0",
24
25
  "@aws-sdk/config-resolver": "3.296.0",
25
- "@aws-sdk/credential-provider-node": "3.296.0",
26
+ "@aws-sdk/credential-provider-node": "3.298.0",
26
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
27
28
  "@aws-sdk/hash-node": "3.296.0",
28
29
  "@aws-sdk/invalid-dependency": "3.296.0",