aws-sdk-eventbridge 1.72.0 → 1.74.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +195 -50
- data/lib/aws-sdk-eventbridge/client_api.rb +36 -0
- data/lib/aws-sdk-eventbridge/errors.rb +22 -0
- data/lib/aws-sdk-eventbridge/types.rb +488 -151
- data/lib/aws-sdk-eventbridge.rb +1 -1
- data/sig/client.rbs +27 -6
- data/sig/errors.rbs +4 -0
- data/sig/types.rbs +40 -7
- metadata +2 -2
@@ -10,6 +10,12 @@
|
|
10
10
|
module Aws::EventBridge
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# You do not have the necessary permissons for this action.
|
14
|
+
#
|
15
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/AccessDeniedException AWS API Documentation
|
16
|
+
#
|
17
|
+
class AccessDeniedException < Aws::EmptyStructure; end
|
18
|
+
|
13
19
|
# @!attribute [rw] name
|
14
20
|
# The name of the partner event source to activate.
|
15
21
|
# @return [String]
|
@@ -341,8 +347,8 @@ module Aws::EventBridge
|
|
341
347
|
# `Value` fields. The `Value` field specifies the ID of the Amazon Web
|
342
348
|
# Services organization. Following is an example value for `Condition`:
|
343
349
|
#
|
344
|
-
# `'
|
345
|
-
# "o-1234567890"
|
350
|
+
# `'{"Type" : "StringEquals", "Key": "aws:PrincipalOrgID", "Value":
|
351
|
+
# "o-1234567890"}'`
|
346
352
|
#
|
347
353
|
# @!attribute [rw] type
|
348
354
|
# Specifies the type of condition. Currently the only supported value
|
@@ -438,7 +444,7 @@ module Aws::EventBridge
|
|
438
444
|
include Aws::Structure
|
439
445
|
end
|
440
446
|
|
441
|
-
#
|
447
|
+
# Tthe authorization parameters to use for the connection.
|
442
448
|
#
|
443
449
|
# @!attribute [rw] basic_auth_parameters
|
444
450
|
# The authorization parameters for Basic authorization.
|
@@ -457,19 +463,32 @@ module Aws::EventBridge
|
|
457
463
|
# with every invocation to the HTTP endpoint.
|
458
464
|
# @return [Types::ConnectionHttpParameters]
|
459
465
|
#
|
466
|
+
# @!attribute [rw] connectivity_parameters
|
467
|
+
# For private OAuth authentication endpoints. The parameters
|
468
|
+
# EventBridge uses to authenticate against the endpoint.
|
469
|
+
#
|
470
|
+
# For more information, see [Authorization methods for connections][1]
|
471
|
+
# in the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
472
|
+
#
|
473
|
+
#
|
474
|
+
#
|
475
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html
|
476
|
+
# @return [Types::DescribeConnectionConnectivityParameters]
|
477
|
+
#
|
460
478
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectionAuthResponseParameters AWS API Documentation
|
461
479
|
#
|
462
480
|
class ConnectionAuthResponseParameters < Struct.new(
|
463
481
|
:basic_auth_parameters,
|
464
482
|
:o_auth_parameters,
|
465
483
|
:api_key_auth_parameters,
|
466
|
-
:invocation_http_parameters
|
484
|
+
:invocation_http_parameters,
|
485
|
+
:connectivity_parameters)
|
467
486
|
SENSITIVE = []
|
468
487
|
include Aws::Structure
|
469
488
|
end
|
470
489
|
|
471
|
-
#
|
472
|
-
#
|
490
|
+
# The authorization parameters for the connection if Basic is specified
|
491
|
+
# as the authorization type.
|
473
492
|
#
|
474
493
|
# @!attribute [rw] username
|
475
494
|
# The user name to use for Basic authorization.
|
@@ -496,7 +515,7 @@ module Aws::EventBridge
|
|
496
515
|
# @return [String]
|
497
516
|
#
|
498
517
|
# @!attribute [rw] is_value_secret
|
499
|
-
#
|
518
|
+
# Specifies whether the value is secret.
|
500
519
|
# @return [Boolean]
|
501
520
|
#
|
502
521
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectionBodyParameter AWS API Documentation
|
@@ -522,7 +541,7 @@ module Aws::EventBridge
|
|
522
541
|
# @return [String]
|
523
542
|
#
|
524
543
|
# @!attribute [rw] is_value_secret
|
525
|
-
#
|
544
|
+
# Specifies whether the value is a secret.
|
526
545
|
# @return [Boolean]
|
527
546
|
#
|
528
547
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectionHeaderParameter AWS API Documentation
|
@@ -535,18 +554,18 @@ module Aws::EventBridge
|
|
535
554
|
include Aws::Structure
|
536
555
|
end
|
537
556
|
|
538
|
-
#
|
557
|
+
# Any additional parameters for the connection.
|
539
558
|
#
|
540
559
|
# @!attribute [rw] header_parameters
|
541
|
-
#
|
560
|
+
# Any additional header parameters for the connection.
|
542
561
|
# @return [Array<Types::ConnectionHeaderParameter>]
|
543
562
|
#
|
544
563
|
# @!attribute [rw] query_string_parameters
|
545
|
-
#
|
564
|
+
# Any additional query string parameters for the connection.
|
546
565
|
# @return [Array<Types::ConnectionQueryStringParameter>]
|
547
566
|
#
|
548
567
|
# @!attribute [rw] body_parameters
|
549
|
-
#
|
568
|
+
# Any additional body string parameters for the connection.
|
550
569
|
# @return [Array<Types::ConnectionBodyParameter>]
|
551
570
|
#
|
552
571
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectionHttpParameters AWS API Documentation
|
@@ -559,8 +578,8 @@ module Aws::EventBridge
|
|
559
578
|
include Aws::Structure
|
560
579
|
end
|
561
580
|
|
562
|
-
#
|
563
|
-
#
|
581
|
+
# The client response parameters for the connection when OAuth is
|
582
|
+
# specified as the authorization type.
|
564
583
|
#
|
565
584
|
# @!attribute [rw] client_id
|
566
585
|
# The client ID associated with the response to the connection
|
@@ -575,12 +594,11 @@ module Aws::EventBridge
|
|
575
594
|
include Aws::Structure
|
576
595
|
end
|
577
596
|
|
578
|
-
#
|
579
|
-
#
|
597
|
+
# The response parameters when OAuth is specified as the authorization
|
598
|
+
# type.
|
580
599
|
#
|
581
600
|
# @!attribute [rw] client_parameters
|
582
|
-
#
|
583
|
-
# details about the client parameters returned when OAuth is specified
|
601
|
+
# Details about the client parameters returned when OAuth is specified
|
584
602
|
# as the authorization type.
|
585
603
|
# @return [Types::ConnectionOAuthClientResponseParameters]
|
586
604
|
#
|
@@ -608,8 +626,8 @@ module Aws::EventBridge
|
|
608
626
|
include Aws::Structure
|
609
627
|
end
|
610
628
|
|
611
|
-
#
|
612
|
-
# up to 100 additional query string parameters per request. Each
|
629
|
+
# Any additional query string parameter for the connection. You can
|
630
|
+
# include up to 100 additional query string parameters per request. Each
|
613
631
|
# additional parameter counts towards the event payload size, which
|
614
632
|
# cannot exceed 64 KB.
|
615
633
|
#
|
@@ -635,6 +653,38 @@ module Aws::EventBridge
|
|
635
653
|
include Aws::Structure
|
636
654
|
end
|
637
655
|
|
656
|
+
# The Amazon Resource Name (ARN) of the resource configuration for the
|
657
|
+
# resource endpoint.
|
658
|
+
#
|
659
|
+
# @!attribute [rw] resource_configuration_arn
|
660
|
+
# The Amazon Resource Name (ARN) of the resource configuration for the
|
661
|
+
# resource endpoint.
|
662
|
+
# @return [String]
|
663
|
+
#
|
664
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectivityResourceConfigurationArn AWS API Documentation
|
665
|
+
#
|
666
|
+
class ConnectivityResourceConfigurationArn < Struct.new(
|
667
|
+
:resource_configuration_arn)
|
668
|
+
SENSITIVE = []
|
669
|
+
include Aws::Structure
|
670
|
+
end
|
671
|
+
|
672
|
+
# The parameters for EventBridge to use when invoking the resource
|
673
|
+
# endpoint.
|
674
|
+
#
|
675
|
+
# @!attribute [rw] resource_parameters
|
676
|
+
# The parameters for EventBridge to use when invoking the resource
|
677
|
+
# endpoint.
|
678
|
+
# @return [Types::ConnectivityResourceConfigurationArn]
|
679
|
+
#
|
680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectivityResourceParameters AWS API Documentation
|
681
|
+
#
|
682
|
+
class ConnectivityResourceParameters < Struct.new(
|
683
|
+
:resource_parameters)
|
684
|
+
SENSITIVE = []
|
685
|
+
include Aws::Structure
|
686
|
+
end
|
687
|
+
|
638
688
|
# @!attribute [rw] name
|
639
689
|
# The name for the API destination to create.
|
640
690
|
# @return [String]
|
@@ -764,7 +814,7 @@ module Aws::EventBridge
|
|
764
814
|
include Aws::Structure
|
765
815
|
end
|
766
816
|
|
767
|
-
#
|
817
|
+
# The API key authorization parameters for the connection.
|
768
818
|
#
|
769
819
|
# @!attribute [rw] api_key_name
|
770
820
|
# The name of the API key to use for authorization.
|
@@ -783,38 +833,50 @@ module Aws::EventBridge
|
|
783
833
|
include Aws::Structure
|
784
834
|
end
|
785
835
|
|
786
|
-
#
|
836
|
+
# The authorization parameters for the connection.
|
837
|
+
#
|
838
|
+
# You must include only authorization parameters for the
|
839
|
+
# `AuthorizationType` you specify.
|
787
840
|
#
|
788
841
|
# @!attribute [rw] basic_auth_parameters
|
789
|
-
#
|
790
|
-
# the Basic authorization parameters to use for the connection.
|
842
|
+
# The Basic authorization parameters to use for the connection.
|
791
843
|
# @return [Types::CreateConnectionBasicAuthRequestParameters]
|
792
844
|
#
|
793
845
|
# @!attribute [rw] o_auth_parameters
|
794
|
-
#
|
795
|
-
# OAuth authorization parameters to use for the connection.
|
846
|
+
# The OAuth authorization parameters to use for the connection.
|
796
847
|
# @return [Types::CreateConnectionOAuthRequestParameters]
|
797
848
|
#
|
798
849
|
# @!attribute [rw] api_key_auth_parameters
|
799
|
-
#
|
800
|
-
# the API key authorization parameters to use for the connection.
|
850
|
+
# The API key authorization parameters to use for the connection.
|
801
851
|
# @return [Types::CreateConnectionApiKeyAuthRequestParameters]
|
802
852
|
#
|
803
853
|
# @!attribute [rw] invocation_http_parameters
|
804
|
-
#
|
805
|
-
#
|
806
|
-
#
|
807
|
-
#
|
808
|
-
# the connection take precedence.
|
854
|
+
# The API key authorization parameters to use for the connection. Note
|
855
|
+
# that if you include additional parameters for the target of a rule
|
856
|
+
# via `HttpParameters`, including query strings, the parameters added
|
857
|
+
# for the connection take precedence.
|
809
858
|
# @return [Types::ConnectionHttpParameters]
|
810
859
|
#
|
860
|
+
# @!attribute [rw] connectivity_parameters
|
861
|
+
# If you specify a private OAuth endpoint, the parameters for
|
862
|
+
# EventBridge to use when authenticating against the endpoint.
|
863
|
+
#
|
864
|
+
# For more information, see [Authorization methods for connections][1]
|
865
|
+
# in the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
866
|
+
#
|
867
|
+
#
|
868
|
+
#
|
869
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html
|
870
|
+
# @return [Types::ConnectivityResourceParameters]
|
871
|
+
#
|
811
872
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionAuthRequestParameters AWS API Documentation
|
812
873
|
#
|
813
874
|
class CreateConnectionAuthRequestParameters < Struct.new(
|
814
875
|
:basic_auth_parameters,
|
815
876
|
:o_auth_parameters,
|
816
877
|
:api_key_auth_parameters,
|
817
|
-
:invocation_http_parameters
|
878
|
+
:invocation_http_parameters,
|
879
|
+
:connectivity_parameters)
|
818
880
|
SENSITIVE = []
|
819
881
|
include Aws::Structure
|
820
882
|
end
|
@@ -839,7 +901,7 @@ module Aws::EventBridge
|
|
839
901
|
include Aws::Structure
|
840
902
|
end
|
841
903
|
|
842
|
-
#
|
904
|
+
# The Basic authorization parameters to use for the connection.
|
843
905
|
#
|
844
906
|
# @!attribute [rw] client_id
|
845
907
|
# The client ID to use for OAuth authorization for the connection.
|
@@ -862,8 +924,7 @@ module Aws::EventBridge
|
|
862
924
|
# Contains the OAuth authorization parameters to use for the connection.
|
863
925
|
#
|
864
926
|
# @!attribute [rw] client_parameters
|
865
|
-
#
|
866
|
-
# contains the client parameters for OAuth authorization.
|
927
|
+
# The client parameters for OAuth authorization.
|
867
928
|
# @return [Types::CreateConnectionOAuthClientRequestParameters]
|
868
929
|
#
|
869
930
|
# @!attribute [rw] authorization_endpoint
|
@@ -876,8 +937,7 @@ module Aws::EventBridge
|
|
876
937
|
# @return [String]
|
877
938
|
#
|
878
939
|
# @!attribute [rw] o_auth_http_parameters
|
879
|
-
#
|
880
|
-
# additional parameters to use for the connection.
|
940
|
+
# Details about the additional parameters to use for the connection.
|
881
941
|
# @return [Types::ConnectionHttpParameters]
|
882
942
|
#
|
883
943
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionOAuthRequestParameters AWS API Documentation
|
@@ -908,17 +968,32 @@ module Aws::EventBridge
|
|
908
968
|
# @return [String]
|
909
969
|
#
|
910
970
|
# @!attribute [rw] auth_parameters
|
911
|
-
#
|
912
|
-
#
|
971
|
+
# The authorization parameters to use to authorize with the endpoint.
|
972
|
+
#
|
973
|
+
# You must include only authorization parameters for the
|
974
|
+
# `AuthorizationType` you specify.
|
913
975
|
# @return [Types::CreateConnectionAuthRequestParameters]
|
914
976
|
#
|
977
|
+
# @!attribute [rw] invocation_connectivity_parameters
|
978
|
+
# For connections to private resource endpoints, the parameters to use
|
979
|
+
# for invoking the resource endpoint.
|
980
|
+
#
|
981
|
+
# For more information, see [Connecting to private resources][1] in
|
982
|
+
# the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
983
|
+
#
|
984
|
+
#
|
985
|
+
#
|
986
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
987
|
+
# @return [Types::ConnectivityResourceParameters]
|
988
|
+
#
|
915
989
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionRequest AWS API Documentation
|
916
990
|
#
|
917
991
|
class CreateConnectionRequest < Struct.new(
|
918
992
|
:name,
|
919
993
|
:description,
|
920
994
|
:authorization_type,
|
921
|
-
:auth_parameters
|
995
|
+
:auth_parameters,
|
996
|
+
:invocation_connectivity_parameters)
|
922
997
|
SENSITIVE = []
|
923
998
|
include Aws::Structure
|
924
999
|
end
|
@@ -1100,9 +1175,12 @@ module Aws::EventBridge
|
|
1100
1175
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
1101
1176
|
# as a dead-letter queue (DLQ).
|
1102
1177
|
#
|
1103
|
-
# For more information, see [
|
1104
|
-
#
|
1105
|
-
#
|
1178
|
+
# For more information, see [Using dead-letter queues to process
|
1179
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
1180
|
+
#
|
1181
|
+
#
|
1182
|
+
#
|
1183
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1106
1184
|
# @return [Types::DeadLetterConfig]
|
1107
1185
|
#
|
1108
1186
|
# @!attribute [rw] tags
|
@@ -1146,9 +1224,12 @@ module Aws::EventBridge
|
|
1146
1224
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
1147
1225
|
# as a dead-letter queue (DLQ).
|
1148
1226
|
#
|
1149
|
-
# For more information, see [
|
1150
|
-
#
|
1151
|
-
#
|
1227
|
+
# For more information, see [Using dead-letter queues to process
|
1228
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
1229
|
+
#
|
1230
|
+
#
|
1231
|
+
#
|
1232
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1152
1233
|
# @return [Types::DeadLetterConfig]
|
1153
1234
|
#
|
1154
1235
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateEventBusResponse AWS API Documentation
|
@@ -1211,9 +1292,12 @@ module Aws::EventBridge
|
|
1211
1292
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
1212
1293
|
# as a dead-letter queue (DLQ).
|
1213
1294
|
#
|
1214
|
-
# For more information, see [
|
1215
|
-
#
|
1216
|
-
#
|
1295
|
+
# For more information, see [Using dead-letter queues to process
|
1296
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
1297
|
+
#
|
1298
|
+
#
|
1299
|
+
#
|
1300
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1217
1301
|
#
|
1218
1302
|
# @!attribute [rw] arn
|
1219
1303
|
# The ARN of the SQS queue specified as the target for the dead-letter
|
@@ -1577,6 +1661,29 @@ module Aws::EventBridge
|
|
1577
1661
|
include Aws::Structure
|
1578
1662
|
end
|
1579
1663
|
|
1664
|
+
# If the connection uses a private OAuth endpoint, the parameters for
|
1665
|
+
# EventBridge to use when authenticating against the endpoint.
|
1666
|
+
#
|
1667
|
+
# For more information, see [Authorization methods for connections][1]
|
1668
|
+
# in the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
1669
|
+
#
|
1670
|
+
#
|
1671
|
+
#
|
1672
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html
|
1673
|
+
#
|
1674
|
+
# @!attribute [rw] resource_parameters
|
1675
|
+
# The parameters for EventBridge to use when invoking the resource
|
1676
|
+
# endpoint.
|
1677
|
+
# @return [Types::DescribeConnectionResourceParameters]
|
1678
|
+
#
|
1679
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeConnectionConnectivityParameters AWS API Documentation
|
1680
|
+
#
|
1681
|
+
class DescribeConnectionConnectivityParameters < Struct.new(
|
1682
|
+
:resource_parameters)
|
1683
|
+
SENSITIVE = []
|
1684
|
+
include Aws::Structure
|
1685
|
+
end
|
1686
|
+
|
1580
1687
|
# @!attribute [rw] name
|
1581
1688
|
# The name of the connection to retrieve.
|
1582
1689
|
# @return [String]
|
@@ -1589,6 +1696,29 @@ module Aws::EventBridge
|
|
1589
1696
|
include Aws::Structure
|
1590
1697
|
end
|
1591
1698
|
|
1699
|
+
# The parameters for EventBridge to use when invoking the resource
|
1700
|
+
# endpoint.
|
1701
|
+
#
|
1702
|
+
# @!attribute [rw] resource_configuration_arn
|
1703
|
+
# The Amazon Resource Name (ARN) of the resource configuration for the
|
1704
|
+
# private API.
|
1705
|
+
# @return [String]
|
1706
|
+
#
|
1707
|
+
# @!attribute [rw] resource_association_arn
|
1708
|
+
# For connections to private APIs, the Amazon Resource Name (ARN) of
|
1709
|
+
# the resource association EventBridge created between the connection
|
1710
|
+
# and the private API's resource configuration.
|
1711
|
+
# @return [String]
|
1712
|
+
#
|
1713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeConnectionResourceParameters AWS API Documentation
|
1714
|
+
#
|
1715
|
+
class DescribeConnectionResourceParameters < Struct.new(
|
1716
|
+
:resource_configuration_arn,
|
1717
|
+
:resource_association_arn)
|
1718
|
+
SENSITIVE = []
|
1719
|
+
include Aws::Structure
|
1720
|
+
end
|
1721
|
+
|
1592
1722
|
# @!attribute [rw] connection_arn
|
1593
1723
|
# The ARN of the connection retrieved.
|
1594
1724
|
# @return [String]
|
@@ -1601,6 +1731,18 @@ module Aws::EventBridge
|
|
1601
1731
|
# The description for the connection retrieved.
|
1602
1732
|
# @return [String]
|
1603
1733
|
#
|
1734
|
+
# @!attribute [rw] invocation_connectivity_parameters
|
1735
|
+
# For connections to private resource endpoints. The parameters
|
1736
|
+
# EventBridge uses to invoke the resource endpoint.
|
1737
|
+
#
|
1738
|
+
# For more information, see [Connecting to private resources][1] in
|
1739
|
+
# the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
1740
|
+
#
|
1741
|
+
#
|
1742
|
+
#
|
1743
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
1744
|
+
# @return [Types::DescribeConnectionConnectivityParameters]
|
1745
|
+
#
|
1604
1746
|
# @!attribute [rw] connection_state
|
1605
1747
|
# The state of the connection retrieved.
|
1606
1748
|
# @return [String]
|
@@ -1640,6 +1782,7 @@ module Aws::EventBridge
|
|
1640
1782
|
:connection_arn,
|
1641
1783
|
:name,
|
1642
1784
|
:description,
|
1785
|
+
:invocation_connectivity_parameters,
|
1643
1786
|
:connection_state,
|
1644
1787
|
:state_reason,
|
1645
1788
|
:authorization_type,
|
@@ -1791,9 +1934,12 @@ module Aws::EventBridge
|
|
1791
1934
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
1792
1935
|
# as a dead-letter queue (DLQ).
|
1793
1936
|
#
|
1794
|
-
# For more information, see [
|
1795
|
-
#
|
1796
|
-
#
|
1937
|
+
# For more information, see [Using dead-letter queues to process
|
1938
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
1939
|
+
#
|
1940
|
+
#
|
1941
|
+
#
|
1942
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1797
1943
|
# @return [Types::DeadLetterConfig]
|
1798
1944
|
#
|
1799
1945
|
# @!attribute [rw] policy
|
@@ -2535,14 +2681,14 @@ module Aws::EventBridge
|
|
2535
2681
|
#
|
2536
2682
|
# ` "InputTransformer":`
|
2537
2683
|
#
|
2538
|
-
#
|
2684
|
+
# `{`
|
2539
2685
|
#
|
2540
|
-
# `"InputPathsMap":
|
2541
|
-
# "$.detail.status"
|
2686
|
+
# `"InputPathsMap": {"instance": "$.detail.instance","status":
|
2687
|
+
# "$.detail.status"},`
|
2542
2688
|
#
|
2543
2689
|
# `"InputTemplate": "<instance> is in state <status>"`
|
2544
2690
|
#
|
2545
|
-
#
|
2691
|
+
# `}`
|
2546
2692
|
#
|
2547
2693
|
# To have the `InputTemplate` include quote marks within a JSON
|
2548
2694
|
# string, escape each quote marks with a slash, as in the following
|
@@ -2550,29 +2696,29 @@ module Aws::EventBridge
|
|
2550
2696
|
#
|
2551
2697
|
# ` "InputTransformer":`
|
2552
2698
|
#
|
2553
|
-
#
|
2699
|
+
# `{`
|
2554
2700
|
#
|
2555
|
-
# `"InputPathsMap":
|
2556
|
-
# "$.detail.status"
|
2701
|
+
# `"InputPathsMap": {"instance": "$.detail.instance","status":
|
2702
|
+
# "$.detail.status"},`
|
2557
2703
|
#
|
2558
2704
|
# `"InputTemplate": "<instance> is in state "<status>""`
|
2559
2705
|
#
|
2560
|
-
#
|
2706
|
+
# `}`
|
2561
2707
|
#
|
2562
2708
|
# The `InputTemplate` can also be valid JSON with varibles in quotes
|
2563
2709
|
# or out, as in the following example:
|
2564
2710
|
#
|
2565
2711
|
# ` "InputTransformer":`
|
2566
2712
|
#
|
2567
|
-
#
|
2713
|
+
# `{`
|
2568
2714
|
#
|
2569
|
-
# `"InputPathsMap":
|
2570
|
-
# "$.detail.status"
|
2715
|
+
# `"InputPathsMap": {"instance": "$.detail.instance","status":
|
2716
|
+
# "$.detail.status"},`
|
2571
2717
|
#
|
2572
|
-
# `"InputTemplate": '
|
2573
|
-
#
|
2718
|
+
# `"InputTemplate": '{"myInstance": <instance>,"myStatus": "<instance>
|
2719
|
+
# is in state "<status>""}'`
|
2574
2720
|
#
|
2575
|
-
#
|
2721
|
+
# `}`
|
2576
2722
|
# @return [String]
|
2577
2723
|
#
|
2578
2724
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/InputTransformer AWS API Documentation
|
@@ -2643,8 +2789,15 @@ module Aws::EventBridge
|
|
2643
2789
|
# @return [String]
|
2644
2790
|
#
|
2645
2791
|
# @!attribute [rw] next_token
|
2646
|
-
# The token returned by a previous call
|
2647
|
-
# results.
|
2792
|
+
# The token returned by a previous call, which you can use to retrieve
|
2793
|
+
# the next set of results.
|
2794
|
+
#
|
2795
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2796
|
+
# To retrieve the next page of results, make the call again using the
|
2797
|
+
# returned token. Keep all other arguments unchanged.
|
2798
|
+
#
|
2799
|
+
# Using an expired pagination token results in an `HTTP 400
|
2800
|
+
# InvalidToken` error.
|
2648
2801
|
# @return [String]
|
2649
2802
|
#
|
2650
2803
|
# @!attribute [rw] limit
|
@@ -2663,13 +2816,19 @@ module Aws::EventBridge
|
|
2663
2816
|
end
|
2664
2817
|
|
2665
2818
|
# @!attribute [rw] api_destinations
|
2666
|
-
# An array
|
2667
|
-
# an API destination.
|
2819
|
+
# An array that includes information about each API destination.
|
2668
2820
|
# @return [Array<Types::ApiDestination>]
|
2669
2821
|
#
|
2670
2822
|
# @!attribute [rw] next_token
|
2671
|
-
# A token
|
2672
|
-
#
|
2823
|
+
# A token indicating there are more results available. If there are no
|
2824
|
+
# more results, no token is included in the response.
|
2825
|
+
#
|
2826
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2827
|
+
# To retrieve the next page of results, make the call again using the
|
2828
|
+
# returned token. Keep all other arguments unchanged.
|
2829
|
+
#
|
2830
|
+
# Using an expired pagination token results in an `HTTP 400
|
2831
|
+
# InvalidToken` error.
|
2673
2832
|
# @return [String]
|
2674
2833
|
#
|
2675
2834
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListApiDestinationsResponse AWS API Documentation
|
@@ -2695,8 +2854,15 @@ module Aws::EventBridge
|
|
2695
2854
|
# @return [String]
|
2696
2855
|
#
|
2697
2856
|
# @!attribute [rw] next_token
|
2698
|
-
# The token returned by a previous call
|
2699
|
-
# results.
|
2857
|
+
# The token returned by a previous call, which you can use to retrieve
|
2858
|
+
# the next set of results.
|
2859
|
+
#
|
2860
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2861
|
+
# To retrieve the next page of results, make the call again using the
|
2862
|
+
# returned token. Keep all other arguments unchanged.
|
2863
|
+
#
|
2864
|
+
# Using an expired pagination token results in an `HTTP 400
|
2865
|
+
# InvalidToken` error.
|
2700
2866
|
# @return [String]
|
2701
2867
|
#
|
2702
2868
|
# @!attribute [rw] limit
|
@@ -2720,8 +2886,15 @@ module Aws::EventBridge
|
|
2720
2886
|
# @return [Array<Types::Archive>]
|
2721
2887
|
#
|
2722
2888
|
# @!attribute [rw] next_token
|
2723
|
-
#
|
2724
|
-
# results.
|
2889
|
+
# A token indicating there are more results available. If there are no
|
2890
|
+
# more results, no token is included in the response.
|
2891
|
+
#
|
2892
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2893
|
+
# To retrieve the next page of results, make the call again using the
|
2894
|
+
# returned token. Keep all other arguments unchanged.
|
2895
|
+
#
|
2896
|
+
# Using an expired pagination token results in an `HTTP 400
|
2897
|
+
# InvalidToken` error.
|
2725
2898
|
# @return [String]
|
2726
2899
|
#
|
2727
2900
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListArchivesResponse AWS API Documentation
|
@@ -2743,8 +2916,15 @@ module Aws::EventBridge
|
|
2743
2916
|
# @return [String]
|
2744
2917
|
#
|
2745
2918
|
# @!attribute [rw] next_token
|
2746
|
-
# The token returned by a previous call
|
2747
|
-
# results.
|
2919
|
+
# The token returned by a previous call, which you can use to retrieve
|
2920
|
+
# the next set of results.
|
2921
|
+
#
|
2922
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2923
|
+
# To retrieve the next page of results, make the call again using the
|
2924
|
+
# returned token. Keep all other arguments unchanged.
|
2925
|
+
#
|
2926
|
+
# Using an expired pagination token results in an `HTTP 400
|
2927
|
+
# InvalidToken` error.
|
2748
2928
|
# @return [String]
|
2749
2929
|
#
|
2750
2930
|
# @!attribute [rw] limit
|
@@ -2768,8 +2948,15 @@ module Aws::EventBridge
|
|
2768
2948
|
# @return [Array<Types::Connection>]
|
2769
2949
|
#
|
2770
2950
|
# @!attribute [rw] next_token
|
2771
|
-
# A token
|
2772
|
-
#
|
2951
|
+
# A token indicating there are more results available. If there are no
|
2952
|
+
# more results, no token is included in the response.
|
2953
|
+
#
|
2954
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2955
|
+
# To retrieve the next page of results, make the call again using the
|
2956
|
+
# returned token. Keep all other arguments unchanged.
|
2957
|
+
#
|
2958
|
+
# Using an expired pagination token results in an `HTTP 400
|
2959
|
+
# InvalidToken` error.
|
2773
2960
|
# @return [String]
|
2774
2961
|
#
|
2775
2962
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListConnectionsResponse AWS API Documentation
|
@@ -2793,12 +2980,15 @@ module Aws::EventBridge
|
|
2793
2980
|
# @return [String]
|
2794
2981
|
#
|
2795
2982
|
# @!attribute [rw] next_token
|
2796
|
-
#
|
2797
|
-
#
|
2798
|
-
#
|
2799
|
-
#
|
2800
|
-
#
|
2801
|
-
#
|
2983
|
+
# The token returned by a previous call, which you can use to retrieve
|
2984
|
+
# the next set of results.
|
2985
|
+
#
|
2986
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2987
|
+
# To retrieve the next page of results, make the call again using the
|
2988
|
+
# returned token. Keep all other arguments unchanged.
|
2989
|
+
#
|
2990
|
+
# Using an expired pagination token results in an `HTTP 400
|
2991
|
+
# InvalidToken` error.
|
2802
2992
|
# @return [String]
|
2803
2993
|
#
|
2804
2994
|
# @!attribute [rw] max_results
|
@@ -2821,12 +3011,15 @@ module Aws::EventBridge
|
|
2821
3011
|
# @return [Array<Types::Endpoint>]
|
2822
3012
|
#
|
2823
3013
|
# @!attribute [rw] next_token
|
2824
|
-
#
|
2825
|
-
#
|
2826
|
-
#
|
2827
|
-
#
|
2828
|
-
#
|
2829
|
-
#
|
3014
|
+
# A token indicating there are more results available. If there are no
|
3015
|
+
# more results, no token is included in the response.
|
3016
|
+
#
|
3017
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3018
|
+
# To retrieve the next page of results, make the call again using the
|
3019
|
+
# returned token. Keep all other arguments unchanged.
|
3020
|
+
#
|
3021
|
+
# Using an expired pagination token results in an `HTTP 400
|
3022
|
+
# InvalidToken` error.
|
2830
3023
|
# @return [String]
|
2831
3024
|
#
|
2832
3025
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListEndpointsResponse AWS API Documentation
|
@@ -2844,8 +3037,15 @@ module Aws::EventBridge
|
|
2844
3037
|
# @return [String]
|
2845
3038
|
#
|
2846
3039
|
# @!attribute [rw] next_token
|
2847
|
-
# The token returned by a previous call
|
2848
|
-
# results.
|
3040
|
+
# The token returned by a previous call, which you can use to retrieve
|
3041
|
+
# the next set of results.
|
3042
|
+
#
|
3043
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3044
|
+
# To retrieve the next page of results, make the call again using the
|
3045
|
+
# returned token. Keep all other arguments unchanged.
|
3046
|
+
#
|
3047
|
+
# Using an expired pagination token results in an `HTTP 400
|
3048
|
+
# InvalidToken` error.
|
2849
3049
|
# @return [String]
|
2850
3050
|
#
|
2851
3051
|
# @!attribute [rw] limit
|
@@ -2869,8 +3069,15 @@ module Aws::EventBridge
|
|
2869
3069
|
# @return [Array<Types::EventBus>]
|
2870
3070
|
#
|
2871
3071
|
# @!attribute [rw] next_token
|
2872
|
-
# A token
|
2873
|
-
#
|
3072
|
+
# A token indicating there are more results available. If there are no
|
3073
|
+
# more results, no token is included in the response.
|
3074
|
+
#
|
3075
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3076
|
+
# To retrieve the next page of results, make the call again using the
|
3077
|
+
# returned token. Keep all other arguments unchanged.
|
3078
|
+
#
|
3079
|
+
# Using an expired pagination token results in an `HTTP 400
|
3080
|
+
# InvalidToken` error.
|
2874
3081
|
# @return [String]
|
2875
3082
|
#
|
2876
3083
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListEventBusesResponse AWS API Documentation
|
@@ -2888,8 +3095,15 @@ module Aws::EventBridge
|
|
2888
3095
|
# @return [String]
|
2889
3096
|
#
|
2890
3097
|
# @!attribute [rw] next_token
|
2891
|
-
# The token returned by a previous call
|
2892
|
-
# results.
|
3098
|
+
# The token returned by a previous call, which you can use to retrieve
|
3099
|
+
# the next set of results.
|
3100
|
+
#
|
3101
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3102
|
+
# To retrieve the next page of results, make the call again using the
|
3103
|
+
# returned token. Keep all other arguments unchanged.
|
3104
|
+
#
|
3105
|
+
# Using an expired pagination token results in an `HTTP 400
|
3106
|
+
# InvalidToken` error.
|
2893
3107
|
# @return [String]
|
2894
3108
|
#
|
2895
3109
|
# @!attribute [rw] limit
|
@@ -2913,8 +3127,15 @@ module Aws::EventBridge
|
|
2913
3127
|
# @return [Array<Types::EventSource>]
|
2914
3128
|
#
|
2915
3129
|
# @!attribute [rw] next_token
|
2916
|
-
# A token
|
2917
|
-
#
|
3130
|
+
# A token indicating there are more results available. If there are no
|
3131
|
+
# more results, no token is included in the response.
|
3132
|
+
#
|
3133
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3134
|
+
# To retrieve the next page of results, make the call again using the
|
3135
|
+
# returned token. Keep all other arguments unchanged.
|
3136
|
+
#
|
3137
|
+
# Using an expired pagination token results in an `HTTP 400
|
3138
|
+
# InvalidToken` error.
|
2918
3139
|
# @return [String]
|
2919
3140
|
#
|
2920
3141
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListEventSourcesResponse AWS API Documentation
|
@@ -2932,8 +3153,15 @@ module Aws::EventBridge
|
|
2932
3153
|
# @return [String]
|
2933
3154
|
#
|
2934
3155
|
# @!attribute [rw] next_token
|
2935
|
-
# The token returned by a previous call
|
2936
|
-
#
|
3156
|
+
# The token returned by a previous call, which you can use to retrieve
|
3157
|
+
# the next set of results.
|
3158
|
+
#
|
3159
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3160
|
+
# To retrieve the next page of results, make the call again using the
|
3161
|
+
# returned token. Keep all other arguments unchanged.
|
3162
|
+
#
|
3163
|
+
# Using an expired pagination token results in an `HTTP 400
|
3164
|
+
# InvalidToken` error.
|
2937
3165
|
# @return [String]
|
2938
3166
|
#
|
2939
3167
|
# @!attribute [rw] limit
|
@@ -2957,8 +3185,15 @@ module Aws::EventBridge
|
|
2957
3185
|
# @return [Array<Types::PartnerEventSourceAccount>]
|
2958
3186
|
#
|
2959
3187
|
# @!attribute [rw] next_token
|
2960
|
-
# A token
|
2961
|
-
#
|
3188
|
+
# A token indicating there are more results available. If there are no
|
3189
|
+
# more results, no token is included in the response.
|
3190
|
+
#
|
3191
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3192
|
+
# To retrieve the next page of results, make the call again using the
|
3193
|
+
# returned token. Keep all other arguments unchanged.
|
3194
|
+
#
|
3195
|
+
# Using an expired pagination token results in an `HTTP 400
|
3196
|
+
# InvalidToken` error.
|
2962
3197
|
# @return [String]
|
2963
3198
|
#
|
2964
3199
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListPartnerEventSourceAccountsResponse AWS API Documentation
|
@@ -2976,8 +3211,15 @@ module Aws::EventBridge
|
|
2976
3211
|
# @return [String]
|
2977
3212
|
#
|
2978
3213
|
# @!attribute [rw] next_token
|
2979
|
-
# The token returned by a previous call
|
2980
|
-
#
|
3214
|
+
# The token returned by a previous call, which you can use to retrieve
|
3215
|
+
# the next set of results.
|
3216
|
+
#
|
3217
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3218
|
+
# To retrieve the next page of results, make the call again using the
|
3219
|
+
# returned token. Keep all other arguments unchanged.
|
3220
|
+
#
|
3221
|
+
# Using an expired pagination token results in an `HTTP 400
|
3222
|
+
# InvalidToken` error.
|
2981
3223
|
# @return [String]
|
2982
3224
|
#
|
2983
3225
|
# @!attribute [rw] limit
|
@@ -3001,8 +3243,15 @@ module Aws::EventBridge
|
|
3001
3243
|
# @return [Array<Types::PartnerEventSource>]
|
3002
3244
|
#
|
3003
3245
|
# @!attribute [rw] next_token
|
3004
|
-
# A token
|
3005
|
-
#
|
3246
|
+
# A token indicating there are more results available. If there are no
|
3247
|
+
# more results, no token is included in the response.
|
3248
|
+
#
|
3249
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3250
|
+
# To retrieve the next page of results, make the call again using the
|
3251
|
+
# returned token. Keep all other arguments unchanged.
|
3252
|
+
#
|
3253
|
+
# Using an expired pagination token results in an `HTTP 400
|
3254
|
+
# InvalidToken` error.
|
3006
3255
|
# @return [String]
|
3007
3256
|
#
|
3008
3257
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListPartnerEventSourcesResponse AWS API Documentation
|
@@ -3028,8 +3277,15 @@ module Aws::EventBridge
|
|
3028
3277
|
# @return [String]
|
3029
3278
|
#
|
3030
3279
|
# @!attribute [rw] next_token
|
3031
|
-
# The token returned by a previous call
|
3032
|
-
# results.
|
3280
|
+
# The token returned by a previous call, which you can use to retrieve
|
3281
|
+
# the next set of results.
|
3282
|
+
#
|
3283
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3284
|
+
# To retrieve the next page of results, make the call again using the
|
3285
|
+
# returned token. Keep all other arguments unchanged.
|
3286
|
+
#
|
3287
|
+
# Using an expired pagination token results in an `HTTP 400
|
3288
|
+
# InvalidToken` error.
|
3033
3289
|
# @return [String]
|
3034
3290
|
#
|
3035
3291
|
# @!attribute [rw] limit
|
@@ -3054,8 +3310,15 @@ module Aws::EventBridge
|
|
3054
3310
|
# @return [Array<Types::Replay>]
|
3055
3311
|
#
|
3056
3312
|
# @!attribute [rw] next_token
|
3057
|
-
#
|
3058
|
-
# results.
|
3313
|
+
# A token indicating there are more results available. If there are no
|
3314
|
+
# more results, no token is included in the response.
|
3315
|
+
#
|
3316
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3317
|
+
# To retrieve the next page of results, make the call again using the
|
3318
|
+
# returned token. Keep all other arguments unchanged.
|
3319
|
+
#
|
3320
|
+
# Using an expired pagination token results in an `HTTP 400
|
3321
|
+
# InvalidToken` error.
|
3059
3322
|
# @return [String]
|
3060
3323
|
#
|
3061
3324
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListReplaysResponse AWS API Documentation
|
@@ -3077,8 +3340,15 @@ module Aws::EventBridge
|
|
3077
3340
|
# @return [String]
|
3078
3341
|
#
|
3079
3342
|
# @!attribute [rw] next_token
|
3080
|
-
# The token returned by a previous call
|
3081
|
-
# results.
|
3343
|
+
# The token returned by a previous call, which you can use to retrieve
|
3344
|
+
# the next set of results.
|
3345
|
+
#
|
3346
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3347
|
+
# To retrieve the next page of results, make the call again using the
|
3348
|
+
# returned token. Keep all other arguments unchanged.
|
3349
|
+
#
|
3350
|
+
# Using an expired pagination token results in an `HTTP 400
|
3351
|
+
# InvalidToken` error.
|
3082
3352
|
# @return [String]
|
3083
3353
|
#
|
3084
3354
|
# @!attribute [rw] limit
|
@@ -3101,8 +3371,15 @@ module Aws::EventBridge
|
|
3101
3371
|
# @return [Array<String>]
|
3102
3372
|
#
|
3103
3373
|
# @!attribute [rw] next_token
|
3104
|
-
#
|
3105
|
-
#
|
3374
|
+
# A token indicating there are more results available. If there are no
|
3375
|
+
# more results, no token is included in the response.
|
3376
|
+
#
|
3377
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3378
|
+
# To retrieve the next page of results, make the call again using the
|
3379
|
+
# returned token. Keep all other arguments unchanged.
|
3380
|
+
#
|
3381
|
+
# Using an expired pagination token results in an `HTTP 400
|
3382
|
+
# InvalidToken` error.
|
3106
3383
|
# @return [String]
|
3107
3384
|
#
|
3108
3385
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListRuleNamesByTargetResponse AWS API Documentation
|
@@ -3124,8 +3401,15 @@ module Aws::EventBridge
|
|
3124
3401
|
# @return [String]
|
3125
3402
|
#
|
3126
3403
|
# @!attribute [rw] next_token
|
3127
|
-
# The token returned by a previous call
|
3128
|
-
# results.
|
3404
|
+
# The token returned by a previous call, which you can use to retrieve
|
3405
|
+
# the next set of results.
|
3406
|
+
#
|
3407
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3408
|
+
# To retrieve the next page of results, make the call again using the
|
3409
|
+
# returned token. Keep all other arguments unchanged.
|
3410
|
+
#
|
3411
|
+
# Using an expired pagination token results in an `HTTP 400
|
3412
|
+
# InvalidToken` error.
|
3129
3413
|
# @return [String]
|
3130
3414
|
#
|
3131
3415
|
# @!attribute [rw] limit
|
@@ -3148,8 +3432,15 @@ module Aws::EventBridge
|
|
3148
3432
|
# @return [Array<Types::Rule>]
|
3149
3433
|
#
|
3150
3434
|
# @!attribute [rw] next_token
|
3151
|
-
#
|
3152
|
-
#
|
3435
|
+
# A token indicating there are more results available. If there are no
|
3436
|
+
# more results, no token is included in the response.
|
3437
|
+
#
|
3438
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3439
|
+
# To retrieve the next page of results, make the call again using the
|
3440
|
+
# returned token. Keep all other arguments unchanged.
|
3441
|
+
#
|
3442
|
+
# Using an expired pagination token results in an `HTTP 400
|
3443
|
+
# InvalidToken` error.
|
3153
3444
|
# @return [String]
|
3154
3445
|
#
|
3155
3446
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListRulesResponse AWS API Documentation
|
@@ -3196,8 +3487,15 @@ module Aws::EventBridge
|
|
3196
3487
|
# @return [String]
|
3197
3488
|
#
|
3198
3489
|
# @!attribute [rw] next_token
|
3199
|
-
# The token returned by a previous call
|
3200
|
-
# results.
|
3490
|
+
# The token returned by a previous call, which you can use to retrieve
|
3491
|
+
# the next set of results.
|
3492
|
+
#
|
3493
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3494
|
+
# To retrieve the next page of results, make the call again using the
|
3495
|
+
# returned token. Keep all other arguments unchanged.
|
3496
|
+
#
|
3497
|
+
# Using an expired pagination token results in an `HTTP 400
|
3498
|
+
# InvalidToken` error.
|
3201
3499
|
# @return [String]
|
3202
3500
|
#
|
3203
3501
|
# @!attribute [rw] limit
|
@@ -3220,8 +3518,15 @@ module Aws::EventBridge
|
|
3220
3518
|
# @return [Array<Types::Target>]
|
3221
3519
|
#
|
3222
3520
|
# @!attribute [rw] next_token
|
3223
|
-
#
|
3224
|
-
#
|
3521
|
+
# A token indicating there are more results available. If there are no
|
3522
|
+
# more results, no token is included in the response.
|
3523
|
+
#
|
3524
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
3525
|
+
# To retrieve the next page of results, make the call again using the
|
3526
|
+
# returned token. Keep all other arguments unchanged.
|
3527
|
+
#
|
3528
|
+
# Using an expired pagination token results in an `HTTP 400
|
3529
|
+
# InvalidToken` error.
|
3225
3530
|
# @return [String]
|
3226
3531
|
#
|
3227
3532
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListTargetsByRuleResponse AWS API Documentation
|
@@ -4788,8 +5093,7 @@ module Aws::EventBridge
|
|
4788
5093
|
# @return [Types::DeadLetterConfig]
|
4789
5094
|
#
|
4790
5095
|
# @!attribute [rw] retry_policy
|
4791
|
-
# The
|
4792
|
-
# configuration to use for the dead-letter queue.
|
5096
|
+
# The retry policy configuration to use for the dead-letter queue.
|
4793
5097
|
# @return [Types::RetryPolicy]
|
4794
5098
|
#
|
4795
5099
|
# @!attribute [rw] app_sync_parameters
|
@@ -4875,6 +5179,12 @@ module Aws::EventBridge
|
|
4875
5179
|
include Aws::Structure
|
4876
5180
|
end
|
4877
5181
|
|
5182
|
+
# This request cannot be completed due to throttling issues.
|
5183
|
+
#
|
5184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ThrottlingException AWS API Documentation
|
5185
|
+
#
|
5186
|
+
class ThrottlingException < Aws::EmptyStructure; end
|
5187
|
+
|
4878
5188
|
# @!attribute [rw] resource_arn
|
4879
5189
|
# The ARN of the EventBridge resource from which you are removing
|
4880
5190
|
# tags.
|
@@ -5025,7 +5335,7 @@ module Aws::EventBridge
|
|
5025
5335
|
# @return [String]
|
5026
5336
|
#
|
5027
5337
|
# @!attribute [rw] api_key_value
|
5028
|
-
# The value associated with
|
5338
|
+
# The value associated with the API key to use for authorization.
|
5029
5339
|
# @return [String]
|
5030
5340
|
#
|
5031
5341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionApiKeyAuthRequestParameters AWS API Documentation
|
@@ -5040,37 +5350,46 @@ module Aws::EventBridge
|
|
5040
5350
|
# Contains the additional parameters to use for the connection.
|
5041
5351
|
#
|
5042
5352
|
# @!attribute [rw] basic_auth_parameters
|
5043
|
-
#
|
5044
|
-
# the authorization parameters for Basic authorization.
|
5353
|
+
# The authorization parameters for Basic authorization.
|
5045
5354
|
# @return [Types::UpdateConnectionBasicAuthRequestParameters]
|
5046
5355
|
#
|
5047
5356
|
# @!attribute [rw] o_auth_parameters
|
5048
|
-
#
|
5049
|
-
# authorization parameters for OAuth authorization.
|
5357
|
+
# The authorization parameters for OAuth authorization.
|
5050
5358
|
# @return [Types::UpdateConnectionOAuthRequestParameters]
|
5051
5359
|
#
|
5052
5360
|
# @!attribute [rw] api_key_auth_parameters
|
5053
|
-
#
|
5054
|
-
# the authorization parameters for API key authorization.
|
5361
|
+
# The authorization parameters for API key authorization.
|
5055
5362
|
# @return [Types::UpdateConnectionApiKeyAuthRequestParameters]
|
5056
5363
|
#
|
5057
5364
|
# @!attribute [rw] invocation_http_parameters
|
5058
|
-
#
|
5059
|
-
# parameters to use for the connection.
|
5365
|
+
# The additional parameters to use for the connection.
|
5060
5366
|
# @return [Types::ConnectionHttpParameters]
|
5061
5367
|
#
|
5368
|
+
# @!attribute [rw] connectivity_parameters
|
5369
|
+
# If you specify a private OAuth endpoint, the parameters for
|
5370
|
+
# EventBridge to use when authenticating against the endpoint.
|
5371
|
+
#
|
5372
|
+
# For more information, see [Authorization methods for connections][1]
|
5373
|
+
# in the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
5374
|
+
#
|
5375
|
+
#
|
5376
|
+
#
|
5377
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-auth.html
|
5378
|
+
# @return [Types::ConnectivityResourceParameters]
|
5379
|
+
#
|
5062
5380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionAuthRequestParameters AWS API Documentation
|
5063
5381
|
#
|
5064
5382
|
class UpdateConnectionAuthRequestParameters < Struct.new(
|
5065
5383
|
:basic_auth_parameters,
|
5066
5384
|
:o_auth_parameters,
|
5067
5385
|
:api_key_auth_parameters,
|
5068
|
-
:invocation_http_parameters
|
5386
|
+
:invocation_http_parameters,
|
5387
|
+
:connectivity_parameters)
|
5069
5388
|
SENSITIVE = []
|
5070
5389
|
include Aws::Structure
|
5071
5390
|
end
|
5072
5391
|
|
5073
|
-
#
|
5392
|
+
# The Basic authorization parameters for the connection.
|
5074
5393
|
#
|
5075
5394
|
# @!attribute [rw] username
|
5076
5395
|
# The user name to use for Basic authorization.
|
@@ -5090,7 +5409,7 @@ module Aws::EventBridge
|
|
5090
5409
|
include Aws::Structure
|
5091
5410
|
end
|
5092
5411
|
|
5093
|
-
#
|
5412
|
+
# The OAuth authorization parameters to use for the connection.
|
5094
5413
|
#
|
5095
5414
|
# @!attribute [rw] client_id
|
5096
5415
|
# The client ID to use for OAuth authorization.
|
@@ -5110,12 +5429,11 @@ module Aws::EventBridge
|
|
5110
5429
|
include Aws::Structure
|
5111
5430
|
end
|
5112
5431
|
|
5113
|
-
#
|
5432
|
+
# The OAuth request parameters to use for the connection.
|
5114
5433
|
#
|
5115
5434
|
# @!attribute [rw] client_parameters
|
5116
|
-
#
|
5117
|
-
#
|
5118
|
-
# is specified as the authorization type.
|
5435
|
+
# The client parameters to use for the connection when OAuth is
|
5436
|
+
# specified as the authorization type.
|
5119
5437
|
# @return [Types::UpdateConnectionOAuthClientRequestParameters]
|
5120
5438
|
#
|
5121
5439
|
# @!attribute [rw] authorization_endpoint
|
@@ -5159,13 +5477,26 @@ module Aws::EventBridge
|
|
5159
5477
|
# The authorization parameters to use for the connection.
|
5160
5478
|
# @return [Types::UpdateConnectionAuthRequestParameters]
|
5161
5479
|
#
|
5480
|
+
# @!attribute [rw] invocation_connectivity_parameters
|
5481
|
+
# For connections to private resource endpoints, the parameters to use
|
5482
|
+
# for invoking the resource endpoint.
|
5483
|
+
#
|
5484
|
+
# For more information, see [Connecting to private resources][1] in
|
5485
|
+
# the <i> <i>Amazon EventBridge User Guide</i> </i>.
|
5486
|
+
#
|
5487
|
+
#
|
5488
|
+
#
|
5489
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
5490
|
+
# @return [Types::ConnectivityResourceParameters]
|
5491
|
+
#
|
5162
5492
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionRequest AWS API Documentation
|
5163
5493
|
#
|
5164
5494
|
class UpdateConnectionRequest < Struct.new(
|
5165
5495
|
:name,
|
5166
5496
|
:description,
|
5167
5497
|
:authorization_type,
|
5168
|
-
:auth_parameters
|
5498
|
+
:auth_parameters,
|
5499
|
+
:invocation_connectivity_parameters)
|
5169
5500
|
SENSITIVE = []
|
5170
5501
|
include Aws::Structure
|
5171
5502
|
end
|
@@ -5346,9 +5677,12 @@ module Aws::EventBridge
|
|
5346
5677
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
5347
5678
|
# as a dead-letter queue (DLQ).
|
5348
5679
|
#
|
5349
|
-
# For more information, see [
|
5350
|
-
#
|
5351
|
-
#
|
5680
|
+
# For more information, see [Using dead-letter queues to process
|
5681
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
5682
|
+
#
|
5683
|
+
#
|
5684
|
+
#
|
5685
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
5352
5686
|
# @return [Types::DeadLetterConfig]
|
5353
5687
|
#
|
5354
5688
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusRequest AWS API Documentation
|
@@ -5390,9 +5724,12 @@ module Aws::EventBridge
|
|
5390
5724
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
5391
5725
|
# as a dead-letter queue (DLQ).
|
5392
5726
|
#
|
5393
|
-
# For more information, see [
|
5394
|
-
#
|
5395
|
-
#
|
5727
|
+
# For more information, see [Using dead-letter queues to process
|
5728
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
5729
|
+
#
|
5730
|
+
#
|
5731
|
+
#
|
5732
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
5396
5733
|
# @return [Types::DeadLetterConfig]
|
5397
5734
|
#
|
5398
5735
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusResponse AWS API Documentation
|