Class: Aws::EMRServerless::Types::DiskEncryptionConfiguration

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

Overview

The configuration object that allows encrypting local disks.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_contextHash<String,String>

Specifies the optional encryption context that will be used when encrypting the data. An encryption context is a collection of non-secret key-value pairs that represent additional authenticated data.

Returns:

  • (Hash<String,String>)


612
613
614
615
616
617
# File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 612

class DiskEncryptionConfiguration < Struct.new(
  :encryption_context,
  :encryption_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#encryption_key_arnString

The KMS key ARN to encrypt local disks.

Returns:

  • (String)


612
613
614
615
616
617
# File 'gems/aws-sdk-emrserverless/lib/aws-sdk-emrserverless/types.rb', line 612

class DiskEncryptionConfiguration < Struct.new(
  :encryption_context,
  :encryption_key_arn)
  SENSITIVE = []
  include Aws::Structure
end