aws-sdk-connectcampaignservice 1.7.0 → 1.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6145c631974248bee63749ea5ee00e71779563f54717b5f6c85186ba5757acc7
4
- data.tar.gz: 170ba3332de05601ec102e87be83307b11cb5664dfd0e933363d9ef35fd9ae60
3
+ metadata.gz: b520811bfc6148cb5c25170266cea34600a7d64b4feefaaf0ad1dc5c8a8eb0d0
4
+ data.tar.gz: c8bbf6b4c4ac361b35428ff2e3e2d367523b22f6f0c9c6bf825ec85d9d06be1c
5
5
  SHA512:
6
- metadata.gz: '018061ea28634b9ead3862fb3bacb8f722ec1dc1b8c62ec5627f36575dba29c3cb7e5d3622222b6b2f3a40ebd9981bcd095a4f3275fc7a77d7505de9fba9c381'
7
- data.tar.gz: 559832e97e4cd1d52b44327c4fef168b9b30c9200c30d1c205a4fec1ae6087e7132c9f357140e8de07387ad8625acf266587b547a3bb827b382bb59e119442fe
6
+ metadata.gz: 527722c44272b04dbb98e72689d6461522b32d42486777d6ff7530fcc382da456acc0dbe16ef5700b5f0f555d7c34934c9b7741eb7a58d579d5ee543b2652d34
7
+ data.tar.gz: 41eb1070c51b33bef8db658a33b1ea8e154f3807c71c8300cb6d3a9f860939e4076d229a751d96a86896e76edfe20694268e2b7284cce12d6b8b98a3ffa895af
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.9.0 (2023-08-31)
5
+ ------------------
6
+
7
+ * Feature - Amazon Connect outbound campaigns has launched agentless dialing mode which enables customers to make automated outbound calls without agent engagement. This release updates three of the campaign management API's to support the new agentless dialing mode and the new dialing capacity field.
8
+
9
+ 1.8.0 (2023-07-11)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.7.0 (2023-07-06)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.7.0
1
+ 1.9.0
@@ -216,6 +216,10 @@ module Aws::ConnectCampaignService
216
216
  # @option options [Boolean] :endpoint_discovery (false)
217
217
  # When set to `true`, endpoint discovery will be enabled for operations when available.
218
218
  #
219
+ # @option options [Boolean] :ignore_configured_endpoint_urls
220
+ # Setting to true disables use of endpoint URLs provided via environment
221
+ # variables and the shared configuration file.
222
+ #
219
223
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
220
224
  # The log formatter.
221
225
  #
@@ -387,15 +391,15 @@ module Aws::ConnectCampaignService
387
391
  # Creates a campaign for the specified Amazon Connect account. This API
388
392
  # is idempotent.
389
393
  #
394
+ # @option params [required, String] :name
395
+ # The name of an Amazon Connect Campaign name.
396
+ #
390
397
  # @option params [required, String] :connect_instance_id
391
398
  # Amazon Connect Instance Id
392
399
  #
393
400
  # @option params [required, Types::DialerConfig] :dialer_config
394
401
  # The possible types of dialer config parameters
395
402
  #
396
- # @option params [required, String] :name
397
- # The name of an Amazon Connect Campaign name.
398
- #
399
403
  # @option params [required, Types::OutboundCallConfig] :outbound_call_config
400
404
  # The configuration used for outbound calls.
401
405
  #
@@ -404,30 +408,35 @@ module Aws::ConnectCampaignService
404
408
  #
405
409
  # @return [Types::CreateCampaignResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
406
410
  #
407
- # * {Types::CreateCampaignResponse#arn #arn} => String
408
411
  # * {Types::CreateCampaignResponse#id #id} => String
412
+ # * {Types::CreateCampaignResponse#arn #arn} => String
409
413
  # * {Types::CreateCampaignResponse#tags #tags} => Hash<String,String>
410
414
  #
411
415
  # @example Request syntax with placeholder values
412
416
  #
413
417
  # resp = client.create_campaign({
418
+ # name: "CampaignName", # required
414
419
  # connect_instance_id: "InstanceId", # required
415
420
  # dialer_config: { # required
416
- # predictive_dialer_config: {
421
+ # progressive_dialer_config: {
417
422
  # bandwidth_allocation: 1.0, # required
423
+ # dialing_capacity: 1.0,
418
424
  # },
419
- # progressive_dialer_config: {
425
+ # predictive_dialer_config: {
420
426
  # bandwidth_allocation: 1.0, # required
427
+ # dialing_capacity: 1.0,
428
+ # },
429
+ # agentless_dialer_config: {
430
+ # dialing_capacity: 1.0,
421
431
  # },
422
432
  # },
423
- # name: "CampaignName", # required
424
433
  # outbound_call_config: { # required
434
+ # connect_contact_flow_id: "ContactFlowId", # required
435
+ # connect_source_phone_number: "SourcePhoneNumber",
436
+ # connect_queue_id: "QueueId",
425
437
  # answer_machine_detection_config: {
426
438
  # enable_answer_machine_detection: false, # required
