CreateKeyPairResult

public struct CreateKeyPairResult : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • An array of key-value pairs containing information about the new key pair you just created.

    Declaration

    Swift

    public let keyPair: KeyPair?
  • An array of objects that describe the result of the action, such as the status of the request, the timestamp of the request, and the resources affected by the request.

    Declaration

    Swift

    public let operation: Operation?
  • A base64-encoded RSA private key.

    Declaration

    Swift

    public let privateKeyBase64: String?
  • A base64-encoded public key of the ssh-rsa type.

    Declaration

    Swift

    public let publicKeyBase64: String?
  • Undocumented

    Declaration

    Swift

    public init(keyPair: KeyPair? = nil, operation: Operation? = nil, privateKeyBase64: String? = nil, publicKeyBase64: String? = nil)