pub struct DisconnectCustomKeyStore { /* private fields */ }
Expand description
Fluent builder constructing a request to DisconnectCustomKeyStore
.
Disconnects the custom key store from its associated CloudHSM cluster. While a custom key store is disconnected, you can manage the custom key store and its KMS keys, but you cannot create or use KMS keys in the custom key store. You can reconnect the custom key store at any time.
While a custom key store is disconnected, all attempts to create KMS keys in the custom key store or to use existing KMS keys in cryptographic operations will fail. This action can prevent users from storing and accessing sensitive data.
To find the connection state of a custom key store, use the DescribeCustomKeyStores
operation. To reconnect a custom key store, use the ConnectCustomKeyStore
operation.
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:DisconnectCustomKeyStore (IAM policy)
Related operations:
-
ConnectCustomKeyStore
-
CreateCustomKeyStore
-
DeleteCustomKeyStore
-
DescribeCustomKeyStores
-
UpdateCustomKeyStore
Implementations§
source§impl DisconnectCustomKeyStore
impl DisconnectCustomKeyStore
sourcepub async fn customize(
self
) -> Result<CustomizableOperation<DisconnectCustomKeyStore, AwsResponseRetryClassifier>, SdkError<DisconnectCustomKeyStoreError>>
pub async fn customize(
self
) -> Result<CustomizableOperation<DisconnectCustomKeyStore, AwsResponseRetryClassifier>, SdkError<DisconnectCustomKeyStoreError>>
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<DisconnectCustomKeyStoreOutput, SdkError<DisconnectCustomKeyStoreError>>
pub async fn send(
self
) -> Result<DisconnectCustomKeyStoreOutput, SdkError<DisconnectCustomKeyStoreError>>
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
Enter the ID of the custom key store you want to disconnect. 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 disconnect. To find the ID of a custom key store, use the DescribeCustomKeyStores
operation.
Trait Implementations§
source§impl Clone for DisconnectCustomKeyStore
impl Clone for DisconnectCustomKeyStore
source§fn clone(&self) -> DisconnectCustomKeyStore
fn clone(&self) -> DisconnectCustomKeyStore
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more