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

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

Instance Attribute Details

#key_idString

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

Returns:

  • (String)


22350
22351
22352
22353
22354
22355
22356
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350

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)


22350
22351
22352
22353
22354
22355
22356
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350

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)


22350
22351
22352
22353
22354
22355
22356
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 22350

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