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`
      72325 72326 72327 72328 72329 72330  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 72325 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.
      72325 72326 72327 72328 72329 72330  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 72325 class VerifiedAccessSseSpecificationRequest < Struct.new( :customer_managed_key_enabled, :kms_key_arn) SENSITIVE = [] include Aws::Structure end  |