Class: Aws::EC2::Types::VerifiedAccessSseSpecificationRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#customer_managed_key_enabledBoolean

Enable or disable the use of customer managed KMS keys for server side encryption.

Valid values: True | False

Returns:

  • (Boolean)


67251
67252
67253
67254
67255
67256
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67251

class VerifiedAccessSseSpecificationRequest < Struct.new(
  :customer_managed_key_enabled,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end

#kms_key_arnString

The ARN of the KMS key.

Returns:

  • (String)


67251
67252
67253
67254
67255
67256
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 67251

class VerifiedAccessSseSpecificationRequest < Struct.new(
  :customer_managed_key_enabled,
  :kms_key_arn)
  SENSITIVE = []
  include Aws::Structure
end