Class: Aws::EC2::Types::VerifiedAccessSseSpecificationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::VerifiedAccessSseSpecificationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
Verified Access provides server side encryption by default to data at rest using Amazon Web Services-owned KMS keys. You also have the option of using customer managed KMS keys, which can be specified using the options below.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#customer_managed_key_enabled ⇒ Boolean
Enable or disable the use of customer managed KMS keys for server side encryption.
-
#kms_key_arn ⇒ String
The ARN of the KMS key.
Instance Attribute Details
#customer_managed_key_enabled ⇒ Boolean
Enable or disable the use of customer managed KMS keys for server side encryption.
Valid values: ‘True` | `False`
72068 72069 72070 72071 72072 72073 |
# File 'lib/aws-sdk-ec2/types.rb', line 72068 class VerifiedAccessSseSpecificationRequest < Struct.new( :customer_managed_key_enabled, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The ARN of the KMS key.
72068 72069 72070 72071 72072 72073 |
# File 'lib/aws-sdk-ec2/types.rb', line 72068 class VerifiedAccessSseSpecificationRequest < Struct.new( :customer_managed_key_enabled, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |