Struct aws_sdk_kms::input::UpdateCustomKeyStoreInput
source · [−]#[non_exhaustive]pub struct UpdateCustomKeyStoreInput {
pub custom_key_store_id: Option<String>,
pub new_custom_key_store_name: Option<String>,
pub key_store_password: Option<String>,
pub cloud_hsm_cluster_id: Option<String>,
}Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.custom_key_store_id: Option<String>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.
new_custom_key_store_name: Option<String>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.
key_store_password: Option<String>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.
cloud_hsm_cluster_id: Option<String>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.
Implementations
sourceimpl UpdateCustomKeyStoreInput
impl UpdateCustomKeyStoreInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCustomKeyStore, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<UpdateCustomKeyStore, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<UpdateCustomKeyStore>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture UpdateCustomKeyStoreInput
sourceimpl UpdateCustomKeyStoreInput
impl UpdateCustomKeyStoreInput
sourcepub fn custom_key_store_id(&self) -> Option<&str>
pub fn custom_key_store_id(&self) -> Option<&str>
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) -> Option<&str>
pub fn new_custom_key_store_name(&self) -> Option<&str>
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) -> Option<&str>
pub fn key_store_password(&self) -> Option<&str>
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) -> Option<&str>
pub fn cloud_hsm_cluster_id(&self) -> Option<&str>
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
sourceimpl Clone for UpdateCustomKeyStoreInput
impl Clone for UpdateCustomKeyStoreInput
sourcefn clone(&self) -> UpdateCustomKeyStoreInput
fn clone(&self) -> UpdateCustomKeyStoreInput
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for UpdateCustomKeyStoreInput
impl Debug for UpdateCustomKeyStoreInput
sourceimpl PartialEq<UpdateCustomKeyStoreInput> for UpdateCustomKeyStoreInput
impl PartialEq<UpdateCustomKeyStoreInput> for UpdateCustomKeyStoreInput
sourcefn eq(&self, other: &UpdateCustomKeyStoreInput) -> bool
fn eq(&self, other: &UpdateCustomKeyStoreInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &UpdateCustomKeyStoreInput) -> bool
fn ne(&self, other: &UpdateCustomKeyStoreInput) -> bool
This method tests for !=.
impl StructuralPartialEq for UpdateCustomKeyStoreInput
Auto Trait Implementations
impl RefUnwindSafe for UpdateCustomKeyStoreInput
impl Send for UpdateCustomKeyStoreInput
impl Sync for UpdateCustomKeyStoreInput
impl Unpin for UpdateCustomKeyStoreInput
impl UnwindSafe for UpdateCustomKeyStoreInput
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber to this type, returning a
WithDispatch wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber to this type, returning a
WithDispatch wrapper. Read more