Class: Aws::ConnectCampaignService::Types::DialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ConnectCampaignService::Types::DialRequest
- Defined in:
- gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb
Overview
A dial request for a campaign.
Constant Summary collapse
- SENSITIVE =
[:phone_number, :attributes]
Instance Attribute Summary collapse
-
#attributes ⇒ Hash<String,String>
A custom key-value pair using an attribute map.
-
#client_token ⇒ String
Client provided parameter used for idempotency.
-
#expiration_time ⇒ Time
Timestamp with no UTC offset or timezone.
-
#phone_number ⇒ String
The phone number of the customer, in E.164 format.
Instance Attribute Details
#attributes ⇒ Hash<String,String>
A custom key-value pair using an attribute map. The attributes are standard Amazon Connect attributes, and can be accessed in contact flows just like any other contact attributes.
324 325 326 327 328 329 330 331 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 324 class DialRequest < Struct.new( :client_token, :phone_number, :expiration_time, :attributes) SENSITIVE = [:phone_number, :attributes] include Aws::Structure end |
#client_token ⇒ String
Client provided parameter used for idempotency. Its value must be unique for each request.
324 325 326 327 328 329 330 331 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 324 class DialRequest < Struct.new( :client_token, :phone_number, :expiration_time, :attributes) SENSITIVE = [:phone_number, :attributes] include Aws::Structure end |
#expiration_time ⇒ Time
Timestamp with no UTC offset or timezone
324 325 326 327 328 329 330 331 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 324 class DialRequest < Struct.new( :client_token, :phone_number, :expiration_time, :attributes) SENSITIVE = [:phone_number, :attributes] include Aws::Structure end |
#phone_number ⇒ String
The phone number of the customer, in E.164 format.
324 325 326 327 328 329 330 331 |
# File 'gems/aws-sdk-connectcampaignservice/lib/aws-sdk-connectcampaignservice/types.rb', line 324 class DialRequest < Struct.new( :client_token, :phone_number, :expiration_time, :attributes) SENSITIVE = [:phone_number, :attributes] include Aws::Structure end |