aws-sdk-kms 1.115.0 → 1.116.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: 216c84dec3f43f2dab0dbdb9eaac52386c7b57a1b91679462d7b0587ca18228b
4
- data.tar.gz: b0ce79d99147e06a1b94193f12083ee583b862590d20ffcf023bba72f1ba0e6c
3
+ metadata.gz: c4eb2a648acbddead266bcb95a6608654f439f91fb9d091d55a4967849ec3855
4
+ data.tar.gz: faec355b13ce018945e5390e66d7496371665c3ecd2be47e8005c4a6b309e827
5
5
  SHA512:
6
- metadata.gz: 1652deddd2b93a91382c155877b04d10321ff31867df867015ae14404be68e1cc5a2b6473fd185b299f11541757aeb65531f67a3166ddc3b330d85a51be266d0
7
- data.tar.gz: f171a7a9331ac72266af160cc2a5f1422de8d635f5b566b3c370ba4f1260701d659d739a654dc28d7f39231d1e601777bb5ec9044c6dbd6e0dc8ba95fe167521
6
+ metadata.gz: 144ddfd505186599b73146764f9a50db60d70675fc33d6cc203d3a2791c98cd1203d646702ef1f0274d831e49bd3eeb09431b1e652d4463c6065c53945825ee3
7
+ data.tar.gz: c99f71427bb4f99df68a00b2a135ea29c387c1627a9c4f7dc587f24b3b5b31346c769f34aa262c5dfffcd40090426df8ae2b1fd21709c381f56eff0b3b016562
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.116.0 (2025-10-30)
5
+ ------------------
6
+
7
+ * Feature - Add cross account VPC endpoint service connectivity support to CustomKeyStore.
8
+
4
9
  1.115.0 (2025-10-21)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.115.0
1
+ 1.116.0
@@ -1083,6 +1083,13 @@ module Aws::KMS
1083
1083
  #
1084
1084
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-xks-keystore.html#xks-requirements
1085
1085
  #
1086
+ # @option params [String] :xks_proxy_vpc_endpoint_service_owner
1087
+ # Specifies the Amazon Web Services account ID that owns the Amazon VPC
1088
+ # service endpoint for the interface that is used to communicate with
1089
+ # your external key store proxy (XKS proxy). This parameter is optional.
1090
+ # If not provided, the Amazon Web Services account ID calling the action
1091
+ # will be used.
1092
+ #
1086
1093
  # @option params [Types::XksProxyAuthenticationCredentialType] :xks_proxy_authentication_credential
1087
1094
  # Specifies an authentication credential for the external key store
1088
1095
  # proxy (XKS proxy). This parameter is required for all custom key
@@ -1209,6 +1216,7 @@ module Aws::KMS
1209
1216
  # xks_proxy_uri_endpoint: "XksProxyUriEndpointType",
1210
1217
  # xks_proxy_uri_path: "XksProxyUriPathType",
1211
1218
  # xks_proxy_vpc_endpoint_service_name: "XksProxyVpcEndpointServiceNameType",
1219
+ # xks_proxy_vpc_endpoint_service_owner: "AccountIdType",
1212
1220
  # xks_proxy_authentication_credential: {
1213
1221
  # access_key_id: "XksProxyAuthenticationAccessKeyIdType", # required
1214
1222
  # raw_secret_access_key: "XksProxyAuthenticationRawSecretAccessKeyType", # required
@@ -3593,6 +3601,7 @@ module Aws::KMS
3593
3601
  # resp.custom_key_stores[0].xks_proxy_configuration.uri_endpoint #=> String
3594
3602
  # resp.custom_key_stores[0].xks_proxy_configuration.uri_path #=> String
3595
3603
  # resp.custom_key_stores[0].xks_proxy_configuration.vpc_endpoint_service_name #=> String
3604
+ # resp.custom_key_stores[0].xks_proxy_configuration.vpc_endpoint_service_owner #=> String
3596
3605
  # resp.next_marker #=> String
3597
3606
  # resp.truncated #=> Boolean
3598
3607
  #
@@ -10290,6 +10299,15 @@ module Aws::KMS
10290
10299
  #
10291
10300
  # To change this value, the external key store must be disconnected.
10292
10301
  #
10302
+ # @option params [String] :xks_proxy_vpc_endpoint_service_owner
10303
+ # Changes the Amazon Web Services account ID that KMS uses to identify
10304
+ # the Amazon VPC endpoint service for your external key store proxy (XKS
10305
+ # proxy). This parameter is optional. If not specified, the current
10306
+ # Amazon Web Services account ID for the VPC endpoint service will not
10307
+ # be updated.
10308
+ #
10309
+ # To change this value, the external key store must be disconnected.
10310
+ #
10293
10311
  # @option params [Types::XksProxyAuthenticationCredentialType] :xks_proxy_authentication_credential
10294
10312
  # Changes the credentials that KMS uses to sign requests to the external
10295
10313
  # key store proxy (XKS proxy). This parameter is valid only for custom
@@ -10431,6 +10449,7 @@ module Aws::KMS
10431
10449
  # xks_proxy_uri_endpoint: "XksProxyUriEndpointType",
10432
10450
  # xks_proxy_uri_path: "XksProxyUriPathType",
10433
10451
  # xks_proxy_vpc_endpoint_service_name: "XksProxyVpcEndpointServiceNameType",
10452
+ # xks_proxy_vpc_endpoint_service_owner: "AccountIdType",
10434
10453
  # xks_proxy_authentication_credential: {
10435
10454
  # access_key_id: "XksProxyAuthenticationAccessKeyIdType", # required
10436
10455
  # raw_secret_access_key: "XksProxyAuthenticationRawSecretAccessKeyType", # required
@@ -11080,7 +11099,7 @@ module Aws::KMS
11080
11099
  tracer: tracer
11081
11100
  )
11082
11101
  context[:gem_name] = 'aws-sdk-kms'
11083
- context[:gem_version] = '1.115.0'
11102
+ context[:gem_version] = '1.116.0'
11084
11103
  Seahorse::Client::Request.new(handlers, context)
11085
11104
  end
11086
11105
 
@@ -15,6 +15,7 @@ module Aws::KMS
15
15
  include Seahorse::Model
16
16
 
17
17
  AWSAccountIdType = Shapes::StringShape.new(name: 'AWSAccountIdType')
18
+ AccountIdType = Shapes::StringShape.new(name: 'AccountIdType')
18
19
  AlgorithmSpec = Shapes::StringShape.new(name: 'AlgorithmSpec')
19
20
  AliasList = Shapes::ListShape.new(name: 'AliasList')
20
21
  AliasListEntry = Shapes::StructureShape.new(name: 'AliasListEntry')
@@ -308,6 +309,7 @@ module Aws::KMS
308
309
  CreateCustomKeyStoreRequest.add_member(:xks_proxy_uri_endpoint, Shapes::ShapeRef.new(shape: XksProxyUriEndpointType, location_name: "XksProxyUriEndpoint"))
309
310
  CreateCustomKeyStoreRequest.add_member(:xks_proxy_uri_path, Shapes::ShapeRef.new(shape: XksProxyUriPathType, location_name: "XksProxyUriPath"))
310
311
  CreateCustomKeyStoreRequest.add_member(:xks_proxy_vpc_endpoint_service_name, Shapes::ShapeRef.new(shape: XksProxyVpcEndpointServiceNameType, location_name: "XksProxyVpcEndpointServiceName"))
312
+ CreateCustomKeyStoreRequest.add_member(:xks_proxy_vpc_endpoint_service_owner, Shapes::ShapeRef.new(shape: AccountIdType, location_name: "XksProxyVpcEndpointServiceOwner"))
311
313
  CreateCustomKeyStoreRequest.add_member(:xks_proxy_authentication_credential, Shapes::ShapeRef.new(shape: XksProxyAuthenticationCredentialType, location_name: "XksProxyAuthenticationCredential"))
312
314
  CreateCustomKeyStoreRequest.add_member(:xks_proxy_connectivity, Shapes::ShapeRef.new(shape: XksProxyConnectivityType, location_name: "XksProxyConnectivity"))
313
315
  CreateCustomKeyStoreRequest.struct_class = Types::CreateCustomKeyStoreRequest
@@ -948,6 +950,7 @@ module Aws::KMS
948
950
  UpdateCustomKeyStoreRequest.add_member(:xks_proxy_uri_endpoint, Shapes::ShapeRef.new(shape: XksProxyUriEndpointType, location_name: "XksProxyUriEndpoint"))
949
951
  UpdateCustomKeyStoreRequest.add_member(:xks_proxy_uri_path, Shapes::ShapeRef.new(shape: XksProxyUriPathType, location_name: "XksProxyUriPath"))
950
952
  UpdateCustomKeyStoreRequest.add_member(:xks_proxy_vpc_endpoint_service_name, Shapes::ShapeRef.new(shape: XksProxyVpcEndpointServiceNameType, location_name: "XksProxyVpcEndpointServiceName"))
953
+ UpdateCustomKeyStoreRequest.add_member(:xks_proxy_vpc_endpoint_service_owner, Shapes::ShapeRef.new(shape: AccountIdType, location_name: "XksProxyVpcEndpointServiceOwner"))
951
954
  UpdateCustomKeyStoreRequest.add_member(:xks_proxy_authentication_credential, Shapes::ShapeRef.new(shape: XksProxyAuthenticationCredentialType, location_name: "XksProxyAuthenticationCredential"))
952
955
  UpdateCustomKeyStoreRequest.add_member(:xks_proxy_connectivity, Shapes::ShapeRef.new(shape: XksProxyConnectivityType, location_name: "XksProxyConnectivity"))
953
956
  UpdateCustomKeyStoreRequest.struct_class = Types::UpdateCustomKeyStoreRequest
@@ -1010,6 +1013,7 @@ module Aws::KMS
1010
1013
  XksProxyConfigurationType.add_member(:uri_endpoint, Shapes::ShapeRef.new(shape: XksProxyUriEndpointType, location_name: "UriEndpoint"))
1011
1014
  XksProxyConfigurationType.add_member(:uri_path, Shapes::ShapeRef.new(shape: XksProxyUriPathType, location_name: "UriPath"))
1012
1015
  XksProxyConfigurationType.add_member(:vpc_endpoint_service_name, Shapes::ShapeRef.new(shape: XksProxyVpcEndpointServiceNameType, location_name: "VpcEndpointServiceName"))
1016
+ XksProxyConfigurationType.add_member(:vpc_endpoint_service_owner, Shapes::ShapeRef.new(shape: AccountIdType, location_name: "VpcEndpointServiceOwner"))
1013
1017
  XksProxyConfigurationType.struct_class = Types::XksProxyConfigurationType
1014
1018
 
1015
1019
  XksProxyIncorrectAuthenticationCredentialException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessageType, location_name: "message"))
@@ -485,6 +485,14 @@ module Aws::KMS
485
485
  # [1]: https://docs.aws.amazon.com/kms/latest/developerguide/create-xks-keystore.html#xks-requirements
486
486
  # @return [String]
487
487
  #
488
+ # @!attribute [rw] xks_proxy_vpc_endpoint_service_owner
489
+ # Specifies the Amazon Web Services account ID that owns the Amazon
490
+ # VPC service endpoint for the interface that is used to communicate
491
+ # with your external key store proxy (XKS proxy). This parameter is
492
+ # optional. If not provided, the Amazon Web Services account ID
493
+ # calling the action will be used.
494
+ # @return [String]
495
+ #
488
496
  # @!attribute [rw] xks_proxy_authentication_credential
489
497
  # Specifies an authentication credential for the external key store
490
498
  # proxy (XKS proxy). This parameter is required for all custom key
@@ -549,6 +557,7 @@ module Aws::KMS
549
557
  :xks_proxy_uri_endpoint,
550
558
  :xks_proxy_uri_path,
551
559
  :xks_proxy_vpc_endpoint_service_name,
560
+ :xks_proxy_vpc_endpoint_service_owner,
552
561
  :xks_proxy_authentication_credential,
553
562
  :xks_proxy_connectivity)
554
563
  SENSITIVE = [:key_store_password]
@@ -6596,6 +6605,16 @@ module Aws::KMS
6596
6605
  # To change this value, the external key store must be disconnected.
6597
6606
  # @return [String]
6598
6607
  #
6608
+ # @!attribute [rw] xks_proxy_vpc_endpoint_service_owner
6609
+ # Changes the Amazon Web Services account ID that KMS uses to identify
6610
+ # the Amazon VPC endpoint service for your external key store proxy
6611
+ # (XKS proxy). This parameter is optional. If not specified, the
6612
+ # current Amazon Web Services account ID for the VPC endpoint service
6613
+ # will not be updated.
6614
+ #
6615
+ # To change this value, the external key store must be disconnected.
6616
+ # @return [String]
6617
+ #
6599
6618
  # @!attribute [rw] xks_proxy_authentication_credential
