Class: Aws::S3::Types::Encryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::Encryption
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
When making an API call, you may pass Encryption data as a hash:
{
encryption_type: "AES256", # required, accepts AES256, aws:kms
kms_key_id: "SSEKMSKeyId",
kms_context: "KMSContext",
}
Contains the type of server-side encryption used.
Instance Attribute Summary collapse
-
#encryption_type ⇒ String
The server-side encryption algorithm used when storing job results in Amazon S3 (for example, AES256, aws:kms).
-
#kms_context ⇒ String
If the encryption type is ‘aws:kms`, this optional value can be used to specify the encryption context for the restore results.
-
#kms_key_id ⇒ 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.
Instance Attribute Details
#encryption_type ⇒ String
The server-side encryption algorithm used when storing job results in Amazon S3 (for example, AES256, aws:kms).
2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-s3/types.rb', line 2708 class Encryption < Struct.new( :encryption_type, :kms_key_id, :kms_context) include Aws::Structure end |
#kms_context ⇒ String
If the encryption type is ‘aws:kms`, this optional value can be used to specify the encryption context for the restore results.
2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-s3/types.rb', line 2708 class Encryption < Struct.new( :encryption_type, :kms_key_id, :kms_context) include Aws::Structure end |
#kms_key_id ⇒ 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*.
[1]: docs.aws.amazon.com/kms/latest/developerguide/symmetric-asymmetric.html
2708 2709 2710 2711 2712 2713 |
# File 'lib/aws-sdk-s3/types.rb', line 2708 class Encryption < Struct.new( :encryption_type, :kms_key_id, :kms_context) include Aws::Structure end |