aws-sdk-connect 1.190.0 → 1.192.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +109 -10
- data/lib/aws-sdk-connect/client_api.rb +39 -0
- data/lib/aws-sdk-connect/types.rb +101 -4
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +39 -6
- data/sig/types.rbs +29 -7
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 71650b7edb4329739eea5d77a97aad5fce2d329f0cd5b168c539115778924f0f
|
4
|
+
data.tar.gz: 5aef7ae1fb6222438ea052fc4d235e795026e406e0983922c4036507b737d052
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b08646aae4f56192a6d0dee806071633e54d7b3d81ffdbbf3e939bb653dba2faec2da61b5517c864795492c3b48959b486ec103e086800dd5a014e5f83b2ec3f
|
7
|
+
data.tar.gz: 8cd21c75e35056ff533a6cd5eac3c9d23ba07f340043ac4455feab23efdd89c08b3eaa5052a76ec03f03f6a305038401e81c3757cdfc307c2a4266c00b36dd80
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.192.0 (2024-12-20)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.
|
8
|
+
|
9
|
+
1.191.0 (2024-12-18)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for the UpdateParticipantAuthentication API used for customer authentication within Amazon Connect chats.
|
13
|
+
|
4
14
|
1.190.0 (2024-12-12)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.192.0
|
@@ -2487,7 +2487,7 @@ module Aws::Connect
|
|
2487
2487
|
#
|
2488
2488
|
# resp = client.create_integration_association({
|
2489
2489
|
# instance_id: "InstanceId", # required
|
2490
|
-
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
2490
|
+
# integration_type: "EVENT", # required, accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR, COGNITO_USER_POOL
|
2491
2491
|
# integration_arn: "ARN", # required
|
2492
2492
|
# source_application_url: "URI",
|
2493
2493
|
# source_application_name: "SourceApplicationName",
|
@@ -2820,7 +2820,7 @@ module Aws::Connect
|
|
2820
2820
|
#
|
2821
2821
|
#
|
2822
2822
|
#
|
2823
|
-
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/
|
2823
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/enable-push-notifications-for-mobile-chat.html
|
2824
2824
|
#
|
2825
2825
|
# @option params [required, String] :instance_id
|
2826
2826
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -5210,6 +5210,7 @@ module Aws::Connect
|
|
5210
5210
|
# resp.contact.scheduled_timestamp #=> Time
|
5211
5211
|
# resp.contact.related_contact_id #=> String
|
5212
5212
|
# resp.contact.wisdom_info.session_arn #=> String
|
5213
|
+
# resp.contact.customer_id #=> String
|
5213
5214
|
# resp.contact.customer_endpoint.type #=> String, one of "TELEPHONE_NUMBER", "VOIP", "CONTACT_FLOW", "CONNECT_PHONENUMBER_ARN", "EMAIL_ADDRESS"
|
5214
5215
|
# resp.contact.customer_endpoint.address #=> String
|
5215
5216
|
# resp.contact.customer_endpoint.display_name #=> String
|
@@ -5227,6 +5228,8 @@ module Aws::Connect
|
|
5227
5228
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.name #=> String
|
5228
5229
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.value #=> String
|
5229
5230
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.proficiency_level #=> Float
|
5231
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.min_proficiency_level #=> Float
|
5232
|
+
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.range.max_proficiency_level #=> Float
|
5230
5233
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5231
5234
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5232
5235
|
# resp.contact.routing_criteria.steps[0].expression.attribute_condition.comparison_operator #=> String
|
@@ -5234,6 +5237,14 @@ module Aws::Connect
|
|
5234
5237
|
# resp.contact.routing_criteria.steps[0].expression.and_expression[0] #=> Types::Expression
|
5235
5238
|
# resp.contact.routing_criteria.steps[0].expression.or_expression #=> Array
|
5236
5239
|
# resp.contact.routing_criteria.steps[0].expression.or_expression[0] #=> Types::Expression
|
5240
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.name #=> String
|
5241
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.value #=> String
|
5242
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.proficiency_level #=> Float
|
5243
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.min_proficiency_level #=> Float
|
5244
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.range.max_proficiency_level #=> Float
|
5245
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids #=> Array
|
5246
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.match_criteria.agents_criteria.agent_ids[0] #=> String
|
5247
|
+
# resp.contact.routing_criteria.steps[0].expression.not_attribute_condition.comparison_operator #=> String
|
5237
5248
|
# resp.contact.routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
|
5238
5249
|
# resp.contact.routing_criteria.activation_timestamp #=> Time
|
5239
5250
|
# resp.contact.routing_criteria.index #=> Integer
|
@@ -5817,12 +5828,12 @@ module Aws::Connect
|
|
5817
5828
|
#
|
5818
5829
|
# resp = client.describe_instance_attribute({
|
5819
5830
|
# instance_id: "InstanceId", # required
|
5820
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
|
5831
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING, MULTI_PARTY_CHAT_CONFERENCE
|
5821
5832
|
# })
|
5822
5833
|
#
|
5823
5834
|
# @example Response structure
|
5824
5835
|
#
|
5825
|
-
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
|
5836
|
+
# resp.attribute.attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING", "MULTI_PARTY_CHAT_CONFERENCE"
|
5826
5837
|
# resp.attribute.value #=> String
|
5827
5838
|
#
|
5828
5839
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceAttribute AWS API Documentation
|
@@ -10292,7 +10303,7 @@ module Aws::Connect
|
|
10292
10303
|
#
|
10293
10304
|
# For the specified version of Amazon Lex, returns a paginated list of
|
10294
10305
|
# all the Amazon Lex bots currently associated with the instance. Use
|
10295
|
-
# this API to
|
10306
|
+
# this API to return both Amazon Lex V1 and V2 bots.
|
10296
10307
|
#
|
10297
10308
|
# @option params [required, String] :instance_id
|
10298
10309
|
# The identifier of the Amazon Connect instance. You can [find the
|
@@ -11060,7 +11071,7 @@ module Aws::Connect
|
|
11060
11071
|
# @example Response structure
|
11061
11072
|
#
|
11062
11073
|
# resp.attributes #=> Array
|
11063
|
-
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING"
|
11074
|
+
# resp.attributes[0].attribute_type #=> String, one of "INBOUND_CALLS", "OUTBOUND_CALLS", "CONTACTFLOW_LOGS", "CONTACT_LENS", "AUTO_RESOLVE_BEST_VOICES", "USE_CUSTOM_TTS_VOICES", "EARLY_MEDIA", "MULTI_PARTY_CONFERENCE", "HIGH_VOLUME_OUTBOUND", "ENHANCED_CONTACT_MONITORING", "ENHANCED_CHAT_MONITORING", "MULTI_PARTY_CHAT_CONFERENCE"
|
11064
11075
|
# resp.attributes[0].value #=> String
|
11065
11076
|
# resp.next_token #=> String
|
11066
11077
|
#
|
@@ -11230,7 +11241,7 @@ module Aws::Connect
|
|
11230
11241
|
#
|
11231
11242
|
# resp = client.list_integration_associations({
|
11232
11243
|
# instance_id: "InstanceId", # required
|
11233
|
-
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR
|
11244
|
+
# integration_type: "EVENT", # accepts EVENT, VOICE_ID, PINPOINT_APP, WISDOM_ASSISTANT, WISDOM_KNOWLEDGE_BASE, WISDOM_QUICK_RESPONSES, Q_MESSAGE_TEMPLATES, CASES_DOMAIN, APPLICATION, FILE_SCANNER, SES_IDENTITY, ANALYTICS_CONNECTOR, CALL_TRANSFER_CONNECTOR, COGNITO_USER_POOL
|
11234
11245
|
# next_token: "NextToken",
|
11235
11246
|
# max_results: 1,
|
11236
11247
|
# integration_arn: "ARN",
|
@@ -11242,7 +11253,7 @@ module Aws::Connect
|
|
11242
11253
|
# resp.integration_association_summary_list[0].integration_association_id #=> String
|
11243
11254
|
# resp.integration_association_summary_list[0].integration_association_arn #=> String
|
11244
11255
|
# resp.integration_association_summary_list[0].instance_id #=> String
|
11245
|
-
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY", "ANALYTICS_CONNECTOR", "CALL_TRANSFER_CONNECTOR"
|
11256
|
+
# resp.integration_association_summary_list[0].integration_type #=> String, one of "EVENT", "VOICE_ID", "PINPOINT_APP", "WISDOM_ASSISTANT", "WISDOM_KNOWLEDGE_BASE", "WISDOM_QUICK_RESPONSES", "Q_MESSAGE_TEMPLATES", "CASES_DOMAIN", "APPLICATION", "FILE_SCANNER", "SES_IDENTITY", "ANALYTICS_CONNECTOR", "CALL_TRANSFER_CONNECTOR", "COGNITO_USER_POOL"
|
11246
11257
|
# resp.integration_association_summary_list[0].integration_arn #=> String
|
11247
11258
|
# resp.integration_association_summary_list[0].source_application_url #=> String
|
11248
11259
|
# resp.integration_association_summary_list[0].source_application_name #=> String
|
@@ -15726,6 +15737,10 @@ module Aws::Connect
|
|
15726
15737
|
#
|
15727
15738
|
# </note>
|
15728
15739
|
#
|
15740
|
+
# @option params [String] :customer_id
|
15741
|
+
# The customer's identification number. For example, the `CustomerId`
|
15742
|
+
# may be a customer number from your CRM.
|
15743
|
+
#
|
15729
15744
|
# @return [Types::StartChatContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
15730
15745
|
#
|
15731
15746
|
# * {Types::StartChatContactResponse#contact_id #contact_id} => String
|
@@ -15767,6 +15782,7 @@ module Aws::Connect
|
|
15767
15782
|
# value_integer: 1,
|
15768
15783
|
# },
|
15769
15784
|
# },
|
15785
|
+
# customer_id: "CustomerIdNonEmpty",
|
15770
15786
|
# })
|
15771
15787
|
#
|
15772
15788
|
# @example Response structure
|
@@ -18238,6 +18254,10 @@ module Aws::Connect
|
|
18238
18254
|
# name: "PredefinedAttributeName",
|
18239
18255
|
# value: "ProficiencyValue",
|
18240
18256
|
# proficiency_level: 1.0,
|
18257
|
+
# range: {
|
18258
|
+
# min_proficiency_level: 1.0,
|
18259
|
+
# max_proficiency_level: 1.0,
|
18260
|
+
# },
|
18241
18261
|
# match_criteria: {
|
18242
18262
|
# agents_criteria: {
|
18243
18263
|
# agent_ids: ["AgentId"],
|
@@ -18255,6 +18275,21 @@ module Aws::Connect
|
|
18255
18275
|
# # recursive Expression
|
18256
18276
|
# },
|
18257
18277
|
# ],
|
18278
|
+
# not_attribute_condition: {
|
18279
|
+
# name: "PredefinedAttributeName",
|
18280
|
+
# value: "ProficiencyValue",
|
18281
|
+
# proficiency_level: 1.0,
|
18282
|
+
# range: {
|
18283
|
+
# min_proficiency_level: 1.0,
|
18284
|
+
# max_proficiency_level: 1.0,
|
18285
|
+
# },
|
18286
|
+
# match_criteria: {
|
18287
|
+
# agents_criteria: {
|
18288
|
+
# agent_ids: ["AgentId"],
|
18289
|
+
# },
|
18290
|
+
# },
|
18291
|
+
# comparison_operator: "ComparisonOperator",
|
18292
|
+
# },
|
18258
18293
|
# },
|
18259
18294
|
# },
|
18260
18295
|
# ],
|
@@ -18679,7 +18714,7 @@ module Aws::Connect
|
|
18679
18714
|
#
|
18680
18715
|
# resp = client.update_instance_attribute({
|
18681
18716
|
# instance_id: "InstanceId", # required
|
18682
|
-
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING
|
18717
|
+
# attribute_type: "INBOUND_CALLS", # required, accepts INBOUND_CALLS, OUTBOUND_CALLS, CONTACTFLOW_LOGS, CONTACT_LENS, AUTO_RESOLVE_BEST_VOICES, USE_CUSTOM_TTS_VOICES, EARLY_MEDIA, MULTI_PARTY_CONFERENCE, HIGH_VOLUME_OUTBOUND, ENHANCED_CONTACT_MONITORING, ENHANCED_CHAT_MONITORING, MULTI_PARTY_CHAT_CONFERENCE
|
18683
18718
|
# value: "InstanceAttributeValue", # required
|
18684
18719
|
# })
|
18685
18720
|
#
|
@@ -18761,6 +18796,70 @@ module Aws::Connect
|
|
18761
18796
|
req.send_request(options)
|
18762
18797
|
end
|
18763
18798
|
|
18799
|
+
# Instructs Amazon Connect to resume the authentication process. The
|
18800
|
+
# subsequent actions depend on the request body contents:
|
18801
|
+
#
|
18802
|
+
# * **If a code is provided**: Connect retrieves the identity
|
18803
|
+
# information from Amazon Cognito and imports it into Connect Customer
|
18804
|
+
# Profiles.
|
18805
|
+
#
|
18806
|
+
# * **If an error is provided**: The error branch of the Authenticate
|
18807
|
+
# Customer block is executed.
|
18808
|
+
#
|
18809
|
+
# <note markdown="1"> The API returns a success response to acknowledge the request.
|
18810
|
+
# However, the interaction and exchange of identity information occur
|
18811
|
+
# asynchronously after the response is returned.
|
18812
|
+
#
|
18813
|
+
# </note>
|
18814
|
+
#
|
18815
|
+
# @option params [required, String] :state
|
18816
|
+
# The `state` query parameter that was provided by Cognito in the
|
18817
|
+
# `redirectUri`. This will also match the `state` parameter provided in
|
18818
|
+
# the `AuthenticationUrl` from the [GetAuthenticationUrl][1] response.
|
18819
|
+
#
|
18820
|
+
#
|
18821
|
+
#
|
18822
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetAuthenticationUrl.html
|
18823
|
+
#
|
18824
|
+
# @option params [required, String] :instance_id
|
18825
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
18826
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
18827
|
+
#
|
18828
|
+
#
|
18829
|
+
#
|
18830
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
18831
|
+
#
|
18832
|
+
# @option params [String] :code
|
18833
|
+
# The `code` query parameter provided by Cognito in the `redirectUri`.
|
18834
|
+
#
|
18835
|
+
# @option params [String] :error
|
18836
|
+
# The `error` query parameter provided by Cognito in the `redirectUri`.
|
18837
|
+
#
|
18838
|
+
# @option params [String] :error_description
|
18839
|
+
# The `error_description` parameter provided by Cognito in the
|
18840
|
+
# `redirectUri`.
|
18841
|
+
#
|
18842
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
18843
|
+
#
|
18844
|
+
# @example Request syntax with placeholder values
|
18845
|
+
#
|
18846
|
+
# resp = client.update_participant_authentication({
|
18847
|
+
# state: "ParticipantToken", # required
|
18848
|
+
# instance_id: "InstanceId", # required
|
18849
|
+
# code: "AuthorizationCode",
|
18850
|
+
# error: "AuthenticationError",
|
18851
|
+
# error_description: "AuthenticationErrorDescription",
|
18852
|
+
# })
|
18853
|
+
#
|
18854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateParticipantAuthentication AWS API Documentation
|
18855
|
+
#
|
18856
|
+
# @overload update_participant_authentication(params = {})
|
18857
|
+
# @param [Hash] params ({})
|
18858
|
+
def update_participant_authentication(params = {}, options = {})
|
18859
|
+
req = build_request(:update_participant_authentication, params)
|
18860
|
+
req.send_request(options)
|
18861
|
+
end
|
18862
|
+
|
18764
18863
|
# Updates timeouts for when human chat participants are to be considered
|
18765
18864
|
# idle, and when agents are automatically disconnected from a chat due
|
18766
18865
|
# to idleness. You can set four timers:
|
@@ -20500,7 +20599,7 @@ module Aws::Connect
|
|
20500
20599
|
tracer: tracer
|
20501
20600
|
)
|
20502
20601
|
context[:gem_name] = 'aws-sdk-connect'
|
20503
|
-
context[:gem_version] = '1.
|
20602
|
+
context[:gem_version] = '1.192.0'
|
20504
20603
|
Seahorse::Client::Request.new(handlers, context)
|
20505
20604
|
end
|
20506
20605
|
|
@@ -118,12 +118,15 @@ module Aws::Connect
|
|
118
118
|
AudioFeatures = Shapes::StructureShape.new(name: 'AudioFeatures')
|
119
119
|
AudioQualityMetricsInfo = Shapes::StructureShape.new(name: 'AudioQualityMetricsInfo')
|
120
120
|
AudioQualityScore = Shapes::FloatShape.new(name: 'AudioQualityScore')
|
121
|
+
AuthenticationError = Shapes::StringShape.new(name: 'AuthenticationError')
|
122
|
+
AuthenticationErrorDescription = Shapes::StringShape.new(name: 'AuthenticationErrorDescription')
|
121
123
|
AuthenticationProfile = Shapes::StructureShape.new(name: 'AuthenticationProfile')
|
122
124
|
AuthenticationProfileDescription = Shapes::StringShape.new(name: 'AuthenticationProfileDescription')
|
123
125
|
AuthenticationProfileId = Shapes::StringShape.new(name: 'AuthenticationProfileId')
|
124
126
|
AuthenticationProfileName = Shapes::StringShape.new(name: 'AuthenticationProfileName')
|
125
127
|
AuthenticationProfileSummary = Shapes::StructureShape.new(name: 'AuthenticationProfileSummary')
|
126
128
|
AuthenticationProfileSummaryList = Shapes::ListShape.new(name: 'AuthenticationProfileSummaryList')
|
129
|
+
AuthorizationCode = Shapes::StringShape.new(name: 'AuthorizationCode')
|
127
130
|
AutoAccept = Shapes::BooleanShape.new(name: 'AutoAccept')
|
128
131
|
AvailableNumberSummary = Shapes::StructureShape.new(name: 'AvailableNumberSummary')
|
129
132
|
AvailableNumbersList = Shapes::ListShape.new(name: 'AvailableNumbersList')
|
@@ -309,6 +312,8 @@ module Aws::Connect
|
|
309
312
|
CurrentMetricSortCriteriaMaxOne = Shapes::ListShape.new(name: 'CurrentMetricSortCriteriaMaxOne')
|
310
313
|
CurrentMetrics = Shapes::ListShape.new(name: 'CurrentMetrics')
|
311
314
|
Customer = Shapes::StructureShape.new(name: 'Customer')
|
315
|
+
CustomerId = Shapes::StringShape.new(name: 'CustomerId')
|
316
|
+
CustomerIdNonEmpty = Shapes::StringShape.new(name: 'CustomerIdNonEmpty')
|
312
317
|
CustomerProfileAttributesSerialized = Shapes::StringShape.new(name: 'CustomerProfileAttributesSerialized')
|
313
318
|
CustomerQualityMetrics = Shapes::StructureShape.new(name: 'CustomerQualityMetrics')
|
314
319
|
CustomerVoiceActivity = Shapes::StructureShape.new(name: 'CustomerVoiceActivity')
|
@@ -1008,6 +1013,7 @@ module Aws::Connect
|
|
1008
1013
|
QuickConnectType = Shapes::StringShape.new(name: 'QuickConnectType')
|
1009
1014
|
QuickConnectTypes = Shapes::ListShape.new(name: 'QuickConnectTypes')
|
1010
1015
|
QuickConnectsList = Shapes::ListShape.new(name: 'QuickConnectsList')
|
1016
|
+
Range = Shapes::StructureShape.new(name: 'Range')
|
1011
1017
|
ReadOnlyFieldInfo = Shapes::StructureShape.new(name: 'ReadOnlyFieldInfo')
|
1012
1018
|
ReadOnlyTaskTemplateFields = Shapes::ListShape.new(name: 'ReadOnlyTaskTemplateFields')
|
1013
1019
|
RealTimeContactAnalysisAttachment = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisAttachment')
|
@@ -1389,6 +1395,8 @@ module Aws::Connect
|
|
1389
1395
|
UpdateHoursOfOperationRequest = Shapes::StructureShape.new(name: 'UpdateHoursOfOperationRequest')
|
1390
1396
|
UpdateInstanceAttributeRequest = Shapes::StructureShape.new(name: 'UpdateInstanceAttributeRequest')
|
1391
1397
|
UpdateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'UpdateInstanceStorageConfigRequest')
|
1398
|
+
UpdateParticipantAuthenticationRequest = Shapes::StructureShape.new(name: 'UpdateParticipantAuthenticationRequest')
|
1399
|
+
UpdateParticipantAuthenticationResponse = Shapes::StructureShape.new(name: 'UpdateParticipantAuthenticationResponse')
|
1392
1400
|
UpdateParticipantRoleConfigChannelInfo = Shapes::UnionShape.new(name: 'UpdateParticipantRoleConfigChannelInfo')
|
1393
1401
|
UpdateParticipantRoleConfigRequest = Shapes::StructureShape.new(name: 'UpdateParticipantRoleConfigRequest')
|
1394
1402
|
UpdateParticipantRoleConfigResponse = Shapes::StructureShape.new(name: 'UpdateParticipantRoleConfigResponse')
|
@@ -1791,6 +1799,7 @@ module Aws::Connect
|
|
1791
1799
|
AttributeCondition.add_member(:name, Shapes::ShapeRef.new(shape: PredefinedAttributeName, location_name: "Name"))
|
1792
1800
|
AttributeCondition.add_member(:value, Shapes::ShapeRef.new(shape: ProficiencyValue, location_name: "Value"))
|
1793
1801
|
AttributeCondition.add_member(:proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "ProficiencyLevel"))
|
1802
|
+
AttributeCondition.add_member(:range, Shapes::ShapeRef.new(shape: Range, location_name: "Range"))
|
1794
1803
|
AttributeCondition.add_member(:match_criteria, Shapes::ShapeRef.new(shape: MatchCriteria, location_name: "MatchCriteria"))
|
1795
1804
|
AttributeCondition.add_member(:comparison_operator, Shapes::ShapeRef.new(shape: ComparisonOperator, location_name: "ComparisonOperator"))
|
1796
1805
|
AttributeCondition.struct_class = Types::AttributeCondition
|
@@ -1983,6 +1992,7 @@ module Aws::Connect
|
|
1983
1992
|
Contact.add_member(:scheduled_timestamp, Shapes::ShapeRef.new(shape: timestamp, location_name: "ScheduledTimestamp"))
|
1984
1993
|
Contact.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
1985
1994
|
Contact.add_member(:wisdom_info, Shapes::ShapeRef.new(shape: WisdomInfo, location_name: "WisdomInfo"))
|
1995
|
+
Contact.add_member(:customer_id, Shapes::ShapeRef.new(shape: CustomerId, location_name: "CustomerId"))
|
1986
1996
|
Contact.add_member(:customer_endpoint, Shapes::ShapeRef.new(shape: EndpointInfo, location_name: "CustomerEndpoint"))
|
1987
1997
|
Contact.add_member(:system_endpoint, Shapes::ShapeRef.new(shape: EndpointInfo, location_name: "SystemEndpoint"))
|
1988
1998
|
Contact.add_member(:queue_time_adjustment_seconds, Shapes::ShapeRef.new(shape: QueueTimeAdjustmentSeconds, location_name: "QueueTimeAdjustmentSeconds"))
|
@@ -3333,6 +3343,7 @@ module Aws::Connect
|
|
3333
3343
|
Expression.add_member(:attribute_condition, Shapes::ShapeRef.new(shape: AttributeCondition, location_name: "AttributeCondition"))
|
3334
3344
|
Expression.add_member(:and_expression, Shapes::ShapeRef.new(shape: Expressions, location_name: "AndExpression"))
|
3335
3345
|
Expression.add_member(:or_expression, Shapes::ShapeRef.new(shape: Expressions, location_name: "OrExpression"))
|
3346
|
+
Expression.add_member(:not_attribute_condition, Shapes::ShapeRef.new(shape: AttributeCondition, location_name: "NotAttributeCondition"))
|
3336
3347
|
Expression.struct_class = Types::Expression
|
3337
3348
|
|
3338
3349
|
Expressions.member = Shapes::ShapeRef.new(shape: Expression)
|
@@ -4731,6 +4742,10 @@ module Aws::Connect
|
|
4731
4742
|
|
4732
4743
|
QuickConnectsList.member = Shapes::ShapeRef.new(shape: QuickConnectId)
|
4733
4744
|
|
4745
|
+
Range.add_member(:min_proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "MinProficiencyLevel"))
|
4746
|
+
Range.add_member(:max_proficiency_level, Shapes::ShapeRef.new(shape: NullableProficiencyLevel, location_name: "MaxProficiencyLevel"))
|
4747
|
+
Range.struct_class = Types::Range
|
4748
|
+
|
4734
4749
|
ReadOnlyFieldInfo.add_member(:id, Shapes::ShapeRef.new(shape: TaskTemplateFieldIdentifier, location_name: "Id"))
|
4735
4750
|
ReadOnlyFieldInfo.struct_class = Types::ReadOnlyFieldInfo
|
4736
4751
|
|
@@ -5487,6 +5502,7 @@ module Aws::Connect
|
|
5487
5502
|
StartChatContactRequest.add_member(:persistent_chat, Shapes::ShapeRef.new(shape: PersistentChat, location_name: "PersistentChat"))
|
5488
5503
|
StartChatContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
|
5489
5504
|
StartChatContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
|
5505
|
+
StartChatContactRequest.add_member(:customer_id, Shapes::ShapeRef.new(shape: CustomerIdNonEmpty, location_name: "CustomerId"))
|
5490
5506
|
StartChatContactRequest.struct_class = Types::StartChatContactRequest
|
5491
5507
|
|
5492
5508
|
StartChatContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
@@ -6029,6 +6045,15 @@ module Aws::Connect
|
|
6029
6045
|
UpdateInstanceStorageConfigRequest.add_member(:storage_config, Shapes::ShapeRef.new(shape: InstanceStorageConfig, required: true, location_name: "StorageConfig"))
|
6030
6046
|
UpdateInstanceStorageConfigRequest.struct_class = Types::UpdateInstanceStorageConfigRequest
|
6031
6047
|
|
6048
|
+
UpdateParticipantAuthenticationRequest.add_member(:state, Shapes::ShapeRef.new(shape: ParticipantToken, required: true, location_name: "State"))
|
6049
|
+
UpdateParticipantAuthenticationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
6050
|
+
UpdateParticipantAuthenticationRequest.add_member(:code, Shapes::ShapeRef.new(shape: AuthorizationCode, location_name: "Code"))
|
6051
|
+
UpdateParticipantAuthenticationRequest.add_member(:error, Shapes::ShapeRef.new(shape: AuthenticationError, location_name: "Error"))
|
6052
|
+
UpdateParticipantAuthenticationRequest.add_member(:error_description, Shapes::ShapeRef.new(shape: AuthenticationErrorDescription, location_name: "ErrorDescription"))
|
6053
|
+
UpdateParticipantAuthenticationRequest.struct_class = Types::UpdateParticipantAuthenticationRequest
|
6054
|
+
|
6055
|
+
UpdateParticipantAuthenticationResponse.struct_class = Types::UpdateParticipantAuthenticationResponse
|
6056
|
+
|
6032
6057
|
UpdateParticipantRoleConfigChannelInfo.add_member(:chat, Shapes::ShapeRef.new(shape: ChatParticipantRoleConfig, location_name: "Chat"))
|
6033
6058
|
UpdateParticipantRoleConfigChannelInfo.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
6034
6059
|
UpdateParticipantRoleConfigChannelInfo.add_member_subclass(:chat, Types::UpdateParticipantRoleConfigChannelInfo::Chat)
|
@@ -10229,6 +10254,20 @@ module Aws::Connect
|
|
10229
10254
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
10230
10255
|
end)
|
10231
10256
|
|
10257
|
+
api.add_operation(:update_participant_authentication, Seahorse::Model::Operation.new.tap do |o|
|
10258
|
+
o.name = "UpdateParticipantAuthentication"
|
10259
|
+
o.http_method = "POST"
|
10260
|
+
o.http_request_uri = "/contact/update-participant-authentication"
|
10261
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateParticipantAuthenticationRequest)
|
10262
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateParticipantAuthenticationResponse)
|
10263
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
10264
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
10265
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
10266
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
10267
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
10268
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
10269
|
+
end)
|
10270
|
+
|
10232
10271
|
api.add_operation(:update_participant_role_config, Seahorse::Model::Operation.new.tap do |o|
|
10233
10272
|
o.name = "UpdateParticipantRoleConfig"
|
10234
10273
|
o.http_method = "PUT"
|
@@ -1330,6 +1330,10 @@ module Aws::Connect
|
|
1330
1330
|
# The proficiency level of the condition.
|
1331
1331
|
# @return [Float]
|
1332
1332
|
#
|
1333
|
+
# @!attribute [rw] range
|
1334
|
+
# An Object to define the minimum and maximum proficiency levels.
|
1335
|
+
# @return [Types::Range]
|
1336
|
+
#
|
1333
1337
|
# @!attribute [rw] match_criteria
|
1334
1338
|
# An object to define `AgentsCriteria`.
|
1335
1339
|
# @return [Types::MatchCriteria]
|
@@ -1344,6 +1348,7 @@ module Aws::Connect
|
|
1344
1348
|
:name,
|
1345
1349
|
:value,
|
1346
1350
|
:proficiency_level,
|
1351
|
+
:range,
|
1347
1352
|
:match_criteria,
|
1348
1353
|
:comparison_operator)
|
1349
1354
|
SENSITIVE = []
|
@@ -2381,6 +2386,14 @@ module Aws::Connect
|
|
2381
2386
|
# Information about Amazon Connect Wisdom.
|
2382
2387
|
# @return [Types::WisdomInfo]
|
2383
2388
|
#
|
2389
|
+
# @!attribute [rw] customer_id
|
2390
|
+
# The customer's identification number. For example, the `CustomerId`
|
2391
|
+
# may be a customer number from your CRM. You can create a Lambda
|
2392
|
+
# function to pull the unique customer ID of the caller from your CRM
|
2393
|
+
# system. If you enable Amazon Connect Voice ID capability, this
|
2394
|
+
# attribute is populated with the `CustomerSpeakerId` of the caller.
|
2395
|
+
# @return [String]
|
2396
|
+
#
|
2384
2397
|
# @!attribute [rw] customer_endpoint
|
2385
2398
|
# The customer or external third party participant endpoint.
|
2386
2399
|
# @return [Types::EndpointInfo]
|
@@ -2489,6 +2502,7 @@ module Aws::Connect
|
|
2489
2502
|
:scheduled_timestamp,
|
2490
2503
|
:related_contact_id,
|
2491
2504
|
:wisdom_info,
|
2505
|
+
:customer_id,
|
2492
2506
|
:customer_endpoint,
|
2493
2507
|
:system_endpoint,
|
2494
2508
|
:queue_time_adjustment_seconds,
|
@@ -9103,12 +9117,17 @@ module Aws::Connect
|
|
9103
9117
|
# List of routing expressions which will be OR-ed together.
|
9104
9118
|
# @return [Array<Types::Expression>]
|
9105
9119
|
#
|
9120
|
+
# @!attribute [rw] not_attribute_condition
|
9121
|
+
# An object to specify the predefined attribute condition.
|
9122
|
+
# @return [Types::AttributeCondition]
|
9123
|
+
#
|
9106
9124
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Expression AWS API Documentation
|
9107
9125
|
#
|
9108
9126
|
class Expression < Struct.new(
|
9109
9127
|
:attribute_condition,
|
9110
9128
|
:and_expression,
|
9111
|
-
:or_expression
|
9129
|
+
:or_expression,
|
9130
|
+
:not_attribute_condition)
|
9112
9131
|
SENSITIVE = []
|
9113
9132
|
include Aws::Structure
|
9114
9133
|
end
|
@@ -17738,6 +17757,25 @@ module Aws::Connect
|
|
17738
17757
|
include Aws::Structure
|
17739
17758
|
end
|
17740
17759
|
|
17760
|
+
# An Object to define the minimum and maximum proficiency levels.
|
17761
|
+
#
|
17762
|
+
# @!attribute [rw] min_proficiency_level
|
17763
|
+
# The minimum proficiency level of the range.
|
17764
|
+
# @return [Float]
|
17765
|
+
#
|
17766
|
+
# @!attribute [rw] max_proficiency_level
|
17767
|
+
# The maximum proficiency level of the range.
|
17768
|
+
# @return [Float]
|
17769
|
+
#
|
17770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Range AWS API Documentation
|
17771
|
+
#
|
17772
|
+
class Range < Struct.new(
|
17773
|
+
:min_proficiency_level,
|
17774
|
+
:max_proficiency_level)
|
17775
|
+
SENSITIVE = []
|
17776
|
+
include Aws::Structure
|
17777
|
+
end
|
17778
|
+
|
17741
17779
|
# Indicates a field that is read-only to an agent.
|
17742
17780
|
#
|
17743
17781
|
# @!attribute [rw] id
|
@@ -21334,7 +21372,7 @@ module Aws::Connect
|
|
21334
21372
|
# @return [Types::CreatedByInfo]
|
21335
21373
|
#
|
21336
21374
|
# @!attribute [rw] upload_url_metadata
|
21337
|
-
#
|
21375
|
+
# The headers to be provided while uploading the file to the URL.
|
21338
21376
|
# @return [Types::UploadUrlMetadata]
|
21339
21377
|
#
|
21340
21378
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartAttachedFileUploadResponse AWS API Documentation
|
@@ -21473,6 +21511,11 @@ module Aws::Connect
|
|
21473
21511
|
# </note>
|
21474
21512
|
# @return [Hash<String,Types::SegmentAttributeValue>]
|
21475
21513
|
#
|
21514
|
+
# @!attribute [rw] customer_id
|
21515
|
+
# The customer's identification number. For example, the `CustomerId`
|
21516
|
+
# may be a customer number from your CRM.
|
21517
|
+
# @return [String]
|
21518
|
+
#
|
21476
21519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartChatContactRequest AWS API Documentation
|
21477
21520
|
#
|
21478
21521
|
class StartChatContactRequest < Struct.new(
|
@@ -21486,8 +21529,9 @@ module Aws::Connect
|
|
21486
21529
|
:supported_messaging_content_types,
|
21487
21530
|
:persistent_chat,
|
21488
21531
|
:related_contact_id,
|
21489
|
-
:segment_attributes
|
21490
|
-
|
21532
|
+
:segment_attributes,
|
21533
|
+
:customer_id)
|
21534
|
+
SENSITIVE = [:customer_id]
|
21491
21535
|
include Aws::Structure
|
21492
21536
|
end
|
21493
21537
|
|
@@ -24503,6 +24547,56 @@ module Aws::Connect
|
|
24503
24547
|
include Aws::Structure
|
24504
24548
|
end
|
24505
24549
|
|
24550
|
+
# @!attribute [rw] state
|
24551
|
+
# The `state` query parameter that was provided by Cognito in the
|
24552
|
+
# `redirectUri`. This will also match the `state` parameter provided
|
24553
|
+
# in the `AuthenticationUrl` from the [GetAuthenticationUrl][1]
|
24554
|
+
# response.
|
24555
|
+
#
|
24556
|
+
#
|
24557
|
+
#
|
24558
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/API_GetAuthenticationUrl.html
|
24559
|
+
# @return [String]
|
24560
|
+
#
|
24561
|
+
# @!attribute [rw] instance_id
|
24562
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
24563
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
24564
|
+
#
|
24565
|
+
#
|
24566
|
+
#
|
24567
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
24568
|
+
# @return [String]
|
24569
|
+
#
|
24570
|
+
# @!attribute [rw] code
|
24571
|
+
# The `code` query parameter provided by Cognito in the `redirectUri`.
|
24572
|
+
# @return [String]
|
24573
|
+
#
|
24574
|
+
# @!attribute [rw] error
|
24575
|
+
# The `error` query parameter provided by Cognito in the
|
24576
|
+
# `redirectUri`.
|
24577
|
+
# @return [String]
|
24578
|
+
#
|
24579
|
+
# @!attribute [rw] error_description
|
24580
|
+
# The `error_description` parameter provided by Cognito in the
|
24581
|
+
# `redirectUri`.
|
24582
|
+
# @return [String]
|
24583
|
+
#
|
24584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateParticipantAuthenticationRequest AWS API Documentation
|
24585
|
+
#
|
24586
|
+
class UpdateParticipantAuthenticationRequest < Struct.new(
|
24587
|
+
:state,
|
24588
|
+
:instance_id,
|
24589
|
+
:code,
|
24590
|
+
:error,
|
24591
|
+
:error_description)
|
24592
|
+
SENSITIVE = [:code, :error, :error_description]
|
24593
|
+
include Aws::Structure
|
24594
|
+
end
|
24595
|
+
|
24596
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateParticipantAuthenticationResponse AWS API Documentation
|
24597
|
+
#
|
24598
|
+
class UpdateParticipantAuthenticationResponse < Aws::EmptyStructure; end
|
24599
|
+
|
24506
24600
|
# Configuration information for the chat participant role.
|
24507
24601
|
#
|
24508
24602
|
# @note UpdateParticipantRoleConfigChannelInfo is a union - when making an API calls you must set exactly one of the members.
|
@@ -26756,6 +26850,9 @@ module Aws::Connect
|
|
26756
26850
|
#
|
26757
26851
|
# @!attribute [rw] ivr_recording_track
|
26758
26852
|
# Identifies which IVR track is being recorded.
|
26853
|
+
#
|
26854
|
+
# One and only one of the track configurations should be presented in
|
26855
|
+
# the request.
|
26759
26856
|
# @return [String]
|
26760
26857
|
#
|
26761
26858
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/VoiceRecordingConfiguration AWS API Documentation
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -655,7 +655,7 @@ module Aws
|
|
655
655
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
656
656
|
def create_integration_association: (
|
657
657
|
instance_id: ::String,
|
658
|
-
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
|
658
|
+
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL"),
|
659
659
|
integration_arn: ::String,
|
660
660
|
?source_application_url: ::String,
|
661
661
|
?source_application_name: ::String,
|
@@ -1491,7 +1491,7 @@ module Aws
|
|
1491
1491
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance_attribute-instance_method
|
1492
1492
|
def describe_instance_attribute: (
|
1493
1493
|
instance_id: ::String,
|
1494
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
1494
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
1495
1495
|
) -> _DescribeInstanceAttributeResponseSuccess
|
1496
1496
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceAttributeResponseSuccess
|
1497
1497
|
|
@@ -2348,7 +2348,7 @@ module Aws
|
|
2348
2348
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
2349
2349
|
def list_integration_associations: (
|
2350
2350
|
instance_id: ::String,
|
2351
|
-
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
|
2351
|
+
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL"),
|
2352
2352
|
?next_token: ::String,
|
2353
2353
|
?max_results: ::Integer,
|
2354
2354
|
?integration_arn: ::String
|
@@ -3813,7 +3813,8 @@ module Aws
|
|
3813
3813
|
value_string: ::String?,
|
3814
3814
|
value_map: Hash[::String, untyped]?,
|
3815
3815
|
value_integer: ::Integer?
|
3816
|
-
}]
|
3816
|
+
}],
|
3817
|
+
?customer_id: ::String
|
3817
3818
|
) -> _StartChatContactResponseSuccess
|
3818
3819
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
|
3819
3820
|
|
@@ -4413,6 +4414,10 @@ module Aws
|
|
4413
4414
|
name: ::String?,
|
4414
4415
|
value: ::String?,
|
4415
4416
|
proficiency_level: ::Float?,
|
4417
|
+
range: {
|
4418
|
+
min_proficiency_level: ::Float?,
|
4419
|
+
max_proficiency_level: ::Float?
|
4420
|
+
}?,
|
4416
4421
|
match_criteria: {
|
4417
4422
|
agents_criteria: {
|
4418
4423
|
agent_ids: Array[::String]?
|
@@ -4425,7 +4430,22 @@ module Aws
|
|
4425
4430
|
]?,
|
4426
4431
|
or_expression: Array[
|
4427
4432
|
untyped,
|
4428
|
-
]
|
4433
|
+
]?,
|
4434
|
+
not_attribute_condition: {
|
4435
|
+
name: ::String?,
|
4436
|
+
value: ::String?,
|
4437
|
+
proficiency_level: ::Float?,
|
4438
|
+
range: {
|
4439
|
+
min_proficiency_level: ::Float?,
|
4440
|
+
max_proficiency_level: ::Float?
|
4441
|
+
}?,
|
4442
|
+
match_criteria: {
|
4443
|
+
agents_criteria: {
|
4444
|
+
agent_ids: Array[::String]?
|
4445
|
+
}?
|
4446
|
+
}?,
|
4447
|
+
comparison_operator: ::String?
|
4448
|
+
}?
|
4429
4449
|
}?
|
4430
4450
|
},
|
4431
4451
|
]?
|
@@ -4593,7 +4613,7 @@ module Aws
|
|
4593
4613
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_instance_attribute-instance_method
|
4594
4614
|
def update_instance_attribute: (
|
4595
4615
|
instance_id: ::String,
|
4596
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING"),
|
4616
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE"),
|
4597
4617
|
value: ::String
|
4598
4618
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4599
4619
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -4632,6 +4652,19 @@ module Aws
|
|
4632
4652
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4633
4653
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4634
4654
|
|
4655
|
+
interface _UpdateParticipantAuthenticationResponseSuccess
|
4656
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateParticipantAuthenticationResponse]
|
4657
|
+
end
|
4658
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_participant_authentication-instance_method
|
4659
|
+
def update_participant_authentication: (
|
4660
|
+
state: ::String,
|
4661
|
+
instance_id: ::String,
|
4662
|
+
?code: ::String,
|
4663
|
+
?error: ::String,
|
4664
|
+
?error_description: ::String
|
4665
|
+
) -> _UpdateParticipantAuthenticationResponseSuccess
|
4666
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateParticipantAuthenticationResponseSuccess
|
4667
|
+
|
4635
4668
|
interface _UpdateParticipantRoleConfigResponseSuccess
|
4636
4669
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateParticipantRoleConfigResponse]
|
4637
4670
|
end
|
data/sig/types.rbs
CHANGED
@@ -331,7 +331,7 @@ module Aws::Connect
|
|
331
331
|
end
|
332
332
|
|
333
333
|
class Attribute
|
334
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
334
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
335
335
|
attr_accessor value: ::String
|
336
336
|
SENSITIVE: []
|
337
337
|
end
|
@@ -346,6 +346,7 @@ module Aws::Connect
|
|
346
346
|
attr_accessor name: ::String
|
347
347
|
attr_accessor value: ::String
|
348
348
|
attr_accessor proficiency_level: ::Float
|
349
|
+
attr_accessor range: Types::Range
|
349
350
|
attr_accessor match_criteria: Types::MatchCriteria
|
350
351
|
attr_accessor comparison_operator: ::String
|
351
352
|
SENSITIVE: []
|
@@ -577,6 +578,7 @@ module Aws::Connect
|
|
577
578
|
attr_accessor scheduled_timestamp: ::Time
|
578
579
|
attr_accessor related_contact_id: ::String
|
579
580
|
attr_accessor wisdom_info: Types::WisdomInfo
|
581
|
+
attr_accessor customer_id: ::String
|
580
582
|
attr_accessor customer_endpoint: Types::EndpointInfo
|
581
583
|
attr_accessor system_endpoint: Types::EndpointInfo
|
582
584
|
attr_accessor queue_time_adjustment_seconds: ::Integer
|
@@ -949,7 +951,7 @@ module Aws::Connect
|
|
949
951
|
|
950
952
|
class CreateIntegrationAssociationRequest
|
951
953
|
attr_accessor instance_id: ::String
|
952
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
954
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL")
|
953
955
|
attr_accessor integration_arn: ::String
|
954
956
|
attr_accessor source_application_url: ::String
|
955
957
|
attr_accessor source_application_name: ::String
|
@@ -1666,7 +1668,7 @@ module Aws::Connect
|
|
1666
1668
|
|
1667
1669
|
class DescribeInstanceAttributeRequest
|
1668
1670
|
attr_accessor instance_id: ::String
|
1669
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
1671
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
1670
1672
|
SENSITIVE: []
|
1671
1673
|
end
|
1672
1674
|
|
@@ -2347,6 +2349,7 @@ module Aws::Connect
|
|
2347
2349
|
attr_accessor attribute_condition: Types::AttributeCondition
|
2348
2350
|
attr_accessor and_expression: ::Array[Types::Expression]
|
2349
2351
|
attr_accessor or_expression: ::Array[Types::Expression]
|
2352
|
+
attr_accessor not_attribute_condition: Types::AttributeCondition
|
2350
2353
|
SENSITIVE: []
|
2351
2354
|
end
|
2352
2355
|
|
@@ -2865,7 +2868,7 @@ module Aws::Connect
|
|
2865
2868
|
attr_accessor integration_association_id: ::String
|
2866
2869
|
attr_accessor integration_association_arn: ::String
|
2867
2870
|
attr_accessor instance_id: ::String
|
2868
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
2871
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL")
|
2869
2872
|
attr_accessor integration_arn: ::String
|
2870
2873
|
attr_accessor source_application_url: ::String
|
2871
2874
|
attr_accessor source_application_name: ::String
|
@@ -3242,7 +3245,7 @@ module Aws::Connect
|
|
3242
3245
|
|
3243
3246
|
class ListIntegrationAssociationsRequest
|
3244
3247
|
attr_accessor instance_id: ::String
|
3245
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
3248
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR" | "COGNITO_USER_POOL")
|
3246
3249
|
attr_accessor next_token: ::String
|
3247
3250
|
attr_accessor max_results: ::Integer
|
3248
3251
|
attr_accessor integration_arn: ::String
|
@@ -4108,6 +4111,12 @@ module Aws::Connect
|
|
4108
4111
|
SENSITIVE: []
|
4109
4112
|
end
|
4110
4113
|
|
4114
|
+
class Range
|
4115
|
+
attr_accessor min_proficiency_level: ::Float
|
4116
|
+
attr_accessor max_proficiency_level: ::Float
|
4117
|
+
SENSITIVE: []
|
4118
|
+
end
|
4119
|
+
|
4111
4120
|
class ReadOnlyFieldInfo
|
4112
4121
|
attr_accessor id: Types::TaskTemplateFieldIdentifier
|
4113
4122
|
SENSITIVE: []
|
@@ -5030,7 +5039,8 @@ module Aws::Connect
|
|
5030
5039
|
attr_accessor persistent_chat: Types::PersistentChat
|
5031
5040
|
attr_accessor related_contact_id: ::String
|
5032
5041
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
5033
|
-
|
5042
|
+
attr_accessor customer_id: ::String
|
5043
|
+
SENSITIVE: [:customer_id]
|
5034
5044
|
end
|
5035
5045
|
|
5036
5046
|
class StartChatContactResponse
|
@@ -5704,7 +5714,7 @@ module Aws::Connect
|
|
5704
5714
|
|
5705
5715
|
class UpdateInstanceAttributeRequest
|
5706
5716
|
attr_accessor instance_id: ::String
|
5707
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
5717
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
5708
5718
|
attr_accessor value: ::String
|
5709
5719
|
SENSITIVE: []
|
5710
5720
|
end
|
@@ -5717,6 +5727,18 @@ module Aws::Connect
|
|
5717
5727
|
SENSITIVE: []
|
5718
5728
|
end
|
5719
5729
|
|
5730
|
+
class UpdateParticipantAuthenticationRequest
|
5731
|
+
attr_accessor state: ::String
|
5732
|
+
attr_accessor instance_id: ::String
|
5733
|
+
attr_accessor code: ::String
|
5734
|
+
attr_accessor error: ::String
|
5735
|
+
attr_accessor error_description: ::String
|
5736
|
+
SENSITIVE: [:code, :error, :error_description]
|
5737
|
+
end
|
5738
|
+
|
5739
|
+
class UpdateParticipantAuthenticationResponse < Aws::EmptyStructure
|
5740
|
+
end
|
5741
|
+
|
5720
5742
|
class UpdateParticipantRoleConfigChannelInfo
|
5721
5743
|
attr_accessor chat: Types::ChatParticipantRoleConfig
|
5722
5744
|
attr_accessor unknown: untyped
|
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.
|
4
|
+
version: 1.192.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: 2024-12-
|
11
|
+
date: 2024-12-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|