6600
6619
  # Changes the credentials that KMS uses to sign requests to the
6601
6620
  # external key store proxy (XKS proxy). This parameter is valid only
@@ -6643,6 +6662,7 @@ module Aws::KMS
6643
6662
  :xks_proxy_uri_endpoint,
6644
6663
  :xks_proxy_uri_path,
6645
6664
  :xks_proxy_vpc_endpoint_service_name,
6665
+ :xks_proxy_vpc_endpoint_service_owner,
6646
6666
  :xks_proxy_authentication_credential,
6647
6667
  :xks_proxy_connectivity)
6648
6668
  SENSITIVE = [:key_store_password]
@@ -7141,6 +7161,13 @@ module Aws::KMS
7141
7161
  # with KMS.
7142
7162
  # @return [String]
7143
7163
  #
7164
+ # @!attribute [rw] vpc_endpoint_service_owner
7165
+ # The Amazon Web Services account ID that owns the Amazon VPC endpoint
7166
+ # service used to communicate with the external key store proxy (XKS).
7167
+ # This field appears only when the XKS uses an VPC endpoint service to
7168
+ # communicate with KMS.
7169
+ # @return [String]
7170
+ #
7144
7171
  # @see http://docs.aws.amazon.com/goto/WebAPI/kms-2014-11-01/XksProxyConfigurationType AWS API Documentation
7145
7172
  #
7146
7173
  class XksProxyConfigurationType < Struct.new(
@@ -7148,7 +7175,8 @@ module Aws::KMS
7148
7175
  :access_key_id,
7149
7176
  :uri_endpoint,
7150
7177
  :uri_path,
7151
- :vpc_endpoint_service_name)
7178
+ :vpc_endpoint_service_name,
7179
+ :vpc_endpoint_service_owner)
7152
7180
  SENSITIVE = [:access_key_id]
7153
7181
  include Aws::Structure
7154
7182
  end
data/lib/aws-sdk-kms.rb CHANGED
@@ -54,7 +54,7 @@ module Aws::KMS
54
54
  autoload :EndpointProvider, 'aws-sdk-kms/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-kms/endpoints'
56
56
 
57
- GEM_VERSION = '1.115.0'
57
+ GEM_VERSION = '1.116.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -119,6 +119,7 @@ module Aws
119
119
  ?xks_proxy_uri_endpoint: ::String,
120
120
  ?xks_proxy_uri_path: ::String,
121
121
  ?xks_proxy_vpc_endpoint_service_name: ::String,
122
+ ?xks_proxy_vpc_endpoint_service_owner: ::String,
122
123
  ?xks_proxy_authentication_credential: {
123
124
  access_key_id: ::String,
124
125
  raw_secret_access_key: ::String
@@ -764,6 +765,7 @@ module Aws
764
765
  ?xks_proxy_uri_endpoint: ::String,
765
766
  ?xks_proxy_uri_path: ::String,
766
767
  ?xks_proxy_vpc_endpoint_service_name: ::String,
768
+ ?xks_proxy_vpc_endpoint_service_owner: ::String,
767
769
  ?xks_proxy_authentication_credential: {
768
770
  access_key_id: ::String,
769
771
  raw_secret_access_key: ::String
data/sig/types.rbs CHANGED
@@ -85,6 +85,7 @@ module Aws::KMS
85
85
  attr_accessor xks_proxy_uri_endpoint: ::String
86
86
  attr_accessor xks_proxy_uri_path: ::String
87
87
  attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
88
+ attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
88
89
  attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
89
90
  attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
90
91
  SENSITIVE: [:key_store_password]
@@ -926,6 +927,7 @@ module Aws::KMS
926
927
  attr_accessor xks_proxy_uri_endpoint: ::String
927
928
  attr_accessor xks_proxy_uri_path: ::String
928
929
  attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
930
+ attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
929
931
  attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
930
932
  attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
931
933
  SENSITIVE: [:key_store_password]
@@ -1013,6 +1015,7 @@ module Aws::KMS
1013
1015
  attr_accessor uri_endpoint: ::String
1014
1016
  attr_accessor uri_path: ::String
1015
1017
  attr_accessor vpc_endpoint_service_name: ::String
1018
+ attr_accessor vpc_endpoint_service_owner: ::String
1016
1019
  SENSITIVE: [:access_key_id]
1017
1020
  end
1018
1021
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kms
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.115.0
4
+ version: 1.116.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services