Struct aws_sdk_kms::operation::delete_custom_key_store::builders::DeleteCustomKeyStoreFluentBuilder
source · pub struct DeleteCustomKeyStoreFluentBuilder { /* private fields */ }
Expand description
Fluent builder constructing a request to DeleteCustomKeyStore
.
Deletes a custom key store. This operation does not affect any backing elements of the custom key store. It does not delete the CloudHSM cluster that is associated with an CloudHSM key store, or affect any users or keys in the cluster. For an external key store, it does not affect the external key store proxy, external key manager, or any external keys.
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.
The custom key store that you delete cannot contain any KMS keys. Before deleting the key store, verify that you will never need to use any of the KMS keys in the key store for any cryptographic operations. Then, use ScheduleKeyDeletion
to delete the KMS keys from the key store. After the required waiting period expires and all KMS keys are deleted from the custom key store, use DisconnectCustomKeyStore
to disconnect the key store from KMS. Then, you can delete the custom key store.
For keys in an CloudHSM key store, the ScheduleKeyDeletion
operation makes a best effort to delete the key material from the associated cluster. However, you might need to manually delete the orphaned key material from the cluster and its backups. KMS never creates, manages, or deletes cryptographic keys in the external key manager associated with an external key store. You must manage them using your external key manager tools.
Instead of deleting the custom key store, consider using the DisconnectCustomKeyStore
operation to disconnect the custom key store from its backing key store. While the key store is disconnected, you cannot create or use the KMS keys in the key store. But, you do not need to delete KMS keys and you can reconnect a disconnected custom key store at any time.
If the operation succeeds, it returns a JSON object with no properties.
Cross-account use: No. You cannot perform this operation on a custom key store in a different Amazon Web Services account.
Required permissions: kms:DeleteCustomKeyStore (IAM policy)
Related operations:
-
ConnectCustomKeyStore
-
CreateCustomKeyStore
-
DescribeCustomKeyStores
-
DisconnectCustomKeyStore
-
UpdateCustomKeyStore
Eventual consistency: The KMS API follows an eventual consistency model. For more information, see KMS eventual consistency.
Implementations§
source§impl DeleteCustomKeyStoreFluentBuilder
impl DeleteCustomKeyStoreFluentBuilder
sourcepub fn as_input(&self) -> &DeleteCustomKeyStoreInputBuilder
pub fn as_input(&self) -> &DeleteCustomKeyStoreInputBuilder
Access the DeleteCustomKeyStore as a reference.
sourcepub async fn send(
self
) -> Result<DeleteCustomKeyStoreOutput, SdkError<DeleteCustomKeyStoreError, HttpResponse>>
pub async fn send( self ) -> Result<DeleteCustomKeyStoreOutput, SdkError<DeleteCustomKeyStoreError, HttpResponse>>
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 customize(
self
) -> CustomizableOperation<DeleteCustomKeyStoreOutput, DeleteCustomKeyStoreError, Self>
pub fn customize( self ) -> CustomizableOperation<DeleteCustomKeyStoreOutput, DeleteCustomKeyStoreError, Self>
Consumes this builder, creating a customizable operation that can be modified before being sent.
sourcepub fn custom_key_store_id(self, input: impl Into<String>) -> Self
pub fn custom_key_store_id(self, input: impl Into<String>) -> Self
Enter the ID of the custom key store you want to delete. 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
Enter the ID of the custom key store you want to delete. To find the ID of a custom key store, use the DescribeCustomKeyStores
operation.
sourcepub fn get_custom_key_store_id(&self) -> &Option<String>
pub fn get_custom_key_store_id(&self) -> &Option<String>
Enter the ID of the custom key store you want to delete. To find the ID of a custom key store, use the DescribeCustomKeyStores
operation.
Trait Implementations§
source§impl Clone for DeleteCustomKeyStoreFluentBuilder
impl Clone for DeleteCustomKeyStoreFluentBuilder
source§fn clone(&self) -> DeleteCustomKeyStoreFluentBuilder
fn clone(&self) -> DeleteCustomKeyStoreFluentBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more