427
439
  # },
428
- # connect_contact_flow_id: "ContactFlowId", # required
429
- # connect_queue_id: "QueueId", # required
430
- # connect_source_phone_number: "SourcePhoneNumber",
431
440
  # },
432
441
  # tags: {
433
442
  # "TagKey" => "TagValue",
@@ -436,8 +445,8 @@ module Aws::ConnectCampaignService
436
445
  #
437
446
  # @example Response structure
438
447
  #
439
- # resp.arn #=> String
440
448
  # resp.id #=> String
449
+ # resp.arn #=> String
441
450
  # resp.tags #=> Hash
442
451
  # resp.tags["TagKey"] #=> String
443
452
  #
@@ -534,16 +543,19 @@ module Aws::ConnectCampaignService
534
543
  #
535
544
  # @example Response structure
536
545
  #
546
+ # resp.campaign.id #=> String
537
547
  # resp.campaign.arn #=> String
548
+ # resp.campaign.name #=> String
538
549
  # resp.campaign.connect_instance_id #=> String
539
- # resp.campaign.dialer_config.predictive_dialer_config.bandwidth_allocation #=> Float
540
550
  # resp.campaign.dialer_config.progressive_dialer_config.bandwidth_allocation #=> Float
541
- # resp.campaign.id #=> String
542
- # resp.campaign.name #=> String
543
- # resp.campaign.outbound_call_config.answer_machine_detection_config.enable_answer_machine_detection #=> Boolean
551
+ # resp.campaign.dialer_config.progressive_dialer_config.dialing_capacity #=> Float
552
+ # resp.campaign.dialer_config.predictive_dialer_config.bandwidth_allocation #=> Float
553
+ # resp.campaign.dialer_config.predictive_dialer_config.dialing_capacity #=> Float
554
+ # resp.campaign.dialer_config.agentless_dialer_config.dialing_capacity #=> Float
544
555
  # resp.campaign.outbound_call_config.connect_contact_flow_id #=> String
545
- # resp.campaign.outbound_call_config.connect_queue_id #=> String
546
556
  # resp.campaign.outbound_call_config.connect_source_phone_number #=> String
557
+ # resp.campaign.outbound_call_config.connect_queue_id #=> String
558
+ # resp.campaign.outbound_call_config.answer_machine_detection_config.enable_answer_machine_detection #=> Boolean
547
559
  # resp.campaign.tags #=> Hash
548
560
  # resp.campaign.tags["TagKey"] #=> String
549
561
  #
@@ -591,8 +603,8 @@ module Aws::ConnectCampaignService
591
603
  #
592
604
  # @return [Types::GetCampaignStateBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
593
605
  #
594
- # * {Types::GetCampaignStateBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCampaignStateResponse>
595
606
  # * {Types::GetCampaignStateBatchResponse#successful_requests #successful_requests} => Array<Types::SuccessfulCampaignStateResponse>
607
+ # * {Types::GetCampaignStateBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCampaignStateResponse>
596
608
  #
597
609
  # @example Request syntax with placeholder values
598
610
  #
@@ -602,12 +614,12 @@ module Aws::ConnectCampaignService
602
614
  #
603
615
  # @example Response structure
604
616
  #
605
- # resp.failed_requests #=> Array
606
- # resp.failed_requests[0].campaign_id #=> String
607
- # resp.failed_requests[0].failure_code #=> String, one of "ResourceNotFound", "UnknownError"
608
617
  # resp.successful_requests #=> Array
609
618
  # resp.successful_requests[0].campaign_id #=> String
610
619
  # resp.successful_requests[0].state #=> String, one of "Initialized", "Running", "Paused", "Stopped", "Failed"
620
+ # resp.failed_requests #=> Array
621
+ # resp.failed_requests[0].campaign_id #=> String
622
+ # resp.failed_requests[0].failure_code #=> String, one of "ResourceNotFound", "UnknownError"
611
623
  #
612
624
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetCampaignStateBatch AWS API Documentation
613
625
  #
@@ -636,10 +648,10 @@ module Aws::ConnectCampaignService
636
648
  # @example Response structure
637
649
  #
638
650
  # resp.connect_instance_config.connect_instance_id #=> String
651
+ # resp.connect_instance_config.service_linked_role_arn #=> String
639
652
  # resp.connect_instance_config.encryption_config.enabled #=> Boolean
640
653
  # resp.connect_instance_config.encryption_config.encryption_type #=> String, one of "KMS"
641
654
  # resp.connect_instance_config.encryption_config.key_arn #=> String
642
- # resp.connect_instance_config.service_linked_role_arn #=> String
643
655
  #
644
656
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetConnectInstanceConfig AWS API Documentation
645
657
  #
@@ -668,8 +680,8 @@ module Aws::ConnectCampaignService
668
680
  # @example Response structure
669
681
  #
670
682
  # resp.connect_instance_onboarding_job_status.connect_instance_id #=> String
671
- # resp.connect_instance_onboarding_job_status.failure_code #=> String, one of "EVENT_BRIDGE_ACCESS_DENIED", "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED", "IAM_ACCESS_DENIED", "KMS_ACCESS_DENIED", "KMS_KEY_NOT_FOUND", "INTERNAL_FAILURE"
672
683
  # resp.connect_instance_onboarding_job_status.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED"
684
+ # resp.connect_instance_onboarding_job_status.failure_code #=> String, one of "EVENT_BRIDGE_ACCESS_DENIED", "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED", "IAM_ACCESS_DENIED", "KMS_ACCESS_DENIED", "KMS_KEY_NOT_FOUND", "INTERNAL_FAILURE"
673
685
  #
674
686
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetInstanceOnboardingJobStatus AWS API Documentation
675
687
  #
@@ -683,43 +695,43 @@ module Aws::ConnectCampaignService
683
695
  # Provides summary information about the campaigns under the specified
684
696
  # Amazon Connect account.
685
697
  #
686
- # @option params [Types::CampaignFilters] :filters
687
- # Filter model by type
688
- #
689
698
  # @option params [Integer] :max_results
690
699
  # The maximum number of results to return per page.
691
700
  #
692
701
  # @option params [String] :next_token
693
702
  # The token for the next set of results.
694
703
  #
704
+ # @option params [Types::CampaignFilters] :filters
705
+ # Filter model by type
706
+ #
695
707
  # @return [Types::ListCampaignsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
696
708
  #
697
- # * {Types::ListCampaignsResponse#campaign_summary_list #campaign_summary_list} => Array<Types::CampaignSummary>
698
709
  # * {Types::ListCampaignsResponse#next_token #next_token} => String
710
+ # * {Types::ListCampaignsResponse#campaign_summary_list #campaign_summary_list} => Array<Types::CampaignSummary>
699
711
  #
700
712
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
701
713
  #
702
714
  # @example Request syntax with placeholder values
703
715
  #
704
716
  # resp = client.list_campaigns({
717
+ # max_results: 1,
718
+ # next_token: "NextToken",
705
719
  # filters: {
706
720
  # instance_id_filter: {
707
- # operator: "Eq", # required, accepts Eq
708
721
  # value: "InstanceId", # required
722
+ # operator: "Eq", # required, accepts Eq
709
723
  # },
710
724
  # },
711
- # max_results: 1,
712
- # next_token: "NextToken",
713
725
  # })
714
726
  #
715
727
  # @example Response structure
716
728
  #
729
+ # resp.next_token #=> String
717
730
  # resp.campaign_summary_list #=> Array
718
- # resp.campaign_summary_list[0].arn #=> String
719
- # resp.campaign_summary_list[0].connect_instance_id #=> String
720
731
  # resp.campaign_summary_list[0].id #=> String
732
+ # resp.campaign_summary_list[0].arn #=> String
721
733
  # resp.campaign_summary_list[0].name #=> String
722
- # resp.next_token #=> String
734
+ # resp.campaign_summary_list[0].connect_instance_id #=> String
723
735
  #
724
736
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/ListCampaigns AWS API Documentation
725
737
  #
@@ -784,42 +796,42 @@ module Aws::ConnectCampaignService
784
796
  # Creates dials requests for the specified campaign Amazon Connect
785
797
  # account. This API is idempotent.
786
798
  #
787
- # @option params [required, Array<Types::DialRequest>] :dial_requests
788
- # A list of dial requests.
789
- #
790
799
  # @option params [required, String] :id
791
800
  # Identifier representing a Campaign
792
801
  #
802
+ # @option params [required, Array<Types::DialRequest>] :dial_requests
803
+ # A list of dial requests.
804
+ #
793
805
  # @return [Types::PutDialRequestBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
794
806
  #
795
- # * {Types::PutDialRequestBatchResponse#failed_requests #failed_requests} => Array&lt;Types::FailedRequest&gt;
796
807
  # * {Types::PutDialRequestBatchResponse#successful_requests #successful_requests} => Array&lt;Types::SuccessfulRequest&gt;
808
+ # * {Types::PutDialRequestBatchResponse#failed_requests #failed_requests} => Array&lt;Types::FailedRequest&gt;
797
809
  #
798
810
  # @example Request syntax with placeholder values
799
811
  #
800
812
  # resp = client.put_dial_request_batch({
813
+ # id: "CampaignId", # required
801
814
  # dial_requests: [ # required
802
815
  # {
816
+ # client_token: "ClientToken", # required
817
+ # phone_number: "DestinationPhoneNumber", # required
818
+ # expiration_time: Time.now, # required
803
819
  # attributes: { # required
804
820
  # "AttributeName" => "AttributeValue",
805
821
  # },
806
- # client_token: "ClientToken", # required
807
- # expiration_time: Time.now, # required
808
- # phone_number: "DestinationPhoneNumber", # required
809
822
  # },
810
823
  # ],
811
- # id: "CampaignId", # required
812
824
  # })
813
825
  #
814
826
  # @example Response structure
815
827
  #
816
- # resp.failed_requests #=> Array
817
- # resp.failed_requests[0].client_token #=> String
818
- # resp.failed_requests[0].failure_code #=> String, one of "InvalidInput", "RequestThrottled", "UnknownError"
819
- # resp.failed_requests[0].id #=> String
820
828
  # resp.successful_requests #=> Array
821
829
  # resp.successful_requests[0].client_token #=> String
822
830
  # resp.successful_requests[0].id #=> String
831
+ # resp.failed_requests #=> Array
832
+ # resp.failed_requests[0].client_token #=> String
833
+ # resp.failed_requests[0].id #=> String
834
+ # resp.failed_requests[0].failure_code #=> String, one of "InvalidInput", "RequestThrottled", "UnknownError"
823
835
  #
824
836
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/PutDialRequestBatch AWS API Documentation
825
837
  #
@@ -903,8 +915,8 @@ module Aws::ConnectCampaignService
903
915
  # @example Response structure
904
916
  #
905
917
  # resp.connect_instance_onboarding_job_status.connect_instance_id #=> String
906
- # resp.connect_instance_onboarding_job_status.failure_code #=> String, one of "EVENT_BRIDGE_ACCESS_DENIED", "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED", "IAM_ACCESS_DENIED", "KMS_ACCESS_DENIED", "KMS_KEY_NOT_FOUND", "INTERNAL_FAILURE"
907
918
  # resp.connect_instance_onboarding_job_status.status #=> String, one of "IN_PROGRESS", "SUCCEEDED", "FAILED"
919
+ # resp.connect_instance_onboarding_job_status.failure_code #=> String, one of "EVENT_BRIDGE_ACCESS_DENIED", "EVENT_BRIDGE_MANAGED_RULE_LIMIT_EXCEEDED", "IAM_ACCESS_DENIED", "KMS_ACCESS_DENIED", "KMS_KEY_NOT_FOUND", "INTERNAL_FAILURE"
908
920
  #
909
921
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/StartInstanceOnboardingJob AWS API Documentation
910
922
  #
@@ -993,26 +1005,31 @@ module Aws::ConnectCampaignService
993
1005
 
994
1006
  # Updates the dialer config of a campaign. This API is idempotent.
995
1007
  #
996
- # @option params [required, Types::DialerConfig] :dialer_config
997
- # The possible types of dialer config parameters
998
- #
999
1008
  # @option params [required, String] :id
1000
1009
  # Identifier representing a Campaign
1001
1010
  #
1011
+ # @option params [required, Types::DialerConfig] :dialer_config
1012
+ # The possible types of dialer config parameters
1013
+ #
1002
1014
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1003
1015
  #
1004
1016
  # @example Request syntax with placeholder values
1005
1017
  #
1006
1018
  # resp = client.update_campaign_dialer_config({
1019
+ # id: "CampaignId", # required
1007
1020
  # dialer_config: { # required
1008
- # predictive_dialer_config: {
1021
+ # progressive_dialer_config: {
1009
1022
  # bandwidth_allocation: 1.0, # required
1023
+ # dialing_capacity: 1.0,
1010
1024
  # },
1011
- # progressive_dialer_config: {
1025
+ # predictive_dialer_config: {
1012
1026
  # bandwidth_allocation: 1.0, # required
1027
+ # dialing_capacity: 1.0,
1028
+ # },
1029
+ # agentless_dialer_config: {
1030
+ # dialing_capacity: 1.0,
1013
1031
  # },
1014
1032
  # },
1015
- # id: "CampaignId", # required
1016
1033
  # })
1017
1034
  #
1018
1035
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignDialerConfig AWS API Documentation
@@ -1053,8 +1070,8 @@ module Aws::ConnectCampaignService
1053
1070
  # Updates the outbound call config of a campaign. This API is
1054
1071
  # idempotent.
1055
1072
  #
1056
- # @option params [Types::AnswerMachineDetectionConfig] :answer_machine_detection_config
1057
- # Answering Machine Detection config
1073
+ # @option params [required, String] :id
1074
+ # Identifier representing a Campaign
1058
1075
  #
1059
1076
  # @option params [String] :connect_contact_flow_id
1060
1077
  # The identifier of the contact flow for the outbound call.
@@ -1064,20 +1081,20 @@ module Aws::ConnectCampaignService
1064
1081
  # format. If you do not specify a source phone number, you must specify
1065
1082
  # a queue.
1066
1083
  #
1067
- # @option params [required, String] :id
1068
- # Identifier representing a Campaign
1084
+ # @option params [Types::AnswerMachineDetectionConfig] :answer_machine_detection_config
1085
+ # Answering Machine Detection config
1069
1086
  #
1070
1087
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1071
1088
  #
1072
1089
  # @example Request syntax with placeholder values
1073
1090
  #
1074
1091
  # resp = client.update_campaign_outbound_call_config({
1092
+ # id: "CampaignId", # required
1093
+ # connect_contact_flow_id: "ContactFlowId",
1094
+ # connect_source_phone_number: "SourcePhoneNumber",
1075
1095
  # answer_machine_detection_config: {
1076
1096
  # enable_answer_machine_detection: false, # required
1077
1097
  # },
1078
- # connect_contact_flow_id: "ContactFlowId",
1079
- # connect_source_phone_number: "SourcePhoneNumber",
1080
- # id: "CampaignId", # required
1081
1098
  # })
1082
1099
  #
1083
1100
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignOutboundCallConfig AWS API Documentation
@@ -1102,7 +1119,7 @@ module Aws::ConnectCampaignService
1102
1119
  params: params,
1103
1120
  config: config)
1104
1121
  context[:gem_name] = 'aws-sdk-connectcampaignservice'
1105
- context[:gem_version] = '1.7.0'
1122
+ context[:gem_version] = '1.9.0'
1106
1123
  Seahorse::Client::Request.new(handlers, context)
1107
1124
  end
1108
1125
 
@@ -14,6 +14,7 @@ module Aws::ConnectCampaignService
14
14
  include Seahorse::Model
15
15
 
16
16
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
17
+ AgentlessDialerConfig = Shapes::StructureShape.new(name: 'AgentlessDialerConfig')
17
18
  AnswerMachineDetectionConfig = Shapes::StructureShape.new(name: 'AnswerMachineDetectionConfig')
18
19
  Arn = Shapes::StringShape.new(name: 'Arn')
19
20
  AttributeName = Shapes::StringShape.new(name: 'AttributeName')
@@ -44,6 +45,7 @@ module Aws::ConnectCampaignService
44
45
  DialRequestId = Shapes::StringShape.new(name: 'DialRequestId')
45
46
  DialRequestList = Shapes::ListShape.new(name: 'DialRequestList')
46
47
  DialerConfig = Shapes::UnionShape.new(name: 'DialerConfig')
48
+ DialingCapacity = Shapes::FloatShape.new(name: 'DialingCapacity')
47
49
  Enabled = Shapes::BooleanShape.new(name: 'Enabled')
48
50
  EncryptionConfig = Shapes::StructureShape.new(name: 'EncryptionConfig')
49
51
  EncryptionKey = Shapes::StringShape.new(name: 'EncryptionKey')
@@ -118,17 +120,20 @@ module Aws::ConnectCampaignService
118
120
  AccessDeniedException.add_member(:x_amz_error_type, Shapes::ShapeRef.new(shape: XAmazonErrorType, location: "header", location_name: "x-amzn-ErrorType"))
119
121
  AccessDeniedException.struct_class = Types::AccessDeniedException
120
122
 
123
+ AgentlessDialerConfig.add_member(:dialing_capacity, Shapes::ShapeRef.new(shape: DialingCapacity, location_name: "dialingCapacity"))
124
+ AgentlessDialerConfig.struct_class = Types::AgentlessDialerConfig
125
+
121
126
  AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "enableAnswerMachineDetection"))
122
127
  AnswerMachineDetectionConfig.struct_class = Types::AnswerMachineDetectionConfig
123
128
 
124
129
  Attributes.key = Shapes::ShapeRef.new(shape: AttributeName)
125
130
  Attributes.value = Shapes::ShapeRef.new(shape: AttributeValue)
126
131
 
132
+ Campaign.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location_name: "id"))
127
133
  Campaign.add_member(:arn, Shapes::ShapeRef.new(shape: CampaignArn, required: true, location_name: "arn"))
134
+ Campaign.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
128
135
  Campaign.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
129
136
  Campaign.add_member(:dialer_config, Shapes::ShapeRef.new(shape: DialerConfig, required: true, location_name: "dialerConfig"))
130
- Campaign.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location_name: "id"))
131
- Campaign.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
132
137
  Campaign.add_member(:outbound_call_config, Shapes::ShapeRef.new(shape: OutboundCallConfig, required: true, location_name: "outboundCallConfig"))
133
138
  Campaign.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
134
139
  Campaign.struct_class = Types::Campaign
@@ -136,10 +141,10 @@ module Aws::ConnectCampaignService
136
141
  CampaignFilters.add_member(:instance_id_filter, Shapes::ShapeRef.new(shape: InstanceIdFilter, location_name: "instanceIdFilter"))
137
142
  CampaignFilters.struct_class = Types::CampaignFilters
138
143
 
139
- CampaignSummary.add_member(:arn, Shapes::ShapeRef.new(shape: CampaignArn, required: true, location_name: "arn"))
140
- CampaignSummary.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
141
144
  CampaignSummary.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location_name: "id"))
145
+ CampaignSummary.add_member(:arn, Shapes::ShapeRef.new(shape: CampaignArn, required: true, location_name: "arn"))
142
146
  CampaignSummary.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
147
+ CampaignSummary.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
143
148
  CampaignSummary.struct_class = Types::CampaignSummary
144
149
 
145
150
  CampaignSummaryList.member = Shapes::ShapeRef.new(shape: CampaignSummary)
@@ -148,15 +153,15 @@ module Aws::ConnectCampaignService
148
153
  ConflictException.add_member(:x_amz_error_type, Shapes::ShapeRef.new(shape: XAmazonErrorType, location: "header", location_name: "x-amzn-ErrorType"))
149
154
  ConflictException.struct_class = Types::ConflictException
150
155
 
156
+ CreateCampaignRequest.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
151
157
  CreateCampaignRequest.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
152
158
  CreateCampaignRequest.add_member(:dialer_config, Shapes::ShapeRef.new(shape: DialerConfig, required: true, location_name: "dialerConfig"))
153
- CreateCampaignRequest.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
154
159
  CreateCampaignRequest.add_member(:outbound_call_config, Shapes::ShapeRef.new(shape: OutboundCallConfig, required: true, location_name: "outboundCallConfig"))
155
160
  CreateCampaignRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
156
161
  CreateCampaignRequest.struct_class = Types::CreateCampaignRequest
157
162
 
158
- CreateCampaignResponse.add_member(:arn, Shapes::ShapeRef.new(shape: CampaignArn, location_name: "arn"))
159
163
  CreateCampaignResponse.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "id"))
164
+ CreateCampaignResponse.add_member(:arn, Shapes::ShapeRef.new(shape: CampaignArn, location_name: "arn"))
160
165
  CreateCampaignResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
161
166
  CreateCampaignResponse.struct_class = Types::CreateCampaignResponse
162
167
 
@@ -175,19 +180,21 @@ module Aws::ConnectCampaignService
175
180
  DescribeCampaignResponse.add_member(:campaign, Shapes::ShapeRef.new(shape: Campaign, location_name: "campaign"))
176
181
  DescribeCampaignResponse.struct_class = Types::DescribeCampaignResponse
177
182
 
178
- DialRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "attributes"))
179
183
  DialRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, required: true, location_name: "clientToken"))
180
- DialRequest.add_member(:expiration_time, Shapes::ShapeRef.new(shape: TimeStamp, required: true, location_name: "expirationTime"))
181
184
  DialRequest.add_member(:phone_number, Shapes::ShapeRef.new(shape: DestinationPhoneNumber, required: true, location_name: "phoneNumber"))
185
+ DialRequest.add_member(:expiration_time, Shapes::ShapeRef.new(shape: TimeStamp, required: true, location_name: "expirationTime"))
186
+ DialRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, required: true, location_name: "attributes"))
182
187
  DialRequest.struct_class = Types::DialRequest
183
188
 
184
189
  DialRequestList.member = Shapes::ShapeRef.new(shape: DialRequest)
185
190
 
186
- DialerConfig.add_member(:predictive_dialer_config, Shapes::ShapeRef.new(shape: PredictiveDialerConfig, location_name: "predictiveDialerConfig"))
187
191
  DialerConfig.add_member(:progressive_dialer_config, Shapes::ShapeRef.new(shape: ProgressiveDialerConfig, location_name: "progressiveDialerConfig"))
192
+ DialerConfig.add_member(:predictive_dialer_config, Shapes::ShapeRef.new(shape: PredictiveDialerConfig, location_name: "predictiveDialerConfig"))
193
+ DialerConfig.add_member(:agentless_dialer_config, Shapes::ShapeRef.new(shape: AgentlessDialerConfig, location_name: "agentlessDialerConfig"))
188
194
  DialerConfig.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
189
- DialerConfig.add_member_subclass(:predictive_dialer_config, Types::DialerConfig::PredictiveDialerConfig)
190
195
  DialerConfig.add_member_subclass(:progressive_dialer_config, Types::DialerConfig::ProgressiveDialerConfig)
196
+ DialerConfig.add_member_subclass(:predictive_dialer_config, Types::DialerConfig::PredictiveDialerConfig)
197
+ DialerConfig.add_member_subclass(:agentless_dialer_config, Types::DialerConfig::AgentlessDialerConfig)
191
198
  DialerConfig.add_member_subclass(:unknown, Types::DialerConfig::Unknown)
192
199
  DialerConfig.struct_class = Types::DialerConfig
193
200
 
@@ -203,8 +210,8 @@ module Aws::ConnectCampaignService
203
210
  FailedCampaignStateResponseList.member = Shapes::ShapeRef.new(shape: FailedCampaignStateResponse)
204
211
 
205
212
  FailedRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken"))
206
- FailedRequest.add_member(:failure_code, Shapes::ShapeRef.new(shape: FailureCode, location_name: "failureCode"))
207
213
  FailedRequest.add_member(:id, Shapes::ShapeRef.new(shape: DialRequestId, location_name: "id"))
214
+ FailedRequest.add_member(:failure_code, Shapes::ShapeRef.new(shape: FailureCode, location_name: "failureCode"))
208
215
  FailedRequest.struct_class = Types::FailedRequest
209
216
 
210
217
  FailedRequestList.member = Shapes::ShapeRef.new(shape: FailedRequest)
@@ -214,8 +221,8 @@ module Aws::ConnectCampaignService
214
221
 
215
222
  GetCampaignStateBatchRequestCampaignIdsList.member = Shapes::ShapeRef.new(shape: CampaignId)
216
223
 
217
- GetCampaignStateBatchResponse.add_member(:failed_requests, Shapes::ShapeRef.new(shape: FailedCampaignStateResponseList, location_name: "failedRequests"))
218
224
  GetCampaignStateBatchResponse.add_member(:successful_requests, Shapes::ShapeRef.new(shape: SuccessfulCampaignStateResponseList, location_name: "successfulRequests"))
225
+ GetCampaignStateBatchResponse.add_member(:failed_requests, Shapes::ShapeRef.new(shape: FailedCampaignStateResponseList, location_name: "failedRequests"))
219
226
  GetCampaignStateBatchResponse.struct_class = Types::GetCampaignStateBatchResponse
220
227
 
221
228
  GetCampaignStateRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
@@ -237,25 +244,25 @@ module Aws::ConnectCampaignService
237
244
  GetInstanceOnboardingJobStatusResponse.struct_class = Types::GetInstanceOnboardingJobStatusResponse
238
245
 
239
246
  InstanceConfig.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
240
- InstanceConfig.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, required: true, location_name: "encryptionConfig"))
241
247
  InstanceConfig.add_member(:service_linked_role_arn, Shapes::ShapeRef.new(shape: ServiceLinkedRoleArn, required: true, location_name: "serviceLinkedRoleArn"))
248
+ InstanceConfig.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, required: true, location_name: "encryptionConfig"))
242
249
  InstanceConfig.struct_class = Types::InstanceConfig
243
250
 
244
- InstanceIdFilter.add_member(:operator, Shapes::ShapeRef.new(shape: InstanceIdFilterOperator, required: true, location_name: "operator"))
245
251
  InstanceIdFilter.add_member(:value, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "value"))
252
+ InstanceIdFilter.add_member(:operator, Shapes::ShapeRef.new(shape: InstanceIdFilterOperator, required: true, location_name: "operator"))
246
253
  InstanceIdFilter.struct_class = Types::InstanceIdFilter
247
254
 
248
255
  InstanceOnboardingJobStatus.add_member(:connect_instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "connectInstanceId"))
249
- InstanceOnboardingJobStatus.add_member(:failure_code, Shapes::ShapeRef.new(shape: InstanceOnboardingJobFailureCode, location_name: "failureCode"))
250
256
  InstanceOnboardingJobStatus.add_member(:status, Shapes::ShapeRef.new(shape: InstanceOnboardingJobStatusCode, required: true, location_name: "status"))
257
+ InstanceOnboardingJobStatus.add_member(:failure_code, Shapes::ShapeRef.new(shape: InstanceOnboardingJobFailureCode, location_name: "failureCode"))
251
258
  InstanceOnboardingJobStatus.struct_class = Types::InstanceOnboardingJobStatus
252
259
 
253
260
  InternalServerException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
254
261
  InternalServerException.add_member(:x_amz_error_type, Shapes::ShapeRef.new(shape: XAmazonErrorType, location: "header", location_name: "x-amzn-ErrorType"))
255
262
  InternalServerException.struct_class = Types::InternalServerException
256
263
 
257
- InvalidCampaignStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
258
264
  InvalidCampaignStateException.add_member(:state, Shapes::ShapeRef.new(shape: CampaignState, required: true, location_name: "state"))
265
+ InvalidCampaignStateException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
259
266
  InvalidCampaignStateException.add_member(:x_amz_error_type, Shapes::ShapeRef.new(shape: XAmazonErrorType, location: "header", location_name: "x-amzn-ErrorType"))
260
267
  InvalidCampaignStateException.struct_class = Types::InvalidCampaignStateException
261
268
 
@@ -263,13 +270,13 @@ module Aws::ConnectCampaignService
263
270
  InvalidStateException.add_member(:x_amz_error_type, Shapes::ShapeRef.new(shape: XAmazonErrorType, location: "header", location_name: "x-amzn-ErrorType"))
264
271
  InvalidStateException.struct_class = Types::InvalidStateException
265
272
 
266
- ListCampaignsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: CampaignFilters, location_name: "filters"))
267
273
  ListCampaignsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location_name: "maxResults"))
268
274
  ListCampaignsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
275
+ ListCampaignsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: CampaignFilters, location_name: "filters"))
269
276
  ListCampaignsRequest.struct_class = Types::ListCampaignsRequest
270
277
 
271
- ListCampaignsResponse.add_member(:campaign_summary_list, Shapes::ShapeRef.new(shape: CampaignSummaryList, location_name: "campaignSummaryList"))
272
278
  ListCampaignsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "nextToken"))
279
+ ListCampaignsResponse.add_member(:campaign_summary_list, Shapes::ShapeRef.new(shape: CampaignSummaryList, location_name: "campaignSummaryList"))
273
280
  ListCampaignsResponse.struct_class = Types::ListCampaignsResponse
274
281
 
275
282
  ListTagsForResourceRequest.add_member(:arn, Shapes::ShapeRef.new(shape: Arn, required: true, location: "uri", location_name: "arn"))
@@ -278,27 +285,29 @@ module Aws::ConnectCampaignService
278
285
  ListTagsForResourceResponse.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
279
286
  ListTagsForResourceResponse.struct_class = Types::ListTagsForResourceResponse
280
287
 
