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`.
22525 22526 22527 22528 22529 22530 22531 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22525 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.
22525 22526 22527 22528 22529 22530 22531 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22525 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.
22525 22526 22527 22528 22529 22530 22531 |
# File 'lib/aws-sdk-securityhub/types.rb', line 22525 class AwsXrayEncryptionConfigDetails < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end |