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 (for example, 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
If the encryption type is
aws:kms
, this optional value
specifies the ID of the symmetric encryption customer managed key to use for encryption
of job results. Amazon S3 only supports symmetric encryption KMS keys. For more information, see
Asymmetric keys in Amazon Web Services KMS in the Amazon Web Services Key Management Service Developer Guide.
public string KMSKeyId { get; set; }