Class: Aws::XRay::Types::EncryptionConfig

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

A configuration document that specifies encryption configuration settings.

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

The ID of the customer master key (CMK) used for encryption, if applicable.

Returns:

  • (String)


401
402
403
404
405
406
# File 'lib/aws-sdk-xray/types.rb', line 401

class EncryptionConfig < Struct.new(
  :key_id,
  :status,
  :type)
  include Aws::Structure
end

#statusString

The encryption status. While the status is ‘UPDATING`, X-Ray may encrypt data with a combination of the new and old settings.

Returns:

  • (String)


401
402
403
404
405
406
# File 'lib/aws-sdk-xray/types.rb', line 401

class EncryptionConfig < Struct.new(
  :key_id,
  :status,
  :type)
  include Aws::Structure
end

#typeString

The type of encryption. Set to ‘KMS` for encryption with CMKs. Set to `NONE` for default encryption.

Returns:

  • (String)


401
402
403
404
405
406
# File 'lib/aws-sdk-xray/types.rb', line 401

class EncryptionConfig < Struct.new(
  :key_id,
  :status,
  :type)
  include Aws::Structure
end