ExportCertificateResponse

public struct ExportCertificateResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The base64 PEM-encoded certificate.

    Declaration

    Swift

    public let certificate: String?
  • The base64 PEM-encoded certificate chain. This does not include the certificate that you are exporting.

    Declaration

    Swift

    public let certificateChain: String?
  • The encrypted private key associated with the public key in the certificate. The key is output in PKCS #8 format and is base64 PEM-encoded.

    Declaration

    Swift

    public let privateKey: String?
  • Undocumented

    Declaration

    Swift

    public init(certificate: String? = nil, certificateChain: String? = nil, privateKey: String? = nil)