Struct aws_sdk_kms::client::fluent_builders::UpdateCustomKeyStore
source · pub struct UpdateCustomKeyStore { /* private fields */ }
Expand description
Fluent builder constructing a request to UpdateCustomKeyStore
.
Changes the properties of a custom key store. Use the CustomKeyStoreId
parameter to identify the custom key store you want to edit. Use the remaining parameters to change the properties of the custom key store.
You can only update a custom key store that is disconnected. To disconnect the custom key store, use DisconnectCustomKeyStore
. To reconnect the custom key store after the update completes, use ConnectCustomKeyStore
. To find the connection state of a custom key store, use the DescribeCustomKeyStores
operation.
The CustomKeyStoreId
parameter is required in all commands. Use the other parameters of UpdateCustomKeyStore
to edit your key store settings.
-
Use the
NewCustomKeyStoreName
parameter to change the friendly name of the custom key store to the value that you specify. -
Use the
KeyStorePassword
parameter tell KMS the current password of thekmsuser
crypto user (CU) in the associated CloudHSM cluster. You can use this parameter to fix connection failures that occur when KMS cannot log into the associated cluster because thekmsuser
password has changed. This value does not change the password in the CloudHSM cluster. -
Use the
CloudHsmClusterId
parameter to associate the custom key store with a different, but related, CloudHSM cluster. You can use this parameter to repair a custom key store if its CloudHSM cluster becomes corrupted or is deleted, or when you need to create or restore a cluster from a backup.
If the operation succeeds, it returns a JSON object with no properties.
This operation is part of the custom key store feature feature in KMS, which combines the convenience and extensive integration of KMS with the isolation and control of a single-tenant key store.
Cross-account use: No. You cannot perform this operation on a custom key store in a different Amazon Web Services account.
Required permissions: kms:UpdateCustomKeyStore (IAM policy)
Related operations:
-
ConnectCustomKeyStore
-
CreateCustomKeyStore
-
DeleteCustomKeyStore
-
DescribeCustomKeyStores
-
DisconnectCustomKeyStore
Implementations§
source§impl UpdateCustomKeyStore
impl UpdateCustomKeyStore
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<UpdateCustomKeyStore, AwsResponseRetryClassifier>, SdkError<UpdateCustomKeyStoreError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<UpdateCustomKeyStore, AwsResponseRetryClassifier>, SdkError<UpdateCustomKeyStoreError>>
Consume this builder, creating a customizable operation that can be modified before being sent. The operation’s inner http::Request can be modified as well.
sourcepub async fn send(
self
) -> Result<UpdateCustomKeyStoreOutput, SdkError<UpdateCustomKeyStoreError>>
pub async fn send(
self
) -> Result<UpdateCustomKeyStoreOutput, SdkError<UpdateCustomKeyStoreError>>
Sends the request and returns the response.
If an error occurs, an SdkError
will be returned with additional details that
can be matched against.
By default, any retryable failures will be retried twice. Retry behavior is configurable with the RetryConfig, which can be set when configuring the client.
sourcepub fn custom_key_store_id(self, input: impl Into<String>) -> Self
pub fn custom_key_store_id(self, input: impl Into<String>) -> Self
Identifies the custom key store that you want to update. Enter the ID of the custom key store. To find the ID of a custom key store, use the DescribeCustomKeyStores
operation.
sourcepub fn set_custom_key_store_id(self, input: Option<String>) -> Self
pub fn set_custom_key_store_id(self, input: Option<String>) -> Self
Identifies the custom key store that you want to update. Enter the ID of the custom key store. To find the ID of a custom key store, use the DescribeCustomKeyStores
operation.
sourcepub fn new_custom_key_store_name(self, input: impl Into<String>) -> Self
pub fn new_custom_key_store_name(self, input: impl Into<String>) -> Self
Changes the friendly name of the custom key store to the value that you specify. The custom key store name must be unique in the Amazon Web Services account.
sourcepub fn set_new_custom_key_store_name(self, input: Option<String>) -> Self
pub fn set_new_custom_key_store_name(self, input: Option<String>) -> Self
Changes the friendly name of the custom key store to the value that you specify. The custom key store name must be unique in the Amazon Web Services account.
sourcepub fn key_store_password(self, input: impl Into<String>) -> Self
pub fn key_store_password(self, input: impl Into<String>) -> Self
Enter the current password of the kmsuser
crypto user (CU) in the CloudHSM cluster that is associated with the custom key store.
This parameter tells KMS the current password of the kmsuser
crypto user (CU). It does not set or change the password of any users in the CloudHSM cluster.
sourcepub fn set_key_store_password(self, input: Option<String>) -> Self
pub fn set_key_store_password(self, input: Option<String>) -> Self
Enter the current password of the kmsuser
crypto user (CU) in the CloudHSM cluster that is associated with the custom key store.
This parameter tells KMS the current password of the kmsuser
crypto user (CU). It does not set or change the password of any users in the CloudHSM cluster.
sourcepub fn cloud_hsm_cluster_id(self, input: impl Into<String>) -> Self
pub fn cloud_hsm_cluster_id(self, input: impl Into<String>) -> Self
Associates the custom key store with a related CloudHSM cluster.
Enter the cluster ID of the cluster that you used to create the custom key store or a cluster that shares a backup history and has the same cluster certificate as the original cluster. You cannot use this parameter to associate a custom key store with an unrelated cluster. In addition, the replacement cluster must fulfill the requirements for a cluster associated with a custom key store. To view the cluster certificate of a cluster, use the DescribeClusters operation.
sourcepub fn set_cloud_hsm_cluster_id(self, input: Option<String>) -> Self
pub fn set_cloud_hsm_cluster_id(self, input: Option<String>) -> Self
Associates the custom key store with a related CloudHSM cluster.
Enter the cluster ID of the cluster that you used to create the custom key store or a cluster that shares a backup history and has the same cluster certificate as the original cluster. You cannot use this parameter to associate a custom key store with an unrelated cluster. In addition, the replacement cluster must fulfill the requirements for a cluster associated with a custom key store. To view the cluster certificate of a cluster, use the DescribeClusters operation.
Trait Implementations§
source§impl Clone for UpdateCustomKeyStore
impl Clone for UpdateCustomKeyStore
source§fn clone(&self) -> UpdateCustomKeyStore
fn clone(&self) -> UpdateCustomKeyStore
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more