#[non_exhaustive]pub struct AwsRedshiftClusterHsmStatus {
pub hsm_client_certificate_identifier: Option<String>,
pub hsm_configuration_identifier: Option<String>,
pub status: Option<String>,
}
Expand description
Information about whether an Amazon Redshift cluster finished applying any hardware changes to security module (HSM) settings that were specified in a modify cluster command.
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_client_certificate_identifier: Option<String>
The name of the HSM client certificate that the Amazon Redshift cluster uses to retrieve the data encryption keys that are stored in an HSM.
hsm_configuration_identifier: Option<String>
The name of the HSM configuration that contains the information that the Amazon Redshift cluster can use to retrieve and store keys in an HSM.
status: Option<String>
Indicates whether the Amazon Redshift cluster has finished applying any HSM settings changes specified in a modify cluster command.
Type: String
Valid values: active
| applying
Implementations§
source§impl AwsRedshiftClusterHsmStatus
impl AwsRedshiftClusterHsmStatus
sourcepub fn hsm_client_certificate_identifier(&self) -> Option<&str>
pub fn hsm_client_certificate_identifier(&self) -> Option<&str>
The name of the HSM client certificate that the Amazon Redshift cluster uses to retrieve the data encryption keys that are stored in an HSM.
sourcepub fn hsm_configuration_identifier(&self) -> Option<&str>
pub fn hsm_configuration_identifier(&self) -> Option<&str>
The name of the HSM configuration that contains the information that the Amazon Redshift cluster can use to retrieve and store keys in an HSM.
source§impl AwsRedshiftClusterHsmStatus
impl AwsRedshiftClusterHsmStatus
sourcepub fn builder() -> AwsRedshiftClusterHsmStatusBuilder
pub fn builder() -> AwsRedshiftClusterHsmStatusBuilder
Creates a new builder-style object to manufacture AwsRedshiftClusterHsmStatus
.
Trait Implementations§
source§impl Clone for AwsRedshiftClusterHsmStatus
impl Clone for AwsRedshiftClusterHsmStatus
source§fn clone(&self) -> AwsRedshiftClusterHsmStatus
fn clone(&self) -> AwsRedshiftClusterHsmStatus
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AwsRedshiftClusterHsmStatus
impl Debug for AwsRedshiftClusterHsmStatus
source§impl PartialEq for AwsRedshiftClusterHsmStatus
impl PartialEq for AwsRedshiftClusterHsmStatus
source§fn eq(&self, other: &AwsRedshiftClusterHsmStatus) -> bool
fn eq(&self, other: &AwsRedshiftClusterHsmStatus) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRedshiftClusterHsmStatus
Auto Trait Implementations§
impl Freeze for AwsRedshiftClusterHsmStatus
impl RefUnwindSafe for AwsRedshiftClusterHsmStatus
impl Send for AwsRedshiftClusterHsmStatus
impl Sync for AwsRedshiftClusterHsmStatus
impl Unpin for AwsRedshiftClusterHsmStatus
impl UnwindSafe for AwsRedshiftClusterHsmStatus
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more