[][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 owner_account: Option<String>,
    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 action to create your private CA. You must then call the GetCertificateAuthorityCertificate action to retrieve a private CA certificate signing request (CSR). Sign the CSR with your ACM Private CA-hosted or on-premises root or subordinate CA certificate. Call the ImportCertificateAuthorityCertificate action 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.

owner_account: Option<String>

The AWS account ID that owns the certificate authority.

restorable_until: Option<f64>

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

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 Clone for CertificateAuthority[src]

impl Debug for CertificateAuthority[src]

impl Default for CertificateAuthority[src]

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

impl PartialEq<CertificateAuthority> for CertificateAuthority[src]

impl StructuralPartialEq for CertificateAuthority[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

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

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.