aws-sdk-eventbridge 1.78.0 → 1.79.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: d04eabf5719528b3ce756aa19c41d8ec1bb74863771f8044e7ca5b5d8aadd83e
4
- data.tar.gz: 25f381d2a8f7d77f1e26a64b39926972b9e0e85f88cb76f27ef957b57b11ecd2
3
+ metadata.gz: 15402f8b351e6fc7fe349d802d7908e6aade5424848c1c2842150be2a7aeca03
4
+ data.tar.gz: 350a7519ec67f3e33ffb825c8c5c710e7d55b9d37dad299468164f22de73c11b
5
5
  SHA512:
6
- metadata.gz: 507fb8bfa3efd4736e50e35a04705211d7260149882da7d5b19bca1c2f28007ebc6080a2f47a9ba7d11939d1a963a9509d8c237337c574e61c772b54136c3e31
7
- data.tar.gz: 6ba9a99a3ca46d20ff37c3d39e9b2b8f11dcf50c0abb254a2ff1bfd23b6c86ea3734979da24cfa01880572f2443d115d0aa7afea9cc4474e5b823701bd29d960
6
+ metadata.gz: 682516cceab115270482e8319f13c2e459848c511c9599ecea3f966e2fcdc14ca25aa9aafefe4573d188206fbbb0cc7006f2e063741eeec0248a16350b03f109
7
+ data.tar.gz: a4478fff7930e16ef9122b2583e9298b8bd3808c66aba8f041ffc2133bb222cb8c4a29e2863a4bcf585ac9e1392a1d77b86703c67be2935c2c7849cc32920d87
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.79.0 (2025-04-16)
5
+ ------------------
6
+
7
+ * Feature - Adding support for KmsKeyIdentifer in CreateConnection, UpdateConnection and DescribeConnection APIs
8
+
4
9
  1.78.0 (2025-04-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.78.0
1
+ 1.79.0
@@ -736,6 +736,22 @@ module Aws::EventBridge
736
736
  #
737
737
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
738
738
  #
739
+ # @option params [String] :kms_key_identifier
740
+ # The identifier of the KMS customer managed key for EventBridge to use,
741
+ # if you choose to use a customer managed key to encrypt this
742
+ # connection. The identifier can be the key Amazon Resource Name (ARN),
743
+ # KeyId, key alias, or key alias ARN.
744
+ #
745
+ # If you do not specify a customer managed key identifier, EventBridge
746
+ # uses an Amazon Web Services owned key to encrypt the connection.
747
+ #
748
+ # For more information, see [Identify and view keys][1] in the *Key
749
+ # Management Service Developer Guide*.
750
+ #
751
+ #
752
+ #
753
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
754
+ #
739
755
  # @return [Types::CreateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
740
756
  #
741
757
  # * {Types::CreateConnectionResponse#connection_arn #connection_arn} => String
@@ -823,6 +839,7 @@ module Aws::EventBridge
823
839
  # resource_configuration_arn: "ResourceConfigurationArn", # required
824
840
  # },
825
841
  # },
842
+ # kms_key_identifier: "KmsKeyIdentifier",
826
843
  # })
827
844
  #
828
845
  # @example Response structure
@@ -968,9 +985,13 @@ module Aws::EventBridge
968
985
  # Management Service Developer Guide*.
969
986
  #
970
987
  # <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.
988
+ # customer managed key. EventBridge returns an error if:
989
+ #
990
+ # * You call ` CreateDiscoverer ` on an event bus set to use a customer
991
+ # managed key for encryption.
992
+ #
993
+ # * You call ` UpdatedEventBus ` to set a customer managed key on an
994
+ # event bus with schema discovery enabled.
974
995
  #
975
996
  # To enable schema discovery on an event bus, choose to use an Amazon
976
997
  # Web Services owned key. For more information, see [Encrypting
@@ -1527,6 +1548,7 @@ module Aws::EventBridge
1527
1548
  # * {Types::DescribeConnectionResponse#state_reason #state_reason} => String
1528
1549
  # * {Types::DescribeConnectionResponse#authorization_type #authorization_type} => String
1529
1550
  # * {Types::DescribeConnectionResponse#secret_arn #secret_arn} => String
1551
+ # * {Types::DescribeConnectionResponse#kms_key_identifier #kms_key_identifier} => String
1530
1552
  # * {Types::DescribeConnectionResponse#auth_parameters #auth_parameters} => Types::ConnectionAuthResponseParameters
1531
1553
  # * {Types::DescribeConnectionResponse#creation_time #creation_time} => Time
1532
1554
  # * {Types::DescribeConnectionResponse#last_modified_time #last_modified_time} => Time
@@ -1549,6 +1571,7 @@ module Aws::EventBridge
1549
1571
  # resp.state_reason #=> String
1550
1572
  # resp.authorization_type #=> String, one of "BASIC", "OAUTH_CLIENT_CREDENTIALS", "API_KEY"
1551
1573
  # resp.secret_arn #=> String
1574
+ # resp.kms_key_identifier #=> String
1552
1575
  # resp.auth_parameters.basic_auth_parameters.username #=> String
1553
1576
  # resp.auth_parameters.o_auth_parameters.client_parameters.client_id #=> String
1554
1577
  # resp.auth_parameters.o_auth_parameters.authorization_endpoint #=> String
@@ -3963,6 +3986,22 @@ module Aws::EventBridge
3963
3986
  #
3964
3987
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
3965
3988
  #
3989
+ # @option params [String] :kms_key_identifier
3990
+ # The identifier of the KMS customer managed key for EventBridge to use,
3991
+ # if you choose to use a customer managed key to encrypt this
3992
+ # connection. The identifier can be the key Amazon Resource Name (ARN),
3993
+ # KeyId, key alias, or key alias ARN.
3994
+ #
3995
+ # If you do not specify a customer managed key identifier, EventBridge
3996
+ # uses an Amazon Web Services owned key to encrypt the connection.
3997
+ #
3998
+ # For more information, see [Identify and view keys][1] in the *Key
3999
+ # Management Service Developer Guide*.
4000
+ #
4001
+ #
4002
+ #
4003
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
4004
+ #
3966
4005
  # @return [Types::UpdateConnectionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3967
4006
  #
3968
4007
  # * {Types::UpdateConnectionResponse#connection_arn #connection_arn} => String
@@ -4051,6 +4090,7 @@ module Aws::EventBridge
4051
4090
  # resource_configuration_arn: "ResourceConfigurationArn", # required
4052
4091
  # },
4053
4092
  # },
4093
+ # kms_key_identifier: "KmsKeyIdentifier",
4054
4094
  # })
4055
4095
  #
4056
4096
  # @example Response structure
@@ -4178,9 +4218,13 @@ module Aws::EventBridge
4178
4218
  # Management Service Developer Guide*.
4179
4219
  #
4180
4220
  # <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.
4221
+ # customer managed key. EventBridge returns an error if:
4222
+ #
4223
+ # * You call ` CreateDiscoverer ` on an event bus set to use a customer
4224
+ # managed key for encryption.
4225
+ #
4226
+ # * You call ` UpdatedEventBus ` to set a customer managed key on an
4227
+ # event bus with schema discovery enabled.
4184
4228
  #
4185
4229
  # To enable schema discovery on an event bus, choose to use an Amazon
4186
4230
  # Web Services owned key. For more information, see [Encrypting
@@ -4270,7 +4314,7 @@ module Aws::EventBridge
4270
4314
  tracer: tracer
4271
4315
  )
