[][src]Struct rusoto_acm_pca::CreateCertificateAuthorityRequest

pub struct CreateCertificateAuthorityRequest {
    pub certificate_authority_configuration: CertificateAuthorityConfiguration,
    pub certificate_authority_type: String,
    pub idempotency_token: Option<String>,
    pub revocation_configuration: Option<RevocationConfiguration>,
    pub tags: Option<Vec<Tag>>,
}

Fields

certificate_authority_configuration: CertificateAuthorityConfiguration

Name and bit size of the private key algorithm, the name of the signing algorithm, and X.500 certificate subject information.

certificate_authority_type: String

The type of the certificate authority. Currently, this must be SUBORDINATE.

idempotency_token: Option<String>

Alphanumeric string that can be used to distinguish between calls to CreateCertificateAuthority. Idempotency tokens time out after five minutes. Therefore, if you call CreateCertificateAuthority multiple times with the same idempotency token within a five minute period, ACM PCA recognizes that you are requesting only one certificate. As a result, ACM PCA issues only one. If you change the idempotency token for each call, however, ACM PCA recognizes that you are requesting multiple certificates.

revocation_configuration: Option<RevocationConfiguration>

Contains a Boolean value that you can use to enable a certification revocation list (CRL) for the CA, the name of the S3 bucket to which ACM PCA will write the CRL, and an optional CNAME alias that you can use to hide the name of your bucket in the CRL Distribution Points extension of your CA certificate. For more information, see the CrlConfiguration structure.

tags: Option<Vec<Tag>>

Key-value pairs that will be attached to the new private CA. You can associate up to 50 tags with a private CA.

Trait Implementations

impl PartialEq<CreateCertificateAuthorityRequest> for CreateCertificateAuthorityRequest[src]

impl Default for CreateCertificateAuthorityRequest[src]

impl Clone for CreateCertificateAuthorityRequest[src]

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

Performs copy-assignment from source. Read more

impl Debug for CreateCertificateAuthorityRequest[src]

impl Serialize for CreateCertificateAuthorityRequest[src]

Auto Trait Implementations

impl Send for CreateCertificateAuthorityRequest

impl Sync for CreateCertificateAuthorityRequest

Blanket Implementations

impl<T> From for T[src]

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, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

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

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

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self