Class: Aws::S3Control::Types::DSSEKMSFilter

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb

Overview

A filter that returns objects that are encrypted by dual-layer server-side encryption with Amazon Web Services Key Management Service (KMS) keys (DSSE-KMS). You can further refine your filtering by optionally providing a KMS Key ARN to filter objects encrypted by a specific key.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

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.

Returns:

  • (String)


1519
1520
1521
1522
1523
# File 'gems/aws-sdk-s3control/lib/aws-sdk-s3control/types.rb', line 1519

class DSSEKMSFilter < Struct.new(
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end