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, aws:kms).

    Declaration

    Swift

    public let encryptionType: ServerSideEncryption
  • If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.

    Declaration

    Swift

    public let kMSContext: String?
  • If the encryption type is aws:kms, this optional value specifies the ID of the symmetric customer managed AWS KMS CMK to use for encryption of job results. Amazon S3 only supports symmetric CMKs. For more information, see Using Symmetric and Asymmetric Keys in the AWS Key Management Service Developer Guide.

    Declaration

    Swift

    public let kMSKeyId: String?
  • Undocumented

    Declaration

    Swift

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