ImportCertificateMessage

public struct ImportCertificateMessage : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A customer-assigned name for the certificate. Identifiers must begin with a letter and must contain only ASCII letters, digits, and hyphens. They can’t end with a hyphen or contain two consecutive hyphens.

    Declaration

    Swift

    public let certificateIdentifier: String
  • The contents of a .pem file, which contains an X.509 certificate.

    Declaration

    Swift

    public let certificatePem: String?
  • The location of an imported Oracle Wallet certificate for use with SSL.

    Declaration

    Swift

    public let certificateWallet: Data?
  • The tags associated with the certificate.

    Declaration

    Swift

    public let tags: [Tag]?
  • Undocumented

    Declaration

    Swift

    public init(certificateIdentifier: String, certificatePem: String? = nil, certificateWallet: Data? = nil, tags: [Tag]? = nil)