281
- OutboundCallConfig.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
282
288
  OutboundCallConfig.add_member(:connect_contact_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, required: true, location_name: "connectContactFlowId"))
283
- OutboundCallConfig.add_member(:connect_queue_id, Shapes::ShapeRef.new(shape: QueueId, required: true, location_name: "connectQueueId"))
284
289
  OutboundCallConfig.add_member(:connect_source_phone_number, Shapes::ShapeRef.new(shape: SourcePhoneNumber, location_name: "connectSourcePhoneNumber"))
290
+ OutboundCallConfig.add_member(:connect_queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "connectQueueId"))
291
+ OutboundCallConfig.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
285
292
  OutboundCallConfig.struct_class = Types::OutboundCallConfig
286
293
 
287
294
  PauseCampaignRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
288
295
  PauseCampaignRequest.struct_class = Types::PauseCampaignRequest
289
296
 
290
297
  PredictiveDialerConfig.add_member(:bandwidth_allocation, Shapes::ShapeRef.new(shape: BandwidthAllocation, required: true, location_name: "bandwidthAllocation"))
298
+ PredictiveDialerConfig.add_member(:dialing_capacity, Shapes::ShapeRef.new(shape: DialingCapacity, location_name: "dialingCapacity"))
291
299
  PredictiveDialerConfig.struct_class = Types::PredictiveDialerConfig
292
300
 
293
301
  ProgressiveDialerConfig.add_member(:bandwidth_allocation, Shapes::ShapeRef.new(shape: BandwidthAllocation, required: true, location_name: "bandwidthAllocation"))
302
+ ProgressiveDialerConfig.add_member(:dialing_capacity, Shapes::ShapeRef.new(shape: DialingCapacity, location_name: "dialingCapacity"))
294
303
  ProgressiveDialerConfig.struct_class = Types::ProgressiveDialerConfig
295
304
 
296
- PutDialRequestBatchRequest.add_member(:dial_requests, Shapes::ShapeRef.new(shape: DialRequestList, required: true, location_name: "dialRequests"))
297
305
  PutDialRequestBatchRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
306
+ PutDialRequestBatchRequest.add_member(:dial_requests, Shapes::ShapeRef.new(shape: DialRequestList, required: true, location_name: "dialRequests"))
298
307
  PutDialRequestBatchRequest.struct_class = Types::PutDialRequestBatchRequest
299
308
 
300
- PutDialRequestBatchResponse.add_member(:failed_requests, Shapes::ShapeRef.new(shape: FailedRequestList, location_name: "failedRequests"))
301
309
  PutDialRequestBatchResponse.add_member(:successful_requests, Shapes::ShapeRef.new(shape: SuccessfulRequestList, location_name: "successfulRequests"))
310
+ PutDialRequestBatchResponse.add_member(:failed_requests, Shapes::ShapeRef.new(shape: FailedRequestList, location_name: "failedRequests"))
302
311
  PutDialRequestBatchResponse.struct_class = Types::PutDialRequestBatchResponse
303
312
 
304
313
  ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
@@ -354,18 +363,18 @@ module Aws::ConnectCampaignService
354
363
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
355
364
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
356
365
 
357
- UpdateCampaignDialerConfigRequest.add_member(:dialer_config, Shapes::ShapeRef.new(shape: DialerConfig, required: true, location_name: "dialerConfig"))
358
366
  UpdateCampaignDialerConfigRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
367
+ UpdateCampaignDialerConfigRequest.add_member(:dialer_config, Shapes::ShapeRef.new(shape: DialerConfig, required: true, location_name: "dialerConfig"))
359
368
  UpdateCampaignDialerConfigRequest.struct_class = Types::UpdateCampaignDialerConfigRequest
360
369
 
361
370
  UpdateCampaignNameRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
362
371
  UpdateCampaignNameRequest.add_member(:name, Shapes::ShapeRef.new(shape: CampaignName, required: true, location_name: "name"))
363
372
  UpdateCampaignNameRequest.struct_class = Types::UpdateCampaignNameRequest
364
373
 
365
- UpdateCampaignOutboundCallConfigRequest.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
374
+ UpdateCampaignOutboundCallConfigRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
366
375
  UpdateCampaignOutboundCallConfigRequest.add_member(:connect_contact_flow_id, Shapes::ShapeRef.new(shape: ContactFlowId, location_name: "connectContactFlowId"))
367
376
  UpdateCampaignOutboundCallConfigRequest.add_member(:connect_source_phone_number, Shapes::ShapeRef.new(shape: SourcePhoneNumber, location_name: "connectSourcePhoneNumber"))
368
- UpdateCampaignOutboundCallConfigRequest.add_member(:id, Shapes::ShapeRef.new(shape: CampaignId, required: true, location: "uri", location_name: "id"))
377
+ UpdateCampaignOutboundCallConfigRequest.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "answerMachineDetectionConfig"))
369
378
  UpdateCampaignOutboundCallConfigRequest.struct_class = Types::UpdateCampaignOutboundCallConfigRequest
370
379
 
371
380
  ValidationException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))