Class: Aws::SecurityHub::Types::AwsXrayEncryptionConfigDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsXrayEncryptionConfigDetails
- Defined in:
- gems/aws-sdk-securityhub/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.
21616 21617 21618 21619 21620 21621 21622 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 21616 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.
21616 21617 21618 21619 21620 21621 21622 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 21616 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.
21616 21617 21618 21619 21620 21621 21622 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 21616 class AwsXrayEncryptionConfigDetails < Struct.new( :key_id, :status, :type) SENSITIVE = [] include Aws::Structure end |