aws-sdk-eventbridge 1.77.0 → 1.78.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: 1fb82a108ad8138598b5186a8fe21e93aa65f4d1c2273d3807b85e5daa8e25f6
4
- data.tar.gz: d4ed9e0f327c56b80a9d341e56ccc0018a476791c7ac0d8680e081565875edb8
3
+ metadata.gz: d04eabf5719528b3ce756aa19c41d8ec1bb74863771f8044e7ca5b5d8aadd83e
4
+ data.tar.gz: 25f381d2a8f7d77f1e26a64b39926972b9e0e85f88cb76f27ef957b57b11ecd2
5
5
  SHA512:
6
- metadata.gz: 8f0fa5513fde3faa9afb32a35af4681a778b4432aea7e3476138de768f1123a5b3d9f43e547ffb3950782bd55669db465be5983da43cab4334ff5431e04525b3
7
- data.tar.gz: 447f95ca64d4dfeed98d0299c63e80a083750f90a8798838bf8c430c081511929ef48e42f0722c4c5bbe6ea00a16a7b7b5c0bb6c714ad8780068362a0d550acf
6
+ metadata.gz: 507fb8bfa3efd4736e50e35a04705211d7260149882da7d5b19bca1c2f28007ebc6080a2f47a9ba7d11939d1a963a9509d8c237337c574e61c772b54136c3e31
7
+ data.tar.gz: 6ba9a99a3ca46d20ff37c3d39e9b2b8f11dcf50c0abb254a2ff1bfd23b6c86ea3734979da24cfa01880572f2443d115d0aa7afea9cc4474e5b823701bd29d960
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.78.0 (2025-04-04)
5
+ ------------------
6
+
7
+ * Feature - Amazon EventBridge adds support for customer-managed keys on Archives and validations for two fields: eventSourceArn and kmsKeyIdentifier.
8
+
4
9
  1.77.0 (2025-02-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.77.0
1
+ 1.78.0
@@ -608,28 +608,17 @@ module Aws::EventBridge
608
608
  # archive, all events are sent to the archive except replayed events.
609
609
  # Replayed events are not sent to an archive.
610
610
  #
611
- # <note markdown="1"> Archives and schema discovery are not supported for event buses
612
- # encrypted using a customer managed key. EventBridge returns an error
613
- # if:
611
+ # If you have specified that EventBridge use a customer managed key for
612
+ # encrypting the source event bus, we strongly recommend you also
613
+ # specify a customer managed key for any archives for the event bus as
614
+ # well.
614
615
  #
615
- # * You call ` CreateArchive ` on an event bus set to use a customer
616
- # managed key for encryption.
616
+ # For more information, see [Encrypting archives][1] in the *Amazon
617
+ # EventBridge User Guide*.
617
618
  #
618
- # * You call ` CreateDiscoverer ` on an event bus set to use a customer
619
- # managed key for encryption.
620
619
  #
621
- # * You call ` UpdatedEventBus ` to set a customer managed key on an
622
- # event bus with an archives or schema discovery enabled.
623
620
  #
624
- # To enable archives or schema discovery on an event bus, choose to use
625
- # an Amazon Web Services owned key. For more information, see [Data
626
- # encryption in EventBridge][1] in the *Amazon EventBridge User Guide*.
627
- #
628
- # </note>
629
- #
630
- #
631
- #
632
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
621
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
633
622
  #
634
623
  # @option params [required, String] :archive_name
635
624
  # The name for the archive to create.
@@ -647,6 +636,31 @@ module Aws::EventBridge
647
636
  # The number of days to retain events for. Default value is 0. If set to
648
637
  # 0, events are retained indefinitely
649
638
  #
639
+ # @option params [String] :kms_key_identifier
640
+ # The identifier of the KMS customer managed key for EventBridge to use,
641
+ # if you choose to use a customer managed key to encrypt this archive.
642
+ # The identifier can be the key Amazon Resource Name (ARN), KeyId, key
643
+ # alias, or key alias ARN.
644
+ #
645
+ # If you do not specify a customer managed key identifier, EventBridge
646
+ # uses an Amazon Web Services owned key to encrypt the archive.
647
+ #
648
+ # For more information, see [Identify and view keys][1] in the *Key
649
+ # Management Service Developer Guide*.
650
+ #
651
+ # If you have specified that EventBridge use a customer managed key for
652
+ # encrypting the source event bus, we strongly recommend you also
653
+ # specify a customer managed key for any archives for the event bus as
654
+ # well.
655
+ #
656
+ # For more information, see [Encrypting archives][2] in the *Amazon
657
+ # EventBridge User Guide*.
658
+ #
659
+ #
660
+ #
661
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
662
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
663
+ #
650
664
  # @return [Types::CreateArchiveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
651
665
  #
652
666
  # * {Types::CreateArchiveResponse#archive_arn #archive_arn} => String
@@ -658,10 +672,11 @@ module Aws::EventBridge
658
672
  #
659
673
  # resp = client.create_archive({
660
674
  # archive_name: "ArchiveName", # required
661
- # event_source_arn: "Arn", # required
675
+ # event_source_arn: "EventBusArn", # required
662
676
  # description: "ArchiveDescription",
663
677
  # event_pattern: "EventPattern",
664
678
  # retention_days: 1,
679
+ # kms_key_identifier: "KmsKeyIdentifier",
665
680
  # })
666
681
  #
667
682
  # @example Response structure
@@ -711,15 +726,15 @@ module Aws::EventBridge
711
726
  # `AuthorizationType` you specify.
712
727
  #
713
728
  # @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
714
- # For connections to private resource endpoints, the parameters to use
715
- # for invoking the resource endpoint.
729
+ # For connections to private APIs, the parameters to use for invoking
730
+ # the API.
716
731
  #
717
- # For more information, see [Connecting to private resources][1] in the
718
- # <i> <i>Amazon EventBridge User Guide</i> </i>.
732
+ # For more information, see [Connecting to private APIs][1] in the <i>
733
+ # <i>Amazon EventBridge User Guide</i> </i>.
719
734
  #
720
735
  #
721
736
  #
722
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
737
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
723
738
  #
724
739
  # @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
725
740
  #
@@ -949,32 +964,33 @@ module Aws::EventBridge
949
964
  # uses an Amazon Web Services owned key to encrypt events on the event
950
965
  # bus.
951
966
  #
952
- # For more information, see [Managing keys][1] in the *Key Management
953
- # Service Developer Guide*.
967
+ # For more information, see [Identify and view keys][1] in the *Key
968
+ # Management Service Developer Guide*.
954
969
  #
955
- # <note markdown="1"> Archives and schema discovery are not supported for event buses
956
- # encrypted using a customer managed key. EventBridge returns an error
957
- # if:
970
+ # <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
971
+ # customer managed key. EventBridge returns an error if you call `
972
+ # CreateDiscoverer ` on an event bus set to use a customer managed key
973
+ # for encryption.
958
974
  #
959
- # * You call ` CreateArchive ` on an event bus set to use a customer
960
- # managed key for encryption.
975
+ # To enable schema discovery on an event bus, choose to use an Amazon
976
+ # Web Services owned key. For more information, see [Encrypting
977
+ # events][2] in the *Amazon EventBridge User Guide*.
961
978
  #
962
- # * You call ` CreateDiscoverer ` on an event bus set to use a customer
963
- # managed key for encryption.
979
+ # </note>
964
980
  #
965
- # * You call ` UpdatedEventBus ` to set a customer managed key on an
966
- # event bus with an archives or schema discovery enabled.
981
+ # If you have specified that EventBridge use a customer managed key for
982
+ # encrypting the source event bus, we strongly recommend you also
983
+ # specify a customer managed key for any archives for the event bus as
984
+ # well.
967
985
  #
968
- # To enable archives or schema discovery on an event bus, choose to use
969
- # an Amazon Web Services owned key. For more information, see [Data
970
- # encryption in EventBridge][2] in the *Amazon EventBridge User Guide*.
986
+ # For more information, see [Encrypting archives][3] in the *Amazon
987
+ # EventBridge User Guide*.
971
988
  #
972
- # </note>
973
989
  #
974
990
  #
975
- #
976
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
977
- # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
991
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
992
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
993
+ # [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
978
994
  #
979
995
  # @option params [Types::DeadLetterConfig] :dead_letter_config
980
996
  # Configuration details of the Amazon SQS queue for EventBridge to use
@@ -1460,6 +1476,7 @@ module Aws::EventBridge
1460
1476
  # * {Types::DescribeArchiveResponse#event_pattern #event_pattern} => String
1461
1477
  # * {Types::DescribeArchiveResponse#state #state} => String
1462
1478
  # * {Types::DescribeArchiveResponse#state_reason #state_reason} => String
1479
+ # * {Types::DescribeArchiveResponse#kms_key_identifier #kms_key_identifier} => String
1463
1480
  # * {Types::DescribeArchiveResponse#retention_days #retention_days} => Integer
1464
1481
  # * {Types::DescribeArchiveResponse#size_bytes #size_bytes} => Integer
1465
1482
  # * {Types::DescribeArchiveResponse#event_count #event_count} => Integer
@@ -1480,6 +1497,7 @@ module Aws::EventBridge
1480
1497
  # resp.event_pattern #=> String
1481
1498
  # resp.state #=> String, one of "ENABLED", "DISABLED", "CREATING", "UPDATING", "CREATE_FAILED", "UPDATE_FAILED"
1482
1499
  # resp.state_reason #=> String
1500
+ # resp.kms_key_identifier #=> String
1483
1501
  # resp.retention_days #=> Integer
1484
1502
  # resp.size_bytes #=> Integer
1485
1503
  # resp.event_count #=> Integer
@@ -2058,7 +2076,7 @@ module Aws::EventBridge
2058
2076
  #
2059
2077
  # resp = client.list_archives({
2060
2078
  # name_prefix: "ArchiveName",
2061
- # event_source_arn: "Arn",
2079
+ # event_source_arn: "EventBusArn",
2062
2080
  # state: "ENABLED", # accepts ENABLED, DISABLED, CREATING, UPDATING, CREATE_FAILED, UPDATE_FAILED
2063
2081
  # next_token: "NextToken",
2064
2082
  # limit: 1,
@@ -2484,7 +2502,7 @@ module Aws::EventBridge
2484
2502
  # resp = client.list_replays({
2485
2503
  # name_prefix: "ReplayName",
2486
2504
  # state: "STARTING", # accepts STARTING, RUNNING, CANCELLING, COMPLETED, CANCELLED, FAILED
2487
- # event_source_arn: "Arn",
2505
+ # event_source_arn: "ArchiveArn",
2488
2506
  # next_token: "NextToken",
2489
2507
  # limit: 1,
2490
2508
  # })
@@ -2791,11 +2809,11 @@ module Aws::EventBridge
2791
2809
  # Sends custom events to Amazon EventBridge so that they can be matched
2792
2810
  # to rules.
2793
2811
  #
2794
- # The maximum size for a PutEvents event entry is 256 KB. Entry size is
2795
- # calculated including the event and any necessary characters and keys
2796
- # of the JSON representation of the event. To learn more, see
2797
- # [Calculating PutEvents event entry size][1] in the <i> <i>Amazon
2798
- # EventBridge User Guide</i> </i>
2812
+ # You can batch multiple event entries into one request for efficiency.
2813
+ # However, the total entry size must be less than 256KB. You can
2814
+ # calculate the entry size before you send the events. For more
2815
+ # information, see [Calculating PutEvents event entry size][1] in the
2816
+ # <i> <i>Amazon EventBridge User Guide</i> </i>.
2799
2817
  #
2800
2818
  # PutEvents accepts the data in JSON format. For the JSON number
2801
2819
  # (integer) data type, the constraints are: a minimum value of
@@ -2808,7 +2826,7 @@ module Aws::EventBridge
2808
2826
  #
2809
2827
  #
2810
2828
  #
2811
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevent-size.html
2829
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-putevents.html#eb-putevent-size
2812
2830
  #
2813
2831
  # @option params [required, Array<Types::PutEventsRequestEntry>] :entries
2814
2832
  # The entry that defines an event in your system. You can specify
@@ -3632,7 +3650,7 @@ module Aws::EventBridge
3632
3650
  # resp = client.start_replay({
3633
3651
  # replay_name: "ReplayName", # required
3634
3652
  # description: "ReplayDescription",
3635
- # event_source_arn: "Arn", # required
3653
+ # event_source_arn: "ArchiveArn", # required
3636
3654
  # event_start_time: Time.now, # required
3637
3655
  # event_end_time: Time.now, # required
3638
3656
  # destination: { # required
@@ -3862,6 +3880,31 @@ module Aws::EventBridge
3862
3880
  # @option params [Integer] :retention_days
3863
3881
  # The number of days to retain events in the archive.
3864
3882
  #
3883
+ # @option params [String] :kms_key_identifier
3884
+ # The identifier of the KMS customer managed key for EventBridge to use,
3885
+ # if you choose to use a customer managed key to encrypt this archive.
3886
+ # The identifier can be the key Amazon Resource Name (ARN), KeyId, key
3887
+ # alias, or key alias ARN.
3888
+ #
3889
+ # If you do not specify a customer managed key identifier, EventBridge
3890
+ # uses an Amazon Web Services owned key to encrypt the archive.
3891
+ #
3892
+ # For more information, see [Identify and view keys][1] in the *Key
3893
+ # Management Service Developer Guide*.
3894
+ #
3895
+ # If you have specified that EventBridge use a customer managed key for
3896
+ # encrypting the source event bus, we strongly recommend you also
3897
+ # specify a customer managed key for any archives for the event bus as
3898
+ # well.
3899
+ #
3900
+ # For more information, see [Encrypting archives][2] in the *Amazon
3901
+ # EventBridge User Guide*.
3902
+ #
3903
+ #
3904
+ #
3905
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
3906
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
3907
+ #
3865
3908
  # @return [Types::UpdateArchiveResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3866
3909
  #
3867
3910
  # * {Types::UpdateArchiveResponse#archive_arn #archive_arn} => String
@@ -3876,6 +3919,7 @@ module Aws::EventBridge
3876
3919
  # description: "ArchiveDescription",
3877
3920
  # event_pattern: "EventPattern",
3878
3921
  # retention_days: 1,
3922
+ # kms_key_identifier: "KmsKeyIdentifier",
3879
3923
  # })
3880
3924
  #
3881
3925
  # @example Response structure
@@ -3909,15 +3953,15 @@ module Aws::EventBridge
3909
3953
  # The authorization parameters to use for the connection.
3910
3954
  #
3911
3955
  # @option params [Types::ConnectivityResourceParameters] :invocation_connectivity_parameters
3912
- # For connections to private resource endpoints, the parameters to use
3913
- # for invoking the resource endpoint.
3956
+ # For connections to private APIs, the parameters to use for invoking
3957
+ # the API.
3914
3958
  #
3915
- # For more information, see [Connecting to private resources][1] in the
3916
- # <i> <i>Amazon EventBridge User Guide</i> </i>.
3959
+ # For more information, see [Connecting to private APIs][1] in the <i>
3960
+ # <i>Amazon EventBridge User Guide</i> </i>.
3917
3961
  #
3918
3962
  #
3919
3963
  #
3920
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
3964
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
3921
3965
  #
3922
3966
  # @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3923
3967
  #
@@ -4130,32 +4174,33 @@ module Aws::EventBridge
4130
4174
  # uses an Amazon Web Services owned key to encrypt events on the event
4131
4175
  # bus.
4132
4176
  #
4133
- # For more information, see [Managing keys][1] in the *Key Management
4134
- # Service Developer Guide*.
4135
- #
4136
- # <note markdown="1"> Archives and schema discovery are not supported for event buses
4137
- # encrypted using a customer managed key. EventBridge returns an error
4138
- # if:
4177
+ # For more information, see [Identify and view keys][1] in the *Key
4178
+ # Management Service Developer Guide*.
4139
4179
  #
4140
- # * You call ` CreateArchive ` on an event bus set to use a customer
4141
- # managed key for encryption.
4180
+ # <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
4181
+ # customer managed key. EventBridge returns an error if you call `
4182
+ # CreateDiscoverer ` on an event bus set to use a customer managed key
4183
+ # for encryption.
4142
4184
  #
4143
- # * You call ` CreateDiscoverer ` on an event bus set to use a customer
4144
- # managed key for encryption.
4185
+ # To enable schema discovery on an event bus, choose to use an Amazon
4186
+ # Web Services owned key. For more information, see [Encrypting
4187
+ # events][2] in the *Amazon EventBridge User Guide*.
4145
4188
  #
4146
- # * You call ` UpdatedEventBus ` to set a customer managed key on an
4147
- # event bus with an archives or schema discovery enabled.
4189
+ # </note>
4148
4190
  #
4149
- # To enable archives or schema discovery on an event bus, choose to use
4150
- # an Amazon Web Services owned key. For more information, see [Data
4151
- # encryption in EventBridge][2] in the *Amazon EventBridge User Guide*.
4191
+ # If you have specified that EventBridge use a customer managed key for
4192
+ # encrypting the source event bus, we strongly recommend you also
4193
+ # specify a customer managed key for any archives for the event bus as
4194
+ # well.
4152
4195
  #
4153
- # </note>
4196
+ # For more information, see [Encrypting archives][3] in the *Amazon
4197
+ # EventBridge User Guide*.
4154
4198
  #
4155
4199
  #
4156
4200
  #
4157
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
4158
- # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
4201
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
4202
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
4203
+ # [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
4159
4204
  #
4160
4205
  # @option params [String] :description
4161
4206
  # The event bus description.
@@ -4225,7 +4270,7 @@ module Aws::EventBridge
4225
4270
  tracer: tracer
4226
4271
  )
