Class: Aws::QuickSight::Types::RegisteredCustomerManagedKey

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-quicksight/types.rb

Overview

A customer managed key structure that contains the information listed below:

  • ‘KeyArn` - The ARN of a KMS key that is registered to a Amazon QuickSight account for encryption and decryption use.

  • ‘DefaultKey` - Indicates whether the current key is set as the default key for encryption and decryption use.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#default_keyBoolean

Indicates whether a ‘RegisteredCustomerManagedKey` is set as the default key for encryption and decryption use.

Returns:

  • (Boolean)


23976
23977
23978
23979
23980
23981
# File 'lib/aws-sdk-quicksight/types.rb', line 23976

class RegisteredCustomerManagedKey < Struct.new(
  :key_arn,
  :default_key)
  SENSITIVE = []
  include Aws::Structure
end

#key_arnString

The ARN of the KMS key that is registered to a Amazon QuickSight account for encryption and decryption use.

Returns:

  • (String)


23976
23977
23978
23979
23980
23981
# File 'lib/aws-sdk-quicksight/types.rb', line 23976

class RegisteredCustomerManagedKey < Struct.new(
  :key_arn,
  :default_key)
  SENSITIVE = []
  include Aws::Structure
end