Class: Aws::S3Control::Types::SSEKMSFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3Control::Types::SSEKMSFilter
- Defined in:
- gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb
Overview
A filter that returns objects that are encrypted by server-side encryption with Amazon Web Services KMS (SSE-KMS).
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#bucket_key_enabled ⇒ Boolean
Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using Amazon Web Services Key Management Service (Amazon Web Services KMS) keys (SSE-KMS).
-
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the customer managed KMS key to use for the filter to return objects that are encrypted by the specified key.
Instance Attribute Details
#bucket_key_enabled ⇒ Boolean
Specifies whether Amazon S3 should use an S3 Bucket Key for object encryption with server-side encryption using Amazon Web Services Key Management Service (Amazon Web Services KMS) keys (SSE-KMS). If specified, will filter SSE-KMS encrypted objects by S3 Bucket Key status.
8094 8095 8096 8097 8098 8099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 8094 class SSEKMSFilter < Struct.new( :kms_key_arn, :bucket_key_enabled) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the customer managed KMS key to use for the filter to return objects that are encrypted by the specified key. For best performance, use keys in the same Region as the S3 Batch Operations job.
8094 8095 8096 8097 8098 8099 |
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 8094 class SSEKMSFilter < Struct.new( :kms_key_arn, :bucket_key_enabled) SENSITIVE = [] include Aws::Structure end |