Class S3Encryption
Describes the server-side encryption that will be applied to the restore results.
public class S3Encryption
- Inheritance
-
S3Encryption
- Inherited Members
Constructors
S3Encryption()
public S3Encryption()
Properties
EncryptionType
The server-side encryption algorithm used when storing job results in Amazon S3 (e.g., AES256, aws:kms).
public ServerSideEncryptionMethod EncryptionType { get; set; }
Property Value
KMSContext
If the encryption type is aws:kms, this optional value can be used to specify the encryption context for the restore results.
public string KMSContext { get; set; }
Property Value
KMSKeyId
Specifies the AWS KMS key ID to use for object encryption. All GET and PUT requests for an object protected by AWS KMS will fail if not made via SSL or using SigV4. Documentation on configuring any of the officially supported AWS SDKs and CLI can be found at http://docs.aws.amazon.com/AmazonS3/latest/dev/UsingAWSSDK.html#specify-signature-version
public string KMSKeyId { get; set; }