Class: Aws::Glue::Types::S3Encryption

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

Overview

Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#kms_key_arnString

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

Returns:

  • (String)


18241
18242
18243
18244
18245
18246
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18241

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

#s3_encryption_modeString

The encryption mode to use for Amazon S3 data.

Returns:

  • (String)


18241
18242
18243
18244
18245
18246
# File 'gems/aws-sdk-glue/lib/aws-sdk-glue/types.rb', line 18241

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