[][src]Struct rusoto_kms::UpdateCustomKeyStoreRequest

pub struct UpdateCustomKeyStoreRequest {
    pub cloud_hsm_cluster_id: Option<String>,
    pub custom_key_store_id: String,
    pub key_store_password: Option<String>,
    pub new_custom_key_store_name: Option<String>,
}

Fields

cloud_hsm_cluster_id: Option<String>

Associates the custom key store with a related AWS 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.

custom_key_store_id: 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.

key_store_password: Option<String>

Enter the current password of the kmsuser crypto user (CU) in the AWS CloudHSM cluster that is associated with the custom key store.

This parameter tells AWS KMS the current password of the kmsuser crypto user (CU). It does not set or change the password of any users in the AWS CloudHSM cluster.

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 AWS account.

Trait Implementations

impl Clone for UpdateCustomKeyStoreRequest[src]

impl Debug for UpdateCustomKeyStoreRequest[src]

impl Default for UpdateCustomKeyStoreRequest[src]

impl PartialEq<UpdateCustomKeyStoreRequest> for UpdateCustomKeyStoreRequest[src]

impl Serialize for UpdateCustomKeyStoreRequest[src]

impl StructuralPartialEq for UpdateCustomKeyStoreRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.