aws-sdk-eventbridge 1.73.0 → 1.74.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -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 +472 -135
- 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
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b1d47c483950c9e9be9206d8f564eb3dffcb53fb735db0216cc329a67df4268
|
4
|
+
data.tar.gz: 9ae96de4e577e4d9c9b1c0f863aead79ecbd97ac4b1e349d9e160c5b71989a3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a2abe1968ef3384a009677644639ba4c147378c174c06d5c208421f54f849a8486376af844677ce06b8aceaca93987776af8db33301bf700a8aa14d306fd7947
|
7
|
+
data.tar.gz: 20e4dcbbfeca075fd4d450ad3192d5f389a74db794670e3813efb4ffcc89a07d775c2fb7d27428725c1bf1a77e9a3807134a3399862abe5f5a25392ff61de173
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.74.0
|
@@ -661,6 +661,13 @@ module Aws::EventBridge
|
|
661
661
|
# credentials to use for authorization with an API destination HTTP
|
662
662
|
# endpoint.
|
663
663
|
#
|
664
|
+
# For more information, see [Connections for endpoint targets][1] in the
|
665
|
+
# *Amazon EventBridge User Guide*.
|
666
|
+
#
|
667
|
+
#
|
668
|
+
#
|
669
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection.html
|
670
|
+
#
|
664
671
|
# @option params [required, String] :name
|
665
672
|
# The name for the connection to create.
|
666
673
|
#
|
@@ -675,8 +682,21 @@ module Aws::EventBridge
|
|
675
682
|
# </note>
|
676
683
|
#
|
677
684
|
# @option params [required, Types::CreateConnectionAuthRequestParameters] :auth_parameters
|
678
|
-
#
|
679
|
-
#
|
685
|
+
# The authorization parameters to use to authorize with the endpoint.
|
686
|
+
#
|
687
|
+
# You must include only authorization parameters for the
|
688
|
+
# `AuthorizationType` you specify.
|
689
|
+
#
|
690
|
+
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
691
|
+
# For connections to private resource endpoints, the parameters to use
|
692
|
+
# for invoking the resource endpoint.
|
693
|
+
#
|
694
|
+
# For more information, see [Connecting to private resources][1] in the
|
695
|
+
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
696
|
+
#
|
697
|
+
#
|
698
|
+
#
|
699
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
680
700
|
#
|
681
701
|
# @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
682
702
|
#
|
@@ -754,13 +774,23 @@ module Aws::EventBridge
|
|
754
774
|
# },
|
755
775
|
# ],
|
756
776
|
# },
|
777
|
+
# connectivity_parameters: {
|
778
|
+
# resource_parameters: { # required
|
779
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
780
|
+
# },
|
781
|
+
# },
|
782
|
+
# },
|
783
|
+
# invocation_connectivity_parameters: {
|
784
|
+
# resource_parameters: { # required
|
785
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
786
|
+
# },
|
757
787
|
# },
|
758
788
|
# })
|
759
789
|
#
|
760
790
|
# @example Response structure
|
761
791
|
#
|
762
792
|
# resp.connection_arn #=> String
|
763
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
793
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
764
794
|
# resp.creation_time #=> Time
|
765
795
|
# resp.last_modified_time #=> Time
|
766
796
|
#
|
@@ -927,9 +957,12 @@ module Aws::EventBridge
|
|
927
957
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
928
958
|
# as a dead-letter queue (DLQ).
|
929
959
|
#
|
930
|
-
# For more information, see [
|
931
|
-
#
|
932
|
-
#
|
960
|
+
# For more information, see [Using dead-letter queues to process
|
961
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
962
|
+
#
|
963
|
+
#
|
964
|
+
#
|
965
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
933
966
|
#
|
934
967
|
# @option params [Array<Types::Tag>] :tags
|
935
968
|
# Tags to associate with the event bus.
|
@@ -1108,7 +1141,7 @@ module Aws::EventBridge
|
|
1108
1141
|
# @example Response structure
|
1109
1142
|
#
|
1110
1143
|
# resp.connection_arn #=> String
|
1111
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
1144
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1112
1145
|
# resp.creation_time #=> Time
|
1113
1146
|
# resp.last_modified_time #=> Time
|
1114
1147
|
# resp.last_authorized_time #=> Time
|
@@ -1188,7 +1221,7 @@ module Aws::EventBridge
|
|
1188
1221
|
# @example Response structure
|
1189
1222
|
#
|
1190
1223
|
# resp.connection_arn #=> String
|
1191
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
1224
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1192
1225
|
# resp.creation_time #=> Time
|
1193
1226
|
# resp.last_modified_time #=> Time
|
1194
1227
|
# resp.last_authorized_time #=> Time
|
@@ -1448,6 +1481,7 @@ module Aws::EventBridge
|
|
1448
1481
|
# * {Types::DescribeConnectionResponse#connection_arn #connection_arn} => String
|
1449
1482
|
# * {Types::DescribeConnectionResponse#name #name} => String
|
1450
1483
|
# * {Types::DescribeConnectionResponse#description #description} => String
|
1484
|
+
# * {Types::DescribeConnectionResponse#invocation_connectivity_parameters #invocation_connectivity_parameters} => Types::DescribeConnectionConnectivityParameters
|
1451
1485
|
# * {Types::DescribeConnectionResponse#connection_state #connection_state} => String
|
1452
1486
|
# * {Types::DescribeConnectionResponse#state_reason #state_reason} => String
|
1453
1487
|
# * {Types::DescribeConnectionResponse#authorization_type #authorization_type} => String
|
@@ -1468,7 +1502,9 @@ module Aws::EventBridge
|
|
1468
1502
|
# resp.connection_arn #=> String
|
1469
1503
|
# resp.name #=> String
|
1470
1504
|
# resp.description #=> String
|
1471
|
-
# resp.
|
1505
|
+
# resp.invocation_connectivity_parameters.resource_parameters.resource_configuration_arn #=> String
|
1506
|
+
# resp.invocation_connectivity_parameters.resource_parameters.resource_association_arn #=> String
|
1507
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1472
1508
|
# resp.state_reason #=> String
|
1473
1509
|
# resp.authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
|
1474
1510
|
# resp.secret_arn #=> String
|
@@ -1501,6 +1537,8 @@ module Aws::EventBridge
|
|
1501
1537
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].key #=> String
|
1502
1538
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].value #=> String
|
1503
1539
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].is_value_secret #=> Boolean
|
1540
|
+
# resp.auth_parameters.connectivity_parameters.resource_parameters.resource_configuration_arn #=> String
|
1541
|
+
# resp.auth_parameters.connectivity_parameters.resource_parameters.resource_association_arn #=> String
|
1504
1542
|
# resp.creation_time #=> Time
|
1505
1543
|
# resp.last_modified_time #=> Time
|
1506
1544
|
# resp.last_authorized_time #=> Time
|
@@ -1910,8 +1948,15 @@ module Aws::EventBridge
|
|
1910
1948
|
# The ARN of the connection specified for the API destination.
|
1911
1949
|
#
|
1912
1950
|
# @option params [String] :next_token
|
1913
|
-
# The token returned by a previous call
|
1914
|
-
# results.
|
1951
|
+
# The token returned by a previous call, which you can use to retrieve
|
1952
|
+
# the next set of results.
|
1953
|
+
#
|
1954
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
1955
|
+
# To retrieve the next page of results, make the call again using the
|
1956
|
+
# returned token. Keep all other arguments unchanged.
|
1957
|
+
#
|
1958
|
+
# Using an expired pagination token results in an `HTTP 400
|
1959
|
+
# InvalidToken` error.
|
1915
1960
|
#
|
1916
1961
|
# @option params [Integer] :limit
|
1917
1962
|
# The maximum number of API destinations to include in the response.
|
@@ -1968,8 +2013,15 @@ module Aws::EventBridge
|
|
1968
2013
|
# The state of the archive.
|
1969
2014
|
#
|
1970
2015
|
# @option params [String] :next_token
|
1971
|
-
# The token returned by a previous call
|
1972
|
-
# results.
|
2016
|
+
# The token returned by a previous call, which you can use to retrieve
|
2017
|
+
# the next set of results.
|
2018
|
+
#
|
2019
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2020
|
+
# To retrieve the next page of results, make the call again using the
|
2021
|
+
# returned token. Keep all other arguments unchanged.
|
2022
|
+
#
|
2023
|
+
# Using an expired pagination token results in an `HTTP 400
|
2024
|
+
# InvalidToken` error.
|
1973
2025
|
#
|
1974
2026
|
# @option params [Integer] :limit
|
1975
2027
|
# The maximum number of results to return.
|
@@ -2021,8 +2073,15 @@ module Aws::EventBridge
|
|
2021
2073
|
# The state of the connection.
|
2022
2074
|
#
|
2023
2075
|
# @option params [String] :next_token
|
2024
|
-
# The token returned by a previous call
|
2025
|
-
# results.
|
2076
|
+
# The token returned by a previous call, which you can use to retrieve
|
2077
|
+
# the next set of results.
|
2078
|
+
#
|
2079
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2080
|
+
# To retrieve the next page of results, make the call again using the
|
2081
|
+
# returned token. Keep all other arguments unchanged.
|
2082
|
+
#
|
2083
|
+
# Using an expired pagination token results in an `HTTP 400
|
2084
|
+
# InvalidToken` error.
|
2026
2085
|
#
|
2027
2086
|
# @option params [Integer] :limit
|
2028
2087
|
# The maximum number of connections to return.
|
@@ -2036,7 +2095,7 @@ module Aws::EventBridge
|
|
2036
2095
|
#
|
2037
2096
|
# resp = client.list_connections({
|
2038
2097
|
# name_prefix: "ConnectionName",
|
2039
|
-
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING
|
2098
|
+
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING, ACTIVE, FAILED_CONNECTIVITY
|
2040
2099
|
# next_token: "NextToken",
|
2041
2100
|
# limit: 1,
|
2042
2101
|
# })
|
@@ -2046,7 +2105,7 @@ module Aws::EventBridge
|
|
2046
2105
|
# resp.connections #=> Array
|
2047
2106
|
# resp.connections[0].connection_arn #=> String
|
2048
2107
|
# resp.connections[0].name #=> String
|
2049
|
-
# resp.connections[0].connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
2108
|
+
# resp.connections[0].connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
2050
2109
|
# resp.connections[0].state_reason #=> String
|
2051
2110
|
# resp.connections[0].authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
|
2052
2111
|
# resp.connections[0].creation_time #=> Time
|
@@ -2082,12 +2141,15 @@ module Aws::EventBridge
|
|
2082
2141
|
# example `"HomeRegion": "us-east-1"`.
|
2083
2142
|
#
|
2084
2143
|
# @option params [String] :next_token
|
2085
|
-
#
|
2086
|
-
#
|
2087
|
-
#
|
2088
|
-
#
|
2089
|
-
#
|
2090
|
-
#
|
2144
|
+
# The token returned by a previous call, which you can use to retrieve
|
2145
|
+
# the next set of results.
|
2146
|
+
#
|
2147
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2148
|
+
# To retrieve the next page of results, make the call again using the
|
2149
|
+
# returned token. Keep all other arguments unchanged.
|
2150
|
+
#
|
2151
|
+
# Using an expired pagination token results in an `HTTP 400
|
2152
|
+
# InvalidToken` error.
|
2091
2153
|
#
|
2092
2154
|
# @option params [Integer] :max_results
|
2093
2155
|
# The maximum number of results returned by the call.
|
@@ -2143,8 +2205,15 @@ module Aws::EventBridge
|
|
2143
2205
|
# names that start with the specified prefix.
|
2144
2206
|
#
|
2145
2207
|
# @option params [String] :next_token
|
2146
|
-
# The token returned by a previous call
|
2147
|
-
# results.
|
2208
|
+
# The token returned by a previous call, which you can use to retrieve
|
2209
|
+
# the next set of results.
|
2210
|
+
#
|
2211
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2212
|
+
# To retrieve the next page of results, make the call again using the
|
2213
|
+
# returned token. Keep all other arguments unchanged.
|
2214
|
+
#
|
2215
|
+
# Using an expired pagination token results in an `HTTP 400
|
2216
|
+
# InvalidToken` error.
|
2148
2217
|
#
|
2149
2218
|
# @option params [Integer] :limit
|
2150
2219
|
# Specifying this limits the number of results returned by this
|
@@ -2197,8 +2266,15 @@ module Aws::EventBridge
|
|
2197
2266
|
# with names that start with the specified prefix.
|
2198
2267
|
#
|
2199
2268
|
# @option params [String] :next_token
|
2200
|
-
# The token returned by a previous call
|
2201
|
-
# results.
|
2269
|
+
# The token returned by a previous call, which you can use to retrieve
|
2270
|
+
# the next set of results.
|
2271
|
+
#
|
2272
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2273
|
+
# To retrieve the next page of results, make the call again using the
|
2274
|
+
# returned token. Keep all other arguments unchanged.
|
2275
|
+
#
|
2276
|
+
# Using an expired pagination token results in an `HTTP 400
|
2277
|
+
# InvalidToken` error.
|
2202
2278
|
#
|
2203
2279
|
# @option params [Integer] :limit
|
2204
2280
|
# Specifying this limits the number of results returned by this
|
@@ -2248,8 +2324,15 @@ module Aws::EventBridge
|
|
2248
2324
|
# about.
|
2249
2325
|
#
|
2250
2326
|
# @option params [String] :next_token
|
2251
|
-
# The token returned by a previous call
|
2252
|
-
#
|
2327
|
+
# The token returned by a previous call, which you can use to retrieve
|
2328
|
+
# the next set of results.
|
2329
|
+
#
|
2330
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2331
|
+
# To retrieve the next page of results, make the call again using the
|
2332
|
+
# returned token. Keep all other arguments unchanged.
|
2333
|
+
#
|
2334
|
+
# Using an expired pagination token results in an `HTTP 400
|
2335
|
+
# InvalidToken` error.
|
2253
2336
|
#
|
2254
2337
|
# @option params [Integer] :limit
|
2255
2338
|
# Specifying this limits the number of results returned by this
|
@@ -2296,8 +2379,15 @@ module Aws::EventBridge
|
|
2296
2379
|
# event sources that start with the string you specify.
|
2297
2380
|
#
|
2298
2381
|
# @option params [String] :next_token
|
2299
|
-
# The token returned by a previous call
|
2300
|
-
#
|
2382
|
+
# The token returned by a previous call, which you can use to retrieve
|
2383
|
+
# the next set of results.
|
2384
|
+
#
|
2385
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2386
|
+
# To retrieve the next page of results, make the call again using the
|
2387
|
+
# returned token. Keep all other arguments unchanged.
|
2388
|
+
#
|
2389
|
+
# Using an expired pagination token results in an `HTTP 400
|
2390
|
+
# InvalidToken` error.
|
2301
2391
|
#
|
2302
2392
|
# @option params [Integer] :limit
|
2303
2393
|
# pecifying this limits the number of results returned by this
|
@@ -2348,8 +2438,15 @@ module Aws::EventBridge
|
|
2348
2438
|
# The ARN of the archive from which the events are replayed.
|
2349
2439
|
#
|
2350
2440
|
# @option params [String] :next_token
|
2351
|
-
# The token returned by a previous call
|
2352
|
-
# results.
|
2441
|
+
# The token returned by a previous call, which you can use to retrieve
|
2442
|
+
# the next set of results.
|
2443
|
+
#
|
2444
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2445
|
+
# To retrieve the next page of results, make the call again using the
|
2446
|
+
# returned token. Keep all other arguments unchanged.
|
2447
|
+
#
|
2448
|
+
# Using an expired pagination token results in an `HTTP 400
|
2449
|
+
# InvalidToken` error.
|
2353
2450
|
#
|
2354
2451
|
# @option params [Integer] :limit
|
2355
2452
|
# The maximum number of replays to retrieve.
|
@@ -2406,8 +2503,15 @@ module Aws::EventBridge
|
|
2406
2503
|
# the default event bus is used.
|
2407
2504
|
#
|
2408
2505
|
# @option params [String] :next_token
|
2409
|
-
# The token returned by a previous call
|
2410
|
-
# results.
|
2506
|
+
# The token returned by a previous call, which you can use to retrieve
|
2507
|
+
# the next set of results.
|
2508
|
+
#
|
2509
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2510
|
+
# To retrieve the next page of results, make the call again using the
|
2511
|
+
# returned token. Keep all other arguments unchanged.
|
2512
|
+
#
|
2513
|
+
# Using an expired pagination token results in an `HTTP 400
|
2514
|
+
# InvalidToken` error.
|
2411
2515
|
#
|
2412
2516
|
# @option params [Integer] :limit
|
2413
2517
|
# The maximum number of results to return.
|
@@ -2461,8 +2565,15 @@ module Aws::EventBridge
|
|
2461
2565
|
# this, the default event bus is used.
|
2462
2566
|
#
|
2463
2567
|
# @option params [String] :next_token
|
2464
|
-
# The token returned by a previous call
|
2465
|
-
# results.
|
2568
|
+
# The token returned by a previous call, which you can use to retrieve
|
2569
|
+
# the next set of results.
|
2570
|
+
#
|
2571
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2572
|
+
# To retrieve the next page of results, make the call again using the
|
2573
|
+
# returned token. Keep all other arguments unchanged.
|
2574
|
+
#
|
2575
|
+
# Using an expired pagination token results in an `HTTP 400
|
2576
|
+
# InvalidToken` error.
|
2466
2577
|
#
|
2467
2578
|
# @option params [Integer] :limit
|
2468
2579
|
# The maximum number of results to return.
|
@@ -2547,8 +2658,15 @@ module Aws::EventBridge
|
|
2547
2658
|
# this, the default event bus is used.
|
2548
2659
|
#
|
2549
2660
|
# @option params [String] :next_token
|
2550
|
-
# The token returned by a previous call
|
2551
|
-
# results.
|
2661
|
+
# The token returned by a previous call, which you can use to retrieve
|
2662
|
+
# the next set of results.
|
2663
|
+
#
|
2664
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2665
|
+
# To retrieve the next page of results, make the call again using the
|
2666
|
+
# returned token. Keep all other arguments unchanged.
|
2667
|
+
#
|
2668
|
+
# Using an expired pagination token results in an `HTTP 400
|
2669
|
+
# InvalidToken` error.
|
2552
2670
|
#
|
2553
2671
|
# @option params [Integer] :limit
|
2554
2672
|
# The maximum number of results to return.
|
@@ -2661,7 +2779,7 @@ module Aws::EventBridge
|
|
2661
2779
|
# -9,223,372,036,854,775,808 and a maximum value of
|
2662
2780
|
# 9,223,372,036,854,775,807.
|
2663
2781
|
#
|
2664
|
-
# <note markdown="1"> PutEvents will only process nested JSON up to
|
2782
|
+
# <note markdown="1"> PutEvents will only process nested JSON up to 1000 levels deep.
|
2665
2783
|
#
|
2666
2784
|
# </note>
|
2667
2785
|
#
|
@@ -2772,9 +2890,8 @@ module Aws::EventBridge
|
|
2772
2890
|
|
2773
2891
|
# Running `PutPermission` permits the specified Amazon Web Services
|
2774
2892
|
# account or Amazon Web Services organization to put events to the
|
2775
|
-
# specified *event bus*. Amazon EventBridge
|
2776
|
-
#
|
2777
|
-
# your account.
|
2893
|
+
# specified *event bus*. Amazon EventBridge rules in your account are
|
2894
|
+
# triggered by these events arriving to an event bus in your account.
|
2778
2895
|
#
|
2779
2896
|
# For another account to send events to your account, that external
|
2780
2897
|
# account must have an EventBridge rule with your account's event bus
|
@@ -2944,6 +3061,10 @@ module Aws::EventBridge
|
|
2944
3061
|
# your specified limit. For more information, see [Managing Your Costs
|
2945
3062
|
# with Budgets][5].
|
2946
3063
|
#
|
3064
|
+
# To create a rule that filters for management events from Amazon Web
|
3065
|
+
# Services services, see [Receiving read-only management events from
|
3066
|
+
# Amazon Web Services services][6] in the *EventBridge User Guide*.
|
3067
|
+
#
|
2947
3068
|
#
|
2948
3069
|
#
|
2949
3070
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_DisableRule.html
|
@@ -2951,6 +3072,7 @@ module Aws::EventBridge
|
|
2951
3072
|
# [3]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_TagResource.html
|
2952
3073
|
# [4]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_UntagResource.html
|
2953
3074
|
# [5]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html
|
3075
|
+
# [6]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-service-event-cloudtrail.html#eb-service-event-cloudtrail-management
|
2954
3076
|
#
|
2955
3077
|
# @option params [required, String] :name
|
2956
3078
|
# The name of the rule that you are creating or updating.
|
@@ -3622,8 +3744,7 @@ module Aws::EventBridge
|
|
3622
3744
|
end
|
3623
3745
|
|
3624
3746
|
# Removes one or more tags from the specified EventBridge resource. In
|
3625
|
-
# Amazon EventBridge
|
3626
|
-
# tagged.
|
3747
|
+
# Amazon EventBridge, rules and event buses can be tagged.
|
3627
3748
|
#
|
3628
3749
|
# @option params [required, String] :resource_arn
|
3629
3750
|
# The ARN of the EventBridge resource from which you are removing tags.
|
@@ -3764,6 +3885,17 @@ module Aws::EventBridge
|
|
3764
3885
|
# @option params [Types::UpdateConnectionAuthRequestParameters] :auth_parameters
|
3765
3886
|
# The authorization parameters to use for the connection.
|
3766
3887
|
#
|
3888
|
+
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
3889
|
+
# For connections to private resource endpoints, the parameters to use
|
3890
|
+
# for invoking the resource endpoint.
|
3891
|
+
#
|
3892
|
+
# For more information, see [Connecting to private resources][1] in the
|
3893
|
+
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
3894
|
+
#
|
3895
|
+
#
|
3896
|
+
#
|
3897
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
3898
|
+
#
|
3767
3899
|
# @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3768
3900
|
#
|
3769
3901
|
# * {Types::UpdateConnectionResponse#connection_arn #connection_arn} => String
|
@@ -3841,13 +3973,23 @@ module Aws::EventBridge
|
|
3841
3973
|
# },
|
3842
3974
|
# ],
|
3843
3975
|
# },
|
3976
|
+
# connectivity_parameters: {
|
3977
|
+
# resource_parameters: { # required
|
3978
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
3979
|
+
# },
|
3980
|
+
# },
|
3981
|
+
# },
|
3982
|
+
# invocation_connectivity_parameters: {
|
3983
|
+
# resource_parameters: { # required
|
3984
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
3985
|
+
# },
|
3844
3986
|
# },
|
3845
3987
|
# })
|
3846
3988
|
#
|
3847
3989
|
# @example Response structure
|
3848
3990
|
#
|
3849
3991
|
# resp.connection_arn #=> String
|
3850
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
3992
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
3851
3993
|
# resp.creation_time #=> Time
|
3852
3994
|
# resp.last_modified_time #=> Time
|
3853
3995
|
# resp.last_authorized_time #=> Time
|
@@ -3999,9 +4141,12 @@ module Aws::EventBridge
|
|
3999
4141
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
4000
4142
|
# as a dead-letter queue (DLQ).
|
4001
4143
|
#
|
4002
|
-
# For more information, see [
|
4003
|
-
#
|
4004
|
-
#
|
4144
|
+
# For more information, see [Using dead-letter queues to process
|
4145
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
4146
|
+
#
|
4147
|
+
#
|
4148
|
+
#
|
4149
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
4005
4150
|
#
|
4006
4151
|
# @return [Types::UpdateEventBusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4007
4152
|
#
|
@@ -4057,7 +4202,7 @@ module Aws::EventBridge
|
|
4057
4202
|
tracer: tracer
|
4058
4203
|
)
|
4059
4204
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
4060
|
-
context[:gem_version] = '1.
|
4205
|
+
context[:gem_version] = '1.74.0'
|
4061
4206
|
Seahorse::Client::Request.new(handlers, context)
|
4062
4207
|
end
|
4063
4208
|
|