4227
4272
  context[:gem_name] = 'aws-sdk-eventbridge'
4228
- context[:gem_version] = '1.77.0'
4273
+ context[:gem_version] = '1.78.0'
4229
4274
  Seahorse::Client::Request.new(handlers, context)
4230
4275
  end
4231
4276
 
@@ -147,6 +147,7 @@ module Aws::EventBridge
147
147
  ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
148
148
  ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
149
149
  EventBus = Shapes::StructureShape.new(name: 'EventBus')
150
+ EventBusArn = Shapes::StringShape.new(name: 'EventBusArn')
150
151
  EventBusDescription = Shapes::StringShape.new(name: 'EventBusDescription')
151
152
  EventBusList = Shapes::ListShape.new(name: 'EventBusList')
152
153
  EventBusName = Shapes::StringShape.new(name: 'EventBusName')
@@ -387,7 +388,7 @@ module Aws::EventBridge
387
388
  AppSyncParameters.struct_class = Types::AppSyncParameters
388
389
 
389
390
  Archive.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "ArchiveName"))
390
- Archive.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
391
+ Archive.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
391
392
  Archive.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
392
393
  Archive.add_member(:state_reason, Shapes::ShapeRef.new(shape: ArchiveStateReason, location_name: "StateReason"))
393
394
  Archive.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
@@ -518,10 +519,11 @@ module Aws::EventBridge
518
519
  CreateApiDestinationResponse.struct_class = Types::CreateApiDestinationResponse
519
520
 
520
521
  CreateArchiveRequest.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, required: true, location_name: "ArchiveName"))
521
- CreateArchiveRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "EventSourceArn"))
522
+ CreateArchiveRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, required: true, location_name: "EventSourceArn"))
522
523
  CreateArchiveRequest.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
523
524
  CreateArchiveRequest.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
524
525
  CreateArchiveRequest.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
526
+ CreateArchiveRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
525
527
  CreateArchiveRequest.struct_class = Types::CreateArchiveRequest
526
528
 
527
529
  CreateArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
@@ -679,11 +681,12 @@ module Aws::EventBridge
679
681
 
680
682
  DescribeArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
681
683
  DescribeArchiveResponse.add_member(:archive_name, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "ArchiveName"))
682
- DescribeArchiveResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
684
+ DescribeArchiveResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
683
685
  DescribeArchiveResponse.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
684
686
  DescribeArchiveResponse.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
685
687
  DescribeArchiveResponse.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
686
688
  DescribeArchiveResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ArchiveStateReason, location_name: "StateReason"))
689
+ DescribeArchiveResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
687
690
  DescribeArchiveResponse.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
