aws-sdk-connect 1.50.0 → 1.51.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8827197d31735b91d51702de564b827a90b35ccb1e9bc38eab939187173321dc
4
- data.tar.gz: a9ac37bd2ccdb05862448a5742c4b490cb01f6ab81ed5980bdd4d43f8c1bf6de
3
+ metadata.gz: 745be7eadeb5df03344c03dfa29c9f598551127a2e978fcac2bd7bce9afe2faf
4
+ data.tar.gz: 7e16d27ed1a788c4377e7a05ffa996eeb1cd3136e114945bb9965aca25ace7f2
5
5
  SHA512:
6
- metadata.gz: 7a9982ea976f540d5650fa179440bf9299e5fe99655482393c1a3f11eda458d819b059eb1146d3626c2f06125fb950688d6084cb83a274dc86360018a0d29f9c
7
- data.tar.gz: b354dc46c17da2dfe62c2f0c51f22b85f4209303c164efa16548b0011a7dc5374edfd29bacd5db82f0c154995a8fb253a59550189e267b71ea7f1800ebc6798e
6
+ metadata.gz: 9dc8c35db6590c6b35552ab43822248bf687239e4a875abf5f7df8a2370e839d1f73e3c54eba983c57601c5d03a976fd080955120d0460461c6782fdfa22fc01
7
+ data.tar.gz: c341245f0a1f5e0e65728774eee3feb2aaff4170b6fed4c6bdf12623790ca9b7c0a09c039dd5f9d797ea441db9846935cd90e312538df325c0df4f204a374b1c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.51.0 (2021-09-27)
5
+ ------------------
6
+
7
+ * Feature - This release updates a set of APIs: CreateIntegrationAssociation, ListIntegrationAssociations, CreateUseCase, and StartOutboundVoiceContact. You can use it to create integrations with Amazon Pinpoint for the Amazon Connect Campaigns use case, Amazon Connect Voice ID, and Amazon Connect Wisdom.
8
+
4
9
  1.50.0 (2021-09-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.50.0
1
+ 1.51.0
@@ -899,7 +899,7 @@ module Aws::Connect
899
899
  req.send_request(options)
900
900
  end
901
901
 
902
- # Create an AppIntegration association with an Amazon Connect instance.
902
+ # Creates an AWS resource association with an Amazon Connect instance.
903
903
  #
904
904
  # @option params [required, String] :instance_id
905
905
  # The identifier of the Amazon Connect instance. You can find the
@@ -911,14 +911,17 @@ module Aws::Connect
911
911
  # @option params [required, String] :integration_arn
912
912
  # The Amazon Resource Name (ARN) of the integration.
913
913
  #
914
- # @option params [required, String] :source_application_url
915
- # The URL for the external application.
914
+ # @option params [String] :source_application_url
915
+ # The URL for the external application. This field is only required for
916
+ # the EVENT integration type.
916
917
  #
917
- # @option params [required, String] :source_application_name
918
- # The name of the external application.
918
+ # @option params [String] :source_application_name
919
+ # The name of the external application. This field is only required for
920
+ # the EVENT integration type.
919
921
  #
920
- # @option params [required, String] :source_type
921
- # The type of the data source.
922
+ # @option params [String] :source_type
923
+ # The type of the data source. This field is only required for the EVENT
924
+ # integration type.
922
925
  #
923
926
  # @option params [Hash<String,String>] :tags
924
927
  # One or more tags.
@@ -932,11 +935,11 @@ module Aws::Connect
932
935
  #
933
936
  # resp = client.create_integration_association({
934
937
  # instance_id: "InstanceId", # required
935
- # integration_type: "EVENT", # required, accepts EVENT
938
+ # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
936
939
  # integration_arn: "ARN", # required
937
- # source_application_url: "URI", # required
938
- # source_application_name: "SourceApplicationName", # required
939
- # source_type: "SALESFORCE", # required, accepts SALESFORCE, ZENDESK
940
+ # source_application_url: "URI",
941
+ # source_application_name: "SourceApplicationName",
942
+ # source_type: "SALESFORCE", # accepts SALESFORCE, ZENDESK
940
943
  # tags: {
941
944
  # "TagKey" => "TagValue",
942
945
  # },
@@ -1161,19 +1164,18 @@ module Aws::Connect
1161
1164
  req.send_request(options)
1162
1165
  end
1163
1166
 
1164
- # Creates a use case for an AppIntegration association.
1167
+ # Creates a use case for an integration association.
1165
1168
  #
1166
1169
  # @option params [required, String] :instance_id
1167
1170
  # The identifier of the Amazon Connect instance. You can find the
1168
1171
  # instanceId in the ARN of the instance.
1169
1172
  #
1170
1173
  # @option params [required, String] :integration_association_id
1171
- # The identifier for the AppIntegration association.
1174
+ # The identifier for the integration association.
1172
1175
  #
1173
1176
  # @option params [required, String] :use_case_type
1174
- # The type of use case to associate to the AppIntegration association.
1175
- # Each AppIntegration association can have only one of each use case
1176
- # type.
1177
+ # The type of use case to associate to the integration association. Each
1178
+ # integration association can have only one of each use case type.
1177
1179
  #
1178
1180
  # @option params [Hash<String,String>] :tags
1179
1181
  # One or more tags.
@@ -1188,7 +1190,7 @@ module Aws::Connect
1188
1190
  # resp = client.create_use_case({
1189
1191
  # instance_id: "InstanceId", # required
1190
1192
  # integration_association_id: "IntegrationAssociationId", # required
1191
- # use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION
1193
+ # use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION, CONNECT_CAMPAIGNS
1192
1194
  # tags: {
1193
1195
  # "TagKey" => "TagValue",
1194
1196
  # },
@@ -1413,7 +1415,7 @@ module Aws::Connect
1413
1415
  req.send_request(options)
1414
1416
  end
1415
1417
 
1416
- # Deletes an AppIntegration association from an Amazon Connect instance.
1418
+ # Deletes an AWS resource association from an Amazon Connect instance.
1417
1419
  # The association must not have any use cases associated with it.
1418
1420
  #
1419
1421
  # @option params [required, String] :instance_id
@@ -1421,7 +1423,7 @@ module Aws::Connect
1421
1423
  # instanceId in the ARN of the instance.
1422
1424
  #
1423
1425
  # @option params [required, String] :integration_association_id
1424
- # The identifier for the AppIntegration association.
1426
+ # The identifier for the integration association.
1425
1427
  #
1426
1428
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1427
1429
  #
@@ -1468,14 +1470,14 @@ module Aws::Connect
1468
1470
  req.send_request(options)
1469
1471
  end
1470
1472
 
1471
- # Deletes a use case from an AppIntegration association.
1473
+ # Deletes a use case from an integration association.
1472
1474
  #
1473
1475
  # @option params [required, String] :instance_id
1474
1476
  # The identifier of the Amazon Connect instance. You can find the
1475
1477
  # instanceId in the ARN of the instance.
1476
1478
  #
1477
1479
  # @option params [required, String] :integration_association_id
1478
- # The identifier for the AppIntegration association.
1480
+ # The identifier for the integration association.
1479
1481
  #
1480
1482
  # @option params [required, String] :use_case_id
1481
1483
  # The identifier for the use case.
@@ -2527,8 +2529,12 @@ module Aws::Connect
2527
2529
  #
2528
2530
  # : Unit: SECONDS
2529
2531
  #
2530
- # When you use groupings, Unit says SECONDS but the Value is returned
2531
- # in MILLISECONDS. For example, if you get a response like this:
2532
+ # When you use groupings, Unit says SECONDS and the Value is returned
2533
+ # in SECONDS.
2534
+ #
2535
+ # When you do not use groupings, Unit says SECONDS but the Value is
2536
+ # returned in MILLISECONDS. For example, if you get a response like
2537
+ # this:
2532
2538
  #
2533
2539
  # `\{ "Metric": \{ "Name": "OLDEST_CONTACT_AGE", "Unit": "SECONDS" \},
2534
2540
  # "Value": 24113.0 `\\}
@@ -3394,13 +3400,15 @@ module Aws::Connect
3394
3400
  req.send_request(options)
3395
3401
  end
3396
3402
 
3397
- # Provides summary information about the AppIntegration associations for
3403
+ # Provides summary information about the AWS resource associations for
3398
3404
  # the specified Amazon Connect instance.
3399
3405
  #
3400
3406
  # @option params [required, String] :instance_id
3401
3407
  # The identifier of the Amazon Connect instance. You can find the
3402
3408
  # instanceId in the ARN of the instance.
3403
3409
  #
3410
+ # @option params [String] :integration_type
3411
+ #
3404
3412
  # @option params [String] :next_token
3405
3413
  # The token for the next set of results. Use the value returned in the
3406
3414
  # previous response in the next request to retrieve the next set of
@@ -3420,6 +3428,7 @@ module Aws::Connect
3420
3428
  #
3421
3429
  # resp = client.list_integration_associations({
3422
3430
  # instance_id: "InstanceId", # required
3431
+ # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
3423
3432
  # next_token: "NextToken",
3424
3433
  # max_results: 1,
3425
3434
  # })
@@ -3430,7 +3439,7 @@ module Aws::Connect
3430
3439
  # resp.integration_association_summary_list[0].integration_association_id #=> String
3431
3440
  # resp.integration_association_summary_list[0].integration_association_arn #=> String
3432
3441
  # resp.integration_association_summary_list[0].instance_id #=> String
3433
- # resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT"
3442
+ # resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE"
3434
3443
  # resp.integration_association_summary_list[0].integration_arn #=> String
3435
3444
  # resp.integration_association_summary_list[0].source_application_url #=> String
3436
3445
  # resp.integration_association_summary_list[0].source_application_name #=> String
@@ -4076,7 +4085,7 @@ module Aws::Connect
4076
4085
  req.send_request(options)
4077
4086
  end
4078
4087
 
4079
- # Lists the use cases.
4088
+ # Lists the use cases for the integration association.
4080
4089
  #
4081
4090
  # @option params [required, String] :instance_id
4082
4091
  # The identifier of the Amazon Connect instance. You can find the
@@ -4114,7 +4123,7 @@ module Aws::Connect
4114
4123
  # resp.use_case_summary_list #=> Array
4115
4124
  # resp.use_case_summary_list[0].use_case_id #=> String
4116
4125
  # resp.use_case_summary_list[0].use_case_arn #=> String
4117
- # resp.use_case_summary_list[0].use_case_type #=> String, one of "RULES_EVALUATION"
4126
+ # resp.use_case_summary_list[0].use_case_type #=> String, one of "RULES_EVALUATION", "CONNECT_CAMPAIGNS"
4118
4127
  # resp.next_token #=> String
4119
4128
  #
4120
4129
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListUseCases AWS API Documentation
@@ -4437,6 +4446,13 @@ module Aws::Connect
4437
4446
  #
4438
4447
  # </note>
4439
4448
  #
4449
+ # <note markdown="1"> Campaign calls are not allowed by default. Before you can make a call
4450
+ # with `TrafficType` = `CAMPAIGN`, you must submit a service quota
4451
+ # increase request. For more information, see [Amazon Connect Service
4452
+ # Quotas][1] in the *Amazon Connect Administrator Guide*.
4453
+ #
4454
+ # </note>
4455
+ #
4440
4456
  #
4441
4457
  #
4442
4458
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/amazon-connect-service-limits.html
@@ -4486,6 +4502,19 @@ module Aws::Connect
4486
4502
  # contact. Attribute keys can include only alphanumeric, dash, and
4487
4503
  # underscore characters.
4488
4504
  #
4505
+ # @option params [Types::AnswerMachineDetectionConfig] :answer_machine_detection_config
4506
+ # Configuration of the answering machine detection for this outbound
4507
+ # call.
4508
+ #
4509
+ # @option params [String] :campaign_id
4510
+ # The campaign identifier of the outbound communication.
4511
+ #
4512
+ # @option params [String] :traffic_type
4513
+ # Denotes the class of traffic. Calls with different traffic types are
4514
+ # handled differently by Amazon Connect. The default value is `GENERAL`.
4515
+ # Use `CAMPAIGN` if `EnableAnswerMachineDetection` is set to `true`. For
4516
+ # all other cases, use `GENERAL`.
4517
+ #
4489
4518
  # @return [Types::StartOutboundVoiceContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4490
4519
  #
4491
4520
  # * {Types::StartOutboundVoiceContactResponse#contact_id #contact_id} => String
@@ -4502,6 +4531,12 @@ module Aws::Connect
4502
4531
  # attributes: {
4503
4532
  # "AttributeName" => "AttributeValue",
4504
4533
  # },
4534
+ # answer_machine_detection_config: {
4535
+ # enable_answer_machine_detection: false,
4536
+ # await_answer_machine_prompt: false,
4537
+ # },
4538
+ # campaign_id: "CampaignId",
4539
+ # traffic_type: "GENERAL", # accepts GENERAL, CAMPAIGN
4505
4540
  # })
4506
4541
  #
4507
4542
  # @example Response structure
@@ -5045,6 +5080,11 @@ module Aws::Connect
5045
5080
  # @option params [required, String] :attribute_type
5046
5081
  # The type of attribute.
5047
5082
  #
5083
+ # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
5084
+ # access this feature, contact AWS Support for allowlisting.
5085
+ #
5086
+ # </note>
5087
+ #
5048
5088
  # @option params [required, String] :value
5049
5089
  # The value for the attribute. Maximum character limit is 100.
5050
5090
  #
@@ -5809,7 +5849,7 @@ module Aws::Connect
5809
5849
  params: params,
5810
5850
  config: config)
5811
5851
  context[:gem_name] = 'aws-sdk-connect'
5812
- context[:gem_version] = '1.50.0'
5852
+ context[:gem_version] = '1.51.0'
5813
5853
  Seahorse::Client::Request.new(handlers, context)
5814
5854
  end
5815
5855
 
@@ -29,6 +29,7 @@ module Aws::Connect
29
29
  AgentStatusTypes = Shapes::ListShape.new(name: 'AgentStatusTypes')
30
30
  AgentUsername = Shapes::StringShape.new(name: 'AgentUsername')
31
31
  AliasArn = Shapes::StringShape.new(name: 'AliasArn')
32
+ AnswerMachineDetectionConfig = Shapes::StructureShape.new(name: 'AnswerMachineDetectionConfig')
32
33
  AssociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'AssociateApprovedOriginRequest')
33
34
  AssociateBotRequest = Shapes::StructureShape.new(name: 'AssociateBotRequest')
34
35
  AssociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'AssociateInstanceStorageConfigRequest')
@@ -49,6 +50,7 @@ module Aws::Connect
49
50
  Boolean = Shapes::BooleanShape.new(name: 'Boolean')
50
51
  BotName = Shapes::StringShape.new(name: 'BotName')
51
52
  BucketName = Shapes::StringShape.new(name: 'BucketName')
53
+ CampaignId = Shapes::StringShape.new(name: 'CampaignId')
52
54
  Channel = Shapes::StringShape.new(name: 'Channel')
53
55
  Channels = Shapes::ListShape.new(name: 'Channels')
54
56
  ChatContent = Shapes::StringShape.new(name: 'ChatContent')
@@ -403,6 +405,7 @@ module Aws::Connect
403
405
  ThrottlingException = Shapes::StructureShape.new(name: 'ThrottlingException')
404
406
  TimeZone = Shapes::StringShape.new(name: 'TimeZone')
405
407
  Timestamp = Shapes::TimestampShape.new(name: 'Timestamp')
408
+ TrafficType = Shapes::StringShape.new(name: 'TrafficType')
406
409
  URI = Shapes::StringShape.new(name: 'URI')
407
410
  Unit = Shapes::StringShape.new(name: 'Unit')
408
411
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
@@ -472,6 +475,10 @@ module Aws::Connect
472
475
 
473
476
  AgentStatusTypes.member = Shapes::ShapeRef.new(shape: AgentStatusType)
474
477
 
478
+ AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableAnswerMachineDetection"))
479
+ AnswerMachineDetectionConfig.add_member(:await_answer_machine_prompt, Shapes::ShapeRef.new(shape: Boolean, location_name: "AwaitAnswerMachinePrompt"))
480
+ AnswerMachineDetectionConfig.struct_class = Types::AnswerMachineDetectionConfig
481
+
475
482
  AssociateApprovedOriginRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
