Class: Aws::XRay::Types::EncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::EncryptionConfig
- 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
-
#key_id ⇒ String
The ID of the KMS key used for encryption, if applicable.
-
#status ⇒ String
The encryption status.
-
#type ⇒ String
The type of encryption.
Instance Attribute Details
#key_id ⇒ String
The ID of the KMS key used for encryption, if applicable.
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 |
#status ⇒ String
The encryption status. While the status is UPDATING
, X-Ray may
encrypt data with a combination of the new and old settings.
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 |
#type ⇒ String
The type of encryption. Set to KMS
for encryption with KMS keys.
Set to NONE
for default encryption.
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 |