4272
4316
  context[:gem_name] = 'aws-sdk-eventbridge'
4273
- context[:gem_version] = '1.78.0'
4317
+ context[:gem_version] = '1.79.0'
4274
4318
  Seahorse::Client::Request.new(handlers, context)
4275
4319
  end
4276
4320
 
@@ -562,6 +562,7 @@ module Aws::EventBridge
562
562
  CreateConnectionRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, required: true, location_name: "AuthorizationType"))
563
563
  CreateConnectionRequest.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: CreateConnectionAuthRequestParameters, required: true, location_name: "AuthParameters"))
564
564
  CreateConnectionRequest.add_member(:invocation_connectivity_parameters, Shapes::ShapeRef.new(shape: ConnectivityResourceParameters, location_name: "InvocationConnectivityParameters"))
565
+ CreateConnectionRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
565
566
  CreateConnectionRequest.struct_class = Types::CreateConnectionRequest
566
567
 
567
568
  CreateConnectionResponse.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, location_name: "ConnectionArn"))
@@ -711,6 +712,7 @@ module Aws::EventBridge
711
712
  DescribeConnectionResponse.add_member(:state_reason, Shapes::ShapeRef.new(shape: ConnectionStateReason, location_name: "StateReason"))
712
713
  DescribeConnectionResponse.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, location_name: "AuthorizationType"))
713
714
  DescribeConnectionResponse.add_member(:secret_arn, Shapes::ShapeRef.new(shape: SecretsManagerSecretArn, location_name: "SecretArn"))
715
+ DescribeConnectionResponse.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
714
716
  DescribeConnectionResponse.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: ConnectionAuthResponseParameters, location_name: "AuthParameters"))
715
717
  DescribeConnectionResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "CreationTime"))
716
718
  DescribeConnectionResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "LastModifiedTime"))
@@ -1385,6 +1387,7 @@ module Aws::EventBridge
1385
1387
  UpdateConnectionRequest.add_member(:authorization_type, Shapes::ShapeRef.new(shape: ConnectionAuthorizationType, location_name: "AuthorizationType"))