476
483
  AssociateApprovedOriginRequest.add_member(:origin, Shapes::ShapeRef.new(shape: Origin, required: true, location_name: "Origin"))
477
484
  AssociateApprovedOriginRequest.struct_class = Types::AssociateApprovedOriginRequest
@@ -608,9 +615,9 @@ module Aws::Connect
608
615
  CreateIntegrationAssociationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
609
616
  CreateIntegrationAssociationRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, required: true, location_name: "IntegrationType"))
610
617
  CreateIntegrationAssociationRequest.add_member(:integration_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "IntegrationArn"))
611
- CreateIntegrationAssociationRequest.add_member(:source_application_url, Shapes::ShapeRef.new(shape: URI, required: true, location_name: "SourceApplicationUrl"))
612
- CreateIntegrationAssociationRequest.add_member(:source_application_name, Shapes::ShapeRef.new(shape: SourceApplicationName, required: true, location_name: "SourceApplicationName"))
613
- CreateIntegrationAssociationRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, required: true, location_name: "SourceType"))
618
+ CreateIntegrationAssociationRequest.add_member(:source_application_url, Shapes::ShapeRef.new(shape: URI, location_name: "SourceApplicationUrl"))
619
+ CreateIntegrationAssociationRequest.add_member(:source_application_name, Shapes::ShapeRef.new(shape: SourceApplicationName, location_name: "SourceApplicationName"))
620
+ CreateIntegrationAssociationRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, location_name: "SourceType"))
614
621
  CreateIntegrationAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
