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

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

Overview

A configuration document that specifies encryption configuration settings.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#key_idString

The ID of the KMS key used for encryption, if applicable.

Returns:

  • (String)


472
473
474
475
476
477
478
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 472

class EncryptionConfig < Struct.new(
  :key_id,
  :status,
  :type)
  SENSITIVE = []
  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)


472
473
474
475
476
477
478
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 472

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

#typeString

The type of encryption. Set to KMS for encryption with KMS keys. Set to NONE for default encryption.

Returns:

  • (String)


472
473
474
475
476
477
478
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 472

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