688
691
  DescribeArchiveResponse.add_member(:size_bytes, Shapes::ShapeRef.new(shape: Long, location_name: "SizeBytes"))
689
692
  DescribeArchiveResponse.add_member(:event_count, Shapes::ShapeRef.new(shape: Long, location_name: "EventCount"))
@@ -772,7 +775,7 @@ module Aws::EventBridge
772
775
  DescribeReplayResponse.add_member(:description, Shapes::ShapeRef.new(shape: ReplayDescription, location_name: "Description"))
773
776
  DescribeReplayResponse.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
774
777
  DescribeReplayResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ReplayStateReason, location_name: "StateReason"))
775
- DescribeReplayResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
778
+ DescribeReplayResponse.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
776
779
  DescribeReplayResponse.add_member(:destination, Shapes::ShapeRef.new(shape: ReplayDestination, location_name: "Destination"))
777
780
  DescribeReplayResponse.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventStartTime"))
778
781
  DescribeReplayResponse.add_member(:event_end_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventEndTime"))
@@ -905,7 +908,7 @@ module Aws::EventBridge
905
908
  ListApiDestinationsResponse.struct_class = Types::ListApiDestinationsResponse
906
909
 
907
910
  ListArchivesRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: ArchiveName, location_name: "NamePrefix"))
908
- ListArchivesRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
911
+ ListArchivesRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: EventBusArn, location_name: "EventSourceArn"))
909
912
  ListArchivesRequest.add_member(:state, Shapes::ShapeRef.new(shape: ArchiveState, location_name: "State"))
910
913
  ListArchivesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
911
914
  ListArchivesRequest.add_member(:limit, Shapes::ShapeRef.new(shape: LimitMax100, location_name: "Limit"))
@@ -973,7 +976,7 @@ module Aws::EventBridge
973
976
 
974
977
  ListReplaysRequest.add_member(:name_prefix, Shapes::ShapeRef.new(shape: ReplayName, location_name: "NamePrefix"))
975
978
  ListReplaysRequest.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
976
- ListReplaysRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
979
+ ListReplaysRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
977
980
  ListReplaysRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
978
981
  ListReplaysRequest.add_member(:limit, Shapes::ShapeRef.new(shape: LimitMax100, location_name: "Limit"))
979
982
  ListReplaysRequest.struct_class = Types::ListReplaysRequest
@@ -1179,7 +1182,7 @@ module Aws::EventBridge
1179
1182
  RemoveTargetsResultEntryList.member = Shapes::ShapeRef.new(shape: RemoveTargetsResultEntry)
1180
1183
 
1181
1184
  Replay.add_member(:replay_name, Shapes::ShapeRef.new(shape: ReplayName, location_name: "ReplayName"))
1182
- Replay.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, location_name: "EventSourceArn"))
1185
+ Replay.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "EventSourceArn"))
1183
1186
  Replay.add_member(:state, Shapes::ShapeRef.new(shape: ReplayState, location_name: "State"))
1184
1187
  Replay.add_member(:state_reason, Shapes::ShapeRef.new(shape: ReplayStateReason, location_name: "StateReason"))
1185
1188
  Replay.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "EventStartTime"))
@@ -1256,7 +1259,7 @@ module Aws::EventBridge
1256
1259
 
1257
1260
  StartReplayRequest.add_member(:replay_name, Shapes::ShapeRef.new(shape: ReplayName, required: true, location_name: "ReplayName"))
1258
1261
  StartReplayRequest.add_member(:description, Shapes::ShapeRef.new(shape: ReplayDescription, location_name: "Description"))
1259
- StartReplayRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: Arn, required: true, location_name: "EventSourceArn"))
1262
+ StartReplayRequest.add_member(:event_source_arn, Shapes::ShapeRef.new(shape: ArchiveArn, required: true, location_name: "EventSourceArn"))
1260
1263
  StartReplayRequest.add_member(:event_start_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EventStartTime"))
1261
1264
  StartReplayRequest.add_member(:event_end_time, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "EventEndTime"))
1262
1265
  StartReplayRequest.add_member(:destination, Shapes::ShapeRef.new(shape: ReplayDestination, required: true, location_name: "Destination"))
@@ -1343,6 +1346,7 @@ module Aws::EventBridge
1343
1346
  UpdateArchiveRequest.add_member(:description, Shapes::ShapeRef.new(shape: ArchiveDescription, location_name: "Description"))
1344
1347
  UpdateArchiveRequest.add_member(:event_pattern, Shapes::ShapeRef.new(shape: EventPattern, location_name: "EventPattern"))
1345
1348
  UpdateArchiveRequest.add_member(:retention_days, Shapes::ShapeRef.new(shape: RetentionDays, location_name: "RetentionDays"))
1349
+ UpdateArchiveRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
1346
1350
  UpdateArchiveRequest.struct_class = Types::UpdateArchiveRequest
1347
1351
 
1348
1352
  UpdateArchiveResponse.add_member(:archive_arn, Shapes::ShapeRef.new(shape: ArchiveArn, location_name: "ArchiveArn"))
@@ -10,7 +10,7 @@
10
10
  module Aws::EventBridge
11
11
  module Types
12
12
 
13
- # You do not have the necessary permissons for this action.
13
+ # You do not have the necessary permissions for this action.
14
14
  #
15
15
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/AccessDeniedException AWS API Documentation
16
16
  #
@@ -653,12 +653,12 @@ module Aws::EventBridge
653
653
  include Aws::Structure
654
654
  end
655
655
 
656
- # The Amazon Resource Name (ARN) of the resource configuration for the
657
- # resource endpoint.
656
+ # The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource
657
+ # configuration for the resource endpoint.
658
658
  #
659
659
  # @!attribute [rw] resource_configuration_arn
660
- # The Amazon Resource Name (ARN) of the resource configuration for the
661
- # resource endpoint.
660
+ # The Amazon Resource Name (ARN) of the Amazon VPC Lattice resource
661
+ # configuration for the resource endpoint.
662
662
  # @return [String]
663
663
  #
664
664
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/ConnectivityResourceConfigurationArn AWS API Documentation
@@ -775,6 +775,32 @@ module Aws::EventBridge
775
775
  # to 0, events are retained indefinitely
776
776
  # @return [Integer]
777
777
  #
778
+ # @!attribute [rw] kms_key_identifier
779
+ # The identifier of the KMS customer managed key for EventBridge to
780
+ # use, if you choose to use a customer managed key to encrypt this
781
+ # archive. The identifier can be the key Amazon Resource Name (ARN),
782
+ # KeyId, key alias, or key alias ARN.
783
+ #
784
+ # If you do not specify a customer managed key identifier, EventBridge
785
+ # uses an Amazon Web Services owned key to encrypt the archive.
786
+ #
787
+ # For more information, see [Identify and view keys][1] in the *Key
788
+ # Management Service Developer Guide*.
789
+ #
790
+ # If you have specified that EventBridge use a customer managed key
791
+ # for encrypting the source event bus, we strongly recommend you also
792
+ # specify a customer managed key for any archives for the event bus as
793
+ # well.
794
+ #
795
+ # For more information, see [Encrypting archives][2] in the *Amazon
796
+ # EventBridge User Guide*.
797
+ #
798
+ #
799
+ #
800
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
801
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
802
+ # @return [String]
803
+ #
778
804
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateArchiveRequest AWS API Documentation
779
805
  #
780
806
  class CreateArchiveRequest < Struct.new(
@@ -782,7 +808,8 @@ module Aws::EventBridge
782
808
  :event_source_arn,
783
809
  :description,
784
810
  :event_pattern,
785
- :retention_days)
811
+ :retention_days,
812
+ :kms_key_identifier)
786
813
  SENSITIVE = []
787
814
  include Aws::Structure
788
815
  end
