pub struct CertificateAuthorityConfiguration {
pub csr_extensions: Option<CsrExtensions>,
pub key_algorithm: String,
pub signing_algorithm: String,
pub subject: ASN1Subject,
}
Expand description
Contains configuration information for your private certificate authority (CA). This includes information about the class of public key algorithm and the key pair that your private CA creates when it issues a certificate. It also includes the signature algorithm that it uses when issuing certificates, and its X.500 distinguished name. You must specify this information when you call the CreateCertificateAuthority action.
Fields§
§csr_extensions: Option<CsrExtensions>
Specifies information to be added to the extension section of the certificate signing request (CSR).
key_algorithm: String
Type of the public key algorithm and size, in bits, of the key pair that your CA creates when it issues a certificate. When you create a subordinate CA, you must use a key algorithm supported by the parent CA.
signing_algorithm: String
Name of the algorithm your private CA uses to sign certificate requests.
This parameter should not be confused with the SigningAlgorithm
parameter used to sign certificates when they are issued.
subject: ASN1Subject
Structure that contains X.500 distinguished name information for your private CA.
Trait Implementations§
Source§impl Clone for CertificateAuthorityConfiguration
impl Clone for CertificateAuthorityConfiguration
Source§fn clone(&self) -> CertificateAuthorityConfiguration
fn clone(&self) -> CertificateAuthorityConfiguration
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for CertificateAuthorityConfiguration
impl Default for CertificateAuthorityConfiguration
Source§fn default() -> CertificateAuthorityConfiguration
fn default() -> CertificateAuthorityConfiguration
Source§impl<'de> Deserialize<'de> for CertificateAuthorityConfiguration
impl<'de> Deserialize<'de> for CertificateAuthorityConfiguration
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Source§impl PartialEq for CertificateAuthorityConfiguration
impl PartialEq for CertificateAuthorityConfiguration
Source§fn eq(&self, other: &CertificateAuthorityConfiguration) -> bool
fn eq(&self, other: &CertificateAuthorityConfiguration) -> bool
self
and other
values to be equal, and is used by ==
.