1386
1388
  UpdateConnectionRequest.add_member(:auth_parameters, Shapes::ShapeRef.new(shape: UpdateConnectionAuthRequestParameters, location_name: "AuthParameters"))
1387
1389
  UpdateConnectionRequest.add_member(:invocation_connectivity_parameters, Shapes::ShapeRef.new(shape: ConnectivityResourceParameters, location_name: "InvocationConnectivityParameters"))
1390
+ UpdateConnectionRequest.add_member(:kms_key_identifier, Shapes::ShapeRef.new(shape: KmsKeyIdentifier, location_name: "KmsKeyIdentifier"))
1388
1391
  UpdateConnectionRequest.struct_class = Types::UpdateConnectionRequest
1389
1392
 
1390
1393
  UpdateConnectionResponse.add_member(:connection_arn, Shapes::ShapeRef.new(shape: ConnectionArn, location_name: "ConnectionArn"))
@@ -1013,6 +1013,23 @@ module Aws::EventBridge
1013
1013
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
1014
1014
  # @return [Types::ConnectivityResourceParameters]
1015
1015
  #
1016
+ # @!attribute [rw] kms_key_identifier
1017
+ # The identifier of the KMS customer managed key for EventBridge to
1018
+ # use, if you choose to use a customer managed key to encrypt this
1019
+ # connection. The identifier can be the key Amazon Resource Name
1020
+ # (ARN), KeyId, key alias, or key alias ARN.
1021
+ #
1022
+ # If you do not specify a customer managed key identifier, EventBridge
1023
+ # uses an Amazon Web Services owned key to encrypt the connection.
1024
+ #
1025
+ # For more information, see [Identify and view keys][1] in the *Key
1026
+ # Management Service Developer Guide*.
1027
+ #
1028
+ #
1029
+ #
1030
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
1031
+ # @return [String]
1032
+ #
1016
1033
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/CreateConnectionRequest AWS API Documentation
1017
1034
  #
1018
1035
  class CreateConnectionRequest < Struct.new(
@@ -1020,7 +1037,8 @@ module Aws::EventBridge
1020
1037
  :description,
1021
1038
  :authorization_type,
1022
1039
  :auth_parameters,
1023
- :invocation_connectivity_parameters)
1040
+ :invocation_connectivity_parameters,
1041
+ :kms_key_identifier)
1024
1042
  SENSITIVE = []
1025
1043
  include Aws::Structure
1026
1044
  end
@@ -1173,9 +1191,13 @@ module Aws::EventBridge
1173
1191
  # Management Service Developer Guide*.
1174
1192
  #
1175
1193
  # <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.
1194
+ # customer managed key. EventBridge returns an error if:
1195
+ #
1196
+ # * You call ` CreateDiscoverer ` on an event bus set to use a
1197
+ # customer managed key for encryption.
1198
+ #
1199
+ # * You call ` UpdatedEventBus ` to set a customer managed key on an
1200
+ # event bus with schema discovery enabled.
1179
1201
  #
1180
1202
  # To enable schema discovery on an event bus, choose to use an Amazon
1181
1203
  # Web Services owned key. For more information, see [Encrypting
@@ -1808,6 +1830,18 @@ module Aws::EventBridge
1808
1830
  # specified for the connection.
1809
1831
  # @return [String]
1810
1832
  #
1833
+ # @!attribute [rw] kms_key_identifier
1834
+ # The identifier of the KMS customer managed key for EventBridge to
1835
+ # use to encrypt the connection, if one has been specified.
1836
+ #
1837
+ # For more information, see [Encrypting connections][1] in the *Amazon
1838
+ # EventBridge User Guide*.
1839
+ #
1840
+ #
1841
+ #
1842
+ # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/encryption-connections.html
1843
+ # @return [String]
1844
+ #
1811
1845
  # @!attribute [rw] auth_parameters
1812
1846
  # The parameters to use for authorization for the connection.
1813
1847
  # @return [Types::ConnectionAuthResponseParameters]
@@ -1835,6 +1869,7 @@ module Aws::EventBridge
1835
1869
  :state_reason,
1836
1870
  :authorization_type,
1837
1871
  :secret_arn,
1872
+ :kms_key_identifier,
1838
1873
  :auth_parameters,
1839
1874
  :creation_time,
1840
1875
  :last_modified_time,
@@ -5564,6 +5599,23 @@ module Aws::EventBridge
5564
5599
  # [1]: https://docs.aws.amazon.com/eventbridge/latest/userguide/connection-private.html
5565
5600
  # @return [Types::ConnectivityResourceParameters]
5566
5601
  #
