@aws-sdk/client-eventbridge 3.699.0 → 3.709.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.
@@ -1,5 +1,17 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
2
  import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
3
+ /**
4
+ * <p>You do not have the necessary permissons for this action.</p>
5
+ * @public
6
+ */
7
+ export declare class AccessDeniedException extends __BaseException {
8
+ readonly name: "AccessDeniedException";
9
+ readonly $fault: "client";
10
+ /**
11
+ * @internal
12
+ */
13
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
14
+ }
3
15
  /**
4
16
  * @public
5
17
  */
@@ -466,7 +478,7 @@ export declare const ConnectionAuthorizationType: {
466
478
  */
467
479
  export type ConnectionAuthorizationType = (typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
468
480
  /**
469
- * <p>Contains the API key authorization parameters for the connection.</p>
481
+ * <p>The API key authorization parameters for the connection.</p>
470
482
  * @public
471
483
  */
472
484
  export interface CreateConnectionApiKeyAuthRequestParameters {
@@ -497,6 +509,28 @@ export interface CreateConnectionBasicAuthRequestParameters {
497
509
  */
498
510
  Password: string | undefined;
499
511
  }
512
+ /**
513
+ * <p>The Amazon Resource Name (ARN) of the resource configuration for the resource endpoint.</p>
514
+ * @public
515
+ */
516
+ export interface ConnectivityResourceConfigurationArn {
517
+ /**
518
+ * <p>The Amazon Resource Name (ARN) of the resource configuration for the resource endpoint.</p>
519
+ * @public
520
+ */
521
+ ResourceConfigurationArn: string | undefined;
522
+ }
523
+ /**
524
+ * <p>The parameters for EventBridge to use when invoking the resource endpoint.</p>
525
+ * @public
526
+ */
527
+ export interface ConnectivityResourceParameters {
528
+ /**
529
+ * <p>The parameters for EventBridge to use when invoking the resource endpoint.</p>
530
+ * @public
531
+ */
532
+ ResourceParameters: ConnectivityResourceConfigurationArn | undefined;
533
+ }
500
534
  /**
501
535
  * <p>Additional parameter included in the body. You can include up to 100 additional body
502
536
  * parameters per request. An event payload cannot exceed 64 KB.</p>
@@ -514,7 +548,7 @@ export interface ConnectionBodyParameter {
514
548
  */
515
549
  Value?: string | undefined;
516
550
  /**
517
- * <p>Specified whether the value is secret.</p>
551
+ * <p>Specifies whether the value is secret.</p>
518
552
  * @public
519
553
  */
520
554
  IsValueSecret?: boolean | undefined;
@@ -536,13 +570,13 @@ export interface ConnectionHeaderParameter {
536
570
  */
537
571
  Value?: string | undefined;
538
572
  /**
539
- * <p>Specified whether the value is a secret.</p>
573
+ * <p>Specifies whether the value is a secret.</p>
540
574
  * @public
541
575
  */
542
576
  IsValueSecret?: boolean | undefined;
543
577
  }
544
578
  /**
545
- * <p>Additional query string parameter for the connection. You can include up to 100 additional
579
+ * <p>Any additional query string parameter for the connection. You can include up to 100 additional
546
580
  * query string parameters per request. Each additional parameter counts towards the event
547
581
  * payload size, which cannot exceed 64 KB.</p>
548
582
  * @public
@@ -565,28 +599,28 @@ export interface ConnectionQueryStringParameter {
565
599
  IsValueSecret?: boolean | undefined;
566
600
  }
567
601
  /**
568
- * <p>Contains additional parameters for the connection.</p>
602
+ * <p>Any additional parameters for the connection.</p>
569
603
  * @public
570
604
  */
571
605
  export interface ConnectionHttpParameters {
572
606
  /**
573
- * <p>Contains additional header parameters for the connection.</p>
607
+ * <p>Any additional header parameters for the connection.</p>
574
608
  * @public
575
609
  */
576
610
  HeaderParameters?: ConnectionHeaderParameter[] | undefined;
577
611
  /**
578
- * <p>Contains additional query string parameters for the connection.</p>
612
+ * <p>Any additional query string parameters for the connection.</p>
579
613
  * @public
580
614
  */
581
615
  QueryStringParameters?: ConnectionQueryStringParameter[] | undefined;
582
616
  /**
583
- * <p>Contains additional body string parameters for the connection.</p>
617
+ * <p>Any additional body string parameters for the connection.</p>
584
618
  * @public
585
619
  */
586
620
  BodyParameters?: ConnectionBodyParameter[] | undefined;
587
621
  }
588
622
  /**
589
- * <p>Contains the Basic authorization parameters to use for the connection.</p>
623
+ * <p>The Basic authorization parameters to use for the connection.</p>
590
624
  * @public
591
625
  */
592
626
  export interface CreateConnectionOAuthClientRequestParameters {
@@ -621,8 +655,7 @@ export type ConnectionOAuthHttpMethod = (typeof ConnectionOAuthHttpMethod)[keyof
621
655
  */
622
656
  export interface CreateConnectionOAuthRequestParameters {
623
657
  /**
624
- * <p>A <code>CreateConnectionOAuthClientRequestParameters</code> object that contains the
625
- * client parameters for OAuth authorization.</p>
658
+ * <p>The client parameters for OAuth authorization.</p>
626
659
  * @public
627
660
  */
628
661
  ClientParameters: CreateConnectionOAuthClientRequestParameters | undefined;
@@ -638,43 +671,52 @@ export interface CreateConnectionOAuthRequestParameters {
638
671
  */
639
672
  HttpMethod: ConnectionOAuthHttpMethod | undefined;
640
673
  /**
641
- * <p>A <code>ConnectionHttpParameters</code> object that contains details about the additional
674
+ * <p>Details about the additional
642
675
  * parameters to use for the connection.</p>
643
676
  * @public
644
677
  */
645
678
  OAuthHttpParameters?: ConnectionHttpParameters | undefined;
646
679
  }
647
680
  /**
648
- * <p>Contains the authorization parameters for the connection.</p>
681
+ * <p>The authorization parameters for the connection.</p>
682
+ * <p>You must include only authorization parameters for the <code>AuthorizationType</code> you specify.</p>
649
683
  * @public
650
684
  */
651
685
  export interface CreateConnectionAuthRequestParameters {
652
686
  /**
653
- * <p>A <code>CreateConnectionBasicAuthRequestParameters</code> object that contains the Basic
687
+ * <p>The Basic
654
688
  * authorization parameters to use for the connection.</p>
655
689
  * @public
656
690
  */
657
691
  BasicAuthParameters?: CreateConnectionBasicAuthRequestParameters | undefined;
658
692
  /**
659
- * <p>A <code>CreateConnectionOAuthRequestParameters</code> object that contains the OAuth
693
+ * <p>The OAuth
660
694
  * authorization parameters to use for the connection.</p>
661
695
  * @public
662
696
  */
663
697
  OAuthParameters?: CreateConnectionOAuthRequestParameters | undefined;
664
698
  /**
665
- * <p>A <code>CreateConnectionApiKeyAuthRequestParameters</code> object that contains the API
699
+ * <p>The API
666
700
  * key authorization parameters to use for the connection.</p>
667
701
  * @public
668
702
  */
669
703
  ApiKeyAuthParameters?: CreateConnectionApiKeyAuthRequestParameters | undefined;
670
704
  /**
671
- * <p>A <code>ConnectionHttpParameters</code> object that contains the API key authorization
705
+ * <p>The API key authorization
672
706
  * parameters to use for the connection. Note that if you include additional parameters for the
673
707
  * target of a rule via <code>HttpParameters</code>, including query strings, the parameters
674
708
  * added for the connection take precedence.</p>
675
709
  * @public
676
710
  */
677
711
  InvocationHttpParameters?: ConnectionHttpParameters | undefined;
712
+ /**
713
+ * <p>If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.</p>
714
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html">Authorization methods for connections</a> in the <i>
715
+ * <i>Amazon EventBridge User Guide</i>
716
+ * </i>.</p>
717
+ * @public
718
+ */
719
+ ConnectivityParameters?: ConnectivityResourceParameters | undefined;
678
720
  }
679
721
  /**
680
722
  * @public
@@ -699,23 +741,34 @@ export interface CreateConnectionRequest {
699
741
  */
700
742
  AuthorizationType: ConnectionAuthorizationType | undefined;
701
743
  /**
702
- * <p>A <code>CreateConnectionAuthRequestParameters</code> object that contains the
744
+ * <p>The
703
745
  * authorization parameters to use to authorize with the endpoint. </p>
746
+ * <p>You must include only authorization parameters for the <code>AuthorizationType</code> you specify.</p>
704
747
  * @public
705
748
  */
706
749
  AuthParameters: CreateConnectionAuthRequestParameters | undefined;
750
+ /**
751
+ * <p>For connections to private resource endpoints, the parameters to use for invoking the resource endpoint.</p>
752
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html">Connecting to private resources</a> in the <i>
753
+ * <i>Amazon EventBridge User Guide</i>
754
+ * </i>.</p>
755
+ * @public
756
+ */
757
+ InvocationConnectivityParameters?: ConnectivityResourceParameters | undefined;
707
758
  }
708
759
  /**
709
760
  * @public
710
761
  * @enum
711
762
  */
712
763
  export declare const ConnectionState: {
764
+ readonly ACTIVE: "ACTIVE";
713
765
  readonly AUTHORIZED: "AUTHORIZED";
714
766
  readonly AUTHORIZING: "AUTHORIZING";
715
767
  readonly CREATING: "CREATING";
716
768
  readonly DEAUTHORIZED: "DEAUTHORIZED";
717
769
  readonly DEAUTHORIZING: "DEAUTHORIZING";
718
770
  readonly DELETING: "DELETING";
771
+ readonly FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY";
719
772
  readonly UPDATING: "UPDATING";
720
773
  };
721
774
  /**
@@ -747,6 +800,18 @@ export interface CreateConnectionResponse {
747
800
  */
748
801
  LastModifiedTime?: Date | undefined;
749
802
  }
803
+ /**
804
+ * <p>This request cannot be completed due to throttling issues.</p>
805
+ * @public
806
+ */
807
+ export declare class ThrottlingException extends __BaseException {
808
+ readonly name: "ThrottlingException";
809
+ readonly $fault: "client";
810
+ /**
811
+ * @internal
812
+ */
813
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
814
+ }
750
815
  /**
751
816
  * <p>The event buses the endpoint is associated with.</p>
752
817
  * @public
@@ -936,8 +1001,7 @@ export interface CreateEndpointResponse {
936
1001
  /**
937
1002
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
938
1003
  * dead-letter queue (DLQ).</p>
939
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
940
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
1004
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
941
1005
  * Guide</i>.</p>
942
1006
  * @public
943
1007
  */
@@ -1029,8 +1093,7 @@ export interface CreateEventBusRequest {
1029
1093
  /**
1030
1094
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1031
1095
  * dead-letter queue (DLQ).</p>
1032
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
1033
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
1096
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
1034
1097
  * Guide</i>.</p>
1035
1098
  * @public
1036
1099
  */
@@ -1065,8 +1128,7 @@ export interface CreateEventBusResponse {
1065
1128
  /**
1066
1129
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1067
1130
  * dead-letter queue (DLQ).</p>
1068
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
1069
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
1131
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
1070
1132
  * Guide</i>.</p>
1071
1133
  * @public
1072
1134
  */
@@ -1473,7 +1535,7 @@ export interface ConnectionApiKeyAuthResponseParameters {
1473
1535
  ApiKeyName?: string | undefined;
1474
1536
  }
1475
1537
  /**
1476
- * <p>Contains the authorization parameters for the connection if Basic is specified as the
1538
+ * <p>The authorization parameters for the connection if Basic is specified as the
1477
1539
  * authorization type.</p>
1478
1540
  * @public
1479
1541
  */
@@ -1485,7 +1547,37 @@ export interface ConnectionBasicAuthResponseParameters {
1485
1547
  Username?: string | undefined;
1486
1548
  }
1487
1549
  /**
1488
- * <p>Contains the client response parameters for the connection when OAuth is specified as the
1550
+ * <p>The parameters for EventBridge to use when invoking the resource endpoint.</p>
1551
+ * @public
1552
+ */
1553
+ export interface DescribeConnectionResourceParameters {
1554
+ /**
1555
+ * <p>The Amazon Resource Name (ARN) of the resource configuration for the private API.</p>
1556
+ * @public
1557
+ */
1558
+ ResourceConfigurationArn: string | undefined;
1559
+ /**
1560
+ * <p>For connections to private APIs, the Amazon Resource Name (ARN) of the resource association EventBridge created between the connection and the private API's resource configuration.</p>
1561
+ * @public
1562
+ */
1563
+ ResourceAssociationArn: string | undefined;
1564
+ }
1565
+ /**
1566
+ * <p>If the connection uses a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.</p>
1567
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html">Authorization methods for connections</a> in the <i>
1568
+ * <i>Amazon EventBridge User Guide</i>
1569
+ * </i>.</p>
1570
+ * @public
1571
+ */
1572
+ export interface DescribeConnectionConnectivityParameters {
1573
+ /**
1574
+ * <p>The parameters for EventBridge to use when invoking the resource endpoint.</p>
1575
+ * @public
1576
+ */
1577
+ ResourceParameters: DescribeConnectionResourceParameters | undefined;
1578
+ }
1579
+ /**
1580
+ * <p>The client response parameters for the connection when OAuth is specified as the
1489
1581
  * authorization type.</p>
1490
1582
  * @public
1491
1583
  */
@@ -1497,13 +1589,12 @@ export interface ConnectionOAuthClientResponseParameters {
1497
1589
  ClientID?: string | undefined;
1498
1590
  }
1499
1591
  /**
1500
- * <p>Contains the response parameters when OAuth is specified as the authorization type.</p>
1592
+ * <p>The response parameters when OAuth is specified as the authorization type.</p>
1501
1593
  * @public
1502
1594
  */
1503
1595
  export interface ConnectionOAuthResponseParameters {
1504
1596
  /**
1505
- * <p>A <code>ConnectionOAuthClientResponseParameters</code> object that contains details about
1506
- * the client parameters returned when OAuth is specified as the authorization type.</p>
1597
+ * <p>Details about the client parameters returned when OAuth is specified as the authorization type.</p>
1507
1598
  * @public
1508
1599
  */
1509
1600
  ClientParameters?: ConnectionOAuthClientResponseParameters | undefined;
@@ -1524,7 +1615,7 @@ export interface ConnectionOAuthResponseParameters {
1524
1615
  OAuthHttpParameters?: ConnectionHttpParameters | undefined;
1525
1616
  }
1526
1617
  /**
1527
- * <p>Contains the authorization parameters to use for the connection.</p>
1618
+ * <p>Tthe authorization parameters to use for the connection.</p>
1528
1619
  * @public
1529
1620
  */
1530
1621
  export interface ConnectionAuthResponseParameters {
@@ -1549,6 +1640,14 @@ export interface ConnectionAuthResponseParameters {
1549
1640
  * @public
1550
1641
  */
1551
1642
  InvocationHttpParameters?: ConnectionHttpParameters | undefined;
1643
+ /**
1644
+ * <p>For private OAuth authentication endpoints. The parameters EventBridge uses to authenticate against the endpoint.</p>
1645
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html">Authorization methods for connections</a> in the <i>
1646
+ * <i>Amazon EventBridge User Guide</i>
1647
+ * </i>.</p>
1648
+ * @public
1649
+ */
1650
+ ConnectivityParameters?: DescribeConnectionConnectivityParameters | undefined;
1552
1651
  }
1553
1652
  /**
1554
1653
  * @public
@@ -1569,6 +1668,14 @@ export interface DescribeConnectionResponse {
1569
1668
  * @public
1570
1669
  */
1571
1670
  Description?: string | undefined;
1671
+ /**
1672
+ * <p>For connections to private resource endpoints. The parameters EventBridge uses to invoke the resource endpoint.</p>
1673
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html">Connecting to private resources</a> in the <i>
1674
+ * <i>Amazon EventBridge User Guide</i>
1675
+ * </i>.</p>
1676
+ * @public
1677
+ */
1678
+ InvocationConnectivityParameters?: DescribeConnectionConnectivityParameters | undefined;
1572
1679
  /**
1573
1680
  * <p>The state of the connection retrieved.</p>
1574
1681
  * @public
@@ -1739,8 +1846,7 @@ export interface DescribeEventBusResponse {
1739
1846
  /**
1740
1847
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
1741
1848
  * dead-letter queue (DLQ).</p>
1742
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
1743
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
1849
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
1744
1850
  * Guide</i>.</p>
1745
1851
  * @public
1746
1852
  */
@@ -2081,7 +2187,10 @@ export interface ListApiDestinationsRequest {
2081
2187
  */
2082
2188
  ConnectionArn?: string | undefined;
2083
2189
  /**
2084
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2190
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2191
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2192
+ * the returned token. Keep all other arguments unchanged.</p>
2193
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2085
2194
  * @public
2086
2195
  */
2087
2196
  NextToken?: string | undefined;
@@ -2096,13 +2205,16 @@ export interface ListApiDestinationsRequest {
2096
2205
  */
2097
2206
  export interface ListApiDestinationsResponse {
2098
2207
  /**
2099
- * <p>An array of <code>ApiDestination</code> objects that include information about an API
2208
+ * <p>An array that includes information about each API
2100
2209
  * destination.</p>
2101
2210
  * @public
2102
2211
  */
2103
2212
  ApiDestinations?: ApiDestination[] | undefined;
2104
2213
  /**
2105
- * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
2214
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2215
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2216
+ * the returned token. Keep all other arguments unchanged.</p>
2217
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2106
2218
  * @public
2107
2219
  */
2108
2220
  NextToken?: string | undefined;
@@ -2128,7 +2240,10 @@ export interface ListArchivesRequest {
2128
2240
  */
2129
2241
  State?: ArchiveState | undefined;
2130
2242
  /**
2131
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2243
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2244
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2245
+ * the returned token. Keep all other arguments unchanged.</p>
2246
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2132
2247
  * @public
2133
2248
  */
2134
2249
  NextToken?: string | undefined;
@@ -2148,7 +2263,10 @@ export interface ListArchivesResponse {
2148
2263
  */
2149
2264
  Archives?: Archive[] | undefined;
2150
2265
  /**
2151
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2266
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2267
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2268
+ * the returned token. Keep all other arguments unchanged.</p>
2269
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2152
2270
  * @public
2153
2271
  */
2154
2272
  NextToken?: string | undefined;
@@ -2169,7 +2287,10 @@ export interface ListConnectionsRequest {
2169
2287
  */
2170
2288
  ConnectionState?: ConnectionState | undefined;
2171
2289
  /**
2172
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2290
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2291
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2292
+ * the returned token. Keep all other arguments unchanged.</p>
2293
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2173
2294
  * @public
2174
2295
  */
2175
2296
  NextToken?: string | undefined;
@@ -2238,7 +2359,10 @@ export interface ListConnectionsResponse {
2238
2359
  */
2239
2360
  Connections?: Connection[] | undefined;
2240
2361
  /**
2241
- * <p>A token you can use in a subsequent request to retrieve the next set of results.</p>
2362
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2363
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2364
+ * the returned token. Keep all other arguments unchanged.</p>
2365
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2242
2366
  * @public
2243
2367
  */
2244
2368
  NextToken?: string | undefined;
@@ -2261,11 +2385,10 @@ export interface ListEndpointsRequest {
2261
2385
  */
2262
2386
  HomeRegion?: string | undefined;
2263
2387
  /**
2264
- * <p>If <code>nextToken</code> is returned, there are more results available. The value of
2265
- * <code>nextToken</code> is a unique pagination token for each page. Make the call again using
2266
- * the returned token to retrieve the next page. Keep all other arguments unchanged. Each
2267
- * pagination token expires after 24 hours. Using an expired pagination token will return an HTTP
2268
- * 400 InvalidToken error.</p>
2388
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2389
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2390
+ * the returned token. Keep all other arguments unchanged.</p>
2391
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2269
2392
  * @public
2270
2393
  */
2271
2394
  NextToken?: string | undefined;
@@ -2366,11 +2489,10 @@ export interface ListEndpointsResponse {
2366
2489
  */
2367
2490
  Endpoints?: Endpoint[] | undefined;
2368
2491
  /**
2369
- * <p>If <code>nextToken</code> is returned, there are more results available. The value of
2370
- * <code>nextToken</code> is a unique pagination token for each page. Make the call again using
2371
- * the returned token to retrieve the next page. Keep all other arguments unchanged. Each
2372
- * pagination token expires after 24 hours. Using an expired pagination token will return an HTTP
2373
- * 400 InvalidToken error.</p>
2492
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2493
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2494
+ * the returned token. Keep all other arguments unchanged.</p>
2495
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2374
2496
  * @public
2375
2497
  */
2376
2498
  NextToken?: string | undefined;
@@ -2386,7 +2508,10 @@ export interface ListEventBusesRequest {
2386
2508
  */
2387
2509
  NamePrefix?: string | undefined;
2388
2510
  /**
2389
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2511
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2512
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2513
+ * the returned token. Keep all other arguments unchanged.</p>
2514
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2390
2515
  * @public
2391
2516
  */
2392
2517
  NextToken?: string | undefined;
@@ -2450,7 +2575,10 @@ export interface ListEventBusesResponse {
2450
2575
  */
2451
2576
  EventBuses?: EventBus[] | undefined;
2452
2577
  /**
2453
- * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2578
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2579
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2580
+ * the returned token. Keep all other arguments unchanged.</p>
2581
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2454
2582
  * @public
2455
2583
  */
2456
2584
  NextToken?: string | undefined;
@@ -2466,7 +2594,10 @@ export interface ListEventSourcesRequest {
2466
2594
  */
2467
2595
  NamePrefix?: string | undefined;
2468
2596
  /**
2469
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2597
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2598
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2599
+ * the returned token. Keep all other arguments unchanged.</p>
2600
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2470
2601
  * @public
2471
2602
  */
2472
2603
  NextToken?: string | undefined;
@@ -2530,7 +2661,10 @@ export interface ListEventSourcesResponse {
2530
2661
  */
2531
2662
  EventSources?: EventSource[] | undefined;
2532
2663
  /**
2533
- * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2664
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2665
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2666
+ * the returned token. Keep all other arguments unchanged.</p>
2667
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2534
2668
  * @public
2535
2669
  */
2536
2670
  NextToken?: string | undefined;
@@ -2545,8 +2679,10 @@ export interface ListPartnerEventSourceAccountsRequest {
2545
2679
  */
2546
2680
  EventSourceName: string | undefined;
2547
2681
  /**
2548
- * <p>The token returned by a previous call to this operation. Specifying this retrieves the
2549
- * next set of results.</p>
2682
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2683
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2684
+ * the returned token. Keep all other arguments unchanged.</p>
2685
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2550
2686
  * @public
2551
2687
  */
2552
2688
  NextToken?: string | undefined;
@@ -2598,7 +2734,10 @@ export interface ListPartnerEventSourceAccountsResponse {
2598
2734
  */
2599
2735
  PartnerEventSourceAccounts?: PartnerEventSourceAccount[] | undefined;
2600
2736
  /**
2601
- * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2737
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2738
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2739
+ * the returned token. Keep all other arguments unchanged.</p>
2740
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2602
2741
  * @public
2603
2742
  */
2604
2743
  NextToken?: string | undefined;
@@ -2614,8 +2753,10 @@ export interface ListPartnerEventSourcesRequest {
2614
2753
  */
2615
2754
  NamePrefix: string | undefined;
2616
2755
  /**
2617
- * <p>The token returned by a previous call to this operation. Specifying this retrieves the
2618
- * next set of results.</p>
2756
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2757
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2758
+ * the returned token. Keep all other arguments unchanged.</p>
2759
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2619
2760
  * @public
2620
2761
  */
2621
2762
  NextToken?: string | undefined;
@@ -2655,7 +2796,10 @@ export interface ListPartnerEventSourcesResponse {
2655
2796
  */
2656
2797
  PartnerEventSources?: PartnerEventSource[] | undefined;
2657
2798
  /**
2658
- * <p>A token you can use in a subsequent operation to retrieve the next set of results.</p>
2799
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2800
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2801
+ * the returned token. Keep all other arguments unchanged.</p>
2802
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2659
2803
  * @public
2660
2804
  */
2661
2805
  NextToken?: string | undefined;
@@ -2681,7 +2825,10 @@ export interface ListReplaysRequest {
2681
2825
  */
2682
2826
  EventSourceArn?: string | undefined;
2683
2827
  /**
2684
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2828
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2829
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2830
+ * the returned token. Keep all other arguments unchanged.</p>
2831
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2685
2832
  * @public
2686
2833
  */
2687
2834
  NextToken?: string | undefined;
@@ -2754,7 +2901,10 @@ export interface ListReplaysResponse {
2754
2901
  */
2755
2902
  Replays?: Replay[] | undefined;
2756
2903
  /**
2757
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2904
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2905
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2906
+ * the returned token. Keep all other arguments unchanged.</p>
2907
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2758
2908
  * @public
2759
2909
  */
2760
2910
  NextToken?: string | undefined;
@@ -2775,7 +2925,10 @@ export interface ListRuleNamesByTargetRequest {
2775
2925
  */
2776
2926
  EventBusName?: string | undefined;
2777
2927
  /**
2778
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2928
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2929
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2930
+ * the returned token. Keep all other arguments unchanged.</p>
2931
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2779
2932
  * @public
2780
2933
  */
2781
2934
  NextToken?: string | undefined;
@@ -2795,8 +2948,10 @@ export interface ListRuleNamesByTargetResponse {
2795
2948
  */
2796
2949
  RuleNames?: string[] | undefined;
2797
2950
  /**
2798
- * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2799
- * the value is null.</p>
2951
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
2952
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2953
+ * the returned token. Keep all other arguments unchanged.</p>
2954
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2800
2955
  * @public
2801
2956
  */
2802
2957
  NextToken?: string | undefined;
@@ -2817,7 +2972,10 @@ export interface ListRulesRequest {
2817
2972
  */
2818
2973
  EventBusName?: string | undefined;
2819
2974
  /**
2820
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
2975
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
2976
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
2977
+ * the returned token. Keep all other arguments unchanged.</p>
2978
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2821
2979
  * @public
2822
2980
  */
2823
2981
  NextToken?: string | undefined;
@@ -2926,8 +3084,10 @@ export interface ListRulesResponse {
2926
3084
  */
2927
3085
  Rules?: Rule[] | undefined;
2928
3086
  /**
2929
- * <p>Indicates whether there are additional results to retrieve. If there are no more results,
2930
- * the value is null.</p>
3087
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
3088
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
3089
+ * the returned token. Keep all other arguments unchanged.</p>
3090
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2931
3091
  * @public
2932
3092
  */
2933
3093
  NextToken?: string | undefined;
@@ -2968,7 +3128,10 @@ export interface ListTargetsByRuleRequest {
2968
3128
  */
2969
3129
  EventBusName?: string | undefined;
2970
3130
  /**
2971
- * <p>The token returned by a previous call to retrieve the next set of results.</p>
3131
+ * <p>The token returned by a previous call, which you can use to retrieve the next set of results.</p>
3132
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
3133
+ * the returned token. Keep all other arguments unchanged.</p>
3134
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
2972
3135
  * @public
2973
3136
  */
2974
3137
  NextToken?: string | undefined;
@@ -3695,7 +3858,7 @@ export interface Target {
3695
3858
  */
3696
3859
  DeadLetterConfig?: DeadLetterConfig | undefined;
3697
3860
  /**
3698
- * <p>The <code>RetryPolicy</code> object that contains the retry policy configuration to use
3861
+ * <p>The retry policy configuration to use
3699
3862
  * for the dead-letter queue.</p>
3700
3863
  * @public
3701
3864
  */
@@ -3717,8 +3880,10 @@ export interface ListTargetsByRuleResponse {
3717
3880
  */
3718
3881
  Targets?: Target[] | undefined;
3719
3882
  /**
3720
- * <p>Indicates whether there are additional results to retrieve. If there are no more results,
3721
- * the value is null.</p>
3883
+ * <p>A token indicating there are more results available. If there are no more results, no token is included in the response.</p>
3884
+ * <p>The value of <code>nextToken</code> is a unique pagination token for each page. To retrieve the next page of results, make the call again using
3885
+ * the returned token. Keep all other arguments unchanged.</p>
3886
+ * <p> Using an expired pagination token results in an <code>HTTP 400 InvalidToken</code> error.</p>
3722
3887
  * @public
3723
3888
  */
3724
3889
  NextToken?: string | undefined;
@@ -4676,13 +4841,13 @@ export interface UpdateConnectionApiKeyAuthRequestParameters {
4676
4841
  */
4677
4842
  ApiKeyName?: string | undefined;
4678
4843
  /**
4679
- * <p>The value associated with teh API key to use for authorization.</p>
4844
+ * <p>The value associated with the API key to use for authorization.</p>
4680
4845
  * @public
4681
4846
  */
4682
4847
  ApiKeyValue?: string | undefined;
4683
4848
  }
4684
4849
  /**
4685
- * <p>Contains the Basic authorization parameters for the connection.</p>
4850
+ * <p>The Basic authorization parameters for the connection.</p>
4686
4851
  * @public
4687
4852
  */
4688
4853
  export interface UpdateConnectionBasicAuthRequestParameters {
@@ -4698,7 +4863,7 @@ export interface UpdateConnectionBasicAuthRequestParameters {
4698
4863
  Password?: string | undefined;
4699
4864
  }
4700
4865
  /**
4701
- * <p>Contains the OAuth authorization parameters to use for the connection.</p>
4866
+ * <p>The OAuth authorization parameters to use for the connection.</p>
4702
4867
  * @public
4703
4868
  */
4704
4869
  export interface UpdateConnectionOAuthClientRequestParameters {
@@ -4714,12 +4879,12 @@ export interface UpdateConnectionOAuthClientRequestParameters {
4714
4879
  ClientSecret?: string | undefined;
4715
4880
  }
4716
4881
  /**
4717
- * <p>Contains the OAuth request parameters to use for the connection.</p>
4882
+ * <p>The OAuth request parameters to use for the connection.</p>
4718
4883
  * @public
4719
4884
  */
4720
4885
  export interface UpdateConnectionOAuthRequestParameters {
4721
4886
  /**
4722
- * <p>A <code>UpdateConnectionOAuthClientRequestParameters</code> object that contains the
4887
+ * <p>The
4723
4888
  * client parameters to use for the connection when OAuth is specified as the authorization
4724
4889
  * type.</p>
4725
4890
  * @public
@@ -4748,29 +4913,37 @@ export interface UpdateConnectionOAuthRequestParameters {
4748
4913
  */
4749
4914
  export interface UpdateConnectionAuthRequestParameters {
4750
4915
  /**
4751
- * <p>A <code>UpdateConnectionBasicAuthRequestParameters</code> object that contains the
4916
+ * <p>The
4752
4917
  * authorization parameters for Basic authorization.</p>
4753
4918
  * @public
4754
4919
  */
4755
4920
  BasicAuthParameters?: UpdateConnectionBasicAuthRequestParameters | undefined;
4756
4921
  /**
4757
- * <p>A <code>UpdateConnectionOAuthRequestParameters</code> object that contains the
4922
+ * <p>The
4758
4923
  * authorization parameters for OAuth authorization.</p>
4759
4924
  * @public
4760
4925
  */
4761
4926
  OAuthParameters?: UpdateConnectionOAuthRequestParameters | undefined;
4762
4927
  /**
4763
- * <p>A <code>UpdateConnectionApiKeyAuthRequestParameters</code> object that contains the
4928
+ * <p>The
4764
4929
  * authorization parameters for API key authorization.</p>
4765
4930
  * @public
4766
4931
  */
4767
4932
  ApiKeyAuthParameters?: UpdateConnectionApiKeyAuthRequestParameters | undefined;
4768
4933
  /**
4769
- * <p>A <code>ConnectionHttpParameters</code> object that contains the additional parameters to
4934
+ * <p>The additional parameters to
4770
4935
  * use for the connection.</p>
4771
4936
  * @public
4772
4937
  */
4773
4938
  InvocationHttpParameters?: ConnectionHttpParameters | undefined;
4939
+ /**
4940
+ * <p>If you specify a private OAuth endpoint, the parameters for EventBridge to use when authenticating against the endpoint.</p>
4941
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html">Authorization methods for connections</a> in the <i>
4942
+ * <i>Amazon EventBridge User Guide</i>
4943
+ * </i>.</p>
4944
+ * @public
4945
+ */
4946
+ ConnectivityParameters?: ConnectivityResourceParameters | undefined;
4774
4947
  }
4775
4948
  /**
4776
4949
  * @public
@@ -4796,6 +4969,14 @@ export interface UpdateConnectionRequest {
4796
4969
  * @public
4797
4970
  */
4798
4971
  AuthParameters?: UpdateConnectionAuthRequestParameters | undefined;
4972
+ /**
4973
+ * <p>For connections to private resource endpoints, the parameters to use for invoking the resource endpoint.</p>
4974
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html">Connecting to private resources</a> in the <i>
4975
+ * <i>Amazon EventBridge User Guide</i>
4976
+ * </i>.</p>
4977
+ * @public
4978
+ */
4979
+ InvocationConnectivityParameters?: ConnectivityResourceParameters | undefined;
4799
4980
  }
4800
4981
  /**
4801
4982
  * @public
@@ -4965,8 +5146,7 @@ export interface UpdateEventBusRequest {
4965
5146
  /**
4966
5147
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
4967
5148
  * dead-letter queue (DLQ).</p>
4968
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
4969
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
5149
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
4970
5150
  * Guide</i>.</p>
4971
5151
  * @public
4972
5152
  */
@@ -5001,8 +5181,7 @@ export interface UpdateEventBusResponse {
5001
5181
  /**
5002
5182
  * <p>Configuration details of the Amazon SQS queue for EventBridge to use as a
5003
5183
  * dead-letter queue (DLQ).</p>
5004
- * <p>For more information, see <a href="eventbridge/latest/userguide/eb-rule-dlq.html">Event
5005
- * retry policy and using dead-letter queues</a> in the <i>EventBridge User
5184
+ * <p>For more information, see <a href="https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq">Using dead-letter queues to process undelivered events</a> in the <i>EventBridge User
5006
5185
  * Guide</i>.</p>
5007
5186
  * @public
5008
5187
  */