Class: Aws::CodeGuruSecurity::Types::EncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruSecurity::Types::EncryptionConfig
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurusecurity/types.rb
Overview
Information about the encryption configuration for an account. Required to call ‘UpdateAccountConfiguration`.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_arn ⇒ String
The KMS key ARN that is used for encryption.
Instance Attribute Details
#kms_key_arn ⇒ String
The KMS key ARN that is used for encryption. If an AWS-managed key is used for encryption, returns empty.
358 359 360 361 362 |
# File 'lib/aws-sdk-codegurusecurity/types.rb', line 358 class EncryptionConfig < Struct.new( :kms_key_arn) SENSITIVE = [] include Aws::Structure end |