Class: Aws::Connect::Types::DeleteContactDataRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Connect::Types::DeleteContactDataRequest
- Defined in:
- gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#contact_fields ⇒ Array<String>
The categories of PII to redact from the contact.
-
#contact_id ⇒ String
The identifier of the contact.
-
#instance_id ⇒ String
The identifier of the Connect Customer instance.
Instance Attribute Details
#contact_fields ⇒ Array<String>
The categories of PII to redact from the contact. Specify one or more of the following values:
CUSTOMER_ENDPOINT– The customer's contact endpoint.ADDITIONAL_EMAIL_RECIPIENTS– Additional recipients on an email contact (email channel only).EMAIL_SUBJECT– The subject line of an email contact (email channel only).
9335 9336 9337 9338 9339 9340 9341 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9335 class DeleteContactDataRequest < Struct.new( :instance_id, :contact_id, :contact_fields) SENSITIVE = [] include Aws::Structure end |
#contact_id ⇒ String
The identifier of the contact. You can delete PII only from a contact that has been disconnected (is in a terminated state).
9335 9336 9337 9338 9339 9340 9341 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9335 class DeleteContactDataRequest < Struct.new( :instance_id, :contact_id, :contact_fields) SENSITIVE = [] include Aws::Structure end |
#instance_id ⇒ String
The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
9335 9336 9337 9338 9339 9340 9341 |
# File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 9335 class DeleteContactDataRequest < Struct.new( :instance_id, :contact_id, :contact_fields) SENSITIVE = [] include Aws::Structure end |