615
622
  CreateIntegrationAssociationRequest.struct_class = Types::CreateIntegrationAssociationRequest
616
623
 
@@ -1182,6 +1189,7 @@ module Aws::Connect
1182
1189
  ListInstancesResponse.struct_class = Types::ListInstancesResponse
1183
1190
 
1184
1191
  ListIntegrationAssociationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
1192
+ ListIntegrationAssociationsRequest.add_member(:integration_type, Shapes::ShapeRef.new(shape: IntegrationType, location: "querystring", location_name: "integrationType"))
1185
1193
  ListIntegrationAssociationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
1186
1194
  ListIntegrationAssociationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
1187
1195
  ListIntegrationAssociationsRequest.struct_class = Types::ListIntegrationAssociationsRequest
@@ -1547,6 +1555,9 @@ module Aws::Connect
1547
1555
  StartOutboundVoiceContactRequest.add_member(:source_phone_number, Shapes::ShapeRef.new(shape: PhoneNumber, location_name: "SourcePhoneNumber"))
1548
1556
  StartOutboundVoiceContactRequest.add_member(:queue_id, Shapes::ShapeRef.new(shape: QueueId, location_name: "QueueId"))
1549
1557
  StartOutboundVoiceContactRequest.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
1558
+ StartOutboundVoiceContactRequest.add_member(:answer_machine_detection_config, Shapes::ShapeRef.new(shape: AnswerMachineDetectionConfig, location_name: "AnswerMachineDetectionConfig"))
1559
+ StartOutboundVoiceContactRequest.add_member(:campaign_id, Shapes::ShapeRef.new(shape: CampaignId, location_name: "CampaignId"))
1560
+ StartOutboundVoiceContactRequest.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
1550
1561
  StartOutboundVoiceContactRequest.struct_class = Types::StartOutboundVoiceContactRequest
