aws-sdk-eventbridge 1.84.0 → 1.86.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 +56 -9
- data/lib/aws-sdk-eventbridge/client_api.rb +12 -0
- data/lib/aws-sdk-eventbridge/types.rb +107 -3
- data/lib/aws-sdk-eventbridge.rb +1 -1
- data/sig/client.rbs +12 -0
- data/sig/resource.rbs +1 -0
- data/sig/types.rbs +11 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe9a21e1d407295a757c93c6a0925f8b52dbf8bbc95dc5ae0602eee2843ac9f8
|
4
|
+
data.tar.gz: 04cff32e05e371b4e6c53df1254c2c699f0e6c388d800f12a350e71951ecc177
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b1adfd86c8dc84984111181285d7a6cc259348014a57c814b9a689cfe757d78b096a226b5d9442538f8943512cdac85d03677e7e898713d4e39001cda5728544
|
7
|
+
data.tar.gz: 580178ac08d4fc3c7ad0bbc90c0ddb1031f2261e2bda265047ba5d53520fec9b2cc38aca767c6c7aca3fa06ddb652d809105e6aaef0f4ac270535e9b9813933d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.86.0 (2025-07-21)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.85.0 (2025-07-15)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Add customer-facing logging for the EventBridge Event Bus, enabling customers to better observe their events and extract insights about their EventBridge usage.
|
13
|
+
|
4
14
|
1.84.0 (2025-06-30)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.86.0
|
@@ -95,7 +95,7 @@ module Aws::EventBridge
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials. This can be an instance of any one of the
|
98
|
+
# Your AWS credentials used for authentication. This can be an instance of any one of the
|
99
99
|
# following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
@@ -128,18 +128,23 @@ module Aws::EventBridge
|
|
128
128
|
# locations will be searched for credentials:
|
129
129
|
#
|
130
130
|
# * `Aws.config[:credentials]`
|
131
|
+
#
|
131
132
|
# * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
|
132
133
|
# `:account_id` options.
|
133
|
-
#
|
134
|
-
#
|
134
|
+
#
|
135
|
+
# * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
|
136
|
+
# `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
|
137
|
+
#
|
135
138
|
# * `~/.aws/credentials`
|
139
|
+
#
|
136
140
|
# * `~/.aws/config`
|
141
|
+
#
|
137
142
|
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
138
143
|
# are very aggressive. Construct and pass an instance of
|
139
144
|
# `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
140
145
|
# enable retries and extended timeouts. Instance profile credential
|
141
|
-
# fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
|
142
|
-
# to true
|
146
|
+
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
+
# to `true`.
|
143
148
|
#
|
144
149
|
# @option options [required, String] :region
|
145
150
|
# The AWS region to connect to. The configured `:region` is
|
@@ -167,6 +172,11 @@ module Aws::EventBridge
|
|
167
172
|
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
168
173
|
# not retry instead of sleeping.
|
169
174
|
#
|
175
|
+
# @option options [Array<String>] :auth_scheme_preference
|
176
|
+
# A list of preferred authentication schemes to use when making a request. Supported values are:
|
177
|
+
# `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
|
178
|
+
# shared config as `auth_scheme_preference`, the value should be a comma-separated list.
|
179
|
+
#
|
170
180
|
# @option options [Boolean] :client_side_monitoring (false)
|
171
181
|
# When `true`, client-side metrics will be collected for all API requests from
|
172
182
|
# this client.
|
@@ -253,8 +263,8 @@ module Aws::EventBridge
|
|
253
263
|
# 4 times. Used in `standard` and `adaptive` retry modes.
|
254
264
|
#
|
255
265
|
# @option options [String] :profile ("default")
|
256
|
-
# Used when loading credentials from the shared credentials file
|
257
|
-
#
|
266
|
+
# Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
|
267
|
+
# When not specified, 'default' is used.
|
258
268
|
#
|
259
269
|
# @option options [String] :request_checksum_calculation ("when_supported")
|
260
270
|
# Determines when a checksum will be calculated for request payloads. Values are:
|
@@ -374,7 +384,7 @@ module Aws::EventBridge
|
|
374
384
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
375
385
|
#
|
376
386
|
# @option options [Aws::TokenProvider] :token_provider
|
377
|
-
#
|
387
|
+
# Your Bearer token used for authentication. This can be an instance of any one of the
|
378
388
|
# following classes:
|
379
389
|
#
|
380
390
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
@@ -1023,6 +1033,16 @@ module Aws::EventBridge
|
|
1023
1033
|
#
|
1024
1034
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1025
1035
|
#
|
1036
|
+
# @option params [Types::LogConfig] :log_config
|
1037
|
+
# The logging configuration settings for the event bus.
|
1038
|
+
#
|
1039
|
+
# For more information, see [Configuring logs for event buses][1] in the
|
1040
|
+
# *EventBridge User Guide*.
|
1041
|
+
#
|
1042
|
+
#
|
1043
|
+
#
|
1044
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
1045
|
+
#
|
1026
1046
|
# @option params [Array<Types::Tag>] :tags
|
1027
1047
|
# Tags to associate with the event bus.
|
1028
1048
|
#
|
@@ -1032,6 +1052,7 @@ module Aws::EventBridge
|
|
1032
1052
|
# * {Types::CreateEventBusResponse#description #description} => String
|
1033
1053
|
# * {Types::CreateEventBusResponse#kms_key_identifier #kms_key_identifier} => String
|
1034
1054
|
# * {Types::CreateEventBusResponse#dead_letter_config #dead_letter_config} => Types::DeadLetterConfig
|
1055
|
+
# * {Types::CreateEventBusResponse#log_config #log_config} => Types::LogConfig
|
1035
1056
|
#
|
1036
1057
|
# @example Request syntax with placeholder values
|
1037
1058
|
#
|
@@ -1043,6 +1064,10 @@ module Aws::EventBridge
|
|
1043
1064
|
# dead_letter_config: {
|
1044
1065
|
# arn: "ResourceArn",
|
1045
1066
|
# },
|
1067
|
+
# log_config: {
|
1068
|
+
# include_detail: "NONE", # accepts NONE, FULL
|
1069
|
+
# level: "OFF", # accepts OFF, ERROR, INFO, TRACE
|
1070
|
+
# },
|
1046
1071
|
# tags: [
|
1047
1072
|
# {
|
1048
1073
|
# key: "TagKey", # required
|
@@ -1057,6 +1082,8 @@ module Aws::EventBridge
|
|
1057
1082
|
# resp.description #=> String
|
1058
1083
|
# resp.kms_key_identifier #=> String
|
1059
1084
|
# resp.dead_letter_config.arn #=> String
|
1085
|
+
# resp.log_config.include_detail #=> String, one of "NONE", "FULL"
|
1086
|
+
# resp.log_config.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
|
1060
1087
|
#
|
1061
1088
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateEventBus AWS API Documentation
|
1062
1089
|
#
|
@@ -1711,6 +1738,7 @@ module Aws::EventBridge
|
|
1711
1738
|
# * {Types::DescribeEventBusResponse#kms_key_identifier #kms_key_identifier} => String
|
1712
1739
|
# * {Types::DescribeEventBusResponse#dead_letter_config #dead_letter_config} => Types::DeadLetterConfig
|
1713
1740
|
# * {Types::DescribeEventBusResponse#policy #policy} => String
|
1741
|
+
# * {Types::DescribeEventBusResponse#log_config #log_config} => Types::LogConfig
|
1714
1742
|
# * {Types::DescribeEventBusResponse#creation_time #creation_time} => Time
|
1715
1743
|
# * {Types::DescribeEventBusResponse#last_modified_time #last_modified_time} => Time
|
1716
1744
|
#
|
@@ -1728,6 +1756,8 @@ module Aws::EventBridge
|
|
1728
1756
|
# resp.kms_key_identifier #=> String
|
1729
1757
|
# resp.dead_letter_config.arn #=> String
|
1730
1758
|
# resp.policy #=> String
|
1759
|
+
# resp.log_config.include_detail #=> String, one of "NONE", "FULL"
|
1760
|
+
# resp.log_config.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
|
1731
1761
|
# resp.creation_time #=> Time
|
1732
1762
|
# resp.last_modified_time #=> Time
|
1733
1763
|
#
|
@@ -4259,6 +4289,16 @@ module Aws::EventBridge
|
|
4259
4289
|
#
|
4260
4290
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
4261
4291
|
#
|
4292
|
+
# @option params [Types::LogConfig] :log_config
|
4293
|
+
# The logging configuration settings for the event bus.
|
4294
|
+
#
|
4295
|
+
# For more information, see [Configuring logs for event buses][1] in the
|
4296
|
+
# *EventBridge User Guide*.
|
4297
|
+
#
|
4298
|
+
#
|
4299
|
+
#
|
4300
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
4301
|
+
#
|
4262
4302
|
# @return [Types::UpdateEventBusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
4263
4303
|
#
|
4264
4304
|
# * {Types::UpdateEventBusResponse#arn #arn} => String
|
@@ -4266,6 +4306,7 @@ module Aws::EventBridge
|
|
4266
4306
|
# * {Types::UpdateEventBusResponse#kms_key_identifier #kms_key_identifier} => String
|
4267
4307
|
# * {Types::UpdateEventBusResponse#description #description} => String
|
4268
4308
|
# * {Types::UpdateEventBusResponse#dead_letter_config #dead_letter_config} => Types::DeadLetterConfig
|
4309
|
+
# * {Types::UpdateEventBusResponse#log_config #log_config} => Types::LogConfig
|
4269
4310
|
#
|
4270
4311
|
# @example Request syntax with placeholder values
|
4271
4312
|
#
|
@@ -4276,6 +4317,10 @@ module Aws::EventBridge
|
|
4276
4317
|
# dead_letter_config: {
|
4277
4318
|
# arn: "ResourceArn",
|
4278
4319
|
# },
|
4320
|
+
# log_config: {
|
4321
|
+
# include_detail: "NONE", # accepts NONE, FULL
|
4322
|
+
# level: "OFF", # accepts OFF, ERROR, INFO, TRACE
|
4323
|
+
# },
|
4279
4324
|
# })
|
4280
4325
|
#
|
4281
4326
|
# @example Response structure
|
@@ -4285,6 +4330,8 @@ module Aws::EventBridge
|
|
4285
4330
|
# resp.kms_key_identifier #=> String
|
4286
4331
|
# resp.description #=> String
|
4287
4332
|
# resp.dead_letter_config.arn #=> String
|
4333
|
+
# resp.log_config.include_detail #=> String, one of "NONE", "FULL"
|
4334
|
+
# resp.log_config.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
|
4288
4335
|
#
|
4289
4336
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBus AWS API Documentation
|
4290
4337
|
#
|
@@ -4313,7 +4360,7 @@ module Aws::EventBridge
|
|
4313
4360
|
tracer: tracer
|
4314
4361
|
)
|
4315
4362
|
context[:gem_name] = 'aws-sdk-eventbridge'
|
4316
|
-
context[:gem_version] = '1.
|
4363
|
+
context[:gem_version] = '1.86.0'
|
4317
4364
|
Seahorse::Client::Request.new(handlers, context)
|
4318
4365
|
end
|
4319
4366
|
|
@@ -174,6 +174,7 @@ module Aws::EventBridge
|
|
174
174
|
HttpsEndpoint = Shapes::StringShape.new(name: 'HttpsEndpoint')
|
175
175
|
IamRoleArn = Shapes::StringShape.new(name: 'IamRoleArn')
|
176
176
|
IllegalStatusException = Shapes::StructureShape.new(name: 'IllegalStatusException')
|
177
|
+
IncludeDetail = Shapes::StringShape.new(name: 'IncludeDetail')
|
177
178
|
InputTransformer = Shapes::StructureShape.new(name: 'InputTransformer')
|
178
179
|
InputTransformerPathKey = Shapes::StringShape.new(name: 'InputTransformerPathKey')
|
179
180
|
Integer = Shapes::IntegerShape.new(name: 'Integer')
|
@@ -183,6 +184,7 @@ module Aws::EventBridge
|
|
183
184
|
KinesisParameters = Shapes::StructureShape.new(name: 'KinesisParameters')
|
184
185
|
KmsKeyIdentifier = Shapes::StringShape.new(name: 'KmsKeyIdentifier')
|
185
186
|
LaunchType = Shapes::StringShape.new(name: 'LaunchType')
|
187
|
+
Level = Shapes::StringShape.new(name: 'Level')
|
186
188
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
187
189
|
LimitMax100 = Shapes::IntegerShape.new(name: 'LimitMax100')
|
188
190
|
LimitMin1 = Shapes::IntegerShape.new(name: 'LimitMin1')
|
@@ -212,6 +214,7 @@ module Aws::EventBridge
|
|
212
214
|
ListTagsForResourceResponse = Shapes::StructureShape.new(name: 'ListTagsForResourceResponse')
|
213
215
|
ListTargetsByRuleRequest = Shapes::StructureShape.new(name: 'ListTargetsByRuleRequest')
|
214
216
|
ListTargetsByRuleResponse = Shapes::StructureShape.new(name: 'ListTargetsByRuleResponse')
|
217
|
+
LogConfig = Shapes::StructureShape.new(name: 'LogConfig')
|
215
218
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
216
219
|
ManagedBy = Shapes::StringShape.new(name: 'ManagedBy')
|
217
220
|
ManagedRuleException = Shapes::StructureShape.new(name: 'ManagedRuleException')
|
@@ -593,6 +596,7 @@ module Aws::EventBridge
|
|
593
596
|
CreateEventBusRequest.add_member(:description, Shapes::ShapeRef.new(shape: EventBusDescription, location_name: "Description"))
|
594
597
|
CreateEventBusRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
595
598
|
CreateEventBusRequest.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
|
599
|
+
CreateEventBusRequest.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
|
596
600
|
CreateEventBusRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "Tags"))
|
597
601
|
CreateEventBusRequest.struct_class = Types::CreateEventBusRequest
|
598
602
|
|
@@ -600,6 +604,7 @@ module Aws::EventBridge
|
|
600
604
|
CreateEventBusResponse.add_member(:description, Shapes::ShapeRef.new(shape: EventBusDescription, location_name: "Description"))
|
601
605
|
CreateEventBusResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
602
606
|
CreateEventBusResponse.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
|
607
|
+
CreateEventBusResponse.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
|
603
608
|
CreateEventBusResponse.struct_class = Types::CreateEventBusResponse
|
604
609
|
|
605
610
|
CreatePartnerEventSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: EventSourceName, required: true, location_name: "Name"))
|
@@ -747,6 +752,7 @@ module Aws::EventBridge
|
|
747
752
|
DescribeEventBusResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
748
753
|
DescribeEventBusResponse.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
|
749
754
|
DescribeEventBusResponse.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "Policy"))
|
755
|
+
DescribeEventBusResponse.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
|
750
756
|
DescribeEventBusResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
|
751
757
|
DescribeEventBusResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
|
752
758
|
DescribeEventBusResponse.struct_class = Types::DescribeEventBusResponse
|
@@ -1023,6 +1029,10 @@ module Aws::EventBridge
|
|
1023
1029
|
ListTargetsByRuleResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1024
1030
|
ListTargetsByRuleResponse.struct_class = Types::ListTargetsByRuleResponse
|
1025
1031
|
|
1032
|
+
LogConfig.add_member(:include_detail, Shapes::ShapeRef.new(shape: IncludeDetail, location_name: "IncludeDetail"))
|
1033
|
+
LogConfig.add_member(:level, Shapes::ShapeRef.new(shape: Level, location_name: "Level"))
|
1034
|
+
LogConfig.struct_class = Types::LogConfig
|
1035
|
+
|
1026
1036
|
ManagedRuleException.struct_class = Types::ManagedRuleException
|
1027
1037
|
|
1028
1038
|
NetworkConfiguration.add_member(:awsvpc_configuration, Shapes::ShapeRef.new(shape: AwsVpcConfiguration, location_name: "awsvpcConfiguration"))
|
@@ -1420,6 +1430,7 @@ module Aws::EventBridge
|
|
1420
1430
|
UpdateEventBusRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
1421
1431
|
UpdateEventBusRequest.add_member(:description, Shapes::ShapeRef.new(shape: EventBusDescription, location_name: "Description"))
|
1422
1432
|
UpdateEventBusRequest.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
|
1433
|
+
UpdateEventBusRequest.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
|
1423
1434
|
UpdateEventBusRequest.struct_class = Types::UpdateEventBusRequest
|
1424
1435
|
|
1425
1436
|
UpdateEventBusResponse.add_member(:arn, Shapes::ShapeRef.new(shape: String, location_name: "Arn"))
|
@@ -1427,6 +1438,7 @@ module Aws::EventBridge
|
|
1427
1438
|
UpdateEventBusResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
|
1428
1439
|
UpdateEventBusResponse.add_member(:description, Shapes::ShapeRef.new(shape: EventBusDescription, location_name: "Description"))
|
1429
1440
|
UpdateEventBusResponse.add_member(:dead_letter_config, Shapes::ShapeRef.new(shape: DeadLetterConfig, location_name: "DeadLetterConfig"))
|
1441
|
+
UpdateEventBusResponse.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
|
1430
1442
|
UpdateEventBusResponse.struct_class = Types::UpdateEventBusResponse
|
1431
1443
|
|
1432
1444
|
|
@@ -1232,6 +1232,17 @@ module Aws::EventBridge
|
|
1232
1232
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1233
1233
|
# @return [Types::DeadLetterConfig]
|
1234
1234
|
#
|
1235
|
+
# @!attribute [rw] log_config
|
1236
|
+
# The logging configuration settings for the event bus.
|
1237
|
+
#
|
1238
|
+
# For more information, see [Configuring logs for event buses][1] in
|
1239
|
+
# the *EventBridge User Guide*.
|
1240
|
+
#
|
1241
|
+
#
|
1242
|
+
#
|
1243
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
1244
|
+
# @return [Types::LogConfig]
|
1245
|
+
#
|
1235
1246
|
# @!attribute [rw] tags
|
1236
1247
|
# Tags to associate with the event bus.
|
1237
1248
|
# @return [Array<Types::Tag>]
|
@@ -1244,6 +1255,7 @@ module Aws::EventBridge
|
|
1244
1255
|
:description,
|
1245
1256
|
:kms_key_identifier,
|
1246
1257
|
:dead_letter_config,
|
1258
|
+
:log_config,
|
1247
1259
|
:tags)
|
1248
1260
|
SENSITIVE = []
|
1249
1261
|
include Aws::Structure
|
@@ -1281,13 +1293,25 @@ module Aws::EventBridge
|
|
1281
1293
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
1282
1294
|
# @return [Types::DeadLetterConfig]
|
1283
1295
|
#
|
1296
|
+
# @!attribute [rw] log_config
|
1297
|
+
# The logging configuration settings for the event bus.
|
1298
|
+
#
|
1299
|
+
# For more information, see [Configuring logs for event buses][1] in
|
1300
|
+
# the *EventBridge User Guide*.
|
1301
|
+
#
|
1302
|
+
#
|
1303
|
+
#
|
1304
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
1305
|
+
# @return [Types::LogConfig]
|
1306
|
+
#
|
1284
1307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateEventBusResponse AWS API Documentation
|
1285
1308
|
#
|
1286
1309
|
class CreateEventBusResponse < Struct.new(
|
1287
1310
|
:event_bus_arn,
|
1288
1311
|
:description,
|
1289
1312
|
:kms_key_identifier,
|
1290
|
-
:dead_letter_config
|
1313
|
+
:dead_letter_config,
|
1314
|
+
:log_config)
|
1291
1315
|
SENSITIVE = []
|
1292
1316
|
include Aws::Structure
|
1293
1317
|
end
|
@@ -2030,6 +2054,17 @@ module Aws::EventBridge
|
|
2030
2054
|
# account.
|
2031
2055
|
# @return [String]
|
2032
2056
|
#
|
2057
|
+
# @!attribute [rw] log_config
|
2058
|
+
# The logging configuration settings for the event bus.
|
2059
|
+
#
|
2060
|
+
# For more information, see [Configuring logs for event buses][1] in
|
2061
|
+
# the *EventBridge User Guide*.
|
2062
|
+
#
|
2063
|
+
#
|
2064
|
+
#
|
2065
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
2066
|
+
# @return [Types::LogConfig]
|
2067
|
+
#
|
2033
2068
|
# @!attribute [rw] creation_time
|
2034
2069
|
# The time the event bus was created.
|
2035
2070
|
# @return [Time]
|
@@ -2047,6 +2082,7 @@ module Aws::EventBridge
|
|
2047
2082
|
:kms_key_identifier,
|
2048
2083
|
:dead_letter_config,
|
2049
2084
|
:policy,
|
2085
|
+
:log_config,
|
2050
2086
|
:creation_time,
|
2051
2087
|
:last_modified_time)
|
2052
2088
|
SENSITIVE = []
|
@@ -3621,6 +3657,50 @@ module Aws::EventBridge
|
|
3621
3657
|
include Aws::Structure
|
3622
3658
|
end
|
3623
3659
|
|
3660
|
+
# The logging configuration settings for the event bus.
|
3661
|
+
#
|
3662
|
+
# For more information, see [Configuring logs for event buses][1] in the
|
3663
|
+
# *EventBridge User Guide*.
|
3664
|
+
#
|
3665
|
+
#
|
3666
|
+
#
|
3667
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
3668
|
+
#
|
3669
|
+
# @!attribute [rw] include_detail
|
3670
|
+
# Whether EventBridge include detailed event information in the
|
3671
|
+
# records it generates. Detailed data can be useful for
|
3672
|
+
# troubleshooting and debugging. This information includes details of
|
3673
|
+
# the event itself, as well as target details.
|
3674
|
+
#
|
3675
|
+
# For more information, see [Including detail data in event bus
|
3676
|
+
# logs][1] in the *EventBridge User Guide*.
|
3677
|
+
#
|
3678
|
+
#
|
3679
|
+
#
|
3680
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html#eb-event-logs-data
|
3681
|
+
# @return [String]
|
3682
|
+
#
|
3683
|
+
# @!attribute [rw] level
|
3684
|
+
# The level of logging detail to include. This applies to all log
|
3685
|
+
# destinations for the event bus.
|
3686
|
+
#
|
3687
|
+
# For more information, see [Specifying event bus log level][1] in the
|
3688
|
+
# *EventBridge User Guide*.
|
3689
|
+
#
|
3690
|
+
#
|
3691
|
+
#
|
3692
|
+
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html#eb-event-bus-logs-level
|
3693
|
+
# @return [String]
|
3694
|
+
#
|
3695
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/LogConfig AWS API Documentation
|
3696
|
+
#
|
3697
|
+
class LogConfig < Struct.new(
|
3698
|
+
:include_detail,
|
3699
|
+
:level)
|
3700
|
+
SENSITIVE = []
|
3701
|
+
include Aws::Structure
|
3702
|
+
end
|
3703
|
+
|
3624
3704
|
# This rule was created by an Amazon Web Services service on behalf of
|
3625
3705
|
# your account. It is managed by that service. If you see this error in
|
3626
3706
|
# response to `DeleteRule` or `RemoveTargets`, you can use the `Force`
|
@@ -5817,13 +5897,25 @@ module Aws::EventBridge
|
|
5817
5897
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
5818
5898
|
# @return [Types::DeadLetterConfig]
|
5819
5899
|
#
|
5900
|
+
# @!attribute [rw] log_config
|
5901
|
+
# The logging configuration settings for the event bus.
|
5902
|
+
#
|
5903
|
+
# For more information, see [Configuring logs for event buses][1] in
|
5904
|
+
# the *EventBridge User Guide*.
|
5905
|
+
#
|
5906
|
+
#
|
5907
|
+
#
|
5908
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
5909
|
+
# @return [Types::LogConfig]
|
5910
|
+
#
|
5820
5911
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusRequest AWS API Documentation
|
5821
5912
|
#
|
5822
5913
|
class UpdateEventBusRequest < Struct.new(
|
5823
5914
|
:name,
|
5824
5915
|
:kms_key_identifier,
|
5825
5916
|
:description,
|
5826
|
-
:dead_letter_config
|
5917
|
+
:dead_letter_config,
|
5918
|
+
:log_config)
|
5827
5919
|
SENSITIVE = []
|
5828
5920
|
include Aws::Structure
|
5829
5921
|
end
|
@@ -5864,6 +5956,17 @@ module Aws::EventBridge
|
|
5864
5956
|
# [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-rule-event-delivery.html#eb-rule-dlq
|
5865
5957
|
# @return [Types::DeadLetterConfig]
|
5866
5958
|
#
|
5959
|
+
# @!attribute [rw] log_config
|
5960
|
+
# The logging configuration settings for the event bus.
|
5961
|
+
#
|
5962
|
+
# For more information, see [Configuring logs for event buses][1] in
|
5963
|
+
# the *EventBridge User Guide*.
|
5964
|
+
#
|
5965
|
+
#
|
5966
|
+
#
|
5967
|
+
# [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
|
5968
|
+
# @return [Types::LogConfig]
|
5969
|
+
#
|
5867
5970
|
# @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusResponse AWS API Documentation
|
5868
5971
|
#
|
5869
5972
|
class UpdateEventBusResponse < Struct.new(
|
@@ -5871,7 +5974,8 @@ module Aws::EventBridge
|
|
5871
5974
|
:name,
|
5872
5975
|
:kms_key_identifier,
|
5873
5976
|
:description,
|
5874
|
-
:dead_letter_config
|
5977
|
+
:dead_letter_config,
|
5978
|
+
:log_config)
|
5875
5979
|
SENSITIVE = []
|
5876
5980
|
include Aws::Structure
|
5877
5981
|
end
|
data/lib/aws-sdk-eventbridge.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
@@ -264,6 +265,7 @@ module Aws
|
|
264
265
|
def description: () -> ::String
|
265
266
|
def kms_key_identifier: () -> ::String
|
266
267
|
def dead_letter_config: () -> Types::DeadLetterConfig
|
268
|
+
def log_config: () -> Types::LogConfig
|
267
269
|
end
|
268
270
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#create_event_bus-instance_method
|
269
271
|
def create_event_bus: (
|
@@ -274,6 +276,10 @@ module Aws
|
|
274
276
|
?dead_letter_config: {
|
275
277
|
arn: ::String?
|
276
278
|
},
|
279
|
+
?log_config: {
|
280
|
+
include_detail: ("NONE" | "FULL")?,
|
281
|
+
level: ("OFF" | "ERROR" | "INFO" | "TRACE")?
|
282
|
+
},
|
277
283
|
?tags: Array[
|
278
284
|
{
|
279
285
|
key: ::String,
|
@@ -469,6 +475,7 @@ module Aws
|
|
469
475
|
def kms_key_identifier: () -> ::String
|
470
476
|
def dead_letter_config: () -> Types::DeadLetterConfig
|
471
477
|
def policy: () -> ::String
|
478
|
+
def log_config: () -> Types::LogConfig
|
472
479
|
def creation_time: () -> ::Time
|
473
480
|
def last_modified_time: () -> ::Time
|
474
481
|
end
|
@@ -1187,6 +1194,7 @@ module Aws
|
|
1187
1194
|
def kms_key_identifier: () -> ::String
|
1188
1195
|
def description: () -> ::String
|
1189
1196
|
def dead_letter_config: () -> Types::DeadLetterConfig
|
1197
|
+
def log_config: () -> Types::LogConfig
|
1190
1198
|
end
|
1191
1199
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#update_event_bus-instance_method
|
1192
1200
|
def update_event_bus: (
|
@@ -1195,6 +1203,10 @@ module Aws
|
|
1195
1203
|
?description: ::String,
|
1196
1204
|
?dead_letter_config: {
|
1197
1205
|
arn: ::String?
|
1206
|
+
},
|
1207
|
+
?log_config: {
|
1208
|
+
include_detail: ("NONE" | "FULL")?,
|
1209
|
+
level: ("OFF" | "ERROR" | "INFO" | "TRACE")?
|
1198
1210
|
}
|
1199
1211
|
) -> _UpdateEventBusResponseSuccess
|
1200
1212
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateEventBusResponseSuccess
|
data/sig/resource.rbs
CHANGED
@@ -18,6 +18,7 @@ module Aws
|
|
18
18
|
?account_id: String,
|
19
19
|
?active_endpoint_cache: bool,
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
21
|
+
?auth_scheme_preference: Array[String],
|
21
22
|
?client_side_monitoring: bool,
|
22
23
|
?client_side_monitoring_client_id: String,
|
23
24
|
?client_side_monitoring_host: String,
|
data/sig/types.rbs
CHANGED
@@ -298,6 +298,7 @@ module Aws::EventBridge
|
|
298
298
|
attr_accessor description: ::String
|
299
299
|
attr_accessor kms_key_identifier: ::String
|
300
300
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
301
|
+
attr_accessor log_config: Types::LogConfig
|
301
302
|
attr_accessor tags: ::Array[Types::Tag]
|
302
303
|
SENSITIVE: []
|
303
304
|
end
|
@@ -307,6 +308,7 @@ module Aws::EventBridge
|
|
307
308
|
attr_accessor description: ::String
|
308
309
|
attr_accessor kms_key_identifier: ::String
|
309
310
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
311
|
+
attr_accessor log_config: Types::LogConfig
|
310
312
|
SENSITIVE: []
|
311
313
|
end
|
312
314
|
|
@@ -509,6 +511,7 @@ module Aws::EventBridge
|
|
509
511
|
attr_accessor kms_key_identifier: ::String
|
510
512
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
511
513
|
attr_accessor policy: ::String
|
514
|
+
attr_accessor log_config: Types::LogConfig
|
512
515
|
attr_accessor creation_time: ::Time
|
513
516
|
attr_accessor last_modified_time: ::Time
|
514
517
|
SENSITIVE: []
|
@@ -868,6 +871,12 @@ module Aws::EventBridge
|
|
868
871
|
SENSITIVE: []
|
869
872
|
end
|
870
873
|
|
874
|
+
class LogConfig
|
875
|
+
attr_accessor include_detail: ("NONE" | "FULL")
|
876
|
+
attr_accessor level: ("OFF" | "ERROR" | "INFO" | "TRACE")
|
877
|
+
SENSITIVE: []
|
878
|
+
end
|
879
|
+
|
871
880
|
class ManagedRuleException < Aws::EmptyStructure
|
872
881
|
end
|
873
882
|
|
@@ -1336,6 +1345,7 @@ module Aws::EventBridge
|
|
1336
1345
|
attr_accessor kms_key_identifier: ::String
|
1337
1346
|
attr_accessor description: ::String
|
1338
1347
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
1348
|
+
attr_accessor log_config: Types::LogConfig
|
1339
1349
|
SENSITIVE: []
|
1340
1350
|
end
|
1341
1351
|
|
@@ -1345,6 +1355,7 @@ module Aws::EventBridge
|
|
1345
1355
|
attr_accessor kms_key_identifier: ::String
|
1346
1356
|
attr_accessor description: ::String
|
1347
1357
|
attr_accessor dead_letter_config: Types::DeadLetterConfig
|
1358
|
+
attr_accessor log_config: Types::LogConfig
|
1348
1359
|
SENSITIVE: []
|
1349
1360
|
end
|
1350
1361
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-eventbridge
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.86.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: '3'
|
19
19
|
- - ">="
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: 3.
|
21
|
+
version: 3.227.0
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: '3'
|
29
29
|
- - ">="
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: 3.
|
31
|
+
version: 3.227.0
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: aws-sigv4
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|