Class: Aws::S3Control::Types::SSEKMSEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::SSEKMSEncryption
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
Note:
When making an API call, you may pass SSEKMSEncryption data as a hash:
{
key_id: "KmsKeyArnString", # required
}
Configuration for the use of SSE-KMS to encrypt generated manifest objects.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
Specifies the ID of the Amazon Web Services Key Management Service (Amazon Web Services KMS) symmetric customer managed key to use for encrypting generated manifest objects.
Instance Attribute Details
#key_id ⇒ String
Specifies the ID of the Amazon Web Services Key Management Service (Amazon Web Services KMS) symmetric customer managed key to use for encrypting generated manifest objects.
6279 6280 6281 6282 6283 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 6279 class SSEKMSEncryption < Struct.new( :key_id) SENSITIVE = [] include Aws::Structure end |