Class: Aws::ConnectCampaignService::Types::EncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignService::Types::EncryptionConfig
- Defined in:
- gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb
Overview
Encryption config for Connect Instance. Note that sensitive data will always be encrypted. If disabled, service will perform encryption with its own key. If enabled, a KMS key id needs to be provided and KMS charges will apply. KMS is only type supported
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#enabled ⇒ Boolean
Boolean to indicate if custom encryption has been enabled.
-
#encryption_type ⇒ String
Server-side encryption type.
-
#key_arn ⇒ String
KMS key id/arn for encryption config.
Instance Attribute Details
#enabled ⇒ Boolean
Boolean to indicate if custom encryption has been enabled.
387 388 389 390 391 392 393 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 387 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |
#encryption_type ⇒ String
Server-side encryption type.
387 388 389 390 391 392 393 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 387 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |
#key_arn ⇒ String
KMS key id/arn for encryption config.
387 388 389 390 391 392 393 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 387 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |