Class: Aws::SecurityHub::Types::AwsXrayEncryptionConfigDetails

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#key_idString

The identifier of the KMS key that is used for encryption. Provided if ‘Type` is `KMS`.

Returns:

  • (String)


22389
22390
22391
22392
22393
22394
22395
# File 'lib/aws-sdk-securityhub/types.rb', line 22389

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

#statusString

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.

Returns:

  • (String)


22389
22390
22391
22392
22393
22394
22395
# File 'lib/aws-sdk-securityhub/types.rb', line 22389

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

#typeString

The type of encryption. ‘KMS` indicates that the encryption uses KMS keys. `NONE` indicates the default encryption.

Returns:

  • (String)


22389
22390
22391
22392
22393
22394
22395
# File 'lib/aws-sdk-securityhub/types.rb', line 22389

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