Class: Aws::DevOpsGuru::Types::KMSServerSideEncryptionIntegration
- Inherits:
-
Struct
- Object
- Struct
- Aws::DevOpsGuru::Types::KMSServerSideEncryptionIntegration
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devopsguru/types.rb
Overview
Information about the KMS encryption used with DevOps Guru.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#kms_key_id ⇒ String
Describes the specified KMS key.
-
#opt_in_status ⇒ String
Specifies if DevOps Guru is enabled for customer managed keys.
-
#type ⇒ String
The type of KMS key used.
Instance Attribute Details
#kms_key_id ⇒ String
Describes the specified KMS key.
To specify a KMS key, use its key ID, key ARN, alias name, or alias ARN. When using an alias name, prefix it with “alias/”. If you specify a predefined Amazon Web Services alias (an Amazon Web Services alias with no key ID), Amazon Web Services KMS associates the alias with an Amazon Web Services managed key and returns its KeyId and Arn in the response. To specify a KMS key in a different Amazon Web Services account, you must use the key ARN or alias ARN.
For example:
Key ID: 1234abcd-12ab-34cd-56ef-1234567890ab
Key ARN: arn:aws:kms:us-east-2:111122223333:key/1234abcd-12ab-34cd-56ef-1234567890ab
Alias name: alias/ExampleAlias
Alias ARN: arn:aws:kms:us-east-2:111122223333:alias/ExampleAlias
1504 1505 1506 1507 1508 1509 1510 |
# File 'lib/aws-sdk-devopsguru/types.rb', line 1504 class KMSServerSideEncryptionIntegration < Struct.new( :kms_key_id, :opt_in_status, :type) SENSITIVE = [] include Aws::Structure end |
#opt_in_status ⇒ String
Specifies if DevOps Guru is enabled for customer managed keys.
1504 1505 1506 1507 1508 1509 1510 |
# File 'lib/aws-sdk-devopsguru/types.rb', line 1504 class KMSServerSideEncryptionIntegration < Struct.new( :kms_key_id, :opt_in_status, :type) SENSITIVE = [] include Aws::Structure end |
#type ⇒ String
The type of KMS key used. Customer managed keys are the KMS keys that you create. Amazon Web Services owned keys are keys that are owned and managed by DevOps Guru.
1504 1505 1506 1507 1508 1509 1510 |
# File 'lib/aws-sdk-devopsguru/types.rb', line 1504 class KMSServerSideEncryptionIntegration < Struct.new( :kms_key_id, :opt_in_status, :type) SENSITIVE = [] include Aws::Structure end |