[−][src]Struct rusoto_acm_pca::CertificateAuthority
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
.
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]
fn eq(&self, other: &CertificateAuthority) -> bool
[src]
fn ne(&self, other: &CertificateAuthority) -> bool
[src]
impl Default for CertificateAuthority
[src]
fn default() -> CertificateAuthority
[src]
impl Clone for CertificateAuthority
[src]
fn clone(&self) -> 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]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
[src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Send for CertificateAuthority
impl Sync for CertificateAuthority
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self