aws-sdk-eventbridge 1.104.0 → 1.105.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 970c9fc50ee01afacf3e59011052c28c8c5a18bcc6fc77efc733f69dcd6219de
4
- data.tar.gz: 763607a29e1dd40a76e4a0ba35c73c99a7b9928ea1148591463634c231bced2c
3
+ metadata.gz: 41f7430a5282a4e8eb56e73798a90f77fa0459c167421960e2364897435f2eb8
4
+ data.tar.gz: df8375f75fe546a87adc1d58348c9cc7af03638ecb0e555ad7efa713bcb0453b
5
5
  SHA512:
6
- metadata.gz: ef35e2ca810bf765b17e93f7c8084c8e793aefb8374a10d0ff714d3b1958d4d1ad0226ab78337f5473f5576d55264768d58f4c75bbf947d0e36633158beabc60
7
- data.tar.gz: 96880dbad692625e537cbb9052e440735726c20b884a9b4a1b69910757aa282821eae756e88e5dc1e14c33c2c2bf6d0ddee6d1f3c9dd04f9c5a1358b0cdb9b98
6
+ metadata.gz: 60e6e35debd673a1560524e05389e2904f0f0ec1962fe06df2f08fea9fbc7b63e2809ea26d72c0d2afc180c8324178aa86f958276c2a40ba3d275fcfda4b744c
7
+ data.tar.gz: 27e21afde4ee680bd8d9b753edf13705a613208a71d9cc52795a334e0d98c0d3562e556d34917dd11b6ffd09c7ed683a28b023237ffac7430d9e07f8f4ba8f3c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.105.0 (2026-09-24)
5
+ ------------------
6
+
7
+ * Feature - Adds a ManagedBy field to the DescribeEventBus and ListEventBuses responses, identifying the AWS service that created an event bus on your behalf.
8
+
4
9
  1.104.0 (2026-09-11)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.104.0
1
+ 1.105.0
@@ -1036,7 +1036,7 @@ module Aws::EventBridge
1036
1036
  #
1037
1037
  #
1038
1038
  #
1039
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
1039
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
1040
1040
  #
1041
1041
  # @option params [Array<Types::Tag>] :tags
1042
1042
  # Tags to associate with the event bus.
@@ -1736,6 +1736,7 @@ module Aws::EventBridge
1736
1736
  # * {Types::DescribeEventBusResponse#log_config #log_config} => Types::LogConfig
1737
1737
  # * {Types::DescribeEventBusResponse#creation_time #creation_time} => Time
1738
1738
  # * {Types::DescribeEventBusResponse#last_modified_time #last_modified_time} => Time
1739
+ # * {Types::DescribeEventBusResponse#managed_by #managed_by} => String
1739
1740
  #
1740
1741
  # @example Request syntax with placeholder values
1741
1742
  #
@@ -1755,6 +1756,7 @@ module Aws::EventBridge
1755
1756
  # resp.log_config.level #=> String, one of "OFF", "ERROR", "INFO", "TRACE"
1756
1757
  # resp.creation_time #=> Time
1757
1758
  # resp.last_modified_time #=> Time
1759
+ # resp.managed_by #=> String
1758
1760
  #
1759
1761
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeEventBus AWS API Documentation
1760
1762
  #
@@ -2330,6 +2332,7 @@ module Aws::EventBridge
2330
2332
  # resp.event_buses[0].policy #=> String
2331
2333
  # resp.event_buses[0].creation_time #=> Time
2332
2334
  # resp.event_buses[0].last_modified_time #=> Time
2335
+ # resp.event_buses[0].managed_by #=> String
2333
2336
  # resp.next_token #=> String
2334
2337
  #
2335
2338
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ListEventBuses AWS API Documentation
@@ -2857,10 +2860,10 @@ module Aws::EventBridge
2857
2860
  # to rules.
2858
2861
  #
2859
2862
  # You can batch multiple event entries into one request for efficiency.
2860
- # However, the total entry size must be less than 256KB. You can
2861
- # calculate the entry size before you send the events. For more
2862
- # information, see [Calculating PutEvents event entry size][1] in the
2863
- # <i> <i>Amazon EventBridge User Guide</i> </i>.
2863
+ # However, the total entry size must be less than 1MB. You can calculate
2864
+ # the entry size before you send the events. For more information, see
2865
+ # [Calculating PutEvents event entry size][1] in the <i> <i>Amazon
2866
+ # EventBridge User Guide</i> </i>.
2864
2867
  #
