aws-sdk-connectcampaignservice 1.8.0 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connectcampaignservice/client.rb +72 -59
- data/lib/aws-sdk-connectcampaignservice/client_api.rb +34 -25
- data/lib/aws-sdk-connectcampaignservice/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-connectcampaignservice/errors.rb +4 -4
- data/lib/aws-sdk-connectcampaignservice/types.rb +166 -133
- data/lib/aws-sdk-connectcampaignservice.rb +1 -1
- metadata +2 -2
@@ -29,6 +29,21 @@ module Aws::ConnectCampaignService
|
|
29
29
|
include Aws::Structure
|
30
30
|
end
|
31
31
|
|
32
|
+
# Agentless Dialer config
|
33
|
+
#
|
34
|
+
# @!attribute [rw] dialing_capacity
|
35
|
+
# Allocates dialing capacity for this campaign between multiple active
|
36
|
+
# campaigns
|
37
|
+
# @return [Float]
|
38
|
+
#
|
39
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/AgentlessDialerConfig AWS API Documentation
|
40
|
+
#
|
41
|
+
class AgentlessDialerConfig < Struct.new(
|
42
|
+
:dialing_capacity)
|
43
|
+
SENSITIVE = []
|
44
|
+
include Aws::Structure
|
45
|
+
end
|
46
|
+
|
32
47
|
# Answering Machine Detection config
|
33
48
|
#
|
34
49
|
# @!attribute [rw] enable_answer_machine_detection
|
@@ -45,10 +60,18 @@ module Aws::ConnectCampaignService
|
|
45
60
|
|
46
61
|
# An Amazon Connect campaign.
|
47
62
|
#
|
63
|
+
# @!attribute [rw] id
|
64
|
+
# Identifier representing a Campaign
|
65
|
+
# @return [String]
|
66
|
+
#
|
48
67
|
# @!attribute [rw] arn
|
49
68
|
# The resource name of an Amazon Connect campaign.
|
50
69
|
# @return [String]
|
51
70
|
#
|
71
|
+
# @!attribute [rw] name
|
72
|
+
# The name of an Amazon Connect Campaign name.
|
73
|
+
# @return [String]
|
74
|
+
#
|
52
75
|
# @!attribute [rw] connect_instance_id
|
53
76
|
# Amazon Connect Instance Id
|
54
77
|
# @return [String]
|
@@ -57,14 +80,6 @@ module Aws::ConnectCampaignService
|
|
57
80
|
# The possible types of dialer config parameters
|
58
81
|
# @return [Types::DialerConfig]
|
59
82
|
#
|
60
|
-
# @!attribute [rw] id
|
61
|
-
# Identifier representing a Campaign
|
62
|
-
# @return [String]
|
63
|
-
#
|
64
|
-
# @!attribute [rw] name
|
65
|
-
# The name of an Amazon Connect Campaign name.
|
66
|
-
# @return [String]
|
67
|
-
#
|
68
83
|
# @!attribute [rw] outbound_call_config
|
69
84
|
# The configuration used for outbound calls.
|
70
85
|
# @return [Types::OutboundCallConfig]
|
@@ -76,11 +91,11 @@ module Aws::ConnectCampaignService
|
|
76
91
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/Campaign AWS API Documentation
|
77
92
|
#
|
78
93
|
class Campaign < Struct.new(
|
94
|
+
:id,
|
79
95
|
:arn,
|
96
|
+
:name,
|
80
97
|
:connect_instance_id,
|
81
98
|
:dialer_config,
|
82
|
-
:id,
|
83
|
-
:name,
|
84
99
|
:outbound_call_config,
|
85
100
|
:tags)
|
86
101
|
SENSITIVE = []
|
@@ -103,29 +118,29 @@ module Aws::ConnectCampaignService
|
|
103
118
|
|
104
119
|
# An Amazon Connect campaign summary.
|
105
120
|
#
|
106
|
-
# @!attribute [rw] arn
|
107
|
-
# The resource name of an Amazon Connect campaign.
|
108
|
-
# @return [String]
|
109
|
-
#
|
110
|
-
# @!attribute [rw] connect_instance_id
|
111
|
-
# Amazon Connect Instance Id
|
112
|
-
# @return [String]
|
113
|
-
#
|
114
121
|
# @!attribute [rw] id
|
115
122
|
# Identifier representing a Campaign
|
116
123
|
# @return [String]
|
117
124
|
#
|
125
|
+
# @!attribute [rw] arn
|
126
|
+
# The resource name of an Amazon Connect campaign.
|
127
|
+
# @return [String]
|
128
|
+
#
|
118
129
|
# @!attribute [rw] name
|
119
130
|
# The name of an Amazon Connect Campaign name.
|
120
131
|
# @return [String]
|
121
132
|
#
|
133
|
+
# @!attribute [rw] connect_instance_id
|
134
|
+
# Amazon Connect Instance Id
|
135
|
+
# @return [String]
|
136
|
+
#
|
122
137
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/CampaignSummary AWS API Documentation
|
123
138
|
#
|
124
139
|
class CampaignSummary < Struct.new(
|
125
|
-
:arn,
|
126
|
-
:connect_instance_id,
|
127
140
|
:id,
|
128
|
-
:
|
141
|
+
:arn,
|
142
|
+
:name,
|
143
|
+
:connect_instance_id)
|
129
144
|
SENSITIVE = []
|
130
145
|
include Aws::Structure
|
131
146
|
end
|
@@ -152,6 +167,10 @@ module Aws::ConnectCampaignService
|
|
152
167
|
|
153
168
|
# The request for Create Campaign API.
|
154
169
|
#
|
170
|
+
# @!attribute [rw] name
|
171
|
+
# The name of an Amazon Connect Campaign name.
|
172
|
+
# @return [String]
|
173
|
+
#
|
155
174
|
# @!attribute [rw] connect_instance_id
|
156
175
|
# Amazon Connect Instance Id
|
157
176
|
# @return [String]
|
@@ -160,10 +179,6 @@ module Aws::ConnectCampaignService
|
|
160
179
|
# The possible types of dialer config parameters
|
161
180
|
# @return [Types::DialerConfig]
|
162
181
|
#
|
163
|
-
# @!attribute [rw] name
|
164
|
-
# The name of an Amazon Connect Campaign name.
|
165
|
-
# @return [String]
|
166
|
-
#
|
167
182
|
# @!attribute [rw] outbound_call_config
|
168
183
|
# The configuration used for outbound calls.
|
169
184
|
# @return [Types::OutboundCallConfig]
|
@@ -175,9 +190,9 @@ module Aws::ConnectCampaignService
|
|
175
190
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/CreateCampaignRequest AWS API Documentation
|
176
191
|
#
|
177
192
|
class CreateCampaignRequest < Struct.new(
|
193
|
+
:name,
|
178
194
|
:connect_instance_id,
|
179
195
|
:dialer_config,
|
180
|
-
:name,
|
181
196
|
:outbound_call_config,
|
182
197
|
:tags)
|
183
198
|
SENSITIVE = []
|
@@ -186,14 +201,14 @@ module Aws::ConnectCampaignService
|
|
186
201
|
|
187
202
|
# The response for Create Campaign API
|
188
203
|
#
|
189
|
-
# @!attribute [rw] arn
|
190
|
-
# The resource name of an Amazon Connect campaign.
|
191
|
-
# @return [String]
|
192
|
-
#
|
193
204
|
# @!attribute [rw] id
|
194
205
|
# Identifier representing a Campaign
|
195
206
|
# @return [String]
|
196
207
|
#
|
208
|
+
# @!attribute [rw] arn
|
209
|
+
# The resource name of an Amazon Connect campaign.
|
210
|
+
# @return [String]
|
211
|
+
#
|
197
212
|
# @!attribute [rw] tags
|
198
213
|
# Tag map with key and value.
|
199
214
|
# @return [Hash<String,String>]
|
@@ -201,8 +216,8 @@ module Aws::ConnectCampaignService
|
|
201
216
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/CreateCampaignResponse AWS API Documentation
|
202
217
|
#
|
203
218
|
class CreateCampaignResponse < Struct.new(
|
204
|
-
:arn,
|
205
219
|
:id,
|
220
|
+
:arn,
|
206
221
|
:tags)
|
207
222
|
SENSITIVE = []
|
208
223
|
include Aws::Structure
|
@@ -280,33 +295,33 @@ module Aws::ConnectCampaignService
|
|
280
295
|
|
281
296
|
# A dial request for a campaign.
|
282
297
|
#
|
283
|
-
# @!attribute [rw] attributes
|
284
|
-
# A custom key-value pair using an attribute map. The attributes are
|
285
|
-
# standard Amazon Connect attributes, and can be accessed in contact
|
286
|
-
# flows just like any other contact attributes.
|
287
|
-
# @return [Hash<String,String>]
|
288
|
-
#
|
289
298
|
# @!attribute [rw] client_token
|
290
299
|
# Client provided parameter used for idempotency. Its value must be
|
291
300
|
# unique for each request.
|
292
301
|
# @return [String]
|
293
302
|
#
|
303
|
+
# @!attribute [rw] phone_number
|
304
|
+
# The phone number of the customer, in E.164 format.
|
305
|
+
# @return [String]
|
306
|
+
#
|
294
307
|
# @!attribute [rw] expiration_time
|
295
308
|
# Timestamp with no UTC offset or timezone
|
296
309
|
# @return [Time]
|
297
310
|
#
|
298
|
-
# @!attribute [rw]
|
299
|
-
#
|
300
|
-
#
|
311
|
+
# @!attribute [rw] attributes
|
312
|
+
# A custom key-value pair using an attribute map. The attributes are
|
313
|
+
# standard Amazon Connect attributes, and can be accessed in contact
|
314
|
+
# flows just like any other contact attributes.
|
315
|
+
# @return [Hash<String,String>]
|
301
316
|
#
|
302
317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/DialRequest AWS API Documentation
|
303
318
|
#
|
304
319
|
class DialRequest < Struct.new(
|
305
|
-
:attributes,
|
306
320
|
:client_token,
|
321
|
+
:phone_number,
|
307
322
|
:expiration_time,
|
308
|
-
:
|
309
|
-
SENSITIVE = [:
|
323
|
+
:attributes)
|
324
|
+
SENSITIVE = [:phone_number, :attributes]
|
310
325
|
include Aws::Structure
|
311
326
|
end
|
312
327
|
|
@@ -316,26 +331,32 @@ module Aws::ConnectCampaignService
|
|
316
331
|
#
|
317
332
|
# @note DialerConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of DialerConfig corresponding to the set member.
|
318
333
|
#
|
334
|
+
# @!attribute [rw] progressive_dialer_config
|
335
|
+
# Progressive Dialer config
|
336
|
+
# @return [Types::ProgressiveDialerConfig]
|
337
|
+
#
|
319
338
|
# @!attribute [rw] predictive_dialer_config
|
320
339
|
# Predictive Dialer config
|
321
340
|
# @return [Types::PredictiveDialerConfig]
|
322
341
|
#
|
323
|
-
# @!attribute [rw]
|
324
|
-
#
|
325
|
-
# @return [Types::
|
342
|
+
# @!attribute [rw] agentless_dialer_config
|
343
|
+
# Agentless Dialer config
|
344
|
+
# @return [Types::AgentlessDialerConfig]
|
326
345
|
#
|
327
346
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/DialerConfig AWS API Documentation
|
328
347
|
#
|
329
348
|
class DialerConfig < Struct.new(
|
330
|
-
:predictive_dialer_config,
|
331
349
|
:progressive_dialer_config,
|
350
|
+
:predictive_dialer_config,
|
351
|
+
:agentless_dialer_config,
|
332
352
|
:unknown)
|
333
353
|
SENSITIVE = []
|
334
354
|
include Aws::Structure
|
335
355
|
include Aws::Structure::Union
|
336
356
|
|
337
|
-
class PredictiveDialerConfig < DialerConfig; end
|
338
357
|
class ProgressiveDialerConfig < DialerConfig; end
|
358
|
+
class PredictiveDialerConfig < DialerConfig; end
|
359
|
+
class AgentlessDialerConfig < DialerConfig; end
|
339
360
|
class Unknown < DialerConfig; end
|
340
361
|
end
|
341
362
|
|
@@ -393,20 +414,20 @@ module Aws::ConnectCampaignService
|
|
393
414
|
# unique for each request.
|
394
415
|
# @return [String]
|
395
416
|
#
|
396
|
-
# @!attribute [rw] failure_code
|
397
|
-
# A predefined code indicating the error that caused the failure.
|
398
|
-
# @return [String]
|
399
|
-
#
|
400
417
|
# @!attribute [rw] id
|
401
418
|
# Identifier representing a Dial request
|
402
419
|
# @return [String]
|
403
420
|
#
|
421
|
+
# @!attribute [rw] failure_code
|
422
|
+
# A predefined code indicating the error that caused the failure.
|
423
|
+
# @return [String]
|
424
|
+
#
|
404
425
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/FailedRequest AWS API Documentation
|
405
426
|
#
|
406
427
|
class FailedRequest < Struct.new(
|
407
428
|
:client_token,
|
408
|
-
:
|
409
|
-
:
|
429
|
+
:id,
|
430
|
+
:failure_code)
|
410
431
|
SENSITIVE = []
|
411
432
|
include Aws::Structure
|
412
433
|
end
|
@@ -427,19 +448,19 @@ module Aws::ConnectCampaignService
|
|
427
448
|
|
428
449
|
# GetCampaignStateBatchResponse
|
429
450
|
#
|
430
|
-
# @!attribute [rw] failed_requests
|
431
|
-
# List of failed requests of campaign state
|
432
|
-
# @return [Array<Types::FailedCampaignStateResponse>]
|
433
|
-
#
|
434
451
|
# @!attribute [rw] successful_requests
|
435
452
|
# List of successful response of campaign state
|
436
453
|
# @return [Array<Types::SuccessfulCampaignStateResponse>]
|
437
454
|
#
|
455
|
+
# @!attribute [rw] failed_requests
|
456
|
+
# List of failed requests of campaign state
|
457
|
+
# @return [Array<Types::FailedCampaignStateResponse>]
|
458
|
+
#
|
438
459
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetCampaignStateBatchResponse AWS API Documentation
|
439
460
|
#
|
440
461
|
class GetCampaignStateBatchResponse < Struct.new(
|
441
|
-
:
|
442
|
-
:
|
462
|
+
:successful_requests,
|
463
|
+
:failed_requests)
|
443
464
|
SENSITIVE = []
|
444
465
|
include Aws::Structure
|
445
466
|
end
|
@@ -534,6 +555,10 @@ module Aws::ConnectCampaignService
|
|
534
555
|
# Amazon Connect Instance Id
|
535
556
|
# @return [String]
|
536
557
|
#
|
558
|
+
# @!attribute [rw] service_linked_role_arn
|
559
|
+
# Service linked role arn
|
560
|
+
# @return [String]
|
561
|
+
#
|
537
562
|
# @!attribute [rw] encryption_config
|
538
563
|
# Encryption config for Connect Instance. Note that sensitive data
|
539
564
|
# will always be encrypted. If disabled, service will perform
|
@@ -541,35 +566,31 @@ module Aws::ConnectCampaignService
|
|
541
566
|
# provided and KMS charges will apply. KMS is only type supported
|
542
567
|
# @return [Types::EncryptionConfig]
|
543
568
|
#
|
544
|
-
# @!attribute [rw] service_linked_role_arn
|
545
|
-
# Service linked role arn
|
546
|
-
# @return [String]
|
547
|
-
#
|
548
569
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/InstanceConfig AWS API Documentation
|
549
570
|
#
|
550
571
|
class InstanceConfig < Struct.new(
|
551
572
|
:connect_instance_id,
|
552
|
-
:
|
553
|
-
:
|
573
|
+
:service_linked_role_arn,
|
574
|
+
:encryption_config)
|
554
575
|
SENSITIVE = []
|
555
576
|
include Aws::Structure
|
556
577
|
end
|
557
578
|
|
558
579
|
# Connect instance identifier filter
|
559
580
|
#
|
560
|
-
# @!attribute [rw] operator
|
561
|
-
# Operators for Connect instance identifier filter
|
562
|
-
# @return [String]
|
563
|
-
#
|
564
581
|
# @!attribute [rw] value
|
565
582
|
# Amazon Connect Instance Id
|
566
583
|
# @return [String]
|
567
584
|
#
|
585
|
+
# @!attribute [rw] operator
|
586
|
+
# Operators for Connect instance identifier filter
|
587
|
+
# @return [String]
|
588
|
+
#
|
568
589
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/InstanceIdFilter AWS API Documentation
|
569
590
|
#
|
570
591
|
class InstanceIdFilter < Struct.new(
|
571
|
-
:
|
572
|
-
:
|
592
|
+
:value,
|
593
|
+
:operator)
|
573
594
|
SENSITIVE = []
|
574
595
|
include Aws::Structure
|
575
596
|
end
|
@@ -580,21 +601,21 @@ module Aws::ConnectCampaignService
|
|
580
601
|
# Amazon Connect Instance Id
|
581
602
|
# @return [String]
|
582
603
|
#
|
604
|
+
# @!attribute [rw] status
|
605
|
+
# Enumeration of the possible states for instance onboarding job
|
606
|
+
# @return [String]
|
607
|
+
#
|
583
608
|
# @!attribute [rw] failure_code
|
584
609
|
# Enumeration of the possible failure codes for instance onboarding
|
585
610
|
# job
|
586
611
|
# @return [String]
|
587
612
|
#
|
588
|
-
# @!attribute [rw] status
|
589
|
-
# Enumeration of the possible states for instance onboarding job
|
590
|
-
# @return [String]
|
591
|
-
#
|
592
613
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/InstanceOnboardingJobStatus AWS API Documentation
|
593
614
|
#
|
594
615
|
class InstanceOnboardingJobStatus < Struct.new(
|
595
616
|
:connect_instance_id,
|
596
|
-
:
|
597
|
-
:
|
617
|
+
:status,
|
618
|
+
:failure_code)
|
598
619
|
SENSITIVE = []
|
599
620
|
include Aws::Structure
|
600
621
|
end
|
@@ -622,13 +643,13 @@ module Aws::ConnectCampaignService
|
|
622
643
|
# The request could not be processed because of conflict in the current
|
623
644
|
# state of the campaign.
|
624
645
|
#
|
625
|
-
# @!attribute [rw] message
|
626
|
-
# @return [String]
|
627
|
-
#
|
628
646
|
# @!attribute [rw] state
|
629
647
|
# State of a campaign
|
630
648
|
# @return [String]
|
631
649
|
#
|
650
|
+
# @!attribute [rw] message
|
651
|
+
# @return [String]
|
652
|
+
#
|
632
653
|
# @!attribute [rw] x_amz_error_type
|
633
654
|
# A header that defines the error encountered while processing the
|
634
655
|
# request.
|
@@ -637,8 +658,8 @@ module Aws::ConnectCampaignService
|
|
637
658
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/InvalidCampaignStateException AWS API Documentation
|
638
659
|
#
|
639
660
|
class InvalidCampaignStateException < Struct.new(
|
640
|
-
:message,
|
641
661
|
:state,
|
662
|
+
:message,
|
642
663
|
:x_amz_error_type)
|
643
664
|
SENSITIVE = []
|
644
665
|
include Aws::Structure
|
@@ -666,10 +687,6 @@ module Aws::ConnectCampaignService
|
|
666
687
|
|
667
688
|
# ListCampaignsRequest
|
668
689
|
#
|
669
|
-
# @!attribute [rw] filters
|
670
|
-
# Filter model by type
|
671
|
-
# @return [Types::CampaignFilters]
|
672
|
-
#
|
673
690
|
# @!attribute [rw] max_results
|
674
691
|
# The maximum number of results to return per page.
|
675
692
|
# @return [Integer]
|
@@ -678,31 +695,35 @@ module Aws::ConnectCampaignService
|
|
678
695
|
# The token for the next set of results.
|
679
696
|
# @return [String]
|
680
697
|
#
|
698
|
+
# @!attribute [rw] filters
|
699
|
+
# Filter model by type
|
700
|
+
# @return [Types::CampaignFilters]
|
701
|
+
#
|
681
702
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/ListCampaignsRequest AWS API Documentation
|
682
703
|
#
|
683
704
|
class ListCampaignsRequest < Struct.new(
|
684
|
-
:filters,
|
685
705
|
:max_results,
|
686
|
-
:next_token
|
706
|
+
:next_token,
|
707
|
+
:filters)
|
687
708
|
SENSITIVE = []
|
688
709
|
include Aws::Structure
|
689
710
|
end
|
690
711
|
|
691
712
|
# ListCampaignsResponse
|
692
713
|
#
|
693
|
-
# @!attribute [rw] campaign_summary_list
|
694
|
-
# A list of Amazon Connect campaigns.
|
695
|
-
# @return [Array<Types::CampaignSummary>]
|
696
|
-
#
|
697
714
|
# @!attribute [rw] next_token
|
698
715
|
# The token for the next set of results.
|
699
716
|
# @return [String]
|
700
717
|
#
|
718
|
+
# @!attribute [rw] campaign_summary_list
|
719
|
+
# A list of Amazon Connect campaigns.
|
720
|
+
# @return [Array<Types::CampaignSummary>]
|
721
|
+
#
|
701
722
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/ListCampaignsResponse AWS API Documentation
|
702
723
|
#
|
703
724
|
class ListCampaignsResponse < Struct.new(
|
704
|
-
:
|
705
|
-
:
|
725
|
+
:next_token,
|
726
|
+
:campaign_summary_list)
|
706
727
|
SENSITIVE = []
|
707
728
|
include Aws::Structure
|
708
729
|
end
|
@@ -737,14 +758,16 @@ module Aws::ConnectCampaignService
|
|
737
758
|
|
738
759
|
# The configuration used for outbound calls.
|
739
760
|
#
|
740
|
-
# @!attribute [rw] answer_machine_detection_config
|
741
|
-
# Answering Machine Detection config
|
742
|
-
# @return [Types::AnswerMachineDetectionConfig]
|
743
|
-
#
|
744
761
|
# @!attribute [rw] connect_contact_flow_id
|
745
762
|
# The identifier of the contact flow for the outbound call.
|
746
763
|
# @return [String]
|
747
764
|
#
|
765
|
+
# @!attribute [rw] connect_source_phone_number
|
766
|
+
# The phone number associated with the Amazon Connect instance, in
|
767
|
+
# E.164 format. If you do not specify a source phone number, you must
|
768
|
+
# specify a queue.
|
769
|
+
# @return [String]
|
770
|
+
#
|
748
771
|
# @!attribute [rw] connect_queue_id
|
749
772
|
# The queue for the call. If you specify a queue, the phone displayed
|
750
773
|
# for caller ID is the phone number specified in the queue. If you do
|
@@ -753,19 +776,17 @@ module Aws::ConnectCampaignService
|
|
753
776
|
# number.
|
754
777
|
# @return [String]
|
755
778
|
#
|
756
|
-
# @!attribute [rw]
|
757
|
-
#
|
758
|
-
#
|
759
|
-
# specify a queue.
|
760
|
-
# @return [String]
|
779
|
+
# @!attribute [rw] answer_machine_detection_config
|
780
|
+
# Answering Machine Detection config
|
781
|
+
# @return [Types::AnswerMachineDetectionConfig]
|
761
782
|
#
|
762
783
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/OutboundCallConfig AWS API Documentation
|
763
784
|
#
|
764
785
|
class OutboundCallConfig < Struct.new(
|
765
|
-
:answer_machine_detection_config,
|
766
786
|
:connect_contact_flow_id,
|
787
|
+
:connect_source_phone_number,
|
767
788
|
:connect_queue_id,
|
768
|
-
:
|
789
|
+
:answer_machine_detection_config)
|
769
790
|
SENSITIVE = []
|
770
791
|
include Aws::Structure
|
771
792
|
end
|
@@ -790,10 +811,16 @@ module Aws::ConnectCampaignService
|
|
790
811
|
# The bandwidth allocation of a queue resource.
|
791
812
|
# @return [Float]
|
792
813
|
#
|
814
|
+
# @!attribute [rw] dialing_capacity
|
815
|
+
# Allocates dialing capacity for this campaign between multiple active
|
816
|
+
# campaigns
|
817
|
+
# @return [Float]
|
818
|
+
#
|
793
819
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/PredictiveDialerConfig AWS API Documentation
|
794
820
|
#
|
795
821
|
class PredictiveDialerConfig < Struct.new(
|
796
|
-
:bandwidth_allocation
|
822
|
+
:bandwidth_allocation,
|
823
|
+
:dialing_capacity)
|
797
824
|
SENSITIVE = []
|
798
825
|
include Aws::Structure
|
799
826
|
end
|
@@ -804,48 +831,54 @@ module Aws::ConnectCampaignService
|
|
804
831
|
# The bandwidth allocation of a queue resource.
|
805
832
|
# @return [Float]
|
806
833
|
#
|
834
|
+
# @!attribute [rw] dialing_capacity
|
835
|
+
# Allocates dialing capacity for this campaign between multiple active
|
836
|
+
# campaigns
|
837
|
+
# @return [Float]
|
838
|
+
#
|
807
839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/ProgressiveDialerConfig AWS API Documentation
|
808
840
|
#
|
809
841
|
class ProgressiveDialerConfig < Struct.new(
|
810
|
-
:bandwidth_allocation
|
842
|
+
:bandwidth_allocation,
|
843
|
+
:dialing_capacity)
|
811
844
|
SENSITIVE = []
|
812
845
|
include Aws::Structure
|
813
846
|
end
|
814
847
|
|
815
848
|
# PutDialRequestBatchRequest
|
816
849
|
#
|
817
|
-
# @!attribute [rw] dial_requests
|
818
|
-
# A list of dial requests.
|
819
|
-
# @return [Array<Types::DialRequest>]
|
820
|
-
#
|
821
850
|
# @!attribute [rw] id
|
822
851
|
# Identifier representing a Campaign
|
823
852
|
# @return [String]
|
824
853
|
#
|
854
|
+
# @!attribute [rw] dial_requests
|
855
|
+
# A list of dial requests.
|
856
|
+
# @return [Array<Types::DialRequest>]
|
857
|
+
#
|
825
858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/PutDialRequestBatchRequest AWS API Documentation
|
826
859
|
#
|
827
860
|
class PutDialRequestBatchRequest < Struct.new(
|
828
|
-
:
|
829
|
-
:
|
861
|
+
:id,
|
862
|
+
:dial_requests)
|
830
863
|
SENSITIVE = []
|
831
864
|
include Aws::Structure
|
832
865
|
end
|
833
866
|
|
834
867
|
# PutDialRequestBatchResponse
|
835
868
|
#
|
836
|
-
# @!attribute [rw] failed_requests
|
837
|
-
# A list of failed requests.
|
838
|
-
# @return [Array<Types::FailedRequest>]
|
839
|
-
#
|
840
869
|
# @!attribute [rw] successful_requests
|
841
870
|
# A list of successful requests identified by the unique client token.
|
842
871
|
# @return [Array<Types::SuccessfulRequest>]
|
843
872
|
#
|
873
|
+
# @!attribute [rw] failed_requests
|
874
|
+
# A list of failed requests.
|
875
|
+
# @return [Array<Types::FailedRequest>]
|
876
|
+
#
|
844
877
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/PutDialRequestBatchResponse AWS API Documentation
|
845
878
|
#
|
846
879
|
class PutDialRequestBatchResponse < Struct.new(
|
847
|
-
:
|
848
|
-
:
|
880
|
+
:successful_requests,
|
881
|
+
:failed_requests)
|
849
882
|
SENSITIVE = []
|
850
883
|
include Aws::Structure
|
851
884
|
end
|
@@ -1064,19 +1097,19 @@ module Aws::ConnectCampaignService
|
|
1064
1097
|
|
1065
1098
|
# UpdateCampaignDialerConfigRequest
|
1066
1099
|
#
|
1067
|
-
# @!attribute [rw] dialer_config
|
1068
|
-
# The possible types of dialer config parameters
|
1069
|
-
# @return [Types::DialerConfig]
|
1070
|
-
#
|
1071
1100
|
# @!attribute [rw] id
|
1072
1101
|
# Identifier representing a Campaign
|
1073
1102
|
# @return [String]
|
1074
1103
|
#
|
1104
|
+
# @!attribute [rw] dialer_config
|
1105
|
+
# The possible types of dialer config parameters
|
1106
|
+
# @return [Types::DialerConfig]
|
1107
|
+
#
|
1075
1108
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignDialerConfigRequest AWS API Documentation
|
1076
1109
|
#
|
1077
1110
|
class UpdateCampaignDialerConfigRequest < Struct.new(
|
1078
|
-
:
|
1079
|
-
:
|
1111
|
+
:id,
|
1112
|
+
:dialer_config)
|
1080
1113
|
SENSITIVE = []
|
1081
1114
|
include Aws::Structure
|
1082
1115
|
end
|
@@ -1102,9 +1135,9 @@ module Aws::ConnectCampaignService
|
|
1102
1135
|
|
1103
1136
|
# UpdateCampaignOutboundCallConfigRequest
|
1104
1137
|
#
|
1105
|
-
# @!attribute [rw]
|
1106
|
-
#
|
1107
|
-
# @return [
|
1138
|
+
# @!attribute [rw] id
|
1139
|
+
# Identifier representing a Campaign
|
1140
|
+
# @return [String]
|
1108
1141
|
#
|
1109
1142
|
# @!attribute [rw] connect_contact_flow_id
|
1110
1143
|
# The identifier of the contact flow for the outbound call.
|
@@ -1116,17 +1149,17 @@ module Aws::ConnectCampaignService
|
|
1116
1149
|
# specify a queue.
|
1117
1150
|
# @return [String]
|
1118
1151
|
#
|
1119
|
-
# @!attribute [rw]
|
1120
|
-
#
|
1121
|
-
# @return [
|
1152
|
+
# @!attribute [rw] answer_machine_detection_config
|
1153
|
+
# Answering Machine Detection config
|
1154
|
+
# @return [Types::AnswerMachineDetectionConfig]
|
1122
1155
|
#
|
1123
1156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignOutboundCallConfigRequest AWS API Documentation
|
1124
1157
|
#
|
1125
1158
|
class UpdateCampaignOutboundCallConfigRequest < Struct.new(
|
1126
|
-
:
|
1159
|
+
:id,
|
1127
1160
|
:connect_contact_flow_id,
|
1128
1161
|
:connect_source_phone_number,
|
1129
|
-
:
|
1162
|
+
:answer_machine_detection_config)
|
1130
1163
|
SENSITIVE = []
|
1131
1164
|
include Aws::Structure
|
1132
1165
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connectcampaignservice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.9.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-31 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|