CreateCertificateAuthorityRequest
public struct CreateCertificateAuthorityRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
Name and bit size of the private key algorithm, the name of the signing algorithm, and X.500 certificate subject information.
Declaration
Swift
public let certificateAuthorityConfiguration: CertificateAuthorityConfiguration
-
The type of the certificate authority.
Declaration
Swift
public let certificateAuthorityType: CertificateAuthorityType
-
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.
Declaration
Swift
public let idempotencyToken: String?
-
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.
Declaration
Swift
public let revocationConfiguration: RevocationConfiguration?
-
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.
Declaration
Swift
public let tags: [Tag]?
-
init(certificateAuthorityConfiguration:certificateAuthorityType:idempotencyToken:revocationConfiguration:tags:)
Undocumented
Declaration
Swift
public init(certificateAuthorityConfiguration: CertificateAuthorityConfiguration, certificateAuthorityType: CertificateAuthorityType, idempotencyToken: String? = nil, revocationConfiguration: RevocationConfiguration? = nil, tags: [Tag]? = nil)
-
Declaration
Swift
public func validate(name: String) throws