Class: Aws::EC2::Types::VerifiedAccessSseSpecificationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::VerifiedAccessSseSpecificationRequest
- Defined in:
- gems/aws-sdk-ec2/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
68992 68993 68994 68995 68996 68997 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 68992 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.
68992 68993 68994 68995 68996 68997 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 68992 class VerifiedAccessSseSpecificationRequest < Struct.new( :customer_managed_key_enabled, :kms_key_arn) SENSITIVE = [] include Aws::Structure end |