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
source§fn eq(&self, other: &HsmClientCertificate) -> bool
fn eq(&self, other: &HsmClientCertificate) -> bool
self
and other
values to be equal, and is used
by ==
.