Class: Aws::Glue::Types::CloudWatchEncryption

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb

Overview

Specifies how Amazon CloudWatch data should be encrypted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#cloud_watch_encryption_modeString

The encryption mode to use for CloudWatch data.

Returns:

  • (String)


2032
2033
2034
2035
2036
2037
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2032

class CloudWatchEncryption < Struct.new(
  :cloud_watch_encryption_mode,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_arnString

The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

Returns:

  • (String)


2032
2033
2034
2035
2036
2037
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 2032

class CloudWatchEncryption < Struct.new(
  :cloud_watch_encryption_mode,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end