aws-sdk-eventbridge 1.73.0 → 1.75.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-eventbridge/client.rb +218 -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 +29 -6
- data/sig/errors.rbs +4 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +40 -7
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 708a7f8e15cd7537c8243572ade53cd3b1e88cfcb5055ae62900a7d728204cf3
|
4
|
+
data.tar.gz: 6e83c783ab0b1e981005e7acc2cf16fc2b66c0ee309d8c008cff36e9de910e30
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 593753c6a907fc81ea76d9e381275e6cc63c2dfb50c394f8859d0285b31a2dd14d174ad6020ef87c56f79b4e83cb5e31b2b22831c0311e571f8d7b385f4d07f7
|
7
|
+
data.tar.gz: 1c558e180da49ffda73fdf64d150ca8a94c3e2c5c8f46961b0a602a237ce3a82135ff0cc55e0c2667ddd4887681c3bc0ad78be0a6f3423b55972e8feb7fc9101
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.75.0 (2025-01-15)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.74.0 (2024-12-02)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Call private APIs by configuring Connections with VPC connectivity through PrivateLink and VPC Lattice
|
13
|
+
|
4
14
|
1.73.0 (2024-11-06)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.75.0
|
@@ -257,11 +257,34 @@ module Aws::EventBridge
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -661,6 +684,13 @@ module Aws::EventBridge
|
|
661
684
|
# credentials to use for authorization with an API destination HTTP
|
662
685
|
# endpoint.
|
663
686
|
#
|
687
|
+
# For more information, see [Connections for endpoint targets][1] in the
|
688
|
+
# *Amazon EventBridge User Guide*.
|
689
|
+
#
|
690
|
+
#
|
691
|
+
#
|
692
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection.html
|
693
|
+
#
|
664
694
|
# @option params [required, String] :name
|
665
695
|
# The name for the connection to create.
|
666
696
|
#
|
@@ -675,8 +705,21 @@ module Aws::EventBridge
|
|
675
705
|
# </note>
|
676
706
|
#
|
677
707
|
# @option params [required, Types::CreateConnectionAuthRequestParameters] :auth_parameters
|
678
|
-
#
|
679
|
-
#
|
708
|
+
# The authorization parameters to use to authorize with the endpoint.
|
709
|
+
#
|
710
|
+
# You must include only authorization parameters for the
|
711
|
+
# `AuthorizationType` you specify.
|
712
|
+
#
|
713
|
+
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
714
|
+
# For connections to private resource endpoints, the parameters to use
|
715
|
+
# for invoking the resource endpoint.
|
716
|
+
#
|
717
|
+
# For more information, see [Connecting to private resources][1] in the
|
718
|
+
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
719
|
+
#
|
720
|
+
#
|
721
|
+
#
|
722
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
680
723
|
#
|
681
724
|
# @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
682
725
|
#
|
@@ -754,13 +797,23 @@ module Aws::EventBridge
|
|
754
797
|
# },
|
755
798
|
# ],
|
756
799
|
# },
|
800
|
+
# connectivity_parameters: {
|
801
|
+
# resource_parameters: { # required
|
802
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
803
|
+
# },
|
804
|
+
# },
|
805
|
+
# },
|
806
|
+
# invocation_connectivity_parameters: {
|
807
|
+
# resource_parameters: { # required
|
808
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
809
|
+
# },
|
757
810
|
# },
|
758
811
|
# })
|
759
812
|
#
|
760
813
|
# @example Response structure
|
761
814
|
#
|
762
815
|
# resp.connection_arn #=> String
|
763
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
816
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
764
817
|
# resp.creation_time #=> Time
|
765
818
|
# resp.last_modified_time #=> Time
|
766
819
|
#
|
@@ -927,9 +980,12 @@ module Aws::EventBridge
|
|
927
980
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
928
981
|
# as a dead-letter queue (DLQ).
|
929
982
|
#
|
930
|
-
# For more information, see [
|
931
|
-
#
|
932
|
-
#
|
983
|
+
# For more information, see [Using dead-letter queues to process
|
984
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
985
|
+
#
|
986
|
+
#
|
987
|
+
#
|
988
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
933
989
|
#
|
934
990
|
# @option params [Array<Types::Tag>] :tags
|
935
991
|
# Tags to associate with the event bus.
|
@@ -1108,7 +1164,7 @@ module Aws::EventBridge
|
|
1108
1164
|
# @example Response structure
|
1109
1165
|
#
|
1110
1166
|
# resp.connection_arn #=> String
|
1111
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
1167
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1112
1168
|
# resp.creation_time #=> Time
|
1113
1169
|
# resp.last_modified_time #=> Time
|
1114
1170
|
# resp.last_authorized_time #=> Time
|
@@ -1188,7 +1244,7 @@ module Aws::EventBridge
|
|
1188
1244
|
# @example Response structure
|
1189
1245
|
#
|
1190
1246
|
# resp.connection_arn #=> String
|
1191
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
1247
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1192
1248
|
# resp.creation_time #=> Time
|
1193
1249
|
# resp.last_modified_time #=> Time
|
1194
1250
|
# resp.last_authorized_time #=> Time
|
@@ -1448,6 +1504,7 @@ module Aws::EventBridge
|
|
1448
1504
|
# * {Types::DescribeConnectionResponse#connection_arn #connection_arn} => String
|
1449
1505
|
# * {Types::DescribeConnectionResponse#name #name} => String
|
1450
1506
|
# * {Types::DescribeConnectionResponse#description #description} => String
|
1507
|
+
# * {Types::DescribeConnectionResponse#invocation_connectivity_parameters #invocation_connectivity_parameters} => Types::DescribeConnectionConnectivityParameters
|
1451
1508
|
# * {Types::DescribeConnectionResponse#connection_state #connection_state} => String
|
1452
1509
|
# * {Types::DescribeConnectionResponse#state_reason #state_reason} => String
|
1453
1510
|
# * {Types::DescribeConnectionResponse#authorization_type #authorization_type} => String
|
@@ -1468,7 +1525,9 @@ module Aws::EventBridge
|
|
1468
1525
|
# resp.connection_arn #=> String
|
1469
1526
|
# resp.name #=> String
|
1470
1527
|
# resp.description #=> String
|
1471
|
-
# resp.
|
1528
|
+
# resp.invocation_connectivity_parameters.resource_parameters.resource_configuration_arn #=> String
|
1529
|
+
# resp.invocation_connectivity_parameters.resource_parameters.resource_association_arn #=> String
|
1530
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
1472
1531
|
# resp.state_reason #=> String
|
1473
1532
|
# resp.authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
|
1474
1533
|
# resp.secret_arn #=> String
|
@@ -1501,6 +1560,8 @@ module Aws::EventBridge
|
|
1501
1560
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].key #=> String
|
1502
1561
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].value #=> String
|
1503
1562
|
# resp.auth_parameters.invocation_http_parameters.body_parameters[0].is_value_secret #=> Boolean
|
1563
|
+
# resp.auth_parameters.connectivity_parameters.resource_parameters.resource_configuration_arn #=> String
|
1564
|
+
# resp.auth_parameters.connectivity_parameters.resource_parameters.resource_association_arn #=> String
|
1504
1565
|
# resp.creation_time #=> Time
|
1505
1566
|
# resp.last_modified_time #=> Time
|
1506
1567
|
# resp.last_authorized_time #=> Time
|
@@ -1910,8 +1971,15 @@ module Aws::EventBridge
|
|
1910
1971
|
# The ARN of the connection specified for the API destination.
|
1911
1972
|
#
|
1912
1973
|
# @option params [String] :next_token
|
1913
|
-
# The token returned by a previous call
|
1914
|
-
# results.
|
1974
|
+
# The token returned by a previous call, which you can use to retrieve
|
1975
|
+
# the next set of results.
|
1976
|
+
#
|
1977
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
1978
|
+
# To retrieve the next page of results, make the call again using the
|
1979
|
+
# returned token. Keep all other arguments unchanged.
|
1980
|
+
#
|
1981
|
+
# Using an expired pagination token results in an `HTTP 400
|
1982
|
+
# InvalidToken` error.
|
1915
1983
|
#
|
1916
1984
|
# @option params [Integer] :limit
|
1917
1985
|
# The maximum number of API destinations to include in the response.
|
@@ -1968,8 +2036,15 @@ module Aws::EventBridge
|
|
1968
2036
|
# The state of the archive.
|
1969
2037
|
#
|
1970
2038
|
# @option params [String] :next_token
|
1971
|
-
# The token returned by a previous call
|
1972
|
-
# results.
|
2039
|
+
# The token returned by a previous call, which you can use to retrieve
|
2040
|
+
# the next set of results.
|
2041
|
+
#
|
2042
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2043
|
+
# To retrieve the next page of results, make the call again using the
|
2044
|
+
# returned token. Keep all other arguments unchanged.
|
2045
|
+
#
|
2046
|
+
# Using an expired pagination token results in an `HTTP 400
|
2047
|
+
# InvalidToken` error.
|
1973
2048
|
#
|
1974
2049
|
# @option params [Integer] :limit
|
1975
2050
|
# The maximum number of results to return.
|
@@ -2021,8 +2096,15 @@ module Aws::EventBridge
|
|
2021
2096
|
# The state of the connection.
|
2022
2097
|
#
|
2023
2098
|
# @option params [String] :next_token
|
2024
|
-
# The token returned by a previous call
|
2025
|
-
# results.
|
2099
|
+
# The token returned by a previous call, which you can use to retrieve
|
2100
|
+
# the next set of results.
|
2101
|
+
#
|
2102
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2103
|
+
# To retrieve the next page of results, make the call again using the
|
2104
|
+
# returned token. Keep all other arguments unchanged.
|
2105
|
+
#
|
2106
|
+
# Using an expired pagination token results in an `HTTP 400
|
2107
|
+
# InvalidToken` error.
|
2026
2108
|
#
|
2027
2109
|
# @option params [Integer] :limit
|
2028
2110
|
# The maximum number of connections to return.
|
@@ -2036,7 +2118,7 @@ module Aws::EventBridge
|
|
2036
2118
|
#
|
2037
2119
|
# resp = client.list_connections({
|
2038
2120
|
# name_prefix: "ConnectionName",
|
2039
|
-
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING
|
2121
|
+
# connection_state: "CREATING", # accepts CREATING, UPDATING, DELETING, AUTHORIZED, DEAUTHORIZED, AUTHORIZING, DEAUTHORIZING, ACTIVE, FAILED_CONNECTIVITY
|
2040
2122
|
# next_token: "NextToken",
|
2041
2123
|
# limit: 1,
|
2042
2124
|
# })
|
@@ -2046,7 +2128,7 @@ module Aws::EventBridge
|
|
2046
2128
|
# resp.connections #=> Array
|
2047
2129
|
# resp.connections[0].connection_arn #=> String
|
2048
2130
|
# resp.connections[0].name #=> String
|
2049
|
-
# resp.connections[0].connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
2131
|
+
# resp.connections[0].connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
2050
2132
|
# resp.connections[0].state_reason #=> String
|
2051
2133
|
# resp.connections[0].authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
|
2052
2134
|
# resp.connections[0].creation_time #=> Time
|
@@ -2082,12 +2164,15 @@ module Aws::EventBridge
|
|
2082
2164
|
# example `"HomeRegion": "us-east-1"`.
|
2083
2165
|
#
|
2084
2166
|
# @option params [String] :next_token
|
2085
|
-
#
|
2086
|
-
#
|
2087
|
-
#
|
2088
|
-
#
|
2089
|
-
#
|
2090
|
-
#
|
2167
|
+
# The token returned by a previous call, which you can use to retrieve
|
2168
|
+
# the next set of results.
|
2169
|
+
#
|
2170
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2171
|
+
# To retrieve the next page of results, make the call again using the
|
2172
|
+
# returned token. Keep all other arguments unchanged.
|
2173
|
+
#
|
2174
|
+
# Using an expired pagination token results in an `HTTP 400
|
2175
|
+
# InvalidToken` error.
|
2091
2176
|
#
|
2092
2177
|
# @option params [Integer] :max_results
|
2093
2178
|
# The maximum number of results returned by the call.
|
@@ -2143,8 +2228,15 @@ module Aws::EventBridge
|
|
2143
2228
|
# names that start with the specified prefix.
|
2144
2229
|
#
|
2145
2230
|
# @option params [String] :next_token
|
2146
|
-
# The token returned by a previous call
|
2147
|
-
# results.
|
2231
|
+
# The token returned by a previous call, which you can use to retrieve
|
2232
|
+
# the next set of results.
|
2233
|
+
#
|
2234
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2235
|
+
# To retrieve the next page of results, make the call again using the
|
2236
|
+
# returned token. Keep all other arguments unchanged.
|
2237
|
+
#
|
2238
|
+
# Using an expired pagination token results in an `HTTP 400
|
2239
|
+
# InvalidToken` error.
|
2148
2240
|
#
|
2149
2241
|
# @option params [Integer] :limit
|
2150
2242
|
# Specifying this limits the number of results returned by this
|
@@ -2197,8 +2289,15 @@ module Aws::EventBridge
|
|
2197
2289
|
# with names that start with the specified prefix.
|
2198
2290
|
#
|
2199
2291
|
# @option params [String] :next_token
|
2200
|
-
# The token returned by a previous call
|
2201
|
-
# results.
|
2292
|
+
# The token returned by a previous call, which you can use to retrieve
|
2293
|
+
# the next set of results.
|
2294
|
+
#
|
2295
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2296
|
+
# To retrieve the next page of results, make the call again using the
|
2297
|
+
# returned token. Keep all other arguments unchanged.
|
2298
|
+
#
|
2299
|
+
# Using an expired pagination token results in an `HTTP 400
|
2300
|
+
# InvalidToken` error.
|
2202
2301
|
#
|
2203
2302
|
# @option params [Integer] :limit
|
2204
2303
|
# Specifying this limits the number of results returned by this
|
@@ -2248,8 +2347,15 @@ module Aws::EventBridge
|
|
2248
2347
|
# about.
|
2249
2348
|
#
|
2250
2349
|
# @option params [String] :next_token
|
2251
|
-
# The token returned by a previous call
|
2252
|
-
#
|
2350
|
+
# The token returned by a previous call, which you can use to retrieve
|
2351
|
+
# the next set of results.
|
2352
|
+
#
|
2353
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2354
|
+
# To retrieve the next page of results, make the call again using the
|
2355
|
+
# returned token. Keep all other arguments unchanged.
|
2356
|
+
#
|
2357
|
+
# Using an expired pagination token results in an `HTTP 400
|
2358
|
+
# InvalidToken` error.
|
2253
2359
|
#
|
2254
2360
|
# @option params [Integer] :limit
|
2255
2361
|
# Specifying this limits the number of results returned by this
|
@@ -2296,8 +2402,15 @@ module Aws::EventBridge
|
|
2296
2402
|
# event sources that start with the string you specify.
|
2297
2403
|
#
|
2298
2404
|
# @option params [String] :next_token
|
2299
|
-
# The token returned by a previous call
|
2300
|
-
#
|
2405
|
+
# The token returned by a previous call, which you can use to retrieve
|
2406
|
+
# the next set of results.
|
2407
|
+
#
|
2408
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2409
|
+
# To retrieve the next page of results, make the call again using the
|
2410
|
+
# returned token. Keep all other arguments unchanged.
|
2411
|
+
#
|
2412
|
+
# Using an expired pagination token results in an `HTTP 400
|
2413
|
+
# InvalidToken` error.
|
2301
2414
|
#
|
2302
2415
|
# @option params [Integer] :limit
|
2303
2416
|
# pecifying this limits the number of results returned by this
|
@@ -2348,8 +2461,15 @@ module Aws::EventBridge
|
|
2348
2461
|
# The ARN of the archive from which the events are replayed.
|
2349
2462
|
#
|
2350
2463
|
# @option params [String] :next_token
|
2351
|
-
# The token returned by a previous call
|
2352
|
-
# results.
|
2464
|
+
# The token returned by a previous call, which you can use to retrieve
|
2465
|
+
# the next set of results.
|
2466
|
+
#
|
2467
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2468
|
+
# To retrieve the next page of results, make the call again using the
|
2469
|
+
# returned token. Keep all other arguments unchanged.
|
2470
|
+
#
|
2471
|
+
# Using an expired pagination token results in an `HTTP 400
|
2472
|
+
# InvalidToken` error.
|
2353
2473
|
#
|
2354
2474
|
# @option params [Integer] :limit
|
2355
2475
|
# The maximum number of replays to retrieve.
|
@@ -2406,8 +2526,15 @@ module Aws::EventBridge
|
|
2406
2526
|
# the default event bus is used.
|
2407
2527
|
#
|
2408
2528
|
# @option params [String] :next_token
|
2409
|
-
# The token returned by a previous call
|
2410
|
-
# results.
|
2529
|
+
# The token returned by a previous call, which you can use to retrieve
|
2530
|
+
# the next set of results.
|
2531
|
+
#
|
2532
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2533
|
+
# To retrieve the next page of results, make the call again using the
|
2534
|
+
# returned token. Keep all other arguments unchanged.
|
2535
|
+
#
|
2536
|
+
# Using an expired pagination token results in an `HTTP 400
|
2537
|
+
# InvalidToken` error.
|
2411
2538
|
#
|
2412
2539
|
# @option params [Integer] :limit
|
2413
2540
|
# The maximum number of results to return.
|
@@ -2461,8 +2588,15 @@ module Aws::EventBridge
|
|
2461
2588
|
# this, the default event bus is used.
|
2462
2589
|
#
|
2463
2590
|
# @option params [String] :next_token
|
2464
|
-
# The token returned by a previous call
|
2465
|
-
# results.
|
2591
|
+
# The token returned by a previous call, which you can use to retrieve
|
2592
|
+
# the next set of results.
|
2593
|
+
#
|
2594
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2595
|
+
# To retrieve the next page of results, make the call again using the
|
2596
|
+
# returned token. Keep all other arguments unchanged.
|
2597
|
+
#
|
2598
|
+
# Using an expired pagination token results in an `HTTP 400
|
2599
|
+
# InvalidToken` error.
|
2466
2600
|
#
|
2467
2601
|
# @option params [Integer] :limit
|
2468
2602
|
# The maximum number of results to return.
|
@@ -2547,8 +2681,15 @@ module Aws::EventBridge
|
|
2547
2681
|
# this, the default event bus is used.
|
2548
2682
|
#
|
2549
2683
|
# @option params [String] :next_token
|
2550
|
-
# The token returned by a previous call
|
2551
|
-
# results.
|
2684
|
+
# The token returned by a previous call, which you can use to retrieve
|
2685
|
+
# the next set of results.
|
2686
|
+
#
|
2687
|
+
# The value of `nextToken` is a unique pagination token for each page.
|
2688
|
+
# To retrieve the next page of results, make the call again using the
|
2689
|
+
# returned token. Keep all other arguments unchanged.
|
2690
|
+
#
|
2691
|
+
# Using an expired pagination token results in an `HTTP 400
|
2692
|
+
# InvalidToken` error.
|
2552
2693
|
#
|
2553
2694
|
# @option params [Integer] :limit
|
2554
2695
|
# The maximum number of results to return.
|
@@ -2661,7 +2802,7 @@ module Aws::EventBridge
|
|
2661
2802
|
# -9,223,372,036,854,775,808 and a maximum value of
|
2662
2803
|
# 9,223,372,036,854,775,807.
|
2663
2804
|
#
|
2664
|
-
# <note markdown="1"> PutEvents will only process nested JSON up to
|
2805
|
+
# <note markdown="1"> PutEvents will only process nested JSON up to 1000 levels deep.
|
2665
2806
|
#
|
2666
2807
|
# </note>
|
2667
2808
|
#
|
@@ -2772,9 +2913,8 @@ module Aws::EventBridge
|
|
2772
2913
|
|
2773
2914
|
# Running `PutPermission` permits the specified Amazon Web Services
|
2774
2915
|
# account or Amazon Web Services organization to put events to the
|
2775
|
-
# specified *event bus*. Amazon EventBridge
|
2776
|
-
#
|
2777
|
-
# your account.
|
2916
|
+
# specified *event bus*. Amazon EventBridge rules in your account are
|
2917
|
+
# triggered by these events arriving to an event bus in your account.
|
2778
2918
|
#
|
2779
2919
|
# For another account to send events to your account, that external
|
2780
2920
|
# account must have an EventBridge rule with your account's event bus
|
@@ -2944,6 +3084,10 @@ module Aws::EventBridge
|
|
2944
3084
|
# your specified limit. For more information, see [Managing Your Costs
|
2945
3085
|
# with Budgets][5].
|
2946
3086
|
#
|
3087
|
+
# To create a rule that filters for management events from Amazon Web
|
3088
|
+
# Services services, see [Receiving read-only management events from
|
3089
|
+
# Amazon Web Services services][6] in the *EventBridge User Guide*.
|
3090
|
+
#
|
2947
3091
|
#
|
2948
3092
|
#
|
2949
3093
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_DisableRule.html
|
@@ -2951,6 +3095,7 @@ module Aws::EventBridge
|
|
2951
3095
|
# [3]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_TagResource.html
|
2952
3096
|
# [4]: https://docs.aws.amazon.com/eventbridge/latest/APIReference/API_UntagResource.html
|
2953
3097
|
# [5]: https://docs.aws.amazon.com/awsaccountbilling/latest/aboutv2/budgets-managing-costs.html
|
3098
|
+
# [6]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-service-event-cloudtrail.html#eb-service-event-cloudtrail-management
|
2954
3099
|
#
|
2955
3100
|
# @option params [required, String] :name
|
2956
3101
|
# The name of the rule that you are creating or updating.
|
@@ -3622,8 +3767,7 @@ module Aws::EventBridge
|
|
3622
3767
|
end
|
3623
3768
|
|
3624
3769
|
# Removes one or more tags from the specified EventBridge resource. In
|
3625
|
-
# Amazon EventBridge
|
3626
|
-
# tagged.
|
3770
|
+
# Amazon EventBridge, rules and event buses can be tagged.
|
3627
3771
|
#
|
3628
3772
|
# @option params [required, String] :resource_arn
|
3629
3773
|
# The ARN of the EventBridge resource from which you are removing tags.
|
@@ -3764,6 +3908,17 @@ module Aws::EventBridge
|
|
3764
3908
|
# @option params [Types::UpdateConnectionAuthRequestParameters] :auth_parameters
|
3765
3909
|
# The authorization parameters to use for the connection.
|
3766
3910
|
#
|
3911
|
+
# @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
|
3912
|
+
# For connections to private resource endpoints, the parameters to use
|
3913
|
+
# for invoking the resource endpoint.
|
3914
|
+
#
|
3915
|
+
# For more information, see [Connecting to private resources][1] in the
|
3916
|
+
# <i> <i>Amazon EventBridge User Guide</i> </i>.
|
3917
|
+
#
|
3918
|
+
#
|
3919
|
+
#
|
3920
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
|
3921
|
+
#
|
3767
3922
|
# @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
3768
3923
|
#
|
3769
3924
|
# * {Types::UpdateConnectionResponse#connection_arn #connection_arn} => String
|
@@ -3841,13 +3996,23 @@ module Aws::EventBridge
|
|
3841
3996
|
# },
|
3842
3997
|
# ],
|
3843
3998
|
# },
|
3999
|
+
# connectivity_parameters: {
|
4000
|
+
# resource_parameters: { # required
|
4001
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
4002
|
+
# },
|
4003
|
+
# },
|
4004
|
+
# },
|
4005
|
+
# invocation_connectivity_parameters: {
|
4006
|
+
# resource_parameters: { # required
|
4007
|
+
# resource_configuration_arn: "ResourceConfigurationArn", # required
|
4008
|
+
# },
|
3844
4009
|
# },
|
3845
4010
|
# })
|
3846
4011
|
#
|
3847
4012
|
# @example Response structure
|
3848
4013
|
#
|
3849
4014
|
# resp.connection_arn #=> String
|
3850
|
-
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING"
|
4015
|
+
# resp.connection_state #=> String, one of "CREATING", "UPDATING", "DELETING", "AUTHORIZED", "DEAUTHORIZED", "AUTHORIZING", "DEAUTHORIZING", "ACTIVE", "FAILED_CONNECTIVITY"
|
3851
4016
|
# resp.creation_time #=> Time
|
3852
4017
|
# resp.last_modified_time #=> Time
|
3853
4018
|
# resp.last_authorized_time #=> Time
|
@@ -3999,9 +4164,12 @@ module Aws::EventBridge
|
|
3999
4164
|
# Configuration details of the Amazon SQS queue for EventBridge to use
|
4000
4165
|
# as a dead-letter queue (DLQ).
|
4001
4166
|
#
|
4002
|
-
# For more information, see [
|
4003
|
-
#
|
4004
|
-
#
|
4167
|
+
# For more information, see [Using dead-letter queues to process
|
4168
|
+
# undelivered events][1] in the *EventBridge User Guide*.
|
4169
|
+
#
|
4170
|
+
#
|
4171
|
+
#
|
4172
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
4005
4173
|
#
|
4006
4174
|
# @return [Types::UpdateEventBusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4007
4175
|
#
|
@@ -4057,7 +4225,7 @@ module Aws::EventBridge
|
|
4057
4225
|
tracer: tracer
|
4058
4226
|
)
|
4059
4227
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
4060
|
-
context[:gem_version] = '1.
|
4228
|
+
context[:gem_version] = '1.75.0'
|
4061
4229
|
Seahorse::Client::Request.new(handlers, context)
|
4062
4230
|
end
|
4063
4231
|
|