aws-sdk-connect 1.260.0 → 1.261.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +189 -4
- data/lib/aws-sdk-connect/client_api.rb +105 -0
- data/lib/aws-sdk-connect/types.rb +287 -0
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +54 -2
- data/sig/types.rbs +73 -3
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 76c8fedd0dbf5cc265b4b8b6eb5914be1ed4639dd0ff40cb50e6bd372c72048e
|
|
4
|
+
data.tar.gz: 76679916abed9570098093834424d8c7927680ebc3e56f22ac7e8d6bf413130b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 15b879edfce25db29b6bd5d058776eee8864f961c34defdec0dc112960e3b453167f61a4b43b22b63a346f5c19adc60d7ffada0f0a17387238f4e27e7dfd43a8
|
|
7
|
+
data.tar.gz: 6baf8ae203f9cebb9a39508f4f9d1b632bdac899c0d611a935ab90e5fabd041e8a24213379eea9ff2d615f02268b08df8271e1b2be567f65024223b9603bd575
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.261.0 (2026-06-30)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect - Added CreateAttachedFile and StartContactConversationalAnalyticsJob APIs to import call recordings and run conversational analytics.
|
|
8
|
+
|
|
4
9
|
1.260.0 (2026-06-19)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.261.0
|
|
@@ -2049,7 +2049,7 @@ module Aws::Connect
|
|
|
2049
2049
|
# resp.files[0].file_status #=> String, one of "APPROVED", "REJECTED", "PROCESSING", "FAILED"
|
|
2050
2050
|
# resp.files[0].created_by.connect_user_arn #=> String
|
|
2051
2051
|
# resp.files[0].created_by.aws_identity_arn #=> String
|
|
2052
|
-
# resp.files[0].file_use_case_type #=> String, one of "CONTACT_ANALYSIS", "EMAIL_MESSAGE", "EMAIL_MESSAGE_PLAIN_TEXT", "EMAIL_MESSAGE_REDACTED", "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED", "ATTACHMENT"
|
|
2052
|
+
# resp.files[0].file_use_case_type #=> String, one of "CONTACT_ANALYSIS", "EMAIL_MESSAGE", "EMAIL_MESSAGE_PLAIN_TEXT", "EMAIL_MESSAGE_REDACTED", "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED", "ATTACHMENT", "VOICE_RECORDING"
|
|
2053
2053
|
# resp.files[0].associated_resource_arn #=> String
|
|
2054
2054
|
# resp.files[0].tags #=> Hash
|
|
2055
2055
|
# resp.files[0].tags["TagKey"] #=> String
|
|
@@ -2512,6 +2512,99 @@ module Aws::Connect
|
|
|
2512
2512
|
req.send_request(options)
|
|
2513
2513
|
end
|
|
2514
2514
|
|
|
2515
|
+
# Creates an attached file for a completed voice contact by copying a
|
|
2516
|
+
# recording from a source S3 URI into Connect Customer managed storage.
|
|
2517
|
+
# Use this API to attach voice recordings to contacts for downstream
|
|
2518
|
+
# processing such as conversational analytics.
|
|
2519
|
+
#
|
|
2520
|
+
# The `AssociatedResourceArn` must be the ARN of a completed voice
|
|
2521
|
+
# contact, `FileUseCaseType` must be set to `VOICE_RECORDING`, and
|
|
2522
|
+
# `FileSourceUri` must be a valid S3 URI.
|
|
2523
|
+
#
|
|
2524
|
+
# <note markdown="1"> For example, you can call `CreateContact`, then `CreateAttachedFile`,
|
|
2525
|
+
# then `StartContactConversationalAnalyticsJob` to create a contact,
|
|
2526
|
+
# attach a recording, and run post-call analytics.
|
|
2527
|
+
#
|
|
2528
|
+
# </note>
|
|
2529
|
+
#
|
|
2530
|
+
# @option params [String] :client_token
|
|
2531
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
2532
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
2533
|
+
# SDK populates this field. For more information about idempotency, see
|
|
2534
|
+
# [Making retries safe with idempotent APIs][1].
|
|
2535
|
+
#
|
|
2536
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
2537
|
+
# not need to pass this option.**
|
|
2538
|
+
#
|
|
2539
|
+
#
|
|
2540
|
+
#
|
|
2541
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
2542
|
+
#
|
|
2543
|
+
# @option params [required, String] :instance_id
|
|
2544
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
2545
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
2546
|
+
#
|
|
2547
|
+
#
|
|
2548
|
+
#
|
|
2549
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
2550
|
+
#
|
|
2551
|
+
# @option params [required, String] :file_use_case_type
|
|
2552
|
+
# The use case for the file.
|
|
2553
|
+
#
|
|
2554
|
+
# Only `VOICE_RECORDING` is supported.
|
|
2555
|
+
#
|
|
2556
|
+
# @option params [required, String] :file_source_uri
|
|
2557
|
+
# The S3 URI of the file to be attached. Only S3 source URIs are
|
|
2558
|
+
# supported.
|
|
2559
|
+
#
|
|
2560
|
+
# @option params [required, String] :associated_resource_arn
|
|
2561
|
+
# The ARN of the completed voice contact to attach the file to. Only
|
|
2562
|
+
# voice contacts with Telephony subtype are supported.
|
|
2563
|
+
#
|
|
2564
|
+
# <note markdown="1"> This value must be a valid ARN.
|
|
2565
|
+
#
|
|
2566
|
+
# </note>
|
|
2567
|
+
#
|
|
2568
|
+
# @option params [Hash<String,String>] :tags
|
|
2569
|
+
# The tags used to organize, track, or control access for this resource.
|
|
2570
|
+
# For example, `{ "Tags": {"key1":"value1", "key2":"value2"} }`.
|
|
2571
|
+
#
|
|
2572
|
+
# @return [Types::CreateAttachedFileResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2573
|
+
#
|
|
2574
|
+
# * {Types::CreateAttachedFileResponse#file_arn #file_arn} => String
|
|
2575
|
+
# * {Types::CreateAttachedFileResponse#file_id #file_id} => String
|
|
2576
|
+
# * {Types::CreateAttachedFileResponse#creation_time #creation_time} => String
|
|
2577
|
+
# * {Types::CreateAttachedFileResponse#file_status #file_status} => String
|
|
2578
|
+
#
|
|
2579
|
+
# @example Request syntax with placeholder values
|
|
2580
|
+
#
|
|
2581
|
+
# resp = client.create_attached_file({
|
|
2582
|
+
# client_token: "ClientToken",
|
|
2583
|
+
# instance_id: "InstanceId", # required
|
|
2584
|
+
# file_use_case_type: "CONTACT_ANALYSIS", # required, accepts CONTACT_ANALYSIS, EMAIL_MESSAGE, EMAIL_MESSAGE_PLAIN_TEXT, EMAIL_MESSAGE_REDACTED, EMAIL_MESSAGE_PLAIN_TEXT_REDACTED, ATTACHMENT, VOICE_RECORDING
|
|
2585
|
+
# file_source_uri: "FileSourceUri", # required
|
|
2586
|
+
# associated_resource_arn: "ARN", # required
|
|
2587
|
+
# tags: {
|
|
2588
|
+
# "TagKey" => "TagValue",
|
|
2589
|
+
# },
|
|
2590
|
+
# })
|
|
2591
|
+
#
|
|
2592
|
+
# @example Response structure
|
|
2593
|
+
#
|
|
2594
|
+
# resp.file_arn #=> String
|
|
2595
|
+
# resp.file_id #=> String
|
|
2596
|
+
# resp.creation_time #=> String
|
|
2597
|
+
# resp.file_status #=> String, one of "APPROVED", "REJECTED", "PROCESSING", "FAILED"
|
|
2598
|
+
#
|
|
2599
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAttachedFile AWS API Documentation
|
|
2600
|
+
#
|
|
2601
|
+
# @overload create_attached_file(params = {})
|
|
2602
|
+
# @param [Hash] params ({})
|
|
2603
|
+
def create_attached_file(params = {}, options = {})
|
|
2604
|
+
req = build_request(:create_attached_file, params)
|
|
2605
|
+
req.send_request(options)
|
|
2606
|
+
end
|
|
2607
|
+
|
|
2515
2608
|
# Only the VOICE, EMAIL, and TASK channels are supported.
|
|
2516
2609
|
#
|
|
2517
2610
|
# * For VOICE: The supported initiation method is `TRANSFER`. The
|
|
@@ -10914,7 +11007,7 @@ module Aws::Connect
|
|
|
10914
11007
|
# resp.file_name #=> String
|
|
10915
11008
|
# resp.file_size_in_bytes #=> Integer
|
|
10916
11009
|
# resp.associated_resource_arn #=> String
|
|
10917
|
-
# resp.file_use_case_type #=> String, one of "CONTACT_ANALYSIS", "EMAIL_MESSAGE", "EMAIL_MESSAGE_PLAIN_TEXT", "EMAIL_MESSAGE_REDACTED", "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED", "ATTACHMENT"
|
|
11010
|
+
# resp.file_use_case_type #=> String, one of "CONTACT_ANALYSIS", "EMAIL_MESSAGE", "EMAIL_MESSAGE_PLAIN_TEXT", "EMAIL_MESSAGE_REDACTED", "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED", "ATTACHMENT", "VOICE_RECORDING"
|
|
10918
11011
|
# resp.created_by.connect_user_arn #=> String
|
|
10919
11012
|
# resp.created_by.aws_identity_arn #=> String
|
|
10920
11013
|
# resp.download_url_metadata.url #=> String
|
|
@@ -22962,7 +23055,7 @@ module Aws::Connect
|
|
|
22962
23055
|
# file_name: "FileName", # required
|
|
22963
23056
|
# file_size_in_bytes: 1, # required
|
|
22964
23057
|
# url_expiry_in_seconds: 1,
|
|
22965
|
-
# file_use_case_type: "CONTACT_ANALYSIS", # required, accepts CONTACT_ANALYSIS, EMAIL_MESSAGE, EMAIL_MESSAGE_PLAIN_TEXT, EMAIL_MESSAGE_REDACTED, EMAIL_MESSAGE_PLAIN_TEXT_REDACTED, ATTACHMENT
|
|
23058
|
+
# file_use_case_type: "CONTACT_ANALYSIS", # required, accepts CONTACT_ANALYSIS, EMAIL_MESSAGE, EMAIL_MESSAGE_PLAIN_TEXT, EMAIL_MESSAGE_REDACTED, EMAIL_MESSAGE_PLAIN_TEXT_REDACTED, ATTACHMENT, VOICE_RECORDING
|
|
22966
23059
|
# associated_resource_arn: "ARN", # required
|
|
22967
23060
|
# created_by: {
|
|
22968
23061
|
# connect_user_arn: "ARN",
|
|
@@ -23225,6 +23318,98 @@ module Aws::Connect
|
|
|
23225
23318
|
req.send_request(options)
|
|
23226
23319
|
end
|
|
23227
23320
|
|
|
23321
|
+
# Starts a Contact Lens post-call analytics job for the specified
|
|
23322
|
+
# contact. This API runs Conversational Analytics post-contact analysis
|
|
23323
|
+
# on a voice recording that is already attached to the contact,
|
|
23324
|
+
# generating transcription, sentiment analysis, redaction, and
|
|
23325
|
+
# summarization results based on the provided configuration.
|
|
23326
|
+
#
|
|
23327
|
+
# A voice recording must already be attached to the contact before
|
|
23328
|
+
# calling this API. Use `CreateAttachedFile` to attach a recording from
|
|
23329
|
+
# an S3 source URI.
|
|
23330
|
+
#
|
|
23331
|
+
# <note markdown="1"> For example, you can call `CreateContact`, then `CreateAttachedFile`,
|
|
23332
|
+
# then `StartContactConversationalAnalyticsJob` to create a contact,
|
|
23333
|
+
# attach a recording, and run post-call analytics.
|
|
23334
|
+
#
|
|
23335
|
+
# </note>
|
|
23336
|
+
#
|
|
23337
|
+
# @option params [required, String] :instance_id
|
|
23338
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
23339
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
23340
|
+
#
|
|
23341
|
+
#
|
|
23342
|
+
#
|
|
23343
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
23344
|
+
#
|
|
23345
|
+
# @option params [required, String] :contact_id
|
|
23346
|
+
# The identifier of the contact in this instance of Connect Customer.
|
|
23347
|
+
#
|
|
23348
|
+
# @option params [required, Array<String>] :analytics_modes
|
|
23349
|
+
# The analytics modes to run for the contact. Valid values:
|
|
23350
|
+
# `PostContact`.
|
|
23351
|
+
#
|
|
23352
|
+
# @option params [required, Types::AnalyticsConfiguration] :analytics_configuration
|
|
23353
|
+
# The configuration for the conversational analytics job.
|
|
23354
|
+
#
|
|
23355
|
+
# @option params [String] :client_token
|
|
23356
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
23357
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
23358
|
+
# SDK populates this field. For more information about idempotency, see
|
|
23359
|
+
# [Making retries safe with idempotent APIs][1].
|
|
23360
|
+
#
|
|
23361
|
+
#
|
|
23362
|
+
#
|
|
23363
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
23364
|
+
#
|
|
23365
|
+
# @return [Types::StartContactConversationalAnalyticsJobResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
23366
|
+
#
|
|
23367
|
+
# * {Types::StartContactConversationalAnalyticsJobResponse#instance_id #instance_id} => String
|
|
23368
|
+
# * {Types::StartContactConversationalAnalyticsJobResponse#contact_id #contact_id} => String
|
|
23369
|
+
#
|
|
23370
|
+
# @example Request syntax with placeholder values
|
|
23371
|
+
#
|
|
23372
|
+
# resp = client.start_contact_conversational_analytics_job({
|
|
23373
|
+
# instance_id: "InstanceId", # required
|
|
23374
|
+
# contact_id: "ContactId", # required
|
|
23375
|
+
# analytics_modes: ["PostContact"], # required, accepts PostContact, RealTime, ContactLens, AutomatedInteraction
|
|
23376
|
+
# analytics_configuration: { # required
|
|
23377
|
+
# language_configuration: { # required
|
|
23378
|
+
# language_locale: "LanguageLocale",
|
|
23379
|
+
# },
|
|
23380
|
+
# redaction_configuration: { # required
|
|
23381
|
+
# behavior: "Enable", # required, accepts Enable, Disable
|
|
23382
|
+
# policy: "None", # required, accepts None, RedactedOnly, RedactedAndOriginal
|
|
23383
|
+
# entities: ["Entity"],
|
|
23384
|
+
# mask_mode: "PII", # accepts PII, EntityType
|
|
23385
|
+
# },
|
|
23386
|
+
# sentiment_configuration: { # required
|
|
23387
|
+
# behavior: "Enable", # required, accepts Enable, Disable
|
|
23388
|
+
# },
|
|
23389
|
+
# summary_configuration: { # required
|
|
23390
|
+
# summary_modes: ["PostContact"], # required, accepts PostContact, AutomatedInteraction, ContactChain
|
|
23391
|
+
# },
|
|
23392
|
+
# rules_configuration: { # required
|
|
23393
|
+
# behavior: "Enable", # accepts Enable, Disable
|
|
23394
|
+
# },
|
|
23395
|
+
# },
|
|
23396
|
+
# client_token: "ClientToken",
|
|
23397
|
+
# })
|
|
23398
|
+
#
|
|
23399
|
+
# @example Response structure
|
|
23400
|
+
#
|
|
23401
|
+
# resp.instance_id #=> String
|
|
23402
|
+
# resp.contact_id #=> String
|
|
23403
|
+
#
|
|
23404
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactConversationalAnalyticsJob AWS API Documentation
|
|
23405
|
+
#
|
|
23406
|
+
# @overload start_contact_conversational_analytics_job(params = {})
|
|
23407
|
+
# @param [Hash] params ({})
|
|
23408
|
+
def start_contact_conversational_analytics_job(params = {}, options = {})
|
|
23409
|
+
req = build_request(:start_contact_conversational_analytics_job, params)
|
|
23410
|
+
req.send_request(options)
|
|
23411
|
+
end
|
|
23412
|
+
|
|
23228
23413
|
# Starts an empty evaluation in the specified Connect Customer instance,
|
|
23229
23414
|
# using the given evaluation form for the particular contact. The
|
|
23230
23415
|
# evaluation form version used for the contact evaluation corresponds to
|
|
@@ -29556,7 +29741,7 @@ module Aws::Connect
|
|
|
29556
29741
|
tracer: tracer
|
|
29557
29742
|
)
|
|
29558
29743
|
context[:gem_name] = 'aws-sdk-connect'
|
|
29559
|
-
context[:gem_version] = '1.
|
|
29744
|
+
context[:gem_version] = '1.261.0'
|
|
29560
29745
|
Seahorse::Client::Request.new(handlers, context)
|
|
29561
29746
|
end
|
|
29562
29747
|
|
|
@@ -88,10 +88,13 @@ module Aws::Connect
|
|
|
88
88
|
AllowedMonitorCapabilities = Shapes::ListShape.new(name: 'AllowedMonitorCapabilities')
|
|
89
89
|
AllowedUserAction = Shapes::StringShape.new(name: 'AllowedUserAction')
|
|
90
90
|
AllowedUserActions = Shapes::ListShape.new(name: 'AllowedUserActions')
|
|
91
|
+
AnalyticsConfiguration = Shapes::StructureShape.new(name: 'AnalyticsConfiguration')
|
|
91
92
|
AnalyticsDataAssociationResult = Shapes::StructureShape.new(name: 'AnalyticsDataAssociationResult')
|
|
92
93
|
AnalyticsDataAssociationResults = Shapes::ListShape.new(name: 'AnalyticsDataAssociationResults')
|
|
93
94
|
AnalyticsDataSetsResult = Shapes::StructureShape.new(name: 'AnalyticsDataSetsResult')
|
|
94
95
|
AnalyticsDataSetsResults = Shapes::ListShape.new(name: 'AnalyticsDataSetsResults')
|
|
96
|
+
AnalyticsMode = Shapes::StringShape.new(name: 'AnalyticsMode')
|
|
97
|
+
AnalyticsModes = Shapes::ListShape.new(name: 'AnalyticsModes')
|
|
95
98
|
AnswerMachineDetectionConfig = Shapes::StructureShape.new(name: 'AnswerMachineDetectionConfig')
|
|
96
99
|
AnsweringMachineDetectionStatus = Shapes::StringShape.new(name: 'AnsweringMachineDetectionStatus')
|
|
97
100
|
Application = Shapes::StructureShape.new(name: 'Application')
|
|
@@ -217,6 +220,7 @@ module Aws::Connect
|
|
|
217
220
|
BatchUpdateDataTableValueResponse = Shapes::StructureShape.new(name: 'BatchUpdateDataTableValueResponse')
|
|
218
221
|
BatchUpdateDataTableValueSuccessResult = Shapes::StructureShape.new(name: 'BatchUpdateDataTableValueSuccessResult')
|
|
219
222
|
BatchUpdateDataTableValueSuccessResultList = Shapes::ListShape.new(name: 'BatchUpdateDataTableValueSuccessResultList')
|
|
223
|
+
Behavior = Shapes::StringShape.new(name: 'Behavior')
|
|
220
224
|
BehaviorType = Shapes::StringShape.new(name: 'BehaviorType')
|
|
221
225
|
Body = Shapes::StringShape.new(name: 'Body')
|
|
222
226
|
Boolean = Shapes::BooleanShape.new(name: 'Boolean')
|
|
@@ -361,6 +365,8 @@ module Aws::Connect
|
|
|
361
365
|
Count = Shapes::IntegerShape.new(name: 'Count')
|
|
362
366
|
CreateAgentStatusRequest = Shapes::StructureShape.new(name: 'CreateAgentStatusRequest')
|
|
363
367
|
CreateAgentStatusResponse = Shapes::StructureShape.new(name: 'CreateAgentStatusResponse')
|
|
368
|
+
CreateAttachedFileRequest = Shapes::StructureShape.new(name: 'CreateAttachedFileRequest')
|
|
369
|
+
CreateAttachedFileResponse = Shapes::StructureShape.new(name: 'CreateAttachedFileResponse')
|
|
364
370
|
CreateCaseActionDefinition = Shapes::StructureShape.new(name: 'CreateCaseActionDefinition')
|
|
365
371
|
CreateContactFlowModuleAliasRequest = Shapes::StructureShape.new(name: 'CreateContactFlowModuleAliasRequest')
|
|
366
372
|
CreateContactFlowModuleAliasResponse = Shapes::StructureShape.new(name: 'CreateContactFlowModuleAliasResponse')
|
|
@@ -716,6 +722,8 @@ module Aws::Connect
|
|
|
716
722
|
EndpointDisplayName = Shapes::StringShape.new(name: 'EndpointDisplayName')
|
|
717
723
|
EndpointInfo = Shapes::StructureShape.new(name: 'EndpointInfo')
|
|
718
724
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
|
725
|
+
Entities = Shapes::ListShape.new(name: 'Entities')
|
|
726
|
+
Entity = Shapes::StringShape.new(name: 'Entity')
|
|
719
727
|
EntityArn = Shapes::StringShape.new(name: 'EntityArn')
|
|
720
728
|
EntityType = Shapes::StringShape.new(name: 'EntityType')
|
|
721
729
|
EpochMilliseconds = Shapes::IntegerShape.new(name: 'EpochMilliseconds')
|
|
@@ -898,6 +906,7 @@ module Aws::Connect
|
|
|
898
906
|
FileIdList = Shapes::ListShape.new(name: 'FileIdList')
|
|
899
907
|
FileName = Shapes::StringShape.new(name: 'FileName')
|
|
900
908
|
FileSizeInBytes = Shapes::IntegerShape.new(name: 'FileSizeInBytes')
|
|
909
|
+
FileSourceUri = Shapes::StringShape.new(name: 'FileSourceUri')
|
|
901
910
|
FileStatusType = Shapes::StringShape.new(name: 'FileStatusType')
|
|
902
911
|
FileUseCaseType = Shapes::StringShape.new(name: 'FileUseCaseType')
|
|
903
912
|
FilterV2 = Shapes::StructureShape.new(name: 'FilterV2')
|
|
@@ -1073,6 +1082,8 @@ module Aws::Connect
|
|
|
1073
1082
|
KinesisFirehoseConfig = Shapes::StructureShape.new(name: 'KinesisFirehoseConfig')
|
|
1074
1083
|
KinesisStreamConfig = Shapes::StructureShape.new(name: 'KinesisStreamConfig')
|
|
1075
1084
|
KinesisVideoStreamConfig = Shapes::StructureShape.new(name: 'KinesisVideoStreamConfig')
|
|
1085
|
+
LanguageConfiguration = Shapes::StructureShape.new(name: 'LanguageConfiguration')
|
|
1086
|
+
LanguageLocale = Shapes::StringShape.new(name: 'LanguageLocale')
|
|
1076
1087
|
LargeNextToken = Shapes::StringShape.new(name: 'LargeNextToken')
|
|
1077
1088
|
LengthBoundary = Shapes::IntegerShape.new(name: 'LengthBoundary')
|
|
1078
1089
|
LexBot = Shapes::StructureShape.new(name: 'LexBot')
|
|
@@ -1229,6 +1240,7 @@ module Aws::Connect
|
|
|
1229
1240
|
LocaleCode = Shapes::StringShape.new(name: 'LocaleCode')
|
|
1230
1241
|
LocalizedString = Shapes::StringShape.new(name: 'LocalizedString')
|
|
1231
1242
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
|
1243
|
+
MaskMode = Shapes::StringShape.new(name: 'MaskMode')
|
|
1232
1244
|
MatchCriteria = Shapes::StructureShape.new(name: 'MatchCriteria')
|
|
1233
1245
|
MaxResult10 = Shapes::IntegerShape.new(name: 'MaxResult10')
|
|
1234
1246
|
MaxResult100 = Shapes::IntegerShape.new(name: 'MaxResult100')
|
|
@@ -1403,6 +1415,7 @@ module Aws::Connect
|
|
|
1403
1415
|
PlatformName = Shapes::StringShape.new(name: 'PlatformName')
|
|
1404
1416
|
PlatformVersion = Shapes::StringShape.new(name: 'PlatformVersion')
|
|
1405
1417
|
PointValue = Shapes::IntegerShape.new(name: 'PointValue')
|
|
1418
|
+
Policy = Shapes::StringShape.new(name: 'Policy')
|
|
1406
1419
|
PositiveAndNegativeDouble = Shapes::FloatShape.new(name: 'PositiveAndNegativeDouble')
|
|
1407
1420
|
PositiveDouble = Shapes::FloatShape.new(name: 'PositiveDouble')
|
|
1408
1421
|
PostAcceptPreviewTimeoutDurationInSeconds = Shapes::IntegerShape.new(name: 'PostAcceptPreviewTimeoutDurationInSeconds')
|
|
@@ -1557,6 +1570,7 @@ module Aws::Connect
|
|
|
1557
1570
|
RecurrenceConfig = Shapes::StructureShape.new(name: 'RecurrenceConfig')
|
|
1558
1571
|
RecurrenceFrequency = Shapes::StringShape.new(name: 'RecurrenceFrequency')
|
|
1559
1572
|
RecurrencePattern = Shapes::StructureShape.new(name: 'RecurrencePattern')
|
|
1573
|
+
RedactionConfiguration = Shapes::StructureShape.new(name: 'RedactionConfiguration')
|
|
1560
1574
|
Reference = Shapes::StructureShape.new(name: 'Reference')
|
|
1561
1575
|
ReferenceArn = Shapes::StringShape.new(name: 'ReferenceArn')
|
|
1562
1576
|
ReferenceId = Shapes::StringShape.new(name: 'ReferenceId')
|
|
@@ -1639,6 +1653,7 @@ module Aws::Connect
|
|
|
1639
1653
|
RuleSummary = Shapes::StructureShape.new(name: 'RuleSummary')
|
|
1640
1654
|
RuleSummaryList = Shapes::ListShape.new(name: 'RuleSummaryList')
|
|
1641
1655
|
RuleTriggerEventSource = Shapes::StructureShape.new(name: 'RuleTriggerEventSource')
|
|
1656
|
+
RulesConfiguration = Shapes::StructureShape.new(name: 'RulesConfiguration')
|
|
1642
1657
|
S3Config = Shapes::StructureShape.new(name: 'S3Config')
|
|
1643
1658
|
S3Uri = Shapes::StringShape.new(name: 'S3Uri')
|
|
1644
1659
|
ScreenShareCapability = Shapes::StringShape.new(name: 'ScreenShareCapability')
|
|
@@ -1756,6 +1771,7 @@ module Aws::Connect
|
|
|
1756
1771
|
SendOutboundEmailRequest = Shapes::StructureShape.new(name: 'SendOutboundEmailRequest')
|
|
1757
1772
|
SendOutboundEmailResponse = Shapes::StructureShape.new(name: 'SendOutboundEmailResponse')
|
|
1758
1773
|
SensitivePhoneNumber = Shapes::StringShape.new(name: 'SensitivePhoneNumber')
|
|
1774
|
+
SentimentConfiguration = Shapes::StructureShape.new(name: 'SentimentConfiguration')
|
|
1759
1775
|
ServiceQuotaExceededException = Shapes::StructureShape.new(name: 'ServiceQuotaExceededException')
|
|
1760
1776
|
ServiceQuotaExceededExceptionReason = Shapes::UnionShape.new(name: 'ServiceQuotaExceededExceptionReason')
|
|
1761
1777
|
SignInConfig = Shapes::StructureShape.new(name: 'SignInConfig')
|
|
@@ -1782,6 +1798,8 @@ module Aws::Connect
|
|
|
1782
1798
|
StartAttachedFileUploadResponse = Shapes::StructureShape.new(name: 'StartAttachedFileUploadResponse')
|
|
1783
1799
|
StartChatContactRequest = Shapes::StructureShape.new(name: 'StartChatContactRequest')
|
|
1784
1800
|
StartChatContactResponse = Shapes::StructureShape.new(name: 'StartChatContactResponse')
|
|
1801
|
+
StartContactConversationalAnalyticsJobRequest = Shapes::StructureShape.new(name: 'StartContactConversationalAnalyticsJobRequest')
|
|
1802
|
+
StartContactConversationalAnalyticsJobResponse = Shapes::StructureShape.new(name: 'StartContactConversationalAnalyticsJobResponse')
|
|
1785
1803
|
StartContactEvaluationRequest = Shapes::StructureShape.new(name: 'StartContactEvaluationRequest')
|
|
1786
1804
|
StartContactEvaluationResponse = Shapes::StructureShape.new(name: 'StartContactEvaluationResponse')
|
|
1787
1805
|
StartContactMediaProcessingRequest = Shapes::StructureShape.new(name: 'StartContactMediaProcessingRequest')
|
|
@@ -1840,6 +1858,9 @@ module Aws::Connect
|
|
|
1840
1858
|
SuccessfulBatchAssociationSummaryList = Shapes::ListShape.new(name: 'SuccessfulBatchAssociationSummaryList')
|
|
1841
1859
|
SuccessfulRequest = Shapes::StructureShape.new(name: 'SuccessfulRequest')
|
|
1842
1860
|
SuccessfulRequestList = Shapes::ListShape.new(name: 'SuccessfulRequestList')
|
|
1861
|
+
SummaryConfiguration = Shapes::StructureShape.new(name: 'SummaryConfiguration')
|
|
1862
|
+
SummaryMode = Shapes::StringShape.new(name: 'SummaryMode')
|
|
1863
|
+
SummaryModes = Shapes::ListShape.new(name: 'SummaryModes')
|
|
1843
1864
|
SupportedMessagingContentType = Shapes::StringShape.new(name: 'SupportedMessagingContentType')
|
|
1844
1865
|
SupportedMessagingContentTypes = Shapes::ListShape.new(name: 'SupportedMessagingContentTypes')
|
|
1845
1866
|
SuspendContactRecordingRequest = Shapes::StructureShape.new(name: 'SuspendContactRecordingRequest')
|
|
@@ -2359,6 +2380,13 @@ module Aws::Connect
|
|
|
2359
2380
|
|
|
2360
2381
|
AllowedUserActions.member = Shapes::ShapeRef.new(shape: AllowedUserAction)
|
|
2361
2382
|
|
|
2383
|
+
AnalyticsConfiguration.add_member(:language_configuration, Shapes::ShapeRef.new(shape: LanguageConfiguration, required: true, location_name: "LanguageConfiguration"))
|
|
2384
|
+
AnalyticsConfiguration.add_member(:redaction_configuration, Shapes::ShapeRef.new(shape: RedactionConfiguration, required: true, location_name: "RedactionConfiguration"))
|
|
2385
|
+
AnalyticsConfiguration.add_member(:sentiment_configuration, Shapes::ShapeRef.new(shape: SentimentConfiguration, required: true, location_name: "SentimentConfiguration"))
|
|
2386
|
+
AnalyticsConfiguration.add_member(:summary_configuration, Shapes::ShapeRef.new(shape: SummaryConfiguration, required: true, location_name: "SummaryConfiguration"))
|
|
2387
|
+
AnalyticsConfiguration.add_member(:rules_configuration, Shapes::ShapeRef.new(shape: RulesConfiguration, required: true, location_name: "RulesConfiguration"))
|
|
2388
|
+
AnalyticsConfiguration.struct_class = Types::AnalyticsConfiguration
|
|
2389
|
+
|
|
2362
2390
|
AnalyticsDataAssociationResult.add_member(:data_set_id, Shapes::ShapeRef.new(shape: DataSetId, location_name: "DataSetId"))
|
|
2363
2391
|
AnalyticsDataAssociationResult.add_member(:target_account_id, Shapes::ShapeRef.new(shape: AWSAccountId, location_name: "TargetAccountId"))
|
|
2364
2392
|
AnalyticsDataAssociationResult.add_member(:resource_share_id, Shapes::ShapeRef.new(shape: String, location_name: "ResourceShareId"))
|
|
@@ -2374,6 +2402,8 @@ module Aws::Connect
|
|
|
2374
2402
|
|
|
2375
2403
|
AnalyticsDataSetsResults.member = Shapes::ShapeRef.new(shape: AnalyticsDataSetsResult)
|
|
2376
2404
|
|
|
2405
|
+
AnalyticsModes.member = Shapes::ShapeRef.new(shape: AnalyticsMode)
|
|
2406
|
+
|
|
2377
2407
|
AnswerMachineDetectionConfig.add_member(:enable_answer_machine_detection, Shapes::ShapeRef.new(shape: Boolean, location_name: "EnableAnswerMachineDetection"))
|
|
2378
2408
|
AnswerMachineDetectionConfig.add_member(:await_answer_machine_prompt, Shapes::ShapeRef.new(shape: Boolean, location_name: "AwaitAnswerMachinePrompt"))
|
|
2379
2409
|
AnswerMachineDetectionConfig.struct_class = Types::AnswerMachineDetectionConfig
|
|
@@ -3268,6 +3298,20 @@ module Aws::Connect
|
|
|
3268
3298
|
CreateAgentStatusResponse.add_member(:agent_status_id, Shapes::ShapeRef.new(shape: AgentStatusId, location_name: "AgentStatusId"))
|
|
3269
3299
|
CreateAgentStatusResponse.struct_class = Types::CreateAgentStatusResponse
|
|
3270
3300
|
|
|
3301
|
+
CreateAttachedFileRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3302
|
+
CreateAttachedFileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
3303
|
+
CreateAttachedFileRequest.add_member(:file_use_case_type, Shapes::ShapeRef.new(shape: FileUseCaseType, required: true, location_name: "FileUseCaseType"))
|
|
3304
|
+
CreateAttachedFileRequest.add_member(:file_source_uri, Shapes::ShapeRef.new(shape: FileSourceUri, required: true, location_name: "FileSourceUri"))
|
|
3305
|
+
CreateAttachedFileRequest.add_member(:associated_resource_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location: "querystring", location_name: "associatedResourceArn"))
|
|
3306
|
+
CreateAttachedFileRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3307
|
+
CreateAttachedFileRequest.struct_class = Types::CreateAttachedFileRequest
|
|
3308
|
+
|
|
3309
|
+
CreateAttachedFileResponse.add_member(:file_arn, Shapes::ShapeRef.new(shape: ARN, location_name: "FileArn"))
|
|
3310
|
+
CreateAttachedFileResponse.add_member(:file_id, Shapes::ShapeRef.new(shape: FileId, location_name: "FileId"))
|
|
3311
|
+
CreateAttachedFileResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: ISO8601Datetime, location_name: "CreationTime"))
|
|
3312
|
+
CreateAttachedFileResponse.add_member(:file_status, Shapes::ShapeRef.new(shape: FileStatusType, location_name: "FileStatus"))
|
|
3313
|
+
CreateAttachedFileResponse.struct_class = Types::CreateAttachedFileResponse
|
|
3314
|
+
|
|
3271
3315
|
CreateCaseActionDefinition.add_member(:fields, Shapes::ShapeRef.new(shape: FieldValues, required: true, location_name: "Fields"))
|
|
3272
3316
|
CreateCaseActionDefinition.add_member(:template_id, Shapes::ShapeRef.new(shape: TemplateId, required: true, location_name: "TemplateId"))
|
|
3273
3317
|
CreateCaseActionDefinition.struct_class = Types::CreateCaseActionDefinition
|
|
@@ -4644,6 +4688,8 @@ module Aws::Connect
|
|
|
4644
4688
|
EndpointInfo.add_member(:display_name, Shapes::ShapeRef.new(shape: EndpointDisplayName, location_name: "DisplayName"))
|
|
4645
4689
|
EndpointInfo.struct_class = Types::EndpointInfo
|
|
4646
4690
|
|
|
4691
|
+
Entities.member = Shapes::ShapeRef.new(shape: Entity)
|
|
4692
|
+
|
|
4647
4693
|
ErrorResult.add_member(:error_code, Shapes::ShapeRef.new(shape: String, location_name: "ErrorCode"))
|
|
4648
4694
|
ErrorResult.add_member(:error_message, Shapes::ShapeRef.new(shape: String, location_name: "ErrorMessage"))
|
|
4649
4695
|
ErrorResult.struct_class = Types::ErrorResult
|
|
@@ -5815,6 +5861,9 @@ module Aws::Connect
|
|
|
5815
5861
|
KinesisVideoStreamConfig.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, required: true, location_name: "EncryptionConfig"))
|
|
5816
5862
|
KinesisVideoStreamConfig.struct_class = Types::KinesisVideoStreamConfig
|
|
5817
5863
|
|
|
5864
|
+
LanguageConfiguration.add_member(:language_locale, Shapes::ShapeRef.new(shape: LanguageLocale, location_name: "LanguageLocale"))
|
|
5865
|
+
LanguageConfiguration.struct_class = Types::LanguageConfiguration
|
|
5866
|
+
|
|
5818
5867
|
LexBot.add_member(:name, Shapes::ShapeRef.new(shape: BotName, required: true, location_name: "Name"))
|
|
5819
5868
|
LexBot.add_member(:lex_region, Shapes::ShapeRef.new(shape: LexRegion, required: true, location_name: "LexRegion"))
|
|
5820
5869
|
LexBot.struct_class = Types::LexBot
|
|
@@ -7314,6 +7363,12 @@ module Aws::Connect
|
|
|
7314
7363
|
RecurrencePattern.add_member(:by_weekday_occurrence, Shapes::ShapeRef.new(shape: WeekdayOccurrenceList, location_name: "ByWeekdayOccurrence", metadata: {"box" => true}))
|
|
7315
7364
|
RecurrencePattern.struct_class = Types::RecurrencePattern
|
|
7316
7365
|
|
|
7366
|
+
RedactionConfiguration.add_member(:behavior, Shapes::ShapeRef.new(shape: Behavior, required: true, location_name: "Behavior"))
|
|
7367
|
+
RedactionConfiguration.add_member(:policy, Shapes::ShapeRef.new(shape: Policy, required: true, location_name: "Policy"))
|
|
7368
|
+
RedactionConfiguration.add_member(:entities, Shapes::ShapeRef.new(shape: Entities, location_name: "Entities"))
|
|
7369
|
+
RedactionConfiguration.add_member(:mask_mode, Shapes::ShapeRef.new(shape: MaskMode, location_name: "MaskMode"))
|
|
7370
|
+
RedactionConfiguration.struct_class = Types::RedactionConfiguration
|
|
7371
|
+
|
|
7317
7372
|
Reference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
|
|
7318
7373
|
Reference.add_member(:type, Shapes::ShapeRef.new(shape: ReferenceType, required: true, location_name: "Type"))
|
|
7319
7374
|
Reference.add_member(:status, Shapes::ShapeRef.new(shape: ReferenceStatus, location_name: "Status"))
|
|
@@ -7560,6 +7615,9 @@ module Aws::Connect
|
|
|
7560
7615
|
RuleTriggerEventSource.add_member(:integration_association_id, Shapes::ShapeRef.new(shape: IntegrationAssociationId, location_name: "IntegrationAssociationId"))
|
|
7561
7616
|
RuleTriggerEventSource.struct_class = Types::RuleTriggerEventSource
|
|
7562
7617
|
|
|
7618
|
+
RulesConfiguration.add_member(:behavior, Shapes::ShapeRef.new(shape: Behavior, location_name: "Behavior"))
|
|
7619
|
+
RulesConfiguration.struct_class = Types::RulesConfiguration
|
|
7620
|
+
|
|
7563
7621
|
S3Config.add_member(:bucket_name, Shapes::ShapeRef.new(shape: BucketName, required: true, location_name: "BucketName"))
|
|
7564
7622
|
S3Config.add_member(:bucket_prefix, Shapes::ShapeRef.new(shape: Prefix, required: true, location_name: "BucketPrefix"))
|
|
7565
7623
|
S3Config.add_member(:encryption_config, Shapes::ShapeRef.new(shape: EncryptionConfig, location_name: "EncryptionConfig"))
|
|
@@ -8056,6 +8114,9 @@ module Aws::Connect
|
|
|
8056
8114
|
|
|
8057
8115
|
SendOutboundEmailResponse.struct_class = Types::SendOutboundEmailResponse
|
|
8058
8116
|
|
|
8117
|
+
SentimentConfiguration.add_member(:behavior, Shapes::ShapeRef.new(shape: Behavior, required: true, location_name: "Behavior"))
|
|
8118
|
+
SentimentConfiguration.struct_class = Types::SentimentConfiguration
|
|
8119
|
+
|
|
8059
8120
|
ServiceQuotaExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
8060
8121
|
ServiceQuotaExceededException.add_member(:reason, Shapes::ShapeRef.new(shape: ServiceQuotaExceededExceptionReason, location_name: "Reason"))
|
|
8061
8122
|
ServiceQuotaExceededException.struct_class = Types::ServiceQuotaExceededException
|
|
@@ -8133,6 +8194,17 @@ module Aws::Connect
|
|
|
8133
8194
|
StartChatContactResponse.add_member(:continued_from_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContinuedFromContactId"))
|
|
8134
8195
|
StartChatContactResponse.struct_class = Types::StartChatContactResponse
|
|
8135
8196
|
|
|
8197
|
+
StartContactConversationalAnalyticsJobRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8198
|
+
StartContactConversationalAnalyticsJobRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location: "uri", location_name: "ContactId"))
|
|
8199
|
+
StartContactConversationalAnalyticsJobRequest.add_member(:analytics_modes, Shapes::ShapeRef.new(shape: AnalyticsModes, required: true, location_name: "AnalyticsModes"))
|
|
8200
|
+
StartContactConversationalAnalyticsJobRequest.add_member(:analytics_configuration, Shapes::ShapeRef.new(shape: AnalyticsConfiguration, required: true, location_name: "AnalyticsConfiguration"))
|
|
8201
|
+
StartContactConversationalAnalyticsJobRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
|
|
8202
|
+
StartContactConversationalAnalyticsJobRequest.struct_class = Types::StartContactConversationalAnalyticsJobRequest
|
|
8203
|
+
|
|
8204
|
+
StartContactConversationalAnalyticsJobResponse.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, location_name: "InstanceId"))
|
|
8205
|
+
StartContactConversationalAnalyticsJobResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
|
|
8206
|
+
StartContactConversationalAnalyticsJobResponse.struct_class = Types::StartContactConversationalAnalyticsJobResponse
|
|
8207
|
+
|
|
8136
8208
|
StartContactEvaluationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8137
8209
|
StartContactEvaluationRequest.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, required: true, location_name: "ContactId"))
|
|
8138
8210
|
StartContactEvaluationRequest.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "EvaluationFormId"))
|
|
@@ -8389,6 +8461,11 @@ module Aws::Connect
|
|
|
8389
8461
|
|
|
8390
8462
|
SuccessfulRequestList.member = Shapes::ShapeRef.new(shape: SuccessfulRequest)
|
|
8391
8463
|
|
|
8464
|
+
SummaryConfiguration.add_member(:summary_modes, Shapes::ShapeRef.new(shape: SummaryModes, required: true, location_name: "SummaryModes"))
|
|
8465
|
+
SummaryConfiguration.struct_class = Types::SummaryConfiguration
|
|
8466
|
+
|
|
8467
|
+
SummaryModes.member = Shapes::ShapeRef.new(shape: SummaryMode)
|
|
8468
|
+
|
|
8392
8469
|
SupportedMessagingContentTypes.member = Shapes::ShapeRef.new(shape: SupportedMessagingContentType)
|
|
8393
8470
|
|
|
8394
8471
|
SuspendContactRecordingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
@@ -10061,6 +10138,20 @@ module Aws::Connect
|
|
|
10061
10138
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10062
10139
|
end)
|
|
10063
10140
|
|
|
10141
|
+
api.add_operation(:create_attached_file, Seahorse::Model::Operation.new.tap do |o|
|
|
10142
|
+
o.name = "CreateAttachedFile"
|
|
10143
|
+
o.http_method = "PUT"
|
|
10144
|
+
o.http_request_uri = "/attached-files/{InstanceId}/files"
|
|
10145
|
+
o.input = Shapes::ShapeRef.new(shape: CreateAttachedFileRequest)
|
|
10146
|
+
o.output = Shapes::ShapeRef.new(shape: CreateAttachedFileResponse)
|
|
10147
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
10148
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
10149
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10150
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
10151
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
|
10152
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
10153
|
+
end)
|
|
10154
|
+
|
|
10064
10155
|
api.add_operation(:create_contact, Seahorse::Model::Operation.new.tap do |o|
|
|
10065
10156
|
o.name = "CreateContact"
|
|
10066
10157
|
o.http_method = "PUT"
|
|
@@ -13984,6 +14075,20 @@ module Aws::Connect
|
|
|
13984
14075
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
13985
14076
|
end)
|
|
13986
14077
|
|
|
14078
|
+
api.add_operation(:start_contact_conversational_analytics_job, Seahorse::Model::Operation.new.tap do |o|
|
|
14079
|
+
o.name = "StartContactConversationalAnalyticsJob"
|
|
14080
|
+
o.http_method = "POST"
|
|
14081
|
+
o.http_request_uri = "/contact/start-conversational-analytics-job/{InstanceId}/{ContactId}"
|
|
14082
|
+
o.input = Shapes::ShapeRef.new(shape: StartContactConversationalAnalyticsJobRequest)
|
|
14083
|
+
o.output = Shapes::ShapeRef.new(shape: StartContactConversationalAnalyticsJobResponse)
|
|
14084
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
14085
|
+
o.errors << Shapes::ShapeRef.new(shape: IdempotencyException)
|
|
14086
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
14087
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
14088
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
14089
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
14090
|
+
end)
|
|
14091
|
+
|
|
13987
14092
|
api.add_operation(:start_contact_evaluation, Seahorse::Model::Operation.new.tap do |o|
|
|
13988
14093
|
o.name = "StartContactEvaluation"
|
|
13989
14094
|
o.http_method = "PUT"
|
|
@@ -745,6 +745,40 @@ module Aws::Connect
|
|
|
745
745
|
include Aws::Structure
|
|
746
746
|
end
|
|
747
747
|
|
|
748
|
+
# The configuration for conversational analytics.
|
|
749
|
+
#
|
|
750
|
+
# @!attribute [rw] language_configuration
|
|
751
|
+
# The language configuration for conversational analytics.
|
|
752
|
+
# @return [Types::LanguageConfiguration]
|
|
753
|
+
#
|
|
754
|
+
# @!attribute [rw] redaction_configuration
|
|
755
|
+
# The redaction configuration for conversational analytics.
|
|
756
|
+
# @return [Types::RedactionConfiguration]
|
|
757
|
+
#
|
|
758
|
+
# @!attribute [rw] sentiment_configuration
|
|
759
|
+
# The sentiment configuration for conversational analytics.
|
|
760
|
+
# @return [Types::SentimentConfiguration]
|
|
761
|
+
#
|
|
762
|
+
# @!attribute [rw] summary_configuration
|
|
763
|
+
# The summary configuration for conversational analytics.
|
|
764
|
+
# @return [Types::SummaryConfiguration]
|
|
765
|
+
#
|
|
766
|
+
# @!attribute [rw] rules_configuration
|
|
767
|
+
# The rules configuration for conversational analytics.
|
|
768
|
+
# @return [Types::RulesConfiguration]
|
|
769
|
+
#
|
|
770
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AnalyticsConfiguration AWS API Documentation
|
|
771
|
+
#
|
|
772
|
+
class AnalyticsConfiguration < Struct.new(
|
|
773
|
+
:language_configuration,
|
|
774
|
+
:redaction_configuration,
|
|
775
|
+
:sentiment_configuration,
|
|
776
|
+
:summary_configuration,
|
|
777
|
+
:rules_configuration)
|
|
778
|
+
SENSITIVE = []
|
|
779
|
+
include Aws::Structure
|
|
780
|
+
end
|
|
781
|
+
|
|
748
782
|
# This API is in preview release for Connect Customer and is subject to
|
|
749
783
|
# change.
|
|
750
784
|
#
|
|
@@ -5230,6 +5264,100 @@ module Aws::Connect
|
|
|
5230
5264
|
include Aws::Structure
|
|
5231
5265
|
end
|
|
5232
5266
|
|
|
5267
|
+
# @!attribute [rw] client_token
|
|
5268
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
5269
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
5270
|
+
# SDK populates this field. For more information about idempotency,
|
|
5271
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
5272
|
+
#
|
|
5273
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
5274
|
+
# not need to pass this option.
|
|
5275
|
+
#
|
|
5276
|
+
#
|
|
5277
|
+
#
|
|
5278
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
5279
|
+
# @return [String]
|
|
5280
|
+
#
|
|
5281
|
+
# @!attribute [rw] instance_id
|
|
5282
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
5283
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
5284
|
+
#
|
|
5285
|
+
#
|
|
5286
|
+
#
|
|
5287
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
5288
|
+
# @return [String]
|
|
5289
|
+
#
|
|
5290
|
+
# @!attribute [rw] file_use_case_type
|
|
5291
|
+
# The use case for the file.
|
|
5292
|
+
#
|
|
5293
|
+
# Only `VOICE_RECORDING` is supported.
|
|
5294
|
+
# @return [String]
|
|
5295
|
+
#
|
|
5296
|
+
# @!attribute [rw] file_source_uri
|
|
5297
|
+
# The S3 URI of the file to be attached. Only S3 source URIs are
|
|
5298
|
+
# supported.
|
|
5299
|
+
# @return [String]
|
|
5300
|
+
#
|
|
5301
|
+
# @!attribute [rw] associated_resource_arn
|
|
5302
|
+
# The ARN of the completed voice contact to attach the file to. Only
|
|
5303
|
+
# voice contacts with Telephony subtype are supported.
|
|
5304
|
+
#
|
|
5305
|
+
# <note markdown="1"> This value must be a valid ARN.
|
|
5306
|
+
#
|
|
5307
|
+
# </note>
|
|
5308
|
+
# @return [String]
|
|
5309
|
+
#
|
|
5310
|
+
# @!attribute [rw] tags
|
|
5311
|
+
# The tags used to organize, track, or control access for this
|
|
5312
|
+
# resource. For example, `{ "Tags": {"key1":"value1", "key2":"value2"}
|
|
5313
|
+
# }`.
|
|
5314
|
+
# @return [Hash<String,String>]
|
|
5315
|
+
#
|
|
5316
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAttachedFileRequest AWS API Documentation
|
|
5317
|
+
#
|
|
5318
|
+
class CreateAttachedFileRequest < Struct.new(
|
|
5319
|
+
:client_token,
|
|
5320
|
+
:instance_id,
|
|
5321
|
+
:file_use_case_type,
|
|
5322
|
+
:file_source_uri,
|
|
5323
|
+
:associated_resource_arn,
|
|
5324
|
+
:tags)
|
|
5325
|
+
SENSITIVE = []
|
|
5326
|
+
include Aws::Structure
|
|
5327
|
+
end
|
|
5328
|
+
|
|
5329
|
+
# Response from CreateAttachedFile API.
|
|
5330
|
+
#
|
|
5331
|
+
# @!attribute [rw] file_arn
|
|
5332
|
+
# The unique identifier of the attached file resource (ARN).
|
|
5333
|
+
# @return [String]
|
|
5334
|
+
#
|
|
5335
|
+
# @!attribute [rw] file_id
|
|
5336
|
+
# The unique identifier of the attached file resource.
|
|
5337
|
+
# @return [String]
|
|
5338
|
+
#
|
|
5339
|
+
# @!attribute [rw] creation_time
|
|
5340
|
+
# The time of Creation of the file resource as an ISO timestamp. It's
|
|
5341
|
+
# specified in ISO 8601 format: `yyyy-MM-ddThh:mm:ss.SSSZ`. For
|
|
5342
|
+
# example, `2024-05-03T02:41:28.172Z`.
|
|
5343
|
+
# @return [String]
|
|
5344
|
+
#
|
|
5345
|
+
# @!attribute [rw] file_status
|
|
5346
|
+
# The current status of the attached file. Valid values: `PROCESSING`
|
|
5347
|
+
# \| `APPROVED` \| `REJECTED` \| `FAILED`.
|
|
5348
|
+
# @return [String]
|
|
5349
|
+
#
|
|
5350
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAttachedFileResponse AWS API Documentation
|
|
5351
|
+
#
|
|
5352
|
+
class CreateAttachedFileResponse < Struct.new(
|
|
5353
|
+
:file_arn,
|
|
5354
|
+
:file_id,
|
|
5355
|
+
:creation_time,
|
|
5356
|
+
:file_status)
|
|
5357
|
+
SENSITIVE = []
|
|
5358
|
+
include Aws::Structure
|
|
5359
|
+
end
|
|
5360
|
+
|
|
5233
5361
|
# The `CreateCase` action definition.
|
|
5234
5362
|
#
|
|
5235
5363
|
# @!attribute [rw] fields
|
|
@@ -20593,6 +20721,20 @@ module Aws::Connect
|
|
|
20593
20721
|
include Aws::Structure
|
|
20594
20722
|
end
|
|
20595
20723
|
|
|
20724
|
+
# The language configuration for conversational analytics.
|
|
20725
|
+
#
|
|
20726
|
+
# @!attribute [rw] language_locale
|
|
20727
|
+
# The language locale setting for conversational analytics.
|
|
20728
|
+
# @return [String]
|
|
20729
|
+
#
|
|
20730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/LanguageConfiguration AWS API Documentation
|
|
20731
|
+
#
|
|
20732
|
+
class LanguageConfiguration < Struct.new(
|
|
20733
|
+
:language_locale)
|
|
20734
|
+
SENSITIVE = []
|
|
20735
|
+
include Aws::Structure
|
|
20736
|
+
end
|
|
20737
|
+
|
|
20596
20738
|
# Configuration information of an Amazon Lex bot.
|
|
20597
20739
|
#
|
|
20598
20740
|
# @!attribute [rw] name
|
|
@@ -27845,6 +27987,42 @@ module Aws::Connect
|
|
|
27845
27987
|
include Aws::Structure
|
|
27846
27988
|
end
|
|
27847
27989
|
|
|
27990
|
+
# The redaction configuration for conversational analytics.
|
|
27991
|
+
#
|
|
27992
|
+
# @!attribute [rw] behavior
|
|
27993
|
+
# Controls whether redaction is applied to the analytics output. Valid
|
|
27994
|
+
# values: `Enable` \| `Disable`.
|
|
27995
|
+
# @return [String]
|
|
27996
|
+
#
|
|
27997
|
+
# @!attribute [rw] policy
|
|
27998
|
+
# The redaction output policy that determines which versions of the
|
|
27999
|
+
# transcript are stored. Valid values: `None` \| `RedactedOnly` \|
|
|
28000
|
+
# `RedactedAndOriginal`.
|
|
28001
|
+
# @return [String]
|
|
28002
|
+
#
|
|
28003
|
+
# @!attribute [rw] entities
|
|
28004
|
+
# The list of PII entity types to redact from the transcript (for
|
|
28005
|
+
# example, `NAME`, `ADDRESS`, `CREDIT_DEBIT_NUMBER`).
|
|
28006
|
+
# @return [Array<String>]
|
|
28007
|
+
#
|
|
28008
|
+
# @!attribute [rw] mask_mode
|
|
28009
|
+
# The masking mode that determines how redacted content is replaced in
|
|
28010
|
+
# the output. Valid values: `PII` (replaces with the literal string
|
|
28011
|
+
# \[PII\]) \| `EntityType` (replaces with the entity type name, for
|
|
28012
|
+
# example \[NAME\]).
|
|
28013
|
+
# @return [String]
|
|
28014
|
+
#
|
|
28015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RedactionConfiguration AWS API Documentation
|
|
28016
|
+
#
|
|
28017
|
+
class RedactionConfiguration < Struct.new(
|
|
28018
|
+
:behavior,
|
|
28019
|
+
:policy,
|
|
28020
|
+
:entities,
|
|
28021
|
+
:mask_mode)
|
|
28022
|
+
SENSITIVE = []
|
|
28023
|
+
include Aws::Structure
|
|
28024
|
+
end
|
|
28025
|
+
|
|
27848
28026
|
# Well-formed data on a contact, used by agents to complete a contact
|
|
27849
28027
|
# request. You can have up to 4,096 UTF-8 bytes across all references
|
|
27850
28028
|
# for a contact.
|
|
@@ -29001,6 +29179,22 @@ module Aws::Connect
|
|
|
29001
29179
|
include Aws::Structure
|
|
29002
29180
|
end
|
|
29003
29181
|
|
|
29182
|
+
# The rules configuration for conversational analytics. Controls whether
|
|
29183
|
+
# Contact Lens rules are evaluated against the analytics output.
|
|
29184
|
+
#
|
|
29185
|
+
# @!attribute [rw] behavior
|
|
29186
|
+
# Controls whether Contact Lens rules are evaluated for the contact.
|
|
29187
|
+
# Valid values: `Enable` \| `Disable`.
|
|
29188
|
+
# @return [String]
|
|
29189
|
+
#
|
|
29190
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RulesConfiguration AWS API Documentation
|
|
29191
|
+
#
|
|
29192
|
+
class RulesConfiguration < Struct.new(
|
|
29193
|
+
:behavior)
|
|
29194
|
+
SENSITIVE = []
|
|
29195
|
+
include Aws::Structure
|
|
29196
|
+
end
|
|
29197
|
+
|
|
29004
29198
|
# Information about the Amazon Simple Storage Service (Amazon S3)
|
|
29005
29199
|
# storage type.
|
|
29006
29200
|
#
|
|
@@ -31504,6 +31698,21 @@ module Aws::Connect
|
|
|
31504
31698
|
#
|
|
31505
31699
|
class SendOutboundEmailResponse < Aws::EmptyStructure; end
|
|
31506
31700
|
|
|
31701
|
+
# The sentiment configuration for conversational analytics.
|
|
31702
|
+
#
|
|
31703
|
+
# @!attribute [rw] behavior
|
|
31704
|
+
# Controls whether sentiment analysis is applied to the analytics
|
|
31705
|
+
# output. Valid values: `Enable` \| `Disable`.
|
|
31706
|
+
# @return [String]
|
|
31707
|
+
#
|
|
31708
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SentimentConfiguration AWS API Documentation
|
|
31709
|
+
#
|
|
31710
|
+
class SentimentConfiguration < Struct.new(
|
|
31711
|
+
:behavior)
|
|
31712
|
+
SENSITIVE = []
|
|
31713
|
+
include Aws::Structure
|
|
31714
|
+
end
|
|
31715
|
+
|
|
31507
31716
|
# The service quota has been exceeded.
|
|
31508
31717
|
#
|
|
31509
31718
|
# @!attribute [rw] message
|
|
@@ -31955,6 +32164,68 @@ module Aws::Connect
|
|
|
31955
32164
|
include Aws::Structure
|
|
31956
32165
|
end
|
|
31957
32166
|
|
|
32167
|
+
# @!attribute [rw] instance_id
|
|
32168
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
32169
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
32170
|
+
#
|
|
32171
|
+
#
|
|
32172
|
+
#
|
|
32173
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
32174
|
+
# @return [String]
|
|
32175
|
+
#
|
|
32176
|
+
# @!attribute [rw] contact_id
|
|
32177
|
+
# The identifier of the contact in this instance of Connect Customer.
|
|
32178
|
+
# @return [String]
|
|
32179
|
+
#
|
|
32180
|
+
# @!attribute [rw] analytics_modes
|
|
32181
|
+
# The analytics modes to run for the contact. Valid values:
|
|
32182
|
+
# `PostContact`.
|
|
32183
|
+
# @return [Array<String>]
|
|
32184
|
+
#
|
|
32185
|
+
# @!attribute [rw] analytics_configuration
|
|
32186
|
+
# The configuration for the conversational analytics job.
|
|
32187
|
+
# @return [Types::AnalyticsConfiguration]
|
|
32188
|
+
#
|
|
32189
|
+
# @!attribute [rw] client_token
|
|
32190
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
|
32191
|
+
# idempotency of the request. If not provided, the Amazon Web Services
|
|
32192
|
+
# SDK populates this field. For more information about idempotency,
|
|
32193
|
+
# see [Making retries safe with idempotent APIs][1].
|
|
32194
|
+
#
|
|
32195
|
+
#
|
|
32196
|
+
#
|
|
32197
|
+
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
32198
|
+
# @return [String]
|
|
32199
|
+
#
|
|
32200
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactConversationalAnalyticsJobRequest AWS API Documentation
|
|
32201
|
+
#
|
|
32202
|
+
class StartContactConversationalAnalyticsJobRequest < Struct.new(
|
|
32203
|
+
:instance_id,
|
|
32204
|
+
:contact_id,
|
|
32205
|
+
:analytics_modes,
|
|
32206
|
+
:analytics_configuration,
|
|
32207
|
+
:client_token)
|
|
32208
|
+
SENSITIVE = []
|
|
32209
|
+
include Aws::Structure
|
|
32210
|
+
end
|
|
32211
|
+
|
|
32212
|
+
# @!attribute [rw] instance_id
|
|
32213
|
+
# The identifier of the Connect Customer instance.
|
|
32214
|
+
# @return [String]
|
|
32215
|
+
#
|
|
32216
|
+
# @!attribute [rw] contact_id
|
|
32217
|
+
# The identifier of the contact.
|
|
32218
|
+
# @return [String]
|
|
32219
|
+
#
|
|
32220
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartContactConversationalAnalyticsJobResponse AWS API Documentation
|
|
32221
|
+
#
|
|
32222
|
+
class StartContactConversationalAnalyticsJobResponse < Struct.new(
|
|
32223
|
+
:instance_id,
|
|
32224
|
+
:contact_id)
|
|
32225
|
+
SENSITIVE = []
|
|
32226
|
+
include Aws::Structure
|
|
32227
|
+
end
|
|
32228
|
+
|
|
31958
32229
|
# @!attribute [rw] instance_id
|
|
31959
32230
|
# The identifier of the Connect Customer instance. You can [find the
|
|
31960
32231
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -33477,6 +33748,22 @@ module Aws::Connect
|
|
|
33477
33748
|
include Aws::Structure
|
|
33478
33749
|
end
|
|
33479
33750
|
|
|
33751
|
+
# The summary configuration for conversational analytics.
|
|
33752
|
+
#
|
|
33753
|
+
# @!attribute [rw] summary_modes
|
|
33754
|
+
# The summary modes that determine what type of summarization is
|
|
33755
|
+
# generated. Valid values: `PostContact` \| `AutomatedInteraction` \|
|
|
33756
|
+
# `ContactChain`.
|
|
33757
|
+
# @return [Array<String>]
|
|
33758
|
+
#
|
|
33759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SummaryConfiguration AWS API Documentation
|
|
33760
|
+
#
|
|
33761
|
+
class SummaryConfiguration < Struct.new(
|
|
33762
|
+
:summary_modes)
|
|
33763
|
+
SENSITIVE = []
|
|
33764
|
+
include Aws::Structure
|
|
33765
|
+
end
|
|
33766
|
+
|
|
33480
33767
|
# @!attribute [rw] instance_id
|
|
33481
33768
|
# The identifier of the Connect Customer instance. You can [find the
|
|
33482
33769
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -538,6 +538,24 @@ module Aws
|
|
|
538
538
|
) -> _CreateAgentStatusResponseSuccess
|
|
539
539
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAgentStatusResponseSuccess
|
|
540
540
|
|
|
541
|
+
interface _CreateAttachedFileResponseSuccess
|
|
542
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateAttachedFileResponse]
|
|
543
|
+
def file_arn: () -> ::String
|
|
544
|
+
def file_id: () -> ::String
|
|
545
|
+
def creation_time: () -> ::String
|
|
546
|
+
def file_status: () -> ("APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")
|
|
547
|
+
end
|
|
548
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_attached_file-instance_method
|
|
549
|
+
def create_attached_file: (
|
|
550
|
+
?client_token: ::String,
|
|
551
|
+
instance_id: ::String,
|
|
552
|
+
file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING"),
|
|
553
|
+
file_source_uri: ::String,
|
|
554
|
+
associated_resource_arn: ::String,
|
|
555
|
+
?tags: Hash[::String, ::String]
|
|
556
|
+
) -> _CreateAttachedFileResponseSuccess
|
|
557
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAttachedFileResponseSuccess
|
|
558
|
+
|
|
541
559
|
interface _CreateContactResponseSuccess
|
|
542
560
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactResponse]
|
|
543
561
|
def contact_id: () -> ::String
|
|
@@ -2239,7 +2257,7 @@ module Aws
|
|
|
2239
2257
|
def file_name: () -> ::String
|
|
2240
2258
|
def file_size_in_bytes: () -> ::Integer
|
|
2241
2259
|
def associated_resource_arn: () -> ::String
|
|
2242
|
-
def file_use_case_type: () -> ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT")
|
|
2260
|
+
def file_use_case_type: () -> ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING")
|
|
2243
2261
|
def created_by: () -> Types::CreatedByInfo
|
|
2244
2262
|
def download_url_metadata: () -> Types::DownloadUrlMetadata
|
|
2245
2263
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -4304,7 +4322,7 @@ module Aws
|
|
|
4304
4322
|
file_name: ::String,
|
|
4305
4323
|
file_size_in_bytes: ::Integer,
|
|
4306
4324
|
?url_expiry_in_seconds: ::Integer,
|
|
4307
|
-
file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT"),
|
|
4325
|
+
file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING"),
|
|
4308
4326
|
associated_resource_arn: ::String,
|
|
4309
4327
|
?created_by: {
|
|
4310
4328
|
connect_user_arn: ::String?,
|
|
@@ -4350,6 +4368,40 @@ module Aws
|
|
|
4350
4368
|
) -> _StartChatContactResponseSuccess
|
|
4351
4369
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
|
|
4352
4370
|
|
|
4371
|
+
interface _StartContactConversationalAnalyticsJobResponseSuccess
|
|
4372
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartContactConversationalAnalyticsJobResponse]
|
|
4373
|
+
def instance_id: () -> ::String
|
|
4374
|
+
def contact_id: () -> ::String
|
|
4375
|
+
end
|
|
4376
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_contact_conversational_analytics_job-instance_method
|
|
4377
|
+
def start_contact_conversational_analytics_job: (
|
|
4378
|
+
instance_id: ::String,
|
|
4379
|
+
contact_id: ::String,
|
|
4380
|
+
analytics_modes: Array[("PostContact" | "RealTime" | "ContactLens" | "AutomatedInteraction")],
|
|
4381
|
+
analytics_configuration: {
|
|
4382
|
+
language_configuration: {
|
|
4383
|
+
language_locale: ::String?
|
|
4384
|
+
},
|
|
4385
|
+
redaction_configuration: {
|
|
4386
|
+
behavior: ("Enable" | "Disable"),
|
|
4387
|
+
policy: ("None" | "RedactedOnly" | "RedactedAndOriginal"),
|
|
4388
|
+
entities: Array[::String]?,
|
|
4389
|
+
mask_mode: ("PII" | "EntityType")?
|
|
4390
|
+
},
|
|
4391
|
+
sentiment_configuration: {
|
|
4392
|
+
behavior: ("Enable" | "Disable")
|
|
4393
|
+
},
|
|
4394
|
+
summary_configuration: {
|
|
4395
|
+
summary_modes: Array[("PostContact" | "AutomatedInteraction" | "ContactChain")]
|
|
4396
|
+
},
|
|
4397
|
+
rules_configuration: {
|
|
4398
|
+
behavior: ("Enable" | "Disable")?
|
|
4399
|
+
}
|
|
4400
|
+
},
|
|
4401
|
+
?client_token: ::String
|
|
4402
|
+
) -> _StartContactConversationalAnalyticsJobResponseSuccess
|
|
4403
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactConversationalAnalyticsJobResponseSuccess
|
|
4404
|
+
|
|
4353
4405
|
interface _StartContactEvaluationResponseSuccess
|
|
4354
4406
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartContactEvaluationResponse]
|
|
4355
4407
|
def evaluation_id: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -198,6 +198,15 @@ module Aws::Connect
|
|
|
198
198
|
SENSITIVE: []
|
|
199
199
|
end
|
|
200
200
|
|
|
201
|
+
class AnalyticsConfiguration
|
|
202
|
+
attr_accessor language_configuration: Types::LanguageConfiguration
|
|
203
|
+
attr_accessor redaction_configuration: Types::RedactionConfiguration
|
|
204
|
+
attr_accessor sentiment_configuration: Types::SentimentConfiguration
|
|
205
|
+
attr_accessor summary_configuration: Types::SummaryConfiguration
|
|
206
|
+
attr_accessor rules_configuration: Types::RulesConfiguration
|
|
207
|
+
SENSITIVE: []
|
|
208
|
+
end
|
|
209
|
+
|
|
201
210
|
class AnalyticsDataAssociationResult
|
|
202
211
|
attr_accessor data_set_id: ::String
|
|
203
212
|
attr_accessor target_account_id: ::String
|
|
@@ -442,7 +451,7 @@ module Aws::Connect
|
|
|
442
451
|
attr_accessor file_size_in_bytes: ::Integer
|
|
443
452
|
attr_accessor file_status: ("APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")
|
|
444
453
|
attr_accessor created_by: Types::CreatedByInfo
|
|
445
|
-
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT")
|
|
454
|
+
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING")
|
|
446
455
|
attr_accessor associated_resource_arn: ::String
|
|
447
456
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
448
457
|
SENSITIVE: []
|
|
@@ -1267,6 +1276,24 @@ module Aws::Connect
|
|
|
1267
1276
|
SENSITIVE: []
|
|
1268
1277
|
end
|
|
1269
1278
|
|
|
1279
|
+
class CreateAttachedFileRequest
|
|
1280
|
+
attr_accessor client_token: ::String
|
|
1281
|
+
attr_accessor instance_id: ::String
|
|
1282
|
+
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING")
|
|
1283
|
+
attr_accessor file_source_uri: ::String
|
|
1284
|
+
attr_accessor associated_resource_arn: ::String
|
|
1285
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
1286
|
+
SENSITIVE: []
|
|
1287
|
+
end
|
|
1288
|
+
|
|
1289
|
+
class CreateAttachedFileResponse
|
|
1290
|
+
attr_accessor file_arn: ::String
|
|
1291
|
+
attr_accessor file_id: ::String
|
|
1292
|
+
attr_accessor creation_time: ::String
|
|
1293
|
+
attr_accessor file_status: ("APPROVED" | "REJECTED" | "PROCESSING" | "FAILED")
|
|
1294
|
+
SENSITIVE: []
|
|
1295
|
+
end
|
|
1296
|
+
|
|
1270
1297
|
class CreateCaseActionDefinition
|
|
1271
1298
|
attr_accessor fields: ::Array[Types::FieldValue]
|
|
1272
1299
|
attr_accessor template_id: ::String
|
|
@@ -3912,7 +3939,7 @@ module Aws::Connect
|
|
|
3912
3939
|
attr_accessor file_name: ::String
|
|
3913
3940
|
attr_accessor file_size_in_bytes: ::Integer
|
|
3914
3941
|
attr_accessor associated_resource_arn: ::String
|
|
3915
|
-
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT")
|
|
3942
|
+
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING")
|
|
3916
3943
|
attr_accessor created_by: Types::CreatedByInfo
|
|
3917
3944
|
attr_accessor download_url_metadata: Types::DownloadUrlMetadata
|
|
3918
3945
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -4543,6 +4570,11 @@ module Aws::Connect
|
|
|
4543
4570
|
SENSITIVE: []
|
|
4544
4571
|
end
|
|
4545
4572
|
|
|
4573
|
+
class LanguageConfiguration
|
|
4574
|
+
attr_accessor language_locale: ::String
|
|
4575
|
+
SENSITIVE: []
|
|
4576
|
+
end
|
|
4577
|
+
|
|
4546
4578
|
class LexBot
|
|
4547
4579
|
attr_accessor name: ::String
|
|
4548
4580
|
attr_accessor lex_region: ::String
|
|
@@ -6447,6 +6479,14 @@ module Aws::Connect
|
|
|
6447
6479
|
SENSITIVE: []
|
|
6448
6480
|
end
|
|
6449
6481
|
|
|
6482
|
+
class RedactionConfiguration
|
|
6483
|
+
attr_accessor behavior: ("Enable" | "Disable")
|
|
6484
|
+
attr_accessor policy: ("None" | "RedactedOnly" | "RedactedAndOriginal")
|
|
6485
|
+
attr_accessor entities: ::Array[::String]
|
|
6486
|
+
attr_accessor mask_mode: ("PII" | "EntityType")
|
|
6487
|
+
SENSITIVE: []
|
|
6488
|
+
end
|
|
6489
|
+
|
|
6450
6490
|
class Reference
|
|
6451
6491
|
attr_accessor value: ::String
|
|
6452
6492
|
attr_accessor type: ("URL" | "ATTACHMENT" | "CONTACT_ANALYSIS" | "NUMBER" | "STRING" | "DATE" | "EMAIL" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "EMAIL_MESSAGE_REDACTED")
|
|
@@ -6735,6 +6775,11 @@ module Aws::Connect
|
|
|
6735
6775
|
SENSITIVE: []
|
|
6736
6776
|
end
|
|
6737
6777
|
|
|
6778
|
+
class RulesConfiguration
|
|
6779
|
+
attr_accessor behavior: ("Enable" | "Disable")
|
|
6780
|
+
SENSITIVE: []
|
|
6781
|
+
end
|
|
6782
|
+
|
|
6738
6783
|
class S3Config
|
|
6739
6784
|
attr_accessor bucket_name: ::String
|
|
6740
6785
|
attr_accessor bucket_prefix: ::String
|
|
@@ -7350,6 +7395,11 @@ module Aws::Connect
|
|
|
7350
7395
|
class SendOutboundEmailResponse < Aws::EmptyStructure
|
|
7351
7396
|
end
|
|
7352
7397
|
|
|
7398
|
+
class SentimentConfiguration
|
|
7399
|
+
attr_accessor behavior: ("Enable" | "Disable")
|
|
7400
|
+
SENSITIVE: []
|
|
7401
|
+
end
|
|
7402
|
+
|
|
7353
7403
|
class ServiceQuotaExceededException
|
|
7354
7404
|
attr_accessor message: ::String
|
|
7355
7405
|
attr_accessor reason: Types::ServiceQuotaExceededExceptionReason
|
|
@@ -7403,7 +7453,7 @@ module Aws::Connect
|
|
|
7403
7453
|
attr_accessor file_name: ::String
|
|
7404
7454
|
attr_accessor file_size_in_bytes: ::Integer
|
|
7405
7455
|
attr_accessor url_expiry_in_seconds: ::Integer
|
|
7406
|
-
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT")
|
|
7456
|
+
attr_accessor file_use_case_type: ("CONTACT_ANALYSIS" | "EMAIL_MESSAGE" | "EMAIL_MESSAGE_PLAIN_TEXT" | "EMAIL_MESSAGE_REDACTED" | "EMAIL_MESSAGE_PLAIN_TEXT_REDACTED" | "ATTACHMENT" | "VOICE_RECORDING")
|
|
7407
7457
|
attr_accessor associated_resource_arn: ::String
|
|
7408
7458
|
attr_accessor created_by: Types::CreatedByInfo
|
|
7409
7459
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -7446,6 +7496,21 @@ module Aws::Connect
|
|
|
7446
7496
|
SENSITIVE: []
|
|
7447
7497
|
end
|
|
7448
7498
|
|
|
7499
|
+
class StartContactConversationalAnalyticsJobRequest
|
|
7500
|
+
attr_accessor instance_id: ::String
|
|
7501
|
+
attr_accessor contact_id: ::String
|
|
7502
|
+
attr_accessor analytics_modes: ::Array[("PostContact" | "RealTime" | "ContactLens" | "AutomatedInteraction")]
|
|
7503
|
+
attr_accessor analytics_configuration: Types::AnalyticsConfiguration
|
|
7504
|
+
attr_accessor client_token: ::String
|
|
7505
|
+
SENSITIVE: []
|
|
7506
|
+
end
|
|
7507
|
+
|
|
7508
|
+
class StartContactConversationalAnalyticsJobResponse
|
|
7509
|
+
attr_accessor instance_id: ::String
|
|
7510
|
+
attr_accessor contact_id: ::String
|
|
7511
|
+
SENSITIVE: []
|
|
7512
|
+
end
|
|
7513
|
+
|
|
7449
7514
|
class StartContactEvaluationRequest
|
|
7450
7515
|
attr_accessor instance_id: ::String
|
|
7451
7516
|
attr_accessor contact_id: ::String
|
|
@@ -7774,6 +7839,11 @@ module Aws::Connect
|
|
|
7774
7839
|
SENSITIVE: []
|
|
7775
7840
|
end
|
|
7776
7841
|
|
|
7842
|
+
class SummaryConfiguration
|
|
7843
|
+
attr_accessor summary_modes: ::Array[("PostContact" | "AutomatedInteraction" | "ContactChain")]
|
|
7844
|
+
SENSITIVE: []
|
|
7845
|
+
end
|
|
7846
|
+
|
|
7777
7847
|
class SuspendContactRecordingRequest
|
|
7778
7848
|
attr_accessor instance_id: ::String
|
|
7779
7849
|
attr_accessor contact_id: ::String
|