Struct aws_sdk_redshift::types::HsmClientCertificate
source · #[non_exhaustive]pub struct HsmClientCertificate {
pub hsm_client_certificate_identifier: Option<String>,
pub hsm_client_certificate_public_key: Option<String>,
pub tags: Option<Vec<Tag>>,
}
Expand description
Returns information about an HSM client certificate. The certificate is stored in a secure Hardware Storage Module (HSM), and used by the Amazon Redshift cluster to encrypt data files.
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 identifier of the HSM client certificate.
hsm_client_certificate_public_key: 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.
The list of tags for the HSM client certificate.
Implementations§
source§impl HsmClientCertificate
impl HsmClientCertificate
sourcepub fn hsm_client_certificate_identifier(&self) -> Option<&str>
pub fn hsm_client_certificate_identifier(&self) -> Option<&str>
The identifier of the HSM client certificate.
sourcepub fn hsm_client_certificate_public_key(&self) -> Option<&str>
pub fn hsm_client_certificate_public_key(&self) -> Option<&str>
The public key that the Amazon Redshift cluster will use to connect to the HSM. You must register the public key in the HSM.
The list of tags for the HSM client certificate.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .tags.is_none()
.
source§impl HsmClientCertificate
impl HsmClientCertificate
sourcepub fn builder() -> HsmClientCertificateBuilder
pub fn builder() -> HsmClientCertificateBuilder
Creates a new builder-style object to manufacture HsmClientCertificate
.
Trait Implementations§
source§impl Clone for HsmClientCertificate
impl Clone for HsmClientCertificate
source§fn clone(&self) -> HsmClientCertificate
fn clone(&self) -> HsmClientCertificate
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HsmClientCertificate
impl Debug for HsmClientCertificate
source§impl PartialEq for HsmClientCertificate
impl PartialEq for HsmClientCertificate
impl StructuralPartialEq for HsmClientCertificate
Auto Trait Implementations§
impl Freeze for HsmClientCertificate
impl RefUnwindSafe for HsmClientCertificate
impl Send for HsmClientCertificate
impl Sync for HsmClientCertificate
impl Unpin for HsmClientCertificate
impl UnwindSafe for HsmClientCertificate
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