1551
1562
 
1552
1563
  StartOutboundVoiceContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -88,6 +88,35 @@ module Aws::Connect
88
88
  include Aws::Structure
89
89
  end
90
90
 
91
+ # Configuration of the answering machine detection.
92
+ #
93
+ # @note When making an API call, you may pass AnswerMachineDetectionConfig
94
+ # data as a hash:
95
+ #
96
+ # {
97
+ # enable_answer_machine_detection: false,
98
+ # await_answer_machine_prompt: false,
99
+ # }
100
+ #
101
+ # @!attribute [rw] enable_answer_machine_detection
102
+ # The flag to indicate if answer machine detection analysis needs to
103
+ # be performed for a voice call. If set to `true`, `TrafficType` must
104
+ # be set as `CAMPAIGN`.
105
+ # @return [Boolean]
106
+ #
107
+ # @!attribute [rw] await_answer_machine_prompt
108
+ # Wait for the answering machine prompt.
109
+ # @return [Boolean]
110
+ #
111
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AnswerMachineDetectionConfig AWS API Documentation
112
+ #
113
+ class AnswerMachineDetectionConfig < Struct.new(
114
+ :enable_answer_machine_detection,
115
+ :await_answer_machine_prompt)
116
+ SENSITIVE = []
117
+ include Aws::Structure
118
+ end
119
+
91
120
  # @note When making an API call, you may pass AssociateApprovedOriginRequest
92
121
  # data as a hash:
93
122
  #
@@ -844,11 +873,11 @@ module Aws::Connect
844
873
  #
845
874
  # {
846
875
  # instance_id: "InstanceId", # required
847
- # integration_type: "EVENT", # required, accepts EVENT
876
+ # integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
848
877
  # integration_arn: "ARN", # required
849
- # source_application_url: "URI", # required
850
- # source_application_name: "SourceApplicationName", # required
851
- # source_type: "SALESFORCE", # required, accepts SALESFORCE, ZENDESK
878
+ # source_application_url: "URI",
879
+ # source_application_name: "SourceApplicationName",
880
+ # source_type: "SALESFORCE", # accepts SALESFORCE, ZENDESK
852
881
  # tags: {
853
882
  # "TagKey" => "TagValue",
854
883
  # },
@@ -868,15 +897,18 @@ module Aws::Connect
868
897
  # @return [String]
869
898
  #
870
899
  # @!attribute [rw] source_application_url
871
- # The URL for the external application.
900
+ # The URL for the external application. This field is only required
901
+ # for the EVENT integration type.
872
902
  # @return [String]
873
903
  #
874
904
  # @!attribute [rw] source_application_name
875
- # The name of the external application.
905
+ # The name of the external application. This field is only required
906
+ # for the EVENT integration type.
876
907
  # @return [String]
877
908
  #
878
909
  # @!attribute [rw] source_type
879
- # The type of the data source.
910
+ # The type of the data source. This field is only required for the
911
+ # EVENT integration type.
880
912
  # @return [String]
881
913
  #
882
914
  # @!attribute [rw] tags
@@ -898,7 +930,7 @@ module Aws::Connect
898
930
  end
899
931
 
900
932
  # @!attribute [rw] integration_association_id
901
- # The identifier for the association.
933
+ # The identifier for the integration association.
902
934
  # @return [String]
903
935
  #
904
936
  # @!attribute [rw] integration_association_arn
@@ -1175,7 +1207,7 @@ module Aws::Connect
1175
1207
  # {
1176
1208
  # instance_id: "InstanceId", # required
1177
1209
  # integration_association_id: "IntegrationAssociationId", # required
1178
- # use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION
1210
+ # use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION, CONNECT_CAMPAIGNS
1179
1211
  # tags: {
1180
1212
  # "TagKey" => "TagValue",
1181
1213
  # },
@@ -1187,12 +1219,12 @@ module Aws::Connect
1187
1219
  # @return [String]
1188
1220
  #
1189
1221
  # @!attribute [rw] integration_association_id
1190
- # The identifier for the AppIntegration association.
1222
+ # The identifier for the integration association.
1191
1223
  # @return [String]
1192
1224
  #
1193
1225
  # @!attribute [rw] use_case_type
1194
- # The type of use case to associate to the AppIntegration association.
1195
- # Each AppIntegration association can have only one of each use case
1226
+ # The type of use case to associate to the integration association.
1227
+ # Each integration association can have only one of each use case
1196
1228
  # type.
1197
1229
  # @return [String]
1198
1230
  #
@@ -1560,7 +1592,7 @@ module Aws::Connect
1560
1592
  # @return [String]
1561
1593
  #
1562
1594
  # @!attribute [rw] integration_association_id
1563
- # The identifier for the AppIntegration association.
1595
+ # The identifier for the integration association.
1564
1596
  # @return [String]
1565
1597
  #
1566
1598
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteIntegrationAssociationRequest AWS API Documentation
@@ -1613,7 +1645,7 @@ module Aws::Connect
1613
1645
  # @return [String]
1614
1646
  #
1615
1647
  # @!attribute [rw] integration_association_id
1616
- # The identifier for the AppIntegration association.
1648
+ # The identifier for the integration association.
1617
1649
  # @return [String]
1618
1650
  #
1619
1651
  # @!attribute [rw] use_case_id
@@ -2444,7 +2476,12 @@ module Aws::Connect
2444
2476
  # @return [String]
2445
2477
  #
2446
2478
  # @!attribute [rw] key_id
2447
- # The identifier of the encryption key.
2479
+ # The full ARN of the encryption key.
2480
+ #
2481
+ # <note markdown="1"> Be sure to provide the full ARN of the encryption key, not just the
2482
+ # ID.
2483
+ #
2484
+ # </note>
2448
2485
  # @return [String]
2449
2486
  #
2450
2487
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/EncryptionConfig AWS API Documentation
@@ -2635,7 +2672,10 @@ module Aws::Connect
2635
2672
  #
2636
2673
  # : Unit: SECONDS
2637
2674
  #
2638
- # When you use groupings, Unit says SECONDS but the Value is
2675
+ # When you use groupings, Unit says SECONDS and the Value is
2676
+ # returned in SECONDS.
2677
+ #
2678
+ # When you do not use groupings, Unit says SECONDS but the Value is
2639
2679
  # returned in MILLISECONDS. For example, if you get a response like
2640
2680
  # this:
2641
2681
  #
@@ -4415,6 +4455,7 @@ module Aws::Connect
4415
4455
  #
4416
4456
  # {
4417
4457
  # instance_id: "InstanceId", # required
4458
+ # integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE
4418
4459
  # next_token: "NextToken",
4419
4460
  # max_results: 1,
4420
4461
  # }
@@ -4424,6 +4465,9 @@ module Aws::Connect
4424
4465
  # instanceId in the ARN of the instance.
4425
4466
  # @return [String]
4426
4467
  #
4468
+ # @!attribute [rw] integration_type
4469
+ # @return [String]
4470
+ #
4427
4471
  # @!attribute [rw] next_token
4428
4472
  # The token for the next set of results. Use the value returned in the
4429
4473
  # previous response in the next request to retrieve the next set of
@@ -4438,6 +4482,7 @@ module Aws::Connect
4438
4482
  #
4439
4483
  class ListIntegrationAssociationsRequest < Struct.new(
4440
4484
  :instance_id,
4485
+ :integration_type,
4441
4486
  :next_token,
4442
4487
  :max_results)
4443
4488
  SENSITIVE = []
@@ -4445,7 +4490,7 @@ module Aws::Connect
4445
4490
  end
4446
4491
 
4447
4492
  # @!attribute [rw] integration_association_summary_list
4448
- # The AppIntegration associations.
4493
+ # The associations.
4449
4494
  # @return [Array<Types::IntegrationAssociationSummary>]
