GetParametersForImportResponse

public struct GetParametersForImportResponse : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The import token to send in a subsequent ImportKeyMaterial request.

    Declaration

    Swift

    public let importToken: Data?
  • The Amazon Resource Name (key ARN) of the CMK to use in a subsequent ImportKeyMaterial request. This is the same CMK specified in the GetParametersForImport request.

    Declaration

    Swift

    public let keyId: String?
  • The time at which the import token and public key are no longer valid. After this time, you cannot use them to make an ImportKeyMaterial request and you must send another GetParametersForImport request to get new ones.

    Declaration

    Swift

    public let parametersValidTo: TimeStamp?
  • The public key to use to encrypt the key material before importing it with ImportKeyMaterial.

    Declaration

    Swift

    public let publicKey: Data?
  • Undocumented

    Declaration

    Swift

    public init(importToken: Data? = nil, keyId: String? = nil, parametersValidTo: TimeStamp? = nil, publicKey: Data? = nil)