AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.
Container for the parameters to the CreateCustomKeyStore operation. Creates a custom key store backed by a key store that you own and manage. When you use a KMS key in a custom key store for a cryptographic operation, the cryptographic operation is actually performed in your key store using your keys. KMS supports CloudHSM key stores backed by an CloudHSM cluster and external key stores backed by an external key store proxy and external key manager outside of Amazon Web Services.
This operation is part of the custom key stores feature in KMS, which combines the convenience and extensive integration of KMS with the isolation and control of a key store that you own and manage.
Before you create the custom key store, the required elements must be in place and operational. We recommend that you use the test tools that KMS provides to verify the configuration your external key store proxy. For details about the required elements and verification tests, see Assemble the prerequisites (for CloudHSM key stores) or Assemble the prerequisites (for external key stores) in the Key Management Service Developer Guide.
To create a custom key store, use the following parameters.
To create an CloudHSM key store, specify the CustomKeyStoreName
, CloudHsmClusterId
,
KeyStorePassword
, and TrustAnchorCertificate
. The CustomKeyStoreType
parameter is optional for CloudHSM key stores. If you include it, set it to the default
value, AWS_CLOUDHSM
. For help with failures, see Troubleshooting
an CloudHSM key store in the Key Management Service Developer Guide.
To create an external key store, specify the CustomKeyStoreName
and a CustomKeyStoreType
of EXTERNAL_KEY_STORE
. Also, specify values for XksProxyConnectivity
,
XksProxyAuthenticationCredential
, XksProxyUriEndpoint
, and XksProxyUriPath
.
If your XksProxyConnectivity
value is VPC_ENDPOINT_SERVICE
, specify
the XksProxyVpcEndpointServiceName
parameter. For help with failures, see Troubleshooting
an external key store in the Key Management Service Developer Guide.
For external key stores:
Some external key managers provide a simpler method for creating an external key store. For details, see your external key manager documentation.
When creating an external key store in the KMS console, you can upload a JSON-based
proxy configuration file with the desired values. You cannot use a proxy configuration
with the CreateCustomKeyStore
operation. However, you can use the values in
the file to help you determine the correct values for the CreateCustomKeyStore
parameters.
When the operation completes successfully, it returns the ID of the new custom key store. Before you can use your new custom key store, you need to use the ConnectCustomKeyStore operation to connect a new CloudHSM key store to its CloudHSM cluster, or to connect a new external key store to the external key store proxy for your external key manager. Even if you are not going to use your custom key store immediately, you might want to connect it to verify that all settings are correct and then disconnect it until you are ready to use it.
For help with failures, see Troubleshooting a custom key store in the Key Management Service Developer Guide.
Cross-account use: No. You cannot perform this operation on a custom key store in a different Amazon Web Services account.
Required permissions: kms:CreateCustomKeyStore (IAM policy).
Related operations:
Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
Namespace: Amazon.KeyManagementService.Model
Assembly: AWSSDK.KeyManagementService.dll
Version: 3.x.y.z
public class CreateCustomKeyStoreRequest : AmazonKeyManagementServiceRequest IAmazonWebServiceRequest
The CreateCustomKeyStoreRequest type exposes the following members
Name | Description | |
---|---|---|
![]() |
CreateCustomKeyStoreRequest() |
Name | Type | Description | |
---|---|---|---|
![]() |
CloudHsmClusterId | System.String |
Gets and sets the property CloudHsmClusterId.
Identifies the CloudHSM cluster for an CloudHSM key store. This parameter is required
for custom key stores with Enter the cluster ID of any active CloudHSM cluster that is not already associated with a custom key store. To find the cluster ID, use the DescribeClusters operation. |
![]() |
CustomKeyStoreName | System.String |
Gets and sets the property CustomKeyStoreName. Specifies a friendly name for the custom key store. The name must be unique in your Amazon Web Services account and Region. This parameter is required for all custom key stores. Do not include confidential or sensitive information in this field. This field may be displayed in plaintext in CloudTrail logs and other output. |
![]() |
CustomKeyStoreType | Amazon.KeyManagementService.CustomKeyStoreType |
Gets and sets the property CustomKeyStoreType.
Specifies the type of custom key store. The default value is
For a custom key store backed by an CloudHSM cluster, omit the parameter or enter
|
![]() |
KeyStorePassword | System.String |
Gets and sets the property KeyStorePassword.
Specifies the
Enter the password of the The password must be a string of 7 to 32 characters. Its value is case sensitive.
This parameter tells KMS the |
![]() |
TrustAnchorCertificate | System.String |
Gets and sets the property TrustAnchorCertificate.
Specifies the certificate for an CloudHSM key store. This parameter is required for
custom key stores with a
Enter the content of the trust anchor certificate for the CloudHSM cluster. This is
the content of the |
![]() |
XksProxyAuthenticationCredential | Amazon.KeyManagementService.Model.XksProxyAuthenticationCredentialType |
Gets and sets the property XksProxyAuthenticationCredential.
Specifies an authentication credential for the external key store proxy (XKS proxy).
This parameter is required for all custom key stores with a
The KMS uses this authentication credential to sign requests to the external key store proxy on your behalf. This credential is unrelated to Identity and Access Management (IAM) and Amazon Web Services credentials. This parameter doesn't set or change the authentication credentials on the XKS proxy. It just tells KMS the credential that you established on your external key store proxy. If you rotate your proxy authentication credential, use the UpdateCustomKeyStore operation to provide the new credential to KMS. |
![]() |
XksProxyConnectivity | Amazon.KeyManagementService.XksProxyConnectivityType |
Gets and sets the property XksProxyConnectivity.
Indicates how KMS communicates with the external key store proxy. This parameter is
required for custom key stores with a
If the external key store proxy uses a public endpoint, specify An Amazon VPC endpoint service keeps your communication with KMS in a private address space entirely within Amazon Web Services, but it requires more configuration, including establishing a Amazon VPC with multiple subnets, a VPC endpoint service, a network load balancer, and a verified private DNS name. A public endpoint is simpler to set up, but it might be slower and might not fulfill your security requirements. You might consider testing with a public endpoint, and then establishing a VPC endpoint service for production tasks. Note that this choice does not determine the location of the external key store proxy. Even if you choose a VPC endpoint service, the proxy can be hosted within the VPC or outside of Amazon Web Services such as in your corporate data center. |
![]() |
XksProxyUriEndpoint | System.String |
Gets and sets the property XksProxyUriEndpoint.
Specifies the endpoint that KMS uses to send requests to the external key store proxy
(XKS proxy). This parameter is required for custom key stores with a
The protocol must be HTTPS. KMS communicates on port 443. Do not specify the port
in the
For external key stores with
For external key stores with
The value of this parameter must begin with Uniqueness requirements:
|
![]() |
XksProxyUriPath | System.String |
Gets and sets the property XksProxyUriPath.
Specifies the base path to the proxy APIs for this external key store. To find this
value, see the documentation for your external key store proxy. This parameter is
required for all custom key stores with a
The value must start with Uniqueness requirements:
|
![]() |
XksProxyVpcEndpointServiceName | System.String |
Gets and sets the property XksProxyVpcEndpointServiceName.
Specifies the name of the Amazon VPC endpoint service for interface endpoints that
is used to communicate with your external key store proxy (XKS proxy). This parameter
is required when the value of The Amazon VPC endpoint service must fulfill all requirements for use with an external key store. Uniqueness requirements:
|
This example creates a custom key store that is associated with an AWS CloudHSM cluster.
var client = new AmazonKeyManagementServiceClient(); var response = client.CreateCustomKeyStore(new CreateCustomKeyStoreRequest { CloudHsmClusterId = "cluster-234abcdefABC", // The ID of the CloudHSM cluster. CustomKeyStoreName = "ExampleKeyStore", // A friendly name for the custom key store. KeyStorePassword = "kmsPswd", // The password for the kmsuser CU account in the specified cluster. TrustAnchorCertificate = "<certificate-goes-here>" // The content of the customerCA.crt file that you created when you initialized the cluster. }); string customKeyStoreId = response.CustomKeyStoreId; // The ID of the new custom key store.
This example creates an external key store that uses an Amazon VPC endpoint service to communicate with AWS KMS.
var client = new AmazonKeyManagementServiceClient(); var response = client.CreateCustomKeyStore(new CreateCustomKeyStoreRequest { CustomKeyStoreName = "ExampleVPCEndpointKeyStore", // A friendly name for the custom key store CustomKeyStoreType = "EXTERNAL_KEY_STORE", // For external key stores, the value must be EXTERNAL_KEY_STORE XksProxyAuthenticationCredential = new XksProxyAuthenticationCredentialType { AccessKeyId = "ABCDE12345670EXAMPLE", RawSecretAccessKey = "DXjSUawnel2fr6SKC7G25CNxTyWKE5PF9XX6H/u9pSo=" }, // The access key ID and secret access key that KMS uses to authenticate to your external key store proxy XksProxyConnectivity = "VPC_ENDPOINT_SERVICE", // Indicates how AWS KMS communicates with the external key store proxy XksProxyUriEndpoint = "https://myproxy-private.xks.example.com", // The URI that AWS KMS uses to connect to the external key store proxy XksProxyUriPath = "/example-prefix/kms/xks/v1", // The URI path to the external key store proxy APIs XksProxyVpcEndpointServiceName = "com.amazonaws.vpce.us-east-1.vpce-svc-example1" // The VPC endpoint service that KMS uses to communicate with the external key store proxy }); string customKeyStoreId = response.CustomKeyStoreId; // The ID of the new custom key store.
This example creates an external key store with public endpoint connectivity.
var client = new AmazonKeyManagementServiceClient(); var response = client.CreateCustomKeyStore(new CreateCustomKeyStoreRequest { CustomKeyStoreName = "ExamplePublicEndpointKeyStore", // A friendly name for the custom key store CustomKeyStoreType = "EXTERNAL_KEY_STORE", // For external key stores, the value must be EXTERNAL_KEY_STORE XksProxyAuthenticationCredential = new XksProxyAuthenticationCredentialType { AccessKeyId = "ABCDE12345670EXAMPLE", RawSecretAccessKey = "DXjSUawnel2fr6SKC7G25CNxTyWKE5PF9XX6H/u9pSo=" }, // The access key ID and secret access key that KMS uses to authenticate to your external key store proxy XksProxyConnectivity = "PUBLIC_ENDPOINT", // Indicates how AWS KMS communicates with the external key store proxy XksProxyUriEndpoint = "https://myproxy.xks.example.com", // The URI that AWS KMS uses to connect to the external key store proxy XksProxyUriPath = "/kms/xks/v1" // The URI path to your external key store proxy API }); string customKeyStoreId = response.CustomKeyStoreId; // The ID of the new custom key store.
.NET:
Supported in: 8.0 and newer, Core 3.1
.NET Standard:
Supported in: 2.0
.NET Framework:
Supported in: 4.5 and newer, 3.5