#[non_exhaustive]pub struct CreateHsmConfigurationInput {
pub hsm_configuration_identifier: Option<String>,
pub description: Option<String>,
pub hsm_ip_address: Option<String>,
pub hsm_partition_name: Option<String>,
pub hsm_partition_password: Option<String>,
pub hsm_server_public_certificate: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
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.hsm_configuration_identifier: Option<String>
The identifier to be assigned to the new Amazon Redshift HSM configuration.
description: Option<String>
A text description of the HSM configuration to be created.
hsm_ip_address: Option<String>
The IP address that the Amazon Redshift cluster must use to access the HSM.
hsm_partition_name: Option<String>
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
hsm_partition_password: Option<String>
The password required to access the HSM partition.
hsm_server_public_certificate: Option<String>
The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.
A list of tag instances.
Implementations
sourceimpl CreateHsmConfigurationInput
impl CreateHsmConfigurationInput
sourcepub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHsmConfiguration, AwsErrorRetryPolicy>, BuildError>
pub async fn make_operation(
&self,
_config: &Config
) -> Result<Operation<CreateHsmConfiguration, AwsErrorRetryPolicy>, BuildError>
Consumes the builder and constructs an Operation<CreateHsmConfiguration
>
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture CreateHsmConfigurationInput
.
sourceimpl CreateHsmConfigurationInput
impl CreateHsmConfigurationInput
sourcepub fn hsm_configuration_identifier(&self) -> Option<&str>
pub fn hsm_configuration_identifier(&self) -> Option<&str>
The identifier to be assigned to the new Amazon Redshift HSM configuration.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A text description of the HSM configuration to be created.
sourcepub fn hsm_ip_address(&self) -> Option<&str>
pub fn hsm_ip_address(&self) -> Option<&str>
The IP address that the Amazon Redshift cluster must use to access the HSM.
sourcepub fn hsm_partition_name(&self) -> Option<&str>
pub fn hsm_partition_name(&self) -> Option<&str>
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
sourcepub fn hsm_partition_password(&self) -> Option<&str>
pub fn hsm_partition_password(&self) -> Option<&str>
The password required to access the HSM partition.
sourcepub fn hsm_server_public_certificate(&self) -> Option<&str>
pub fn hsm_server_public_certificate(&self) -> Option<&str>
The HSMs public certificate file. When using Cloud HSM, the file name is server.pem.
A list of tag instances.
Trait Implementations
sourceimpl Clone for CreateHsmConfigurationInput
impl Clone for CreateHsmConfigurationInput
sourcefn clone(&self) -> CreateHsmConfigurationInput
fn clone(&self) -> CreateHsmConfigurationInput
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 CreateHsmConfigurationInput
impl Debug for CreateHsmConfigurationInput
sourceimpl PartialEq<CreateHsmConfigurationInput> for CreateHsmConfigurationInput
impl PartialEq<CreateHsmConfigurationInput> for CreateHsmConfigurationInput
sourcefn eq(&self, other: &CreateHsmConfigurationInput) -> bool
fn eq(&self, other: &CreateHsmConfigurationInput) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &CreateHsmConfigurationInput) -> bool
fn ne(&self, other: &CreateHsmConfigurationInput) -> bool
This method tests for !=
.
impl StructuralPartialEq for CreateHsmConfigurationInput
Auto Trait Implementations
impl RefUnwindSafe for CreateHsmConfigurationInput
impl Send for CreateHsmConfigurationInput
impl Sync for CreateHsmConfigurationInput
impl Unpin for CreateHsmConfigurationInput
impl UnwindSafe for CreateHsmConfigurationInput
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