Class: Aws::SecurityHub::Types::AwsXrayEncryptionConfigDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsXrayEncryptionConfigDetails
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-securityhub/types.rb
Overview
Information about the encryption configuration for X-Ray.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#key_id ⇒ String
The identifier of the KMS key that is used for encryption.
-
#status ⇒ String
The current status of the encryption configuration.
-
#type ⇒ String
The type of encryption.
Instance Attribute Details
#key_id ⇒ String
The identifier of the KMS key that is used for encryption. Provided if ‘Type` is `KMS`.
22379 22380 22381 22382 22383 22384 22385 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22379 class AwsXrayEncryptionConfigDetails < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the encryption configuration. Valid values are ‘ACTIVE` or `UPDATING`.
When ‘Status` is equal to `UPDATING`, X-Ray might use both the old and new encryption.
22379 22380 22381 22382 22383 22384 22385 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22379 class AwsXrayEncryptionConfigDetails < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of encryption. ‘KMS` indicates that the encryption uses KMS keys. `NONE` indicates the default encryption.
22379 22380 22381 22382 22383 22384 22385 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22379 class AwsXrayEncryptionConfigDetails < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end |