Class: Aws::ConnectCampaignsV2::Types::EncryptionConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignsV2::Types::EncryptionConfig
- Defined in:
- gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/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.
753 754 755 756 757 758 759 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 753 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |
#encryption_type ⇒ String
Server-side encryption type.
753 754 755 756 757 758 759 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 753 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |
#key_arn ⇒ String
KMS key id/arn for encryption config.
753 754 755 756 757 758 759 |
# File 'gems/aws-sdk-connectcampaignsv2/lib/aws-sdk-connectcampaignsv2/types.rb', line 753 class EncryptionConfig < Struct.new( :enabled, :encryption_type, :key_arn) SENSITIVE = [] include Aws::Structure end |