2865
2868
  # PutEvents accepts the data in JSON format. For the JSON number
2866
2869
  # (integer) data type, the constraints are: a minimum value of
@@ -4292,7 +4295,7 @@ module Aws::EventBridge
4292
4295
  #
4293
4296
  #
4294
4297
  #
4295
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
4298
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
4296
4299
  #
4297
4300
  # @return [Types::UpdateEventBusResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4298
4301
  #
@@ -4355,7 +4358,7 @@ module Aws::EventBridge
4355
4358
  tracer: tracer
4356
4359
  )
4357
4360
  context[:gem_name] = 'aws-sdk-eventbridge'
4358
- context[:gem_version] = '1.104.0'
4361
+ context[:gem_version] = '1.105.0'
4359
4362
  Seahorse::Client::Request.new(handlers, context)
4360
4363
  end
4361
4364
 
@@ -755,6 +755,7 @@ module Aws::EventBridge
755
755
  DescribeEventBusResponse.add_member(:log_config, Shapes::ShapeRef.new(shape: LogConfig, location_name: "LogConfig"))
756
756
  DescribeEventBusResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
757
757
  DescribeEventBusResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
758
+ DescribeEventBusResponse.add_member(:managed_by, Shapes::ShapeRef.new(shape: ManagedBy, location_name: "ManagedBy"))
758
759
  DescribeEventBusResponse.struct_class = Types::DescribeEventBusResponse
759
760
 
760
761
  DescribeEventSourceRequest.add_member(:name, Shapes::ShapeRef.new(shape: EventSourceName, required: true, location_name: "Name"))
@@ -860,6 +861,7 @@ module Aws::EventBridge
860
861
  EventBus.add_member(:policy, Shapes::ShapeRef.new(shape: String, location_name: "Policy"))
861
862
  EventBus.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
862
863
  EventBus.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
864
+ EventBus.add_member(:managed_by, Shapes::ShapeRef.new(shape: ManagedBy, location_name: "ManagedBy"))
863
865
  EventBus.struct_class = Types::EventBus
864
866
 
865
867
  EventBusList.member = Shapes::ShapeRef.new(shape: EventBus)
@@ -1240,7 +1240,7 @@ module Aws::EventBridge
1240
1240
  #
1241
1241
  #
1242
1242
  #
1243
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
1243
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
1244
1244
  # @return [Types::LogConfig]
1245
1245
  #
1246
1246
  # @!attribute [rw] tags
@@ -1301,7 +1301,7 @@ module Aws::EventBridge
1301
1301
  #
1302
1302
  #
1303
1303
  #
1304
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
1304
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
1305
1305
  # @return [Types::LogConfig]
1306
1306
  #
1307
1307
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateEventBusResponse AWS API Documentation
@@ -2062,7 +2062,7 @@ module Aws::EventBridge
2062
2062
  #
2063
2063
  #
2064
2064
  #
2065
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
2065
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
2066
2066
  # @return [Types::LogConfig]
2067
2067
  #
2068
2068
  # @!attribute [rw] creation_time
@@ -2073,6 +2073,12 @@ module Aws::EventBridge
2073
2073
  # The time the event bus was last modified.
2074
2074
  # @return [Time]
2075
2075
  #
2076
+ # @!attribute [rw] managed_by
2077
+ # If the event bus was created on behalf of your account by an Amazon
2078
+ # Web Services service, this field displays the principal name of the
2079
+ # service that created the event bus.
2080
+ # @return [String]
2081
+ #
2076
2082
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeEventBusResponse AWS API Documentation
2077
2083
  #
2078
2084
  class DescribeEventBusResponse < Struct.new(
@@ -2084,7 +2090,8 @@ module Aws::EventBridge
2084
2090
  :policy,
2085
2091
  :log_config,
2086
2092
  :creation_time,
2087
- :last_modified_time)
2093
+ :last_modified_time,
2094
+ :managed_by)
2088
2095
  SENSITIVE = []
2089
2096
  include Aws::Structure
2090
2097
  end
@@ -2648,6 +2655,12 @@ module Aws::EventBridge
2648
2655
  # The time the event bus was last modified.
2649
2656
  # @return [Time]
2650
2657
  #
2658
+ # @!attribute [rw] managed_by
2659
+ # If the event bus was created on behalf of your account by an Amazon
2660
+ # Web Services service, this field displays the principal name of the
2661
+ # service that created the event bus.
2662
+ # @return [String]
2663
+ #
2651
2664
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/EventBus AWS API Documentation
2652
2665
  #
