CertificateDetail
public struct CertificateDetail : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The Amazon Resource Name (ARN) of the certificate. For more information about ARNs, see Amazon Resource Names (ARNs) and AWS Service Namespaces in the AWS General Reference.
Declaration
Swift
public let certificateArn: String?
-
The Amazon Resource Name (ARN) of the ACM PCA private certificate authority (CA) that issued the certificate. This has the following format: arn:aws:acm-pca:region:account:certificate-authority/12345678-1234-1234-1234-123456789012
Declaration
Swift
public let certificateAuthorityArn: String?
-
The time at which the certificate was requested. This value exists only when the certificate type is AMAZON_ISSUED.
Declaration
Swift
public let createdAt: TimeStamp?
-
The fully qualified domain name for the certificate, such as www.example.com or example.com.
Declaration
Swift
public let domainName: String?
-
Contains information about the initial validation of each domain name that occurs as a result of the RequestCertificate request. This field exists only when the certificate type is AMAZON_ISSUED.
Declaration
Swift
public let domainValidationOptions: [DomainValidation]?
-
Contains a list of Extended Key Usage X.509 v3 extension objects. Each object specifies a purpose for which the certificate public key can be used and consists of a name and an object identifier (OID).
Declaration
Swift
public let extendedKeyUsages: [ExtendedKeyUsage]?
-
The reason the certificate request failed. This value exists only when the certificate status is FAILED. For more information, see Certificate Request Failed in the AWS Certificate Manager User Guide.
Declaration
Swift
public let failureReason: FailureReason?
-
The date and time at which the certificate was imported. This value exists only when the certificate type is IMPORTED.
Declaration
Swift
public let importedAt: TimeStamp?
-
A list of ARNs for the AWS resources that are using the certificate. A certificate can be used by multiple AWS resources.
Declaration
Swift
public let inUseBy: [String]?
-
The time at which the certificate was issued. This value exists only when the certificate type is AMAZON_ISSUED.
Declaration
Swift
public let issuedAt: TimeStamp?
-
The name of the certificate authority that issued and signed the certificate.
Declaration
Swift
public let issuer: String?
-
The algorithm that was used to generate the public-private key pair.
Declaration
Swift
public let keyAlgorithm: KeyAlgorithm?
-
A list of Key Usage X.509 v3 extension objects. Each object is a string value that identifies the purpose of the public key contained in the certificate. Possible extension values include DIGITAL_SIGNATURE, KEY_ENCHIPHERMENT, NON_REPUDIATION, and more.
Declaration
Swift
public let keyUsages: [KeyUsage]?
-
The time after which the certificate is not valid.
Declaration
Swift
public let notAfter: TimeStamp?
-
The time before which the certificate is not valid.
Declaration
Swift
public let notBefore: TimeStamp?
-
Value that specifies whether to add the certificate to a transparency log. Certificate transparency makes it possible to detect SSL certificates that have been mistakenly or maliciously issued. A browser might respond to certificate that has not been logged by showing an error message. The logs are cryptographically secure.
Declaration
Swift
public let options: CertificateOptions?
-
Specifies whether the certificate is eligible for renewal. At this time, only exported private certificates can be renewed with the RenewCertificate command.
Declaration
Swift
public let renewalEligibility: RenewalEligibility?
-
Contains information about the status of ACM’s managed renewal for the certificate. This field exists only when the certificate type is AMAZON_ISSUED.
Declaration
Swift
public let renewalSummary: RenewalSummary?
-
The reason the certificate was revoked. This value exists only when the certificate status is REVOKED.
Declaration
Swift
public let revocationReason: RevocationReason?
-
The time at which the certificate was revoked. This value exists only when the certificate status is REVOKED.
Declaration
Swift
public let revokedAt: TimeStamp?
-
The serial number of the certificate.
Declaration
Swift
public let serial: String?
-
The algorithm that was used to sign the certificate.
Declaration
Swift
public let signatureAlgorithm: String?
-
The status of the certificate.
Declaration
Swift
public let status: CertificateStatus?
-
The name of the entity that is associated with the public key contained in the certificate.
Declaration
Swift
public let subject: String?
-
One or more domain names (subject alternative names) included in the certificate. This list contains the domain names that are bound to the public key that is contained in the certificate. The subject alternative names include the canonical domain name (CN) of the certificate and additional domain names that can be used to connect to the website.
Declaration
Swift
public let subjectAlternativeNames: [String]?
-
The source of the certificate. For certificates provided by ACM, this value is AMAZON_ISSUED. For certificates that you imported with ImportCertificate, this value is IMPORTED. ACM does not provide managed renewal for imported certificates. For more information about the differences between certificates that you import and those that ACM provides, see Importing Certificates in the AWS Certificate Manager User Guide.
Declaration
Swift
public let type: CertificateType?
-
init(certificateArn:certificateAuthorityArn:createdAt:domainName:domainValidationOptions:extendedKeyUsages:failureReason:importedAt:inUseBy:issuedAt:issuer:keyAlgorithm:keyUsages:notAfter:notBefore:options:renewalEligibility:renewalSummary:revocationReason:revokedAt:serial:signatureAlgorithm:status:subject:subjectAlternativeNames:type:)
Undocumented
Declaration
Swift
public init(certificateArn: String? = nil, certificateAuthorityArn: String? = nil, createdAt: TimeStamp? = nil, domainName: String? = nil, domainValidationOptions: [DomainValidation]? = nil, extendedKeyUsages: [ExtendedKeyUsage]? = nil, failureReason: FailureReason? = nil, importedAt: TimeStamp? = nil, inUseBy: [String]? = nil, issuedAt: TimeStamp? = nil, issuer: String? = nil, keyAlgorithm: KeyAlgorithm? = nil, keyUsages: [KeyUsage]? = nil, notAfter: TimeStamp? = nil, notBefore: TimeStamp? = nil, options: CertificateOptions? = nil, renewalEligibility: RenewalEligibility? = nil, renewalSummary: RenewalSummary? = nil, revocationReason: RevocationReason? = nil, revokedAt: TimeStamp? = nil, serial: String? = nil, signatureAlgorithm: String? = nil, status: CertificateStatus? = nil, subject: String? = nil, subjectAlternativeNames: [String]? = nil, type: CertificateType? = nil)