Struct aws_sdk_kms::input::CreateCustomKeyStoreInput
source · [−]#[non_exhaustive]pub struct CreateCustomKeyStoreInput {
pub custom_key_store_name: Option<String>,
pub cloud_hsm_cluster_id: Option<String>,
pub trust_anchor_certificate: Option<String>,
pub key_store_password: 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_name: Option<String>Specifies a friendly name for the custom key store. The name must be unique in your Amazon Web Services account.
cloud_hsm_cluster_id: Option<String>Identifies the CloudHSM cluster for the custom key store. Enter the cluster ID of any active CloudHSM cluster that is not already associated with a custom key store. To find the cluster ID, use the DescribeClusters operation.
trust_anchor_certificate: Option<String>Enter the content of the trust anchor certificate for the cluster. This is the content of the customerCA.crt file that you created when you initialized the cluster.
key_store_password: Option<String>Enter the password of the kmsuser crypto user (CU) account in the specified CloudHSM cluster. KMS logs into the cluster as this user to manage key material on your behalf.
The password must be a string of 7 to 32 characters. Its value is case sensitive.
This parameter tells KMS the kmsuser account password; it does not change the password in the CloudHSM cluster.
Implementations
sourceimpl CreateCustomKeyStoreInput
impl CreateCustomKeyStoreInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCustomKeyStore, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateCustomKeyStore, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateCustomKeyStore>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateCustomKeyStoreInput
sourceimpl CreateCustomKeyStoreInput
impl CreateCustomKeyStoreInput
sourcepub fn custom_key_store_name(&self) -> Option<&str>
pub fn custom_key_store_name(&self) -> Option<&str>
Specifies a friendly name for the custom key store. The name must be unique in your Amazon Web Services account.
sourcepub fn cloud_hsm_cluster_id(&self) -> Option<&str>
pub fn cloud_hsm_cluster_id(&self) -> Option<&str>
Identifies the CloudHSM cluster for the custom key store. Enter the cluster ID of any active CloudHSM cluster that is not already associated with a custom key store. To find the cluster ID, use the DescribeClusters operation.
sourcepub fn trust_anchor_certificate(&self) -> Option<&str>
pub fn trust_anchor_certificate(&self) -> Option<&str>
Enter the content of the trust anchor certificate for the cluster. This is the content of the customerCA.crt file that you created when you initialized the cluster.
sourcepub fn key_store_password(&self) -> Option<&str>
pub fn key_store_password(&self) -> Option<&str>
Enter the password of the kmsuser crypto user (CU) account in the specified CloudHSM cluster. KMS logs into the cluster as this user to manage key material on your behalf.
The password must be a string of 7 to 32 characters. Its value is case sensitive.
This parameter tells KMS the kmsuser account password; it does not change the password in the CloudHSM cluster.
Trait Implementations
sourceimpl Clone for CreateCustomKeyStoreInput
impl Clone for CreateCustomKeyStoreInput
sourcefn clone(&self) -> CreateCustomKeyStoreInput
fn clone(&self) -> CreateCustomKeyStoreInput
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 CreateCustomKeyStoreInput
impl Debug for CreateCustomKeyStoreInput
sourceimpl PartialEq<CreateCustomKeyStoreInput> for CreateCustomKeyStoreInput
impl PartialEq<CreateCustomKeyStoreInput> for CreateCustomKeyStoreInput
sourcefn eq(&self, other: &CreateCustomKeyStoreInput) -> bool
fn eq(&self, other: &CreateCustomKeyStoreInput) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CreateCustomKeyStoreInput) -> bool
fn ne(&self, other: &CreateCustomKeyStoreInput) -> bool
This method tests for !=.
impl StructuralPartialEq for CreateCustomKeyStoreInput
Auto Trait Implementations
impl RefUnwindSafe for CreateCustomKeyStoreInput
impl Send for CreateCustomKeyStoreInput
impl Sync for CreateCustomKeyStoreInput
impl Unpin for CreateCustomKeyStoreInput
impl UnwindSafe for CreateCustomKeyStoreInput
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