Class: Aws::S3::Types::MetadataTableEncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::S3::Types::MetadataTableEncryptionConfiguration
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-s3/types.rb
Overview
The encryption settings for an S3 Metadata journal table or inventory table configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
If server-side encryption with Key Management Service (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN).
-
#sse_algorithm ⇒ String
The encryption type specified for a metadata table.
Instance Attribute Details
#kms_key_arn ⇒ String
If server-side encryption with Key Management Service (KMS) keys (SSE-KMS) is specified, you must also specify the KMS key Amazon Resource Name (ARN). You must specify a customer-managed KMS key that’s located in the same Region as the general purpose bucket that corresponds to the metadata table configuration.
12962 12963 12964 12965 12966 12967 |
# File 'lib/aws-sdk-s3/types.rb', line 12962 class MetadataTableEncryptionConfiguration < Struct.new( :sse_algorithm, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#sse_algorithm ⇒ String
The encryption type specified for a metadata table. To specify server-side encryption with Key Management Service (KMS) keys (SSE-KMS), use the ‘aws:kms` value. To specify server-side encryption with Amazon S3 managed keys (SSE-S3), use the `AES256` value.
12962 12963 12964 12965 12966 12967 |
# File 'lib/aws-sdk-s3/types.rb', line 12962 class MetadataTableEncryptionConfiguration < Struct.new( :sse_algorithm, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |