aws-sdk-connectcampaignservice 1.8.0 → 1.10.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: b6df3c946022cc5f1114ad480a7cc3288f636706a62a9b84450b8cf8726fcf97
4
- data.tar.gz: 3aee4a25489c5d896208e9b4a778c24193193e0fc0c04252f472ac1188f6ca2b
3
+ metadata.gz: f488c5903046f88c8ecba303468daa5bcf6fcc809a924072b3ab83c77102d6ed
4
+ data.tar.gz: 990a85b6f47c4a222ee4fdd21a2746783ebd6a444ed566480e00a7e02885c1b5
5
5
  SHA512:
6
- metadata.gz: 2f984e0dbf968f08e9d3981eff9ba9c9df3ae6899b96a8d02ecd61a4c79099d15059b38b520c19f437bbfbec11f220034694d99534bc2b3f090d356f118fb859
7
- data.tar.gz: 95e6891e464ea71b29c743720ce7fe5f3f93f8e0612e02badd30d1a14be249bf027dc03ec2eb0710e09d88fc6e53b6c4c9f35d172f64f686305d5bd7afe8f5de
6
+ metadata.gz: 9e8b0a4ec516f5f067f18b9e58255676eb11bcbf48523be50ef2e0634c3f3fdf4f17a7b51732d5a9a55bdb7467a31fca851e04a6a051b53075560d6a2dc0924d
7
+ data.tar.gz: f91af1717d464aa0790e457ad91871452bc6a173842b78953c1b2dee9c985f4e8bac0ee3078336c7b1c5720c71ed195b8677daccd1e614f05e067d948e1ff285
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2023-09-27)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.9.0 (2023-08-31)
10
+ ------------------
11
+
12
+ * 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.
13
+
4
14
  1.8.0 (2023-07-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.8.0
1
+ 1.10.0
@@ -391,15 +391,15 @@ module Aws::ConnectCampaignService
391
391
  # Creates a campaign for the specified Amazon Connect account. This API
392
392
  # is idempotent.
393
393
  #
394
+ # @option params [required, String] :name
395
+ # The name of an Amazon Connect Campaign name.
396
+ #
394
397
  # @option params [required, String] :connect_instance_id
395
398
  # Amazon Connect Instance Id
396
399
  #
397
400
  # @option params [required, Types::DialerConfig] :dialer_config
398
401
  # The possible types of dialer config parameters
399
402
  #
400
- # @option params [required, String] :name
401
- # The name of an Amazon Connect Campaign name.
402
- #
403
403
  # @option params [required, Types::OutboundCallConfig] :outbound_call_config
404
404
  # The configuration used for outbound calls.
405
405
  #
@@ -408,30 +408,35 @@ module Aws::ConnectCampaignService
408
408
  #
409
409
  # @return [Types::CreateCampaignResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
410
410
  #
411
- # * {Types::CreateCampaignResponse#arn #arn} => String
412
411
  # * {Types::CreateCampaignResponse#id #id} => String
412
+ # * {Types::CreateCampaignResponse#arn #arn} => String
413
413
  # * {Types::CreateCampaignResponse#tags #tags} => Hash<String,String>
414
414
  #
415
415
  # @example Request syntax with placeholder values
416
416
  #
417
417
  # resp = client.create_campaign({
418
+ # name: "CampaignName", # required
418
419
  # connect_instance_id: "InstanceId", # required
419
420
  # dialer_config: { # required
420
- # predictive_dialer_config: {
421
+ # progressive_dialer_config: {
421
422
  # bandwidth_allocation: 1.0, # required
423
+ # dialing_capacity: 1.0,
422
424
  # },
423
- # progressive_dialer_config: {
425
+ # predictive_dialer_config: {
424
426
  # bandwidth_allocation: 1.0, # required
427
+ # dialing_capacity: 1.0,
428
+ # },
429
+ # agentless_dialer_config: {
430
+ # dialing_capacity: 1.0,
425
431
  # },
426
432
  # },
427
- # name: "CampaignName", # required
428
433
  # outbound_call_config: { # required
434
+ # connect_contact_flow_id: "ContactFlowId", # required
435
+ # connect_source_phone_number: "SourcePhoneNumber",
436
+ # connect_queue_id: "QueueId",
429
437
  # answer_machine_detection_config: {
430
438
  # enable_answer_machine_detection: false, # required
431
439
  # },
432
- # connect_contact_flow_id: "ContactFlowId", # required
433
- # connect_queue_id: "QueueId", # required
434
- # connect_source_phone_number: "SourcePhoneNumber",
435
440
  # },
436
441
  # tags: {
437
442
  # "TagKey" => "TagValue",
@@ -440,8 +445,8 @@ module Aws::ConnectCampaignService
440
445
  #
441
446
  # @example Response structure
442
447
  #
443
- # resp.arn #=> String
444
448
  # resp.id #=> String
449
+ # resp.arn #=> String
445
450
  # resp.tags #=> Hash
446
451
  # resp.tags["TagKey"] #=> String
447
452
  #
@@ -538,16 +543,19 @@ module Aws::ConnectCampaignService
538
543
  #
539
544
  # @example Response structure
540
545
  #
546
+ # resp.campaign.id #=> String
541
547
  # resp.campaign.arn #=> String
548
+ # resp.campaign.name #=> String
542
549
  # resp.campaign.connect_instance_id #=> String
543
- # resp.campaign.dialer_config.predictive_dialer_config.bandwidth_allocation #=> Float
544
550
  # resp.campaign.dialer_config.progressive_dialer_config.bandwidth_allocation #=> Float
545
- # resp.campaign.id #=> String
546
- # resp.campaign.name #=> String
547
- # 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
548
555
  # resp.campaign.outbound_call_config.connect_contact_flow_id #=> String
549
- # resp.campaign.outbound_call_config.connect_queue_id #=> String
550
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
551
559
  # resp.campaign.tags #=> Hash
552
560
  # resp.campaign.tags["TagKey"] #=> String
553
561
  #
@@ -595,8 +603,8 @@ module Aws::ConnectCampaignService
595
603
  #
596
604
  # @return [Types::GetCampaignStateBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
597
605
  #
598
- # * {Types::GetCampaignStateBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCampaignStateResponse>
599
606
  # * {Types::GetCampaignStateBatchResponse#successful_requests #successful_requests} => Array<Types::SuccessfulCampaignStateResponse>
607
+ # * {Types::GetCampaignStateBatchResponse#failed_requests #failed_requests} => Array<Types::FailedCampaignStateResponse>
600
608
  #
601
609
  # @example Request syntax with placeholder values
602
610
  #
@@ -606,12 +614,12 @@ module Aws::ConnectCampaignService
606
614
  #
607
615
  # @example Response structure
608
616
  #
609
- # resp.failed_requests #=> Array
610
- # resp.failed_requests[0].campaign_id #=> String
611
- # resp.failed_requests[0].failure_code #=> String, one of "ResourceNotFound", "UnknownError"
612
617
  # resp.successful_requests #=> Array
613
618
  # resp.successful_requests[0].campaign_id #=> String
614
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"
615
623
  #
616
624
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetCampaignStateBatch AWS API Documentation
617
625
  #
@@ -640,10 +648,10 @@ module Aws::ConnectCampaignService
640
648
  # @example Response structure
641
649
  #
642
650
  # resp.connect_instance_config.connect_instance_id #=> String
651
+ # resp.connect_instance_config.service_linked_role_arn #=> String
643
652
  # resp.connect_instance_config.encryption_config.enabled #=> Boolean
644
653
  # resp.connect_instance_config.encryption_config.encryption_type #=> String, one of "KMS"
645
654
  # resp.connect_instance_config.encryption_config.key_arn #=> String
646
- # resp.connect_instance_config.service_linked_role_arn #=> String
647
655
  #
648
656
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetConnectInstanceConfig AWS API Documentation
649
657
  #
@@ -672,8 +680,8 @@ module Aws::ConnectCampaignService
672
680
  # @example Response structure
673
681
  #
674
682
  # resp.connect_instance_onboarding_job_status.connect_instance_id #=> String
675
- # 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"
676
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"
677
685
  #
678
686
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/GetInstanceOnboardingJobStatus AWS API Documentation
679
687
  #
@@ -687,43 +695,43 @@ module Aws::ConnectCampaignService
687
695
  # Provides summary information about the campaigns under the specified
688
696
  # Amazon Connect account.
689
697
  #
690
- # @option params [Types::CampaignFilters] :filters
691
- # Filter model by type
692
- #
693
698
  # @option params [Integer] :max_results
694
699
  # The maximum number of results to return per page.
695
700
  #
696
701
  # @option params [String] :next_token
697
702
  # The token for the next set of results.
698
703
  #
704
+ # @option params [Types::CampaignFilters] :filters
705
+ # Filter model by type
706
+ #
699
707
  # @return [Types::ListCampaignsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
700
708
  #
701
- # * {Types::ListCampaignsResponse#campaign_summary_list #campaign_summary_list} => Array<Types::CampaignSummary>
702
709
  # * {Types::ListCampaignsResponse#next_token #next_token} => String
710
+ # * {Types::ListCampaignsResponse#campaign_summary_list #campaign_summary_list} => Array<Types::CampaignSummary>
703
711
  #
704
712
  # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
705
713
  #
706
714
  # @example Request syntax with placeholder values
707
715
  #
708
716
  # resp = client.list_campaigns({
717
+ # max_results: 1,
718
+ # next_token: "NextToken",
709
719
  # filters: {
710
720
  # instance_id_filter: {
711
- # operator: "Eq", # required, accepts Eq
712
721
  # value: "InstanceId", # required
722
+ # operator: "Eq", # required, accepts Eq
713
723
  # },
714
724
  # },
715
- # max_results: 1,
716
- # next_token: "NextToken",
717
725
  # })
718
726
  #
719
727
  # @example Response structure
720
728
  #
729
+ # resp.next_token #=> String
721
730
  # resp.campaign_summary_list #=> Array
722
- # resp.campaign_summary_list[0].arn #=> String
723
- # resp.campaign_summary_list[0].connect_instance_id #=> String
724
731
  # resp.campaign_summary_list[0].id #=> String
732
+ # resp.campaign_summary_list[0].arn #=> String
725
733
  # resp.campaign_summary_list[0].name #=> String
726
- # resp.next_token #=> String
734
+ # resp.campaign_summary_list[0].connect_instance_id #=> String
727
735
  #
728
736
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/ListCampaigns AWS API Documentation
729
737
  #
@@ -788,42 +796,42 @@ module Aws::ConnectCampaignService
788
796
  # Creates dials requests for the specified campaign Amazon Connect
789
797
  # account. This API is idempotent.
790
798
  #
791
- # @option params [required, Array<Types::DialRequest>] :dial_requests
792
- # A list of dial requests.
793
- #
794
799
  # @option params [required, String] :id
795
800
  # Identifier representing a Campaign
796
801
  #
802
+ # @option params [required, Array<Types::DialRequest>] :dial_requests
803
+ # A list of dial requests.
804
+ #
797
805
  # @return [Types::PutDialRequestBatchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
798
806
  #
799
- # * {Types::PutDialRequestBatchResponse#failed_requests #failed_requests} => Array&lt;Types::FailedRequest&gt;
800
807
  # * {Types::PutDialRequestBatchResponse#successful_requests #successful_requests} => Array&lt;Types::SuccessfulRequest&gt;
808
+ # * {Types::PutDialRequestBatchResponse#failed_requests #failed_requests} => Array&lt;Types::FailedRequest&gt;
801
809
  #
802
810
  # @example Request syntax with placeholder values
803
811
  #
804
812
  # resp = client.put_dial_request_batch({
813
+ # id: "CampaignId", # required
805
814
  # dial_requests: [ # required
806
815
  # {
816
+ # client_token: "ClientToken", # required
817
+ # phone_number: "DestinationPhoneNumber", # required
818
+ # expiration_time: Time.now, # required
807
819
  # attributes: { # required
808
820
  # "AttributeName" => "AttributeValue",
809
821
  # },
810
- # client_token: "ClientToken", # required
811
- # expiration_time: Time.now, # required
812
- # phone_number: "DestinationPhoneNumber", # required
813
822
  # },
814
823
  # ],
815
- # id: "CampaignId", # required
816
824
  # })
817
825
  #
818
826
  # @example Response structure
819
827
  #
820
- # resp.failed_requests #=> Array
821
- # resp.failed_requests[0].client_token #=> String
822
- # resp.failed_requests[0].failure_code #=> String, one of "InvalidInput", "RequestThrottled", "UnknownError"
823
- # resp.failed_requests[0].id #=> String
824
828
  # resp.successful_requests #=> Array
825
829
  # resp.successful_requests[0].client_token #=> String
826
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"
827
835
  #
828
836
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/PutDialRequestBatch AWS API Documentation
829
837
  #
@@ -907,8 +915,8 @@ module Aws::ConnectCampaignService
907
915
  # @example Response structure
908
916
  #
909
917
  # resp.connect_instance_onboarding_job_status.connect_instance_id #=> String
910
- # 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"
911
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"
912
920
  #
913
921
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/StartInstanceOnboardingJob AWS API Documentation
914
922
  #
@@ -997,26 +1005,31 @@ module Aws::ConnectCampaignService
997
1005
 
998
1006
  # Updates the dialer config of a campaign. This API is idempotent.
999
1007
  #
1000
- # @option params [required, Types::DialerConfig] :dialer_config
1001
- # The possible types of dialer config parameters
1002
- #
1003
1008
  # @option params [required, String] :id
1004
1009
  # Identifier representing a Campaign
1005
1010
  #
1011
+ # @option params [required, Types::DialerConfig] :dialer_config
1012
+ # The possible types of dialer config parameters
1013
+ #
1006
1014
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1007
1015
  #
1008
1016
  # @example Request syntax with placeholder values
1009
1017
  #
1010
1018
  # resp = client.update_campaign_dialer_config({
1019
+ # id: "CampaignId", # required
1011
1020
  # dialer_config: { # required
1012
- # predictive_dialer_config: {
1021
+ # progressive_dialer_config: {
1013
1022
  # bandwidth_allocation: 1.0, # required
1023
+ # dialing_capacity: 1.0,
1014
1024
  # },
1015
- # progressive_dialer_config: {
1025
+ # predictive_dialer_config: {
1016
1026
  # bandwidth_allocation: 1.0, # required
1027
+ # dialing_capacity: 1.0,
1028
+ # },
1029
+ # agentless_dialer_config: {
1030
+ # dialing_capacity: 1.0,
1017
1031
  # },
1018
1032
  # },
1019
- # id: "CampaignId", # required
1020
1033
  # })
1021
1034
  #
1022
1035
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignDialerConfig AWS API Documentation
@@ -1057,8 +1070,8 @@ module Aws::ConnectCampaignService
1057
1070
  # Updates the outbound call config of a campaign. This API is
1058
1071
  # idempotent.
1059
1072
  #
1060
- # @option params [Types::AnswerMachineDetectionConfig] :answer_machine_detection_config
1061
- # Answering Machine Detection config
1073
+ # @option params [required, String] :id
1074
+ # Identifier representing a Campaign
1062
1075
  #
1063
1076
  # @option params [String] :connect_contact_flow_id
1064
1077
  # The identifier of the contact flow for the outbound call.
@@ -1068,20 +1081,20 @@ module Aws::ConnectCampaignService
1068
1081
  # format. If you do not specify a source phone number, you must specify
1069
1082
  # a queue.
1070
1083
  #
1071
- # @option params [required, String] :id
1072
- # Identifier representing a Campaign
1084
+ # @option params [Types::AnswerMachineDetectionConfig] :answer_machine_detection_config
1085
+ # Answering Machine Detection config
1073
1086
  #
1074
1087
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1075
1088
  #
1076
1089
  # @example Request syntax with placeholder values
1077
1090
  #
1078
1091
  # resp = client.update_campaign_outbound_call_config({
1092
+ # id: "CampaignId", # required
1093
+ # connect_contact_flow_id: "ContactFlowId",
1094
+ # connect_source_phone_number: "SourcePhoneNumber",
1079
1095
  # answer_machine_detection_config: {
1080
1096
  # enable_answer_machine_detection: false, # required
1081
1097
  # },
1082
- # connect_contact_flow_id: "ContactFlowId",
1083
- # connect_source_phone_number: "SourcePhoneNumber",
1084
- # id: "CampaignId", # required
1085
1098
  # })
1086
1099
  #
1087
1100
  # @see http://docs.aws.amazon.com/goto/WebAPI/connectcampaigns-2021-01-30/UpdateCampaignOutboundCallConfig AWS API Documentation
@@ -1106,7 +1119,7 @@ module Aws::ConnectCampaignService
1106
1119
  params: params,
1107
1120
  config: config)
1108
1121
  context[:gem_name] = 'aws-sdk-connectcampaignservice'
1109
- context[:gem_version] = '1.8.0'
1122
+ context[:gem_version] = '1.10.0'
1110
1123
  Seahorse::Client::Request.new(handlers, context)
1111
1124
  end
1112
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"))