Struct aws_sdk_redshift::types::builders::HsmConfigurationBuilder
source · #[non_exhaustive]pub struct HsmConfigurationBuilder { /* private fields */ }
Expand description
A builder for HsmConfiguration
.
Implementations§
source§impl HsmConfigurationBuilder
impl HsmConfigurationBuilder
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 Amazon Redshift HSM configuration.
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 Amazon Redshift HSM configuration.
sourcepub fn get_hsm_configuration_identifier(&self) -> &Option<String>
pub fn get_hsm_configuration_identifier(&self) -> &Option<String>
The name of the Amazon Redshift HSM configuration.
sourcepub fn description(self, input: impl Into<String>) -> Self
pub fn description(self, input: impl Into<String>) -> Self
A text description of the HSM configuration.
sourcepub fn set_description(self, input: Option<String>) -> Self
pub fn set_description(self, input: Option<String>) -> Self
A text description of the HSM configuration.
sourcepub fn get_description(&self) -> &Option<String>
pub fn get_description(&self) -> &Option<String>
A text description of the HSM configuration.
sourcepub fn hsm_ip_address(self, input: impl Into<String>) -> Self
pub fn hsm_ip_address(self, input: impl Into<String>) -> Self
The IP address that the Amazon Redshift cluster must use to access the HSM.
sourcepub fn set_hsm_ip_address(self, input: Option<String>) -> Self
pub fn set_hsm_ip_address(self, input: Option<String>) -> Self
The IP address that the Amazon Redshift cluster must use to access the HSM.
sourcepub fn get_hsm_ip_address(&self) -> &Option<String>
pub fn get_hsm_ip_address(&self) -> &Option<String>
The IP address that the Amazon Redshift cluster must use to access the HSM.
sourcepub fn hsm_partition_name(self, input: impl Into<String>) -> Self
pub fn hsm_partition_name(self, input: impl Into<String>) -> Self
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
sourcepub fn set_hsm_partition_name(self, input: Option<String>) -> Self
pub fn set_hsm_partition_name(self, input: Option<String>) -> Self
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
sourcepub fn get_hsm_partition_name(&self) -> &Option<String>
pub fn get_hsm_partition_name(&self) -> &Option<String>
The name of the partition in the HSM where the Amazon Redshift clusters will store their database encryption keys.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The list of tags for the HSM configuration.
The list of tags for the HSM configuration.
The list of tags for the HSM configuration.
sourcepub fn build(self) -> HsmConfiguration
pub fn build(self) -> HsmConfiguration
Consumes the builder and constructs a HsmConfiguration
.
Trait Implementations§
source§impl Clone for HsmConfigurationBuilder
impl Clone for HsmConfigurationBuilder
source§fn clone(&self) -> HsmConfigurationBuilder
fn clone(&self) -> HsmConfigurationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HsmConfigurationBuilder
impl Debug for HsmConfigurationBuilder
source§impl Default for HsmConfigurationBuilder
impl Default for HsmConfigurationBuilder
source§fn default() -> HsmConfigurationBuilder
fn default() -> HsmConfigurationBuilder
source§impl PartialEq for HsmConfigurationBuilder
impl PartialEq for HsmConfigurationBuilder
impl StructuralPartialEq for HsmConfigurationBuilder
Auto Trait Implementations§
impl Freeze for HsmConfigurationBuilder
impl RefUnwindSafe for HsmConfigurationBuilder
impl Send for HsmConfigurationBuilder
impl Sync for HsmConfigurationBuilder
impl Unpin for HsmConfigurationBuilder
impl UnwindSafe for HsmConfigurationBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)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