2653
2666
  class EventBus < Struct.new(
@@ -2656,7 +2669,8 @@ module Aws::EventBridge
2656
2669
  :description,
2657
2670
  :policy,
2658
2671
  :creation_time,
2659
- :last_modified_time)
2672
+ :last_modified_time,
2673
+ :managed_by)
2660
2674
  SENSITIVE = []
2661
2675
  include Aws::Structure
2662
2676
  end
@@ -3664,7 +3678,7 @@ module Aws::EventBridge
3664
3678
  #
3665
3679
  #
3666
3680
  #
3667
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
3681
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
3668
3682
  #
3669
3683
  # @!attribute [rw] include_detail
3670
3684
  # Whether EventBridge include detailed event information in the
@@ -4993,11 +5007,11 @@ module Aws::EventBridge
4993
5007
  include Aws::Structure
4994
5008
  end
4995
5009
 
4996
- # This structure includes the custom parameter to be used when the
4997
- # target is an SQS FIFO queue.
5010
+ # The custom parameters for EventBridge to use for a target that is an
5011
+ # Amazon SQS fair or FIFO queue.
4998
5012
  #
4999
5013
  # @!attribute [rw] message_group_id
5000
- # The FIFO message group ID to use as the target.
5014
+ # The ID of the message group to use as the target.
5001
5015
  # @return [String]
5002
5016
  #
5003
5017
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/SqsParameters AWS API Documentation
@@ -5212,10 +5226,10 @@ module Aws::EventBridge
5212
5226
  # @return [Types::BatchParameters]
5213
5227
  #
5214
5228
  # @!attribute [rw] sqs_parameters
5215
- # Contains the message group ID to use when the target is a FIFO
5216
- # queue.
5229
+ # Contains the message group ID to use when the target is an Amazon
5230
+ # SQS fair or FIFO queue.
5217
5231
  #
5218
- # If you specify an SQS FIFO queue as a target, the queue must have
5232
+ # If you specify a fair or FIFO queue as a target, the queue must have
5219
5233
  # content-based deduplication enabled.
5220
5234
  # @return [Types::SqsParameters]
5221
5235
  #
@@ -5905,7 +5919,7 @@ module Aws::EventBridge
5905
5919
  #
5906
5920
  #
5907
5921
  #
5908
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
5922
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
5909
5923
  # @return [Types::LogConfig]
5910
5924
  #
5911
5925
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusRequest AWS API Documentation
@@ -5964,7 +5978,7 @@ module Aws::EventBridge
5964
5978
  #
5965
5979
  #
5966
5980
  #
5967
- # [1]: https://docs.aws.amazon.com/eb-event-bus-logs.html
5981
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-event-bus-logs.html
5968
5982
  # @return [Types::LogConfig]
5969
5983
  #
5970
5984
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateEventBusResponse AWS API Documentation
@@ -54,7 +54,7 @@ module Aws::EventBridge
54
54
  autoload :EndpointProvider, 'aws-sdk-eventbridge/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-eventbridge/endpoints'
56
56
 
57
- GEM_VERSION = '1.104.0'
57
+ GEM_VERSION = '1.105.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -425,6 +425,7 @@ module Aws
425
425
  def log_config: () -> Types::LogConfig
426
426
  def creation_time: () -> ::Time
427
427
  def last_modified_time: () -> ::Time
428
+ def managed_by: () -> ::String
428
429
  end
429
430
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EventBridge/Client.html#describe_event_bus-instance_method
430
431
  def describe_event_bus: (
data/sig/types.rbs CHANGED
@@ -514,6 +514,7 @@ module Aws::EventBridge
514
514
  attr_accessor log_config: Types::LogConfig
515
515
  attr_accessor creation_time: ::Time
516
516
  attr_accessor last_modified_time: ::Time
517
+ attr_accessor managed_by: ::String
517
518
  SENSITIVE: []
518
519
  end
519
520
 
@@ -643,6 +644,7 @@ module Aws::EventBridge
643
644
  attr_accessor policy: ::String
644
645
  attr_accessor creation_time: ::Time
645
646
  attr_accessor last_modified_time: ::Time
647
+ attr_accessor managed_by: ::String
646
648
  SENSITIVE: []
647
649
  end
648
650
 
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.104.0
4
+ version: 1.105.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services