5602
+ # @!attribute [rw] kms_key_identifier
5603
+ # The identifier of the KMS customer managed key for EventBridge to
5604
+ # use, if you choose to use a customer managed key to encrypt this
5605
+ # connection. The identifier can be the key Amazon Resource Name
5606
+ # (ARN), KeyId, key alias, or key alias ARN.
5607
+ #
5608
+ # If you do not specify a customer managed key identifier, EventBridge
5609
+ # uses an Amazon Web Services owned key to encrypt the connection.
5610
+ #
5611
+ # For more information, see [Identify and view keys][1] in the *Key
5612
+ # Management Service Developer Guide*.
5613
+ #
5614
+ #
5615
+ #
5616
+ # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/viewing-keys.html
5617
+ # @return [String]
5618
+ #
5567
5619
  # @see http://docs.aws.amazon.com/goto/WebAPI/eventbridge-2015-10-07/UpdateConnectionRequest AWS API Documentation
5568
5620
  #
5569
5621
  class UpdateConnectionRequest < Struct.new(
@@ -5571,7 +5623,8 @@ module Aws::EventBridge
5571
5623
  :description,
5572
5624
  :authorization_type,
5573
5625
  :auth_parameters,
5574
- :invocation_connectivity_parameters)
5626
+ :invocation_connectivity_parameters,
5627
+ :kms_key_identifier)
5575
5628
  SENSITIVE = []
5576
5629
  include Aws::Structure
5577
5630
  end
@@ -5719,9 +5772,13 @@ module Aws::EventBridge
5719
5772
  # Management Service Developer Guide*.
5720
5773
  #
5721
5774
  # <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.
5775
+ # customer managed key. EventBridge returns an error if:
5776
+ #
5777
+ # * You call ` CreateDiscoverer ` on an event bus set to use a
5778
+ # customer managed key for encryption.
5779
+ #
5780
+ # * You call ` UpdatedEventBus ` to set a customer managed key on an
5781
+ # event bus with schema discovery enabled.
5725
5782
  #
5726
5783
  # To enable schema discovery on an event bus, choose to use an Amazon
5727
5784
  # Web Services owned key. For more information, see [Encrypting
@@ -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.78.0'
57
+ GEM_VERSION = '1.79.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -217,7 +217,8 @@ module Aws
217
217
  resource_parameters: {
218
218
  resource_configuration_arn: ::String
219
219
  }
220
- }
220
+ },
221
+ ?kms_key_identifier: ::String
221
222
  ) -> _CreateConnectionResponseSuccess
222
223
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConnectionResponseSuccess
223
224
 
@@ -425,6 +426,7 @@ module Aws
425
426
  def state_reason: () -> ::String
426
427
  def authorization_type: () -> ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
427
428
  def secret_arn: () -> ::String
429
+ def kms_key_identifier: () -> ::String
428
430
  def auth_parameters: () -> Types::ConnectionAuthResponseParameters
429
431
  def creation_time: () -> ::Time
430
432
  def last_modified_time: () -> ::Time
@@ -1135,7 +1137,8 @@ module Aws
1135
1137
  resource_parameters: {
1136
1138
  resource_configuration_arn: ::String
1137
1139
  }
1138
- }
1140
+ },
1141
+ ?kms_key_identifier: ::String
1139
1142
  ) -> _UpdateConnectionResponseSuccess
1140
1143
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateConnectionResponseSuccess
1141
1144
 
data/sig/types.rbs CHANGED
@@ -259,6 +259,7 @@ module Aws::EventBridge
259
259
  attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
260
260
  attr_accessor auth_parameters: Types::CreateConnectionAuthRequestParameters
261
261
  attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
262
+ attr_accessor kms_key_identifier: ::String
262
263
  SENSITIVE: []
263
264
  end
264
265
 
@@ -465,6 +466,7 @@ module Aws::EventBridge
465
466
  attr_accessor state_reason: ::String
466
467
  attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
467
468
  attr_accessor secret_arn: ::String
469
+ attr_accessor kms_key_identifier: ::String
468
470
  attr_accessor auth_parameters: Types::ConnectionAuthResponseParameters
469
471
  attr_accessor creation_time: ::Time
470
472
  attr_accessor last_modified_time: ::Time
@@ -1293,6 +1295,7 @@ module Aws::EventBridge
1293
1295
  attr_accessor authorization_type: ("BASIC" | "OAUTH_CLIENT_CREDENTIALS" | "API_KEY")
1294
1296
  attr_accessor auth_parameters: Types::UpdateConnectionAuthRequestParameters
1295
1297
  attr_accessor invocation_connectivity_parameters: Types::ConnectivityResourceParameters
1298
+ attr_accessor kms_key_identifier: ::String
1296
1299
  SENSITIVE: []
1297
1300
  end
1298
1301
 
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.78.0
4
+ version: 1.79.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-04-04 00:00:00.000000000 Z
11
+ date: 2025-04-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core