Class: Aws::Glue::Types::EncryptionConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::Glue::Types::EncryptionConfiguration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-glue/types.rb
Overview
Note:
When making an API call, you may pass EncryptionConfiguration data as a hash:
{
s3_encryption: [
{
s3_encryption_mode: "DISABLED", # accepts DISABLED, SSE-KMS, SSE-S3
kms_key_arn: "KmsKeyArn",
},
],
cloud_watch_encryption: {
cloud_watch_encryption_mode: "DISABLED", # accepts DISABLED, SSE-KMS
kms_key_arn: "KmsKeyArn",
},
job_bookmarks_encryption: {
job_bookmarks_encryption_mode: "DISABLED", # accepts DISABLED, CSE-KMS
kms_key_arn: "KmsKeyArn",
},
}
Specifies an encryption configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#cloud_watch_encryption ⇒ Types::CloudWatchEncryption
The encryption configuration for Amazon CloudWatch.
-
#job_bookmarks_encryption ⇒ Types::JobBookmarksEncryption
The encryption configuration for job bookmarks.
-
#s3_encryption ⇒ Array<Types::S3Encryption>
The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.
Instance Attribute Details
#cloud_watch_encryption ⇒ Types::CloudWatchEncryption
The encryption configuration for Amazon CloudWatch.
6282 6283 6284 6285 6286 6287 6288 |
# File 'lib/aws-sdk-glue/types.rb', line 6282 class EncryptionConfiguration < Struct.new( :s3_encryption, :cloud_watch_encryption, :job_bookmarks_encryption) SENSITIVE = [] include Aws::Structure end |
#job_bookmarks_encryption ⇒ Types::JobBookmarksEncryption
The encryption configuration for job bookmarks.
6282 6283 6284 6285 6286 6287 6288 |
# File 'lib/aws-sdk-glue/types.rb', line 6282 class EncryptionConfiguration < Struct.new( :s3_encryption, :cloud_watch_encryption, :job_bookmarks_encryption) SENSITIVE = [] include Aws::Structure end |
#s3_encryption ⇒ Array<Types::S3Encryption>
The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.
6282 6283 6284 6285 6286 6287 6288 |
# File 'lib/aws-sdk-glue/types.rb', line 6282 class EncryptionConfiguration < Struct.new( :s3_encryption, :cloud_watch_encryption, :job_bookmarks_encryption) SENSITIVE = [] include Aws::Structure end |