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 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.
6924 6925 6926 6927 6928 6929 |
# File 'lib/aws-sdk-glue/types.rb', line 6924 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 KMS key to use for encryption at rest.
6924 6925 6926 6927 6928 6929 |
# File 'lib/aws-sdk-glue/types.rb', line 6924 class EncryptionAtRest < Struct.new( :catalog_encryption_mode, :sse_aws_kms_key_id) SENSITIVE = [] include Aws::Structure end |