Encryption

public struct Encryption : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The server-side encryption algorithm used when storing job results in Amazon S3, for example AES256 or aws:kms.

    Declaration

    Swift

    public let encryptionType: EncryptionType?
  • Optional. If the encryption type is aws:kms, you can use this value to specify the encryption context for the job results.

    Declaration

    Swift

    public let kMSContext: String?
  • The AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS fail if not made by using Secure Sockets Layer (SSL) or Signature Version 4.

    Declaration

    Swift

    public let kMSKeyId: String?
  • Undocumented

    Declaration

    Swift

    public init(encryptionType: EncryptionType? = nil, kMSContext: String? = nil, kMSKeyId: String? = nil)