#[non_exhaustive]pub struct AwsRedshiftClusterHsmStatusBuilder { /* private fields */ }
Expand description
A builder for AwsRedshiftClusterHsmStatus
.
Implementations§
source§impl AwsRedshiftClusterHsmStatusBuilder
impl AwsRedshiftClusterHsmStatusBuilder
sourcepub fn hsm_client_certificate_identifier(self, input: impl Into<String>) -> Self
pub fn hsm_client_certificate_identifier(self, input: impl Into<String>) -> Self
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 set_hsm_client_certificate_identifier(
self,
input: Option<String>
) -> Self
pub fn set_hsm_client_certificate_identifier( self, input: Option<String> ) -> Self
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 get_hsm_client_certificate_identifier(&self) -> &Option<String>
pub fn get_hsm_client_certificate_identifier(&self) -> &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.
sourcepub fn hsm_configuration_identifier(self, input: impl Into<String>) -> Self
pub fn hsm_configuration_identifier(self, input: impl Into<String>) -> Self
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.
sourcepub fn set_hsm_configuration_identifier(self, input: Option<String>) -> Self
pub fn set_hsm_configuration_identifier(self, input: Option<String>) -> Self
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.
sourcepub fn get_hsm_configuration_identifier(&self) -> &Option<String>
pub fn get_hsm_configuration_identifier(&self) -> &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.
sourcepub fn status(self, input: impl Into<String>) -> Self
pub fn status(self, input: impl Into<String>) -> Self
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
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
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
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &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
sourcepub fn build(self) -> AwsRedshiftClusterHsmStatus
pub fn build(self) -> AwsRedshiftClusterHsmStatus
Consumes the builder and constructs a AwsRedshiftClusterHsmStatus
.
Trait Implementations§
source§impl Clone for AwsRedshiftClusterHsmStatusBuilder
impl Clone for AwsRedshiftClusterHsmStatusBuilder
source§fn clone(&self) -> AwsRedshiftClusterHsmStatusBuilder
fn clone(&self) -> AwsRedshiftClusterHsmStatusBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for AwsRedshiftClusterHsmStatusBuilder
impl Default for AwsRedshiftClusterHsmStatusBuilder
source§fn default() -> AwsRedshiftClusterHsmStatusBuilder
fn default() -> AwsRedshiftClusterHsmStatusBuilder
source§impl PartialEq for AwsRedshiftClusterHsmStatusBuilder
impl PartialEq for AwsRedshiftClusterHsmStatusBuilder
source§fn eq(&self, other: &AwsRedshiftClusterHsmStatusBuilder) -> bool
fn eq(&self, other: &AwsRedshiftClusterHsmStatusBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRedshiftClusterHsmStatusBuilder
Auto Trait Implementations§
impl Freeze for AwsRedshiftClusterHsmStatusBuilder
impl RefUnwindSafe for AwsRedshiftClusterHsmStatusBuilder
impl Send for AwsRedshiftClusterHsmStatusBuilder
impl Sync for AwsRedshiftClusterHsmStatusBuilder
impl Unpin for AwsRedshiftClusterHsmStatusBuilder
impl UnwindSafe for AwsRedshiftClusterHsmStatusBuilder
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