[][src]Struct rusoto_acm_pca::ImportCertificateAuthorityCertificateRequest

pub struct ImportCertificateAuthorityCertificateRequest {
    pub certificate: Bytes,
    pub certificate_authority_arn: String,
    pub certificate_chain: Option<Bytes>,
}

Fields

certificate: Bytes

The PEM-encoded certificate for a private CA. This may be a self-signed certificate in the case of a root CA, or it may be signed by another CA that you control.

certificate_authority_arn: String

The Amazon Resource Name (ARN) that was returned when you called CreateCertificateAuthority. This must be of the form:

arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012

certificate_chain: Option<Bytes>

A PEM-encoded file that contains all of your certificates, other than the certificate you're importing, chaining up to your root CA. Your ACM Private CA-hosted or on-premises root certificate is the last in the chain, and each certificate in the chain signs the one preceding.

This parameter must be supplied when you import a subordinate CA. When you import a root CA, there is no chain.

Trait Implementations

impl Clone for ImportCertificateAuthorityCertificateRequest[src]

impl Default for ImportCertificateAuthorityCertificateRequest[src]

impl PartialEq<ImportCertificateAuthorityCertificateRequest> for ImportCertificateAuthorityCertificateRequest[src]

impl Debug for ImportCertificateAuthorityCertificateRequest[src]

impl StructuralPartialEq for ImportCertificateAuthorityCertificateRequest[src]

impl Serialize for ImportCertificateAuthorityCertificateRequest[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self