Struct aws_sdk_cloudhsmv2::types::Certificates
source · #[non_exhaustive]pub struct Certificates {
pub cluster_csr: Option<String>,
pub hsm_certificate: Option<String>,
pub aws_hardware_certificate: Option<String>,
pub manufacturer_hardware_certificate: Option<String>,
pub cluster_certificate: Option<String>,
}Expand description
Contains one or more certificates or a certificate signing request (CSR).
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.cluster_csr: Option<String>The cluster's certificate signing request (CSR). The CSR exists only when the cluster's state is UNINITIALIZED.
hsm_certificate: Option<String>The HSM certificate issued (signed) by the HSM hardware.
aws_hardware_certificate: Option<String>The HSM hardware certificate issued (signed) by AWS CloudHSM.
manufacturer_hardware_certificate: Option<String>The HSM hardware certificate issued (signed) by the hardware manufacturer.
cluster_certificate: Option<String>The cluster certificate issued (signed) by the issuing certificate authority (CA) of the cluster's owner.
Implementations§
source§impl Certificates
impl Certificates
sourcepub fn cluster_csr(&self) -> Option<&str>
pub fn cluster_csr(&self) -> Option<&str>
The cluster's certificate signing request (CSR). The CSR exists only when the cluster's state is UNINITIALIZED.
sourcepub fn hsm_certificate(&self) -> Option<&str>
pub fn hsm_certificate(&self) -> Option<&str>
The HSM certificate issued (signed) by the HSM hardware.
sourcepub fn aws_hardware_certificate(&self) -> Option<&str>
pub fn aws_hardware_certificate(&self) -> Option<&str>
The HSM hardware certificate issued (signed) by AWS CloudHSM.
sourcepub fn manufacturer_hardware_certificate(&self) -> Option<&str>
pub fn manufacturer_hardware_certificate(&self) -> Option<&str>
The HSM hardware certificate issued (signed) by the hardware manufacturer.
sourcepub fn cluster_certificate(&self) -> Option<&str>
pub fn cluster_certificate(&self) -> Option<&str>
The cluster certificate issued (signed) by the issuing certificate authority (CA) of the cluster's owner.
source§impl Certificates
impl Certificates
sourcepub fn builder() -> CertificatesBuilder
pub fn builder() -> CertificatesBuilder
Creates a new builder-style object to manufacture Certificates.
Trait Implementations§
source§impl Clone for Certificates
impl Clone for Certificates
source§fn clone(&self) -> Certificates
fn clone(&self) -> Certificates
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for Certificates
impl Debug for Certificates
source§impl PartialEq for Certificates
impl PartialEq for Certificates
source§fn eq(&self, other: &Certificates) -> bool
fn eq(&self, other: &Certificates) -> bool
self and other values to be equal, and is used
by ==.