[][src]Struct rusoto_acm_pca::CertificateAuthority

pub struct CertificateAuthority {
    pub arn: Option<String>,
    pub certificate_authority_configuration: Option<CertificateAuthorityConfiguration>,
    pub created_at: Option<f64>,
    pub failure_reason: Option<String>,
    pub last_state_change_at: Option<f64>,
    pub not_after: Option<f64>,
    pub not_before: Option<f64>,
    pub restorable_until: Option<f64>,
    pub revocation_configuration: Option<RevocationConfiguration>,
    pub serial: Option<String>,
    pub status: Option<String>,
    pub type_: Option<String>,
}

Contains information about your private certificate authority (CA). Your private CA can issue and revoke X.509 digital certificates. Digital certificates verify that the entity named in the certificate Subject field owns or controls the public key contained in the Subject Public Key Info field. Call the CreateCertificateAuthority operation to create your private CA. You must then call the GetCertificateAuthorityCertificate operation to retrieve a private CA certificate signing request (CSR). Take the CSR to your on-premises CA and sign it with the root CA certificate or a subordinate certificate. Call the ImportCertificateAuthorityCertificate operation to import the signed certificate into AWS Certificate Manager (ACM).

Fields

arn: Option<String>

Amazon Resource Name (ARN) for your private certificate authority (CA). The format is 12345678-1234-1234-1234-123456789012 .

certificate_authority_configuration: Option<CertificateAuthorityConfiguration>

Your private CA configuration.

created_at: Option<f64>

Date and time at which your private CA was created.

failure_reason: Option<String>

Reason the request to create your private CA failed.

last_state_change_at: Option<f64>

Date and time at which your private CA was last updated.

not_after: Option<f64>

Date and time after which your private CA certificate is not valid.

not_before: Option<f64>

Date and time before which your private CA certificate is not valid.

restorable_until: Option<f64>

The period during which a deleted CA can be restored. For more information, see the PermanentDeletionTimeInDays parameter of the DeleteCertificateAuthorityRequest operation.

revocation_configuration: Option<RevocationConfiguration>

Information about the certificate revocation list (CRL) created and maintained by your private CA.

serial: Option<String>

Serial number of your private CA.

status: Option<String>

Status of your private CA.

type_: Option<String>

Type of your private CA.

Trait Implementations

impl PartialEq<CertificateAuthority> for CertificateAuthority[src]

impl Default for CertificateAuthority[src]

impl Clone for CertificateAuthority[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for CertificateAuthority[src]

impl<'de> Deserialize<'de> for CertificateAuthority[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self