Class: Aws::S3Control::Types::SSEKMSFilter

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 server-side encryption with Amazon Web Services KMS (SSE-KMS).

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_key_enabledBoolean

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.

Returns:

  • (Boolean)


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_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)


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