#[non_exhaustive]pub struct HsmClientCertificateBuilder { /* private fields */ }
Expand description
A builder for HsmClientCertificate
.
Implementations§
source§impl HsmClientCertificateBuilder
impl HsmClientCertificateBuilder
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 identifier of the HSM client certificate.
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 identifier of the HSM client certificate.
sourcepub fn get_hsm_client_certificate_identifier(&self) -> &Option<String>
pub fn get_hsm_client_certificate_identifier(&self) -> &Option<String>
The identifier of the HSM client certificate.
sourcepub fn hsm_client_certificate_public_key(self, input: impl Into<String>) -> Self
pub fn hsm_client_certificate_public_key(self, input: impl Into<String>) -> Self
The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.
sourcepub fn set_hsm_client_certificate_public_key(
self,
input: Option<String>,
) -> Self
pub fn set_hsm_client_certificate_public_key( self, input: Option<String>, ) -> Self
The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.
sourcepub fn get_hsm_client_certificate_public_key(&self) -> &Option<String>
pub fn get_hsm_client_certificate_public_key(&self) -> &Option<String>
The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.
Appends an item to tags
.
To override the contents of this collection use set_tags
.
The list of tags for the HSM client certificate.
The list of tags for the HSM client certificate.
The list of tags for the HSM client certificate.
sourcepub fn build(self) -> HsmClientCertificate
pub fn build(self) -> HsmClientCertificate
Consumes the builder and constructs a HsmClientCertificate
.
Trait Implementations§
source§impl Clone for HsmClientCertificateBuilder
impl Clone for HsmClientCertificateBuilder
source§fn clone(&self) -> HsmClientCertificateBuilder
fn clone(&self) -> HsmClientCertificateBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HsmClientCertificateBuilder
impl Debug for HsmClientCertificateBuilder
source§impl Default for HsmClientCertificateBuilder
impl Default for HsmClientCertificateBuilder
source§fn default() -> HsmClientCertificateBuilder
fn default() -> HsmClientCertificateBuilder
impl StructuralPartialEq for HsmClientCertificateBuilder
Auto Trait Implementations§
impl Freeze for HsmClientCertificateBuilder
impl RefUnwindSafe for HsmClientCertificateBuilder
impl Send for HsmClientCertificateBuilder
impl Sync for HsmClientCertificateBuilder
impl Unpin for HsmClientCertificateBuilder
impl UnwindSafe for HsmClientCertificateBuilder
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