Class: Aws::Glue::Types::EncryptionAtRest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::EncryptionAtRest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass EncryptionAtRest data as a hash:
{
catalog_encryption_mode: "DISABLED", # required, accepts DISABLED, SSE-KMS
sse_aws_kms_key_id: "NameString",
}
Specifies the encryption-at-rest configuration for the Data Catalog.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#catalog_encryption_mode ⇒ String
The encryption-at-rest mode for encrypting Data Catalog data.
-
#sse_aws_kms_key_id ⇒ String
The ID of the AWS KMS key to use for encryption at rest.
Instance Attribute Details
#catalog_encryption_mode ⇒ String
The encryption-at-rest mode for encrypting Data Catalog data.
6238 6239 6240 6241 6242 6243 |
# File 'lib/aws-sdk-glue/types.rb', line 6238 class EncryptionAtRest < Struct.new( :catalog_encryption_mode, :sse_aws_kms_key_id) SENSITIVE = [] include Aws::Structure end |
#sse_aws_kms_key_id ⇒ String
The ID of the AWS KMS key to use for encryption at rest.
6238 6239 6240 6241 6242 6243 |
# File 'lib/aws-sdk-glue/types.rb', line 6238 class EncryptionAtRest < Struct.new( :catalog_encryption_mode, :sse_aws_kms_key_id) SENSITIVE = [] include Aws::Structure end |