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
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
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.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for HsmClientCertificate
impl Debug for HsmClientCertificate
source§impl PartialEq<HsmClientCertificate> for HsmClientCertificate
impl PartialEq<HsmClientCertificate> for HsmClientCertificate
source§fn eq(&self, other: &HsmClientCertificate) -> bool
fn eq(&self, other: &HsmClientCertificate) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HsmClientCertificate
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more