logo
pub struct CertificateAuthority {
Show 14 fields pub arn: Option<String>, pub certificate_authority_configuration: Option<CertificateAuthorityConfiguration>, pub created_at: Option<f64>, pub failure_reason: Option<String>, pub key_storage_security_standard: 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>,
}
Expand description

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.

key_storage_security_standard: Option<String>

Defines a cryptographic key management compliance standard used for handling CA keys.

Default: FIPS_140_2_LEVEL_3_OR_HIGHER

Note: AWS Region ap-northeast-3 supports only FIPS_140_2_LEVEL_2_OR_HIGHER. You must explicitly specify this parameter and value when creating a CA in that Region. Specifying a different value (or no value) results in an InvalidArgsException with the message "A certificate authority cannot be created in this region with the specified security standard."

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more