4450
4495
  #
4451
4496
  # @!attribute [rw] next_token
@@ -5105,7 +5150,7 @@ module Aws::Connect
5105
5150
  end
5106
5151
 
5107
5152
  # Provides summary information about the use cases for the specified
5108
- # Amazon Connect AppIntegration association.
5153
+ # integration association.
5109
5154
  #
5110
5155
  # @note When making an API call, you may pass ListUseCasesRequest
5111
5156
  # data as a hash:
@@ -6302,6 +6347,12 @@ module Aws::Connect
6302
6347
  # attributes: {
6303
6348
  # "AttributeName" => "AttributeValue",
6304
6349
  # },
6350
+ # answer_machine_detection_config: {
6351
+ # enable_answer_machine_detection: false,
6352
+ # await_answer_machine_prompt: false,
6353
+ # },
6354
+ # campaign_id: "CampaignId",
6355
+ # traffic_type: "GENERAL", # accepts GENERAL, CAMPAIGN
6305
6356
  # }
6306
6357
  #
6307
6358
  # @!attribute [rw] destination_phone_number
@@ -6358,6 +6409,22 @@ module Aws::Connect
6358
6409
  # underscore characters.
6359
6410
  # @return [Hash<String,String>]
6360
6411
  #
6412
+ # @!attribute [rw] answer_machine_detection_config
6413
+ # Configuration of the answering machine detection for this outbound
6414
+ # call.
6415
+ # @return [Types::AnswerMachineDetectionConfig]
6416
+ #
6417
+ # @!attribute [rw] campaign_id
6418
+ # The campaign identifier of the outbound communication.
6419
+ # @return [String]
6420
+ #
6421
+ # @!attribute [rw] traffic_type
6422
+ # Denotes the class of traffic. Calls with different traffic types are
6423
+ # handled differently by Amazon Connect. The default value is
6424
+ # `GENERAL`. Use `CAMPAIGN` if `EnableAnswerMachineDetection` is set
6425
+ # to `true`. For all other cases, use `GENERAL`.
6426
+ # @return [String]
6427
+ #
6361
6428
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartOutboundVoiceContactRequest AWS API Documentation
6362
6429
  #
6363
6430
  class StartOutboundVoiceContactRequest < Struct.new(
@@ -6367,7 +6434,10 @@ module Aws::Connect
6367
6434
  :client_token,
6368
6435
  :source_phone_number,
6369
6436
  :queue_id,
6370
- :attributes)
6437
+ :attributes,
6438
+ :answer_machine_detection_config,
6439
+ :campaign_id,
6440
+ :traffic_type)
6371
6441
  SENSITIVE = []
6372
6442
  include Aws::Structure
6373
6443
  end
@@ -6935,6 +7005,11 @@ module Aws::Connect
6935
7005
  #
6936
7006
  # @!attribute [rw] attribute_type
6937
7007
  # The type of attribute.
7008
+ #
7009
+ # <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
7010
+ # access this feature, contact AWS Support for allowlisting.
7011
+ #
7012
+ # </note>
6938
7013
  # @return [String]
6939
7014
  #
6940
7015
  # @!attribute [rw] value
@@ -7677,8 +7752,8 @@ module Aws::Connect
7677
7752
  # @return [String]
7678
7753
  #
7679
7754
  # @!attribute [rw] use_case_type
7680
- # The type of use case to associate to the AppIntegration association.
7681
- # Each AppIntegration association can have only one of each use case
7755
+ # The type of use case to associate to the integration association.
7756
+ # Each integration association can have only one of each use case
7682
7757
  # type.
7683
7758
  # @return [String]
7684
7759
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-connect/customizations'
48
48
  # @!group service
49
49
  module Aws::Connect
50
50
 
51
- GEM_VERSION = '1.50.0'
51
+ GEM_VERSION = '1.51.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.50.0
4
+ version: 1.51.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: 2021-09-01 00:00:00.000000000 Z
11
+ date: 2021-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core