Class: Aws::Glue::Types::CloudWatchEncryption
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::CloudWatchEncryption
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass CloudWatchEncryption data as a hash:
{
cloud_watch_encryption_mode: "DISABLED", # accepts DISABLED, SSE-KMS
kms_key_arn: "KmsKeyArn",
}
Specifies how Amazon CloudWatch data should be encrypted.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_encryption_mode ⇒ String
The encryption mode to use for CloudWatch data.
-
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
Instance Attribute Details
#cloud_watch_encryption_mode ⇒ String
The encryption mode to use for CloudWatch data.
1331 1332 1333 1334 1335 1336 |
# File 'lib/aws-sdk-glue/types.rb', line 1331 class CloudWatchEncryption < Struct.new( :cloud_watch_encryption_mode, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
1331 1332 1333 1334 1335 1336 |
# File 'lib/aws-sdk-glue/types.rb', line 1331 class CloudWatchEncryption < Struct.new( :cloud_watch_encryption_mode, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |