@aws-sdk/client-kms 3.920.0 → 3.921.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.
@@ -134,6 +134,7 @@ declare const CreateCustomKeyStoreCommand_base: {
134
134
  * XksProxyUriEndpoint: "STRING_VALUE",
135
135
  * XksProxyUriPath: "STRING_VALUE",
136
136
  * XksProxyVpcEndpointServiceName: "STRING_VALUE",
137
+ * XksProxyVpcEndpointServiceOwner: "STRING_VALUE",
137
138
  * XksProxyAuthenticationCredential: { // XksProxyAuthenticationCredentialType
138
139
  * AccessKeyId: "STRING_VALUE", // required
139
140
  * RawSecretAccessKey: "STRING_VALUE", // required
@@ -30,8 +30,8 @@ declare const DeriveSharedSecretCommand_base: {
30
30
  * <p>Derives a shared secret using a key agreement algorithm.</p>
31
31
  * <note>
32
32
  * <p>You must use an asymmetric NIST-recommended elliptic curve (ECC) or SM2 (China Regions
33
- * only) KMS key pair with a <code>KeyUsage</code>
34
- * value of <code>KEY_AGREEMENT</code> to call DeriveSharedSecret.</p>
33
+ * only) KMS key pair with a <code>KeyUsage</code> value of <code>KEY_AGREEMENT</code> to call
34
+ * DeriveSharedSecret.</p>
35
35
  * </note>
36
36
  * <p>DeriveSharedSecret uses the <a href="https://nvlpubs.nist.gov/nistpubs/SpecialPublications/NIST.SP.800-56Ar3.pdf#page=60">Elliptic Curve Cryptography Cofactor Diffie-Hellman Primitive</a> (ECDH) to establish a
37
37
  * key agreement between two peers by deriving a shared secret from their elliptic curve
@@ -122,6 +122,7 @@ declare const DescribeCustomKeyStoresCommand_base: {
122
122
  * // UriEndpoint: "STRING_VALUE",
123
123
  * // UriPath: "STRING_VALUE",
124
124
  * // VpcEndpointServiceName: "STRING_VALUE",
125
+ * // VpcEndpointServiceOwner: "STRING_VALUE",
125
126
  * // },
126
127
  * // },
127
128
  * // ],
@@ -139,6 +139,7 @@ declare const UpdateCustomKeyStoreCommand_base: {
139
139
  * XksProxyUriEndpoint: "STRING_VALUE",
140
140
  * XksProxyUriPath: "STRING_VALUE",
141
141
  * XksProxyVpcEndpointServiceName: "STRING_VALUE",
142
+ * XksProxyVpcEndpointServiceOwner: "STRING_VALUE",
142
143
  * XksProxyAuthenticationCredential: { // XksProxyAuthenticationCredentialType
143
144
  * AccessKeyId: "STRING_VALUE", // required
144
145
  * RawSecretAccessKey: "STRING_VALUE", // required
@@ -662,6 +662,13 @@ export interface CreateCustomKeyStoreRequest {
662
662
  * @public
663
663
  */
664
664
  XksProxyVpcEndpointServiceName?: string | undefined;
665
+ /**
666
+ * <p>Specifies the Amazon Web Services account ID that owns the Amazon VPC service endpoint for the interface that
667
+ * is used to communicate with your external key store proxy (XKS proxy). This parameter is
668
+ * optional. If not provided, the Amazon Web Services account ID calling the action will be used.</p>
669
+ * @public
670
+ */
671
+ XksProxyVpcEndpointServiceOwner?: string | undefined;
665
672
  /**
666
673
  * <p>Specifies an authentication credential for the external key store proxy (XKS proxy). This
667
674
  * parameter is required for all custom key stores with a <code>CustomKeyStoreType</code> of
@@ -2117,6 +2124,13 @@ export interface XksProxyConfigurationType {
2117
2124
  * @public
2118
2125
  */
2119
2126
  VpcEndpointServiceName?: string | undefined;
2127
+ /**
2128
+ * <p>The Amazon Web Services account ID that owns the Amazon VPC endpoint service used to communicate with the
2129
+ * external key store proxy (XKS). This field appears only when the XKS uses an VPC endpoint
2130
+ * service to communicate with KMS.</p>
2131
+ * @public
2132
+ */
2133
+ VpcEndpointServiceOwner?: string | undefined;
2120
2134
  }
2121
2135
  /**
2122
2136
  * <p>Contains information about each custom key store in the custom key store list.</p>
@@ -5903,6 +5917,14 @@ export interface UpdateCustomKeyStoreRequest {
5903
5917
  * @public
5904
5918
  */
5905
5919
  XksProxyVpcEndpointServiceName?: string | undefined;
5920
+ /**
5921
+ * <p>Changes the Amazon Web Services account ID that KMS uses to identify the Amazon VPC endpoint service for
5922
+ * your external key store proxy (XKS proxy). This parameter is optional. If not specified, the current
5923
+ * Amazon Web Services account ID for the VPC endpoint service will not be updated.</p>
5924
+ * <p>To change this value, the external key store must be disconnected.</p>
5925
+ * @public
5926
+ */
5927
+ XksProxyVpcEndpointServiceOwner?: string | undefined;
5906
5928
  /**
5907
5929
  * <p>Changes the credentials that KMS uses to sign requests to the external key store proxy
5908
5930
  * (XKS proxy). This parameter is valid only for custom key stores with a
@@ -212,6 +212,7 @@ export interface CreateCustomKeyStoreRequest {
212
212
  XksProxyUriEndpoint?: string | undefined;
213
213
  XksProxyUriPath?: string | undefined;
214
214
  XksProxyVpcEndpointServiceName?: string | undefined;
215
+ XksProxyVpcEndpointServiceOwner?: string | undefined;
215
216
  XksProxyAuthenticationCredential?:
216
217
  | XksProxyAuthenticationCredentialType
217
218
  | undefined;
@@ -616,6 +617,7 @@ export interface XksProxyConfigurationType {
616
617
  UriEndpoint?: string | undefined;
617
618
  UriPath?: string | undefined;
618
619
  VpcEndpointServiceName?: string | undefined;
620
+ VpcEndpointServiceOwner?: string | undefined;
619
621
  }
620
622
  export interface CustomKeyStoresListEntry {
621
623
  CustomKeyStoreId?: string | undefined;
@@ -1197,6 +1199,7 @@ export interface UpdateCustomKeyStoreRequest {
1197
1199
  XksProxyUriEndpoint?: string | undefined;
1198
1200
  XksProxyUriPath?: string | undefined;
1199
1201
  XksProxyVpcEndpointServiceName?: string | undefined;
1202
+ XksProxyVpcEndpointServiceOwner?: string | undefined;
1200
1203
  XksProxyAuthenticationCredential?:
1201
1204
  | XksProxyAuthenticationCredentialType
1202
1205
  | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-kms",
3
3
  "description": "AWS SDK for JavaScript Kms Client for Node.js, Browser and React Native",
4
- "version": "3.920.0",
4
+ "version": "3.921.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-kms",
@@ -20,41 +20,41 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.920.0",
24
- "@aws-sdk/credential-provider-node": "3.920.0",
25
- "@aws-sdk/middleware-host-header": "3.920.0",
26
- "@aws-sdk/middleware-logger": "3.920.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.920.0",
28
- "@aws-sdk/middleware-user-agent": "3.920.0",
29
- "@aws-sdk/region-config-resolver": "3.920.0",
30
- "@aws-sdk/types": "3.920.0",
31
- "@aws-sdk/util-endpoints": "3.920.0",
32
- "@aws-sdk/util-user-agent-browser": "3.920.0",
33
- "@aws-sdk/util-user-agent-node": "3.920.0",
34
- "@smithy/config-resolver": "^4.4.0",
35
- "@smithy/core": "^3.17.1",
36
- "@smithy/fetch-http-handler": "^5.3.4",
37
- "@smithy/hash-node": "^4.2.3",
38
- "@smithy/invalid-dependency": "^4.2.3",
39
- "@smithy/middleware-content-length": "^4.2.3",
40
- "@smithy/middleware-endpoint": "^4.3.5",
41
- "@smithy/middleware-retry": "^4.4.5",
42
- "@smithy/middleware-serde": "^4.2.3",
43
- "@smithy/middleware-stack": "^4.2.3",
44
- "@smithy/node-config-provider": "^4.3.3",
45
- "@smithy/node-http-handler": "^4.4.3",
46
- "@smithy/protocol-http": "^5.3.3",
47
- "@smithy/smithy-client": "^4.9.1",
48
- "@smithy/types": "^4.8.0",
49
- "@smithy/url-parser": "^4.2.3",
23
+ "@aws-sdk/core": "3.921.0",
24
+ "@aws-sdk/credential-provider-node": "3.921.0",
25
+ "@aws-sdk/middleware-host-header": "3.921.0",
26
+ "@aws-sdk/middleware-logger": "3.921.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.921.0",
28
+ "@aws-sdk/middleware-user-agent": "3.921.0",
29
+ "@aws-sdk/region-config-resolver": "3.921.0",
30
+ "@aws-sdk/types": "3.921.0",
31
+ "@aws-sdk/util-endpoints": "3.921.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.921.0",
33
+ "@aws-sdk/util-user-agent-node": "3.921.0",
34
+ "@smithy/config-resolver": "^4.4.1",
35
+ "@smithy/core": "^3.17.2",
36
+ "@smithy/fetch-http-handler": "^5.3.5",
37
+ "@smithy/hash-node": "^4.2.4",
38
+ "@smithy/invalid-dependency": "^4.2.4",
39
+ "@smithy/middleware-content-length": "^4.2.4",
40
+ "@smithy/middleware-endpoint": "^4.3.6",
41
+ "@smithy/middleware-retry": "^4.4.6",
42
+ "@smithy/middleware-serde": "^4.2.4",
43
+ "@smithy/middleware-stack": "^4.2.4",
44
+ "@smithy/node-config-provider": "^4.3.4",
45
+ "@smithy/node-http-handler": "^4.4.4",
46
+ "@smithy/protocol-http": "^5.3.4",
47
+ "@smithy/smithy-client": "^4.9.2",
48
+ "@smithy/types": "^4.8.1",
49
+ "@smithy/url-parser": "^4.2.4",
50
50
  "@smithy/util-base64": "^4.3.0",
51
51
  "@smithy/util-body-length-browser": "^4.2.0",
52
52
  "@smithy/util-body-length-node": "^4.2.1",
53
- "@smithy/util-defaults-mode-browser": "^4.3.4",
54
- "@smithy/util-defaults-mode-node": "^4.2.6",
55
- "@smithy/util-endpoints": "^3.2.3",
56
- "@smithy/util-middleware": "^4.2.3",
57
- "@smithy/util-retry": "^4.2.3",
53
+ "@smithy/util-defaults-mode-browser": "^4.3.5",
54
+ "@smithy/util-defaults-mode-node": "^4.2.7",
55
+ "@smithy/util-endpoints": "^3.2.4",
56
+ "@smithy/util-middleware": "^4.2.4",
57
+ "@smithy/util-retry": "^4.2.4",
58
58
  "@smithy/util-utf8": "^4.2.0",
59
59
  "tslib": "^2.6.2"
60
60
  },