[][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.

idempotency_token: Option<String>

Alphanumeric string that can be used to distinguish between calls to CreateCertificateAuthority. For a given token, ACM Private CA creates exactly one CA. If you issue a subsequent call using the same token, ACM Private CA returns the ARN of the existing CA and takes no further action. If you change the idempotency token across multiple calls, ACM Private CA creates a unique CA for each unique token.

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 Private CA 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. For information using tags with IAM to manage permissions, see Controlling Access Using IAM Tags.

Trait Implementations

impl Clone for CreateCertificateAuthorityRequest[src]

impl Debug for CreateCertificateAuthorityRequest[src]

impl Default for CreateCertificateAuthorityRequest[src]

impl PartialEq<CreateCertificateAuthorityRequest> for CreateCertificateAuthorityRequest[src]

impl Serialize for CreateCertificateAuthorityRequest[src]

impl StructuralPartialEq for CreateCertificateAuthorityRequest[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> 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.