@@ -975,15 +1002,15 @@ module Aws::EventBridge
975
1002
  # @return [Types::CreateConnectionAuthRequestParameters]
976
1003
  #
977
1004
  # @!attribute [rw] invocation_connectivity_parameters
978
- # For connections to private resource endpoints, the parameters to use
979
- # for invoking the resource endpoint.
1005
+ # For connections to private APIs, the parameters to use for invoking
1006
+ # the API.
980
1007
  #
981
- # For more information, see [Connecting to private resources][1] in
982
- # the <i> <i>Amazon EventBridge User Guide</i> </i>.
1008
+ # For more information, see [Connecting to private APIs][1] in the <i>
1009
+ # <i>Amazon EventBridge User Guide</i> </i>.
983
1010
  #
984
1011
  #
985
1012
  #
986
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
1013
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
987
1014
  # @return [Types::ConnectivityResourceParameters]
988
1015
  #
989
1016
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionRequest AWS API Documentation
@@ -1142,33 +1169,33 @@ module Aws::EventBridge
1142
1169
  # uses an Amazon Web Services owned key to encrypt events on the event
1143
1170
  # bus.
1144
1171
  #
1145
- # For more information, see [Managing keys][1] in the *Key Management
1146
- # Service Developer Guide*.
1147
- #
1148
- # <note markdown="1"> Archives and schema discovery are not supported for event buses
1149
- # encrypted using a customer managed key. EventBridge returns an error
1150
- # if:
1172
+ # For more information, see [Identify and view keys][1] in the *Key
1173
+ # Management Service Developer Guide*.
1151
1174
  #
1152
- # * You call ` CreateArchive ` on an event bus set to use a customer
1153
- # managed key for encryption.
1175
+ # <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
1176
+ # customer managed key. EventBridge returns an error if you call `
1177
+ # CreateDiscoverer ` on an event bus set to use a customer managed key
1178
+ # for encryption.
1154
1179
  #
1155
- # * You call ` CreateDiscoverer ` on an event bus set to use a
1156
- # customer managed key for encryption.
1180
+ # To enable schema discovery on an event bus, choose to use an Amazon
1181
+ # Web Services owned key. For more information, see [Encrypting
1182
+ # events][2] in the *Amazon EventBridge User Guide*.
1157
1183
  #
1158
- # * You call ` UpdatedEventBus ` to set a customer managed key on an
1159
- # event bus with an archives or schema discovery enabled.
1184
+ # </note>
1160
1185
  #
1161
- # To enable archives or schema discovery on an event bus, choose to
1162
- # use an Amazon Web Services owned key. For more information, see
1163
- # [Data encryption in EventBridge][2] in the *Amazon EventBridge User
1164
- # Guide*.
1186
+ # If you have specified that EventBridge use a customer managed key
1187
+ # for encrypting the source event bus, we strongly recommend you also
1188
+ # specify a customer managed key for any archives for the event bus as
1189
+ # well.
1165
1190
  #
1166
- # </note>
1191
+ # For more information, see [Encrypting archives][3] in the *Amazon
1192
+ # EventBridge User Guide*.
1167
1193
  #
1168
1194
  #
1169
1195
  #
1170
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
1171
- # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
1196
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
1197
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
1198
+ # [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
1172
1199
  # @return [String]
1173
1200
  #
1174
1201
  # @!attribute [rw] dead_letter_config
@@ -1627,6 +1654,18 @@ module Aws::EventBridge
1627
1654
  # The reason that the archive is in the state.
1628
1655
  # @return [String]
1629
1656
  #
1657
+ # @!attribute [rw] kms_key_identifier
1658
+ # The identifier of the KMS customer managed key for EventBridge to
1659
+ # use to encrypt this archive, if one has been specified.
1660
+ #
1661
+ # For more information, see [Encrypting archives][1] in the *Amazon
1662
+ # EventBridge User Guide*.
1663
+ #
1664
+ #
1665
+ #
1666
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
1667
+ # @return [String]
1668
+ #
1630
1669
  # @!attribute [rw] retention_days
1631
1670
  # The number of days to retain events for in the archive.
1632
1671
  # @return [Integer]
@@ -1653,6 +1692,7 @@ module Aws::EventBridge
1653
1692
  :event_pattern,
1654
1693
  :state,
1655
1694
  :state_reason,
1695
+ :kms_key_identifier,
1656
1696
  :retention_days,
1657
1697
  :size_bytes,
1658
1698
  :event_count,
@@ -1708,6 +1748,14 @@ module Aws::EventBridge
1708
1748
  # For connections to private APIs, the Amazon Resource Name (ARN) of
1709
1749
  # the resource association EventBridge created between the connection
1710
1750
  # and the private API's resource configuration.
1751
+ #
1752
+ # For more information, see [ Managing service network resource
1753
+ # associations for connections][1] in the <i> <i>Amazon EventBridge
1754
+ # User Guide</i> </i>.
1755
+ #
1756
+ #
1757
+ #
1758
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html#connection-private-snra
1711
1759
  # @return [String]
1712
1760
  #
1713
1761
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/DescribeConnectionResourceParameters AWS API Documentation
@@ -1732,15 +1780,15 @@ module Aws::EventBridge
1732
1780
  # @return [String]
1733
1781
  #
1734
1782
  # @!attribute [rw] invocation_connectivity_parameters
1735
- # For connections to private resource endpoints. The parameters
1736
- # EventBridge uses to invoke the resource endpoint.
1783
+ # For connections to private APIs The parameters EventBridge uses to
1784
+ # invoke the resource endpoint.
1737
1785
  #
1738
- # For more information, see [Connecting to private resources][1] in
1739
- # the <i> <i>Amazon EventBridge User Guide</i> </i>.
1786
+ # For more information, see [Connecting to private APIs][1] in the <i>
1787
+ # <i>Amazon EventBridge User Guide</i> </i>.
1740
1788
  #
1741
1789
  #
1742
1790
  #
1743
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
1791
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
1744
1792
  # @return [Types::DescribeConnectionConnectivityParameters]
1745
1793
  #
1746
1794
  # @!attribute [rw] connection_state
@@ -4777,17 +4825,17 @@ module Aws::EventBridge
4777
4825
  include Aws::Structure
4778
4826
  end
4779
4827
 
4780
- # Name/Value pair of a parameter to start execution of a SageMaker Model
4781
- # Building Pipeline.
4828
+ # Name/Value pair of a parameter to start execution of a SageMaker AI
4829
+ # Model Building Pipeline.
4782
4830
  #
4783
4831
  # @!attribute [rw] name
4784
- # Name of parameter to start execution of a SageMaker Model Building
4785
- # Pipeline.
4832
+ # Name of parameter to start execution of a SageMaker AI Model
4833
+ # Building Pipeline.
4786
4834
  # @return [String]
4787
4835
  #
4788
4836
  # @!attribute [rw] value
4789
- # Value of parameter to start execution of a SageMaker Model Building
4790
- # Pipeline.
4837
+ # Value of parameter to start execution of a SageMaker AI Model
4838
+ # Building Pipeline.
4791
4839
  # @return [String]
4792
4840
  #
4793
4841
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/SageMakerPipelineParameter AWS API Documentation
@@ -4799,11 +4847,11 @@ module Aws::EventBridge
4799
4847
  include Aws::Structure
4800
4848
  end
4801
4849
 
4802
- # These are custom parameters to use when the target is a SageMaker
4850
+ # These are custom parameters to use when the target is a SageMaker AI
4803
4851
  # Model Building Pipeline that starts based on EventBridge events.
4804
4852
  #
4805
4853
  # @!attribute [rw] pipeline_parameter_list
4806
- # List of Parameter names and values for SageMaker Model Building
4854
+ # List of Parameter names and values for SageMaker AI Model Building
4807
4855
  # Pipeline execution.
4808
4856
  # @return [Array<Types::SageMakerPipelineParameter>]
4809
4857
  #
@@ -5079,11 +5127,11 @@ module Aws::EventBridge
5079
5127
  # @return [Types::RedshiftDataParameters]
5080
5128
  #
5081
5129
  # @!attribute [rw] sage_maker_pipeline_parameters
5082
- # Contains the SageMaker Model Building Pipeline parameters to start
5083
- # execution of a SageMaker Model Building Pipeline.
5130
+ # Contains the SageMaker AI Model Building Pipeline parameters to
5131
+ # start execution of a SageMaker AI Model Building Pipeline.
5084
5132
  #
5085
- # If you specify a SageMaker Model Building Pipeline as a target, you
5086
- # can use this to specify parameters to start a pipeline execution
5133
+ # If you specify a SageMaker AI Model Building Pipeline as a target,
5134
+ # you can use this to specify parameters to start a pipeline execution
5087
5135
  # based on EventBridge events.
5088
5136
  # @return [Types::SageMakerPipelineParameters]
5089
5137
  #
@@ -5289,13 +5337,40 @@ module Aws::EventBridge
5289
5337
  # The number of days to retain events in the archive.
5290
5338
  # @return [Integer]
5291
5339
  #
5340
+ # @!attribute [rw] kms_key_identifier
5341
+ # The identifier of the KMS customer managed key for EventBridge to
5342
+ # use, if you choose to use a customer managed key to encrypt this
5343
+ # archive. The identifier can be the key Amazon Resource Name (ARN),
5344
+ # KeyId, key alias, or key alias ARN.
5345
+ #
5346
+ # If you do not specify a customer managed key identifier, EventBridge
5347
+ # uses an Amazon Web Services owned key to encrypt the archive.
5348
+ #
5349
+ # For more information, see [Identify and view keys][1] in the *Key
5350
+ # Management Service Developer Guide*.
5351
+ #
5352
+ # If you have specified that EventBridge use a customer managed key
5353
+ # for encrypting the source event bus, we strongly recommend you also
5354
+ # specify a customer managed key for any archives for the event bus as
5355
+ # well.
5356
+ #
5357
+ # For more information, see [Encrypting archives][2] in the *Amazon
5358
+ # EventBridge User Guide*.
5359
+ #
5360
+ #
5361
+ #
5362
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
5363
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
5364
+ # @return [String]
5365
+ #
5292
5366
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateArchiveRequest AWS API Documentation
5293
5367
  #
5294
5368
  class UpdateArchiveRequest < Struct.new(
5295
5369
  :archive_name,
5296
5370
  :description,
5297
5371
  :event_pattern,
5298
- :retention_days)
5372
+ :retention_days,
5373
+ :kms_key_identifier)
5299
5374
  SENSITIVE = []
5300
5375
  include Aws::Structure
5301
5376
  end
@@ -5478,15 +5553,15 @@ module Aws::EventBridge
5478
5553
  # @return [Types::UpdateConnectionAuthRequestParameters]
5479
5554
  #
5480
5555
  # @!attribute [rw] invocation_connectivity_parameters
5481
- # For connections to private resource endpoints, the parameters to use
5482
- # for invoking the resource endpoint.
5556
+ # For connections to private APIs, the parameters to use for invoking
5557
+ # the API.
5483
5558
  #
5484
- # For more information, see [Connecting to private resources][1] in
5485
- # the <i> <i>Amazon EventBridge User Guide</i> </i>.
5559
+ # For more information, see [Connecting to private APIs][1] in the <i>
5560
+ # <i>Amazon EventBridge User Guide</i> </i>.
5486
5561
  #
5487
5562
  #
5488
5563
  #
5489
- # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-target-connection-private.html
5564
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
5490
5565
  # @return [Types::ConnectivityResourceParameters]
5491
5566
  #
5492
5567
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionRequest AWS API Documentation
@@ -5640,33 +5715,33 @@ module Aws::EventBridge
5640
5715
  # uses an Amazon Web Services owned key to encrypt events on the event
5641
5716
  # bus.
5642
5717
  #
5643
- # For more information, see [Managing keys][1] in the *Key Management
5644
- # Service Developer Guide*.
5645
- #
5646
- # <note markdown="1"> Archives and schema discovery are not supported for event buses
5647
- # encrypted using a customer managed key. EventBridge returns an error
5648
- # if:
5718
+ # For more information, see [Identify and view keys][1] in the *Key
5719
+ # Management Service Developer Guide*.
5649
5720
  #
5650
- # * You call ` CreateArchive ` on an event bus set to use a customer
5651
- # managed key for encryption.
5721
+ # <note markdown="1"> Schema discovery is not supported for event buses encrypted using a
5722
+ # customer managed key. EventBridge returns an error if you call `
5723
+ # CreateDiscoverer ` on an event bus set to use a customer managed key
5724
+ # for encryption.
5652
5725
  #
5653
- # * You call ` CreateDiscoverer ` on an event bus set to use a
5654
- # customer managed key for encryption.
5726
+ # To enable schema discovery on an event bus, choose to use an Amazon
5727
+ # Web Services owned key. For more information, see [Encrypting
5728
+ # events][2] in the *Amazon EventBridge User Guide*.
5655
5729
  #
5656
- # * You call ` UpdatedEventBus ` to set a customer managed key on an
5657
- # event bus with an archives or schema discovery enabled.
5730
+ # </note>
5658
5731
  #
5659
- # To enable archives or schema discovery on an event bus, choose to
5660
- # use an Amazon Web Services owned key. For more information, see
5661
- # [Data encryption in EventBridge][2] in the *Amazon EventBridge User
5662
- # Guide*.
5732
+ # If you have specified that EventBridge use a customer managed key
5733
+ # for encrypting the source event bus, we strongly recommend you also
5734
+ # specify a customer managed key for any archives for the event bus as
5735
+ # well.
5663
5736
  #
5664
- # </note>
5737
+ # For more information, see [Encrypting archives][3] in the *Amazon
5738
+ # EventBridge User Guide*.
5665
5739
  #
5666
5740
  #
5667
5741
  #
5668
- # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/getting-started.html
5669
- # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption.html
5742
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
5743
+ # [2]: https://docs.aws.amazon.com/eventbridge/latest/userguide/eb-encryption-event-bus-cmkey.html
5744
+ # [3]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-archives.html
5670
5745
  # @return [String]
5671
5746
  #
5672
5747
  # @!attribute [rw] description
@@ -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.77.0'
57
+ GEM_VERSION = '1.78.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -127,7 +127,8 @@ module Aws
127
127
  event_source_arn: ::String,
128
128
  ?description: ::String,
129
129
  ?event_pattern: ::String,
130
- ?retention_days: ::Integer
130
+ ?retention_days: ::Integer,
131
+ ?kms_key_identifier: ::String
131
132
  ) -> _CreateArchiveResponseSuccess
132
133
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateArchiveResponseSuccess
133
134
 
@@ -402,6 +403,7 @@ module Aws
402
403
  def event_pattern: () -> ::String
403
404
  def state: () -> ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
404
405
  def state_reason: () -> ::String
406
+ def kms_key_identifier: () -> ::String
405
407
  def retention_days: () -> ::Integer
406
408
  def size_bytes: () -> ::Integer
407
409
  def event_count: () -> ::Integer
@@ -1042,7 +1044,8 @@ module Aws
1042
1044
  archive_name: ::String,
1043
1045
  ?description: ::String,
1044
1046
  ?event_pattern: ::String,
1045
- ?retention_days: ::Integer
1047
+ ?retention_days: ::Integer,
1048
+ ?kms_key_identifier: ::String
1046
1049
  ) -> _UpdateArchiveResponseSuccess
1047
1050
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateArchiveResponseSuccess
1048
1051
 
data/sig/types.rbs CHANGED
@@ -206,6 +206,7 @@ module Aws::EventBridge
206
206
  attr_accessor description: ::String
207
207
  attr_accessor event_pattern: ::String
208
208
  attr_accessor retention_days: ::Integer
209
+ attr_accessor kms_key_identifier: ::String
209
210
  SENSITIVE: []
210
211
  end
211
212
 
@@ -431,6 +432,7 @@ module Aws::EventBridge
431
432
  attr_accessor event_pattern: ::String
432
433
  attr_accessor state: ("ENABLED" | "DISABLED" | "CREATING" | "UPDATING" | "CREATE_FAILED" | "UPDATE_FAILED")
433
434
  attr_accessor state_reason: ::String
435
+ attr_accessor kms_key_identifier: ::String
434
436
  attr_accessor retention_days: ::Integer
435
437
  attr_accessor size_bytes: ::Integer
436
438
  attr_accessor event_count: ::Integer
@@ -1238,6 +1240,7 @@ module Aws::EventBridge
1238
1240
  attr_accessor description: ::String
1239
1241
  attr_accessor event_pattern: ::String
1240
1242
  attr_accessor retention_days: ::Integer
1243
+ attr_accessor kms_key_identifier: ::String
1241
1244
  SENSITIVE: []
1242
1245
  end
1243
1246
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-eventbridge
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.77.0
4
+ version: 1.78.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-18 00:00:00.000000000 Z
11
+ date: 2025-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core