aws-sdk-connect 1.271.0 → 1.273.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4151ed6a1ce93fbb407962b68a89378f92512e1494edb65c4da114fdcb9674a8
4
- data.tar.gz: c23b253c8108a659a2d2c7ce180184bb8bac2cdfcc3a444d7769895d1a37cc8b
3
+ metadata.gz: d6def0c025a8df96803c126a375249fe0f0cf2c2345791864cfac1ba4679de4c
4
+ data.tar.gz: 8cc8e19fcc0b0d2d4fb2960d3e3dd4b85e11d78c359daa31577344c303447ef5
5
5
  SHA512:
6
- metadata.gz: 6d73b0b9f82627dec9310ab8ecf253966a2764408fa442ccd5decc4bcd460cb55666fbb544901793052eada624a1b049a49d9138893a8afaea60f4366de1a966
7
- data.tar.gz: ae484effe1a5ba9318fcd5b33f9a2767424327575ff37ae6f99d4eb3dd15bcc856abc20ca4b95a3eb9f7fa33a47ad17baf1f70fa41a80e6873524e47914bd177
6
+ metadata.gz: b68a1efade1ba7f754666eeea6c2a7d4116be761bd3fecf5683fa94165c3f5bf6283c0e3fe2eb0d8a13847050681e190fda9b7951713bb4902feae8b1767a126
7
+ data.tar.gz: c12a03cf4e6a1262cc95739950b8346724f6d54b5d862bd5182e9dbbe046bb89f383d08930d2c5d337470c466d954377872ac053421016fda941e8795317583d
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.273.0 (2026-08-24)
5
+ ------------------
6
+
7
+ * Feature - This release adds the ExtractedInformation segment to the ListRealtimeContactAnalysisSegmentsV2 API, enabling customers to retrieve information extracted from real-time contact analysis.
8
+
9
+ 1.272.0 (2026-08-17)
10
+ ------------------
11
+
12
+ * Feature - This release adds new APIs to create, describe, update, delete, and list extraction definitions, enabling customers to manage lifecycle of extraction definition resources. Additionally, this release adds new event sources for Rules related to ACW and new action to Extract Information.
13
+
4
14
  1.271.0 (2026-08-13)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.271.0
1
+ 1.273.0
@@ -3741,6 +3741,82 @@ module Aws::Connect
3741
3741
  req.send_request(options)
3742
3742
  end
3743
3743
 
3744
+ # Creates an extraction definition in the specified Connect Customer
3745
+ # instance. An extraction definition specifies how structured data is
3746
+ # extracted from customer interactions using generative AI, including
3747
+ # the prompt hint that guides extraction and the behavior when a value
3748
+ # cannot be found.
3749
+ #
3750
+ # @option params [String] :client_token
3751
+ # A unique, case-sensitive identifier that you provide to ensure the
3752
+ # idempotency of the request. If not provided, the Amazon Web Services
3753
+ # SDK populates this field.
3754
+ #
3755
+ # **A suitable default value is auto-generated.** You should normally
3756
+ # not need to pass this option.**
3757
+ #
3758
+ # @option params [required, String] :instance_id
3759
+ # The identifier of the Connect Customer instance. You can [find the
3760
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
3761
+ #
3762
+ #
3763
+ #
3764
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
3765
+ #
3766
+ # @option params [required, String] :name
3767
+ # A unique name of the extraction definition.
3768
+ #
3769
+ # @option params [required, Types::ExtractionConfiguration] :extraction_configuration
3770
+ # The configuration that defines how data is extracted, including the
3771
+ # prompt hint and not-found behavior.
3772
+ #
3773
+ # @option params [Types::ExtractionDefinitionDisplay] :display
3774
+ # The display settings for the extraction definition, including the
3775
+ # label shown in the agent workspace.
3776
+ #
3777
+ # @option params [Hash<String,String>] :tags
3778
+ # The tags used to organize, track, or control access for this resource.
3779
+ #
3780
+ # @return [Types::CreateExtractionDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3781
+ #
3782
+ # * {Types::CreateExtractionDefinitionResponse#extraction_definition_arn #extraction_definition_arn} => String
3783
+ # * {Types::CreateExtractionDefinitionResponse#extraction_definition_id #extraction_definition_id} => String
3784
+ #
3785
+ # @example Request syntax with placeholder values
3786
+ #
3787
+ # resp = client.create_extraction_definition({
3788
+ # client_token: "ClientToken",
3789
+ # instance_id: "InstanceId", # required
3790
+ # name: "ExtractionDefinitionName", # required
3791
+ # extraction_configuration: { # required
3792
+ # prompt_hint: "ExtractionDefinitionPromptHint", # required
3793
+ # not_found_behavior: {
3794
+ # behavior: "USE_DEFAULT_VALUE", # required, accepts USE_DEFAULT_VALUE, OMIT
3795
+ # default_value: "NotFoundDefaultValue",
3796
+ # },
3797
+ # },
3798
+ # display: {
3799
+ # label: "ExtractionDefinitionDisplayLabel",
3800
+ # },
3801
+ # tags: {
3802
+ # "TagKey" => "TagValue",
3803
+ # },
3804
+ # })
3805
+ #
3806
+ # @example Response structure
3807
+ #
3808
+ # resp.extraction_definition_arn #=> String
3809
+ # resp.extraction_definition_id #=> String
3810
+ #
3811
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateExtractionDefinition AWS API Documentation
3812
+ #
3813
+ # @overload create_extraction_definition(params = {})
3814
+ # @param [Hash] params ({})
3815
+ def create_extraction_definition(params = {}, options = {})
3816
+ req = build_request(:create_extraction_definition, params)
3817
+ req.send_request(options)
3818
+ end
3819
+
3744
3820
  # Creates hours of operation.
3745
3821
  #
3746
3822
  # @option params [required, String] :instance_id
@@ -5058,13 +5134,13 @@ module Aws::Connect
5058
5134
  # instance_id: "InstanceId", # required
5059
5135
  # name: "RuleName", # required
5060
5136
  # trigger_event_source: { # required
5061
- # event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnEmailAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach, OnAlertUpdate, OnSchedulePublish, OnScheduleUpdate, OnScheduleTimeOffRequestActivity
5137
+ # event_source_name: "OnPostCallAnalysisAvailable", # required, accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnAfterCallWorkAvailable, OnAfterChatWorkAvailable, OnEmailAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach, OnAlertUpdate, OnSchedulePublish, OnScheduleUpdate, OnScheduleTimeOffRequestActivity
5062
5138
  # integration_association_id: "IntegrationAssociationId",
5063
5139
  # },
5064
5140
  # function: "RuleFunction", # required
5065
5141
  # actions: [ # required
5066
5142
  # {
5067
- # action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
5143
+ # action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION, EXTRACT_INFORMATION
5068
5144
  # task_action: {
5069
5145
  # name: "TaskNameExpression", # required
5070
5146
  # description: "TaskDescriptionExpression",
@@ -5154,6 +5230,13 @@ module Aws::Connect
5154
5230
  # submit_auto_evaluation_action: {
5155
5231
  # evaluation_form_id: "EvaluationFormId", # required
5156
5232
  # },
5233
+ # extract_information_action: {
5234
+ # rules_extraction_definitions: [ # required
5235
+ # {
5236
+ # identifier: "RulesExtractionDefinitionId", # required
5237
+ # },
5238
+ # ],
5239
+ # },
5157
5240
  # },
5158
5241
  # ],
5159
5242
  # publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
@@ -6855,6 +6938,38 @@ module Aws::Connect
6855
6938
  req.send_request(options)
6856
6939
  end
6857
6940
 
6941
+ # Deletes an extraction definition from the specified Connect Customer
6942
+ # instance.
6943
+ #
6944
+ # @option params [required, String] :instance_id
6945
+ # The identifier of the Connect Customer instance. You can [find the
6946
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
6947
+ #
6948
+ #
6949
+ #
6950
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
6951
+ #
6952
+ # @option params [required, String] :extraction_definition_id
6953
+ # The identifier of the extraction definition to delete.
6954
+ #
6955
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
6956
+ #
6957
+ # @example Request syntax with placeholder values
6958
+ #
6959
+ # resp = client.delete_extraction_definition({
6960
+ # instance_id: "InstanceId", # required
6961
+ # extraction_definition_id: "ExtractionDefinitionId", # required
6962
+ # })
6963
+ #
6964
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteExtractionDefinition AWS API Documentation
6965
+ #
6966
+ # @overload delete_extraction_definition(params = {})
6967
+ # @param [Hash] params ({})
6968
+ def delete_extraction_definition(params = {}, options = {})
6969
+ req = build_request(:delete_extraction_definition, params)
6970
+ req.send_request(options)
6971
+ end
6972
+
6858
6973
  # Deletes an hours of operation.
6859
6974
  #
6860
6975
  # @option params [required, String] :instance_id
@@ -8909,6 +9024,55 @@ module Aws::Connect
8909
9024
  req.send_request(options)
8910
9025
  end
8911
9026
 
9027
+ # Describes an extraction definition in the specified Connect Customer
9028
+ # instance.
9029
+ #
9030
+ # @option params [required, String] :instance_id
9031
+ # The identifier of the Connect Customer instance. You can [find the
9032
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
9033
+ #
9034
+ #
9035
+ #
9036
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
9037
+ #
9038
+ # @option params [required, String] :extraction_definition_id
9039
+ # The identifier of the extraction definition to describe.
9040
+ #
9041
+ # @return [Types::DescribeExtractionDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
9042
+ #
9043
+ # * {Types::DescribeExtractionDefinitionResponse#extraction_definition #extraction_definition} => Types::ExtractionDefinition
9044
+ #
9045
+ # @example Request syntax with placeholder values
9046
+ #
9047
+ # resp = client.describe_extraction_definition({
9048
+ # instance_id: "InstanceId", # required
9049
+ # extraction_definition_id: "ExtractionDefinitionId", # required
9050
+ # })
9051
+ #
9052
+ # @example Response structure
9053
+ #
9054
+ # resp.extraction_definition.name #=> String
9055
+ # resp.extraction_definition.extraction_definition_id #=> String
9056
+ # resp.extraction_definition.extraction_definition_arn #=> String
9057
+ # resp.extraction_definition.extraction_configuration.prompt_hint #=> String
9058
+ # resp.extraction_definition.extraction_configuration.not_found_behavior.behavior #=> String, one of "USE_DEFAULT_VALUE", "OMIT"
9059
+ # resp.extraction_definition.extraction_configuration.not_found_behavior.default_value #=> String
9060
+ # resp.extraction_definition.display.label #=> String
9061
+ # resp.extraction_definition.created_time #=> Time
9062
+ # resp.extraction_definition.last_updated_time #=> Time
9063
+ # resp.extraction_definition.last_updated_by #=> String
9064
+ # resp.extraction_definition.tags #=> Hash
9065
+ # resp.extraction_definition.tags["TagKey"] #=> String
9066
+ #
9067
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeExtractionDefinition AWS API Documentation
9068
+ #
9069
+ # @overload describe_extraction_definition(params = {})
9070
+ # @param [Hash] params ({})
9071
+ def describe_extraction_definition(params = {}, options = {})
9072
+ req = build_request(:describe_extraction_definition, params)
9073
+ req.send_request(options)
9074
+ end
9075
+
8912
9076
  # Describes the hours of operation.
8913
9077
  #
8914
9078
  # @option params [required, String] :instance_id
@@ -9678,13 +9842,13 @@ module Aws::Connect
9678
9842
  # resp.rule.name #=> String
9679
9843
  # resp.rule.rule_id #=> String
9680
9844
  # resp.rule.rule_arn #=> String
9681
- # resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
9845
+ # resp.rule.trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnAfterCallWorkAvailable", "OnAfterChatWorkAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
9682
9846
  # resp.rule.trigger_event_source.integration_association_id #=> String
9683
9847
  # resp.rule.rule_capability_tiers #=> Array
9684
9848
  # resp.rule.rule_capability_tiers[0] #=> String, one of "GenerativeAI"
9685
9849
  # resp.rule.function #=> String
9686
9850
  # resp.rule.actions #=> Array
9687
- # resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
9851
+ # resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION", "EXTRACT_INFORMATION"
9688
9852
  # resp.rule.actions[0].task_action.name #=> String
9689
9853
  # resp.rule.actions[0].task_action.description #=> String
9690
9854
  # resp.rule.actions[0].task_action.contact_flow_id #=> String
@@ -9728,6 +9892,8 @@ module Aws::Connect
9728
9892
  # resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_field_values[0].string_value #=> String
9729
9893
  # resp.rule.actions[0].assign_sla_action.case_sla_configuration.target_sla_minutes #=> Integer
9730
9894
  # resp.rule.actions[0].submit_auto_evaluation_action.evaluation_form_id #=> String
9895
+ # resp.rule.actions[0].extract_information_action.rules_extraction_definitions #=> Array
9896
+ # resp.rule.actions[0].extract_information_action.rules_extraction_definitions[0].identifier #=> String
9731
9897
  # resp.rule.publish_status #=> String, one of "DRAFT", "PUBLISHED"
9732
9898
  # resp.rule.created_time #=> Time
9733
9899
  # resp.rule.last_updated_time #=> Time
@@ -16817,6 +16983,61 @@ module Aws::Connect
16817
16983
  req.send_request(options)
16818
16984
  end
16819
16985
 
16986
+ # Lists extraction definitions in the specified Connect Customer
16987
+ # instance.
16988
+ #
16989
+ # @option params [required, String] :instance_id
16990
+ # The identifier of the Connect Customer instance. You can [find the
16991
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16992
+ #
16993
+ #
16994
+ #
16995
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16996
+ #
16997
+ # @option params [Integer] :max_results
16998
+ # The maximum number of results to return per page. The default
16999
+ # MaxResult size is 100.
17000
+ #
17001
+ # @option params [String] :next_token
17002
+ # The token for the next set of results. Use the value returned in the
17003
+ # previous response in the next request to retrieve the next set of
17004
+ # results.
17005
+ #
17006
+ # @return [Types::ListExtractionDefinitionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
17007
+ #
17008
+ # * {Types::ListExtractionDefinitionsResponse#extraction_definition_summary_list #extraction_definition_summary_list} => Array&lt;Types::ExtractionDefinitionSummary&gt;
17009
+ # * {Types::ListExtractionDefinitionsResponse#next_token #next_token} => String
17010
+ #
17011
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
17012
+ #
17013
+ # @example Request syntax with placeholder values
17014
+ #
17015
+ # resp = client.list_extraction_definitions({
17016
+ # instance_id: "InstanceId", # required
17017
+ # max_results: 1,
17018
+ # next_token: "NextToken",
17019
+ # })
17020
+ #
17021
+ # @example Response structure
17022
+ #
17023
+ # resp.extraction_definition_summary_list #=> Array
17024
+ # resp.extraction_definition_summary_list[0].name #=> String
17025
+ # resp.extraction_definition_summary_list[0].extraction_definition_id #=> String
17026
+ # resp.extraction_definition_summary_list[0].extraction_definition_arn #=> String
17027
+ # resp.extraction_definition_summary_list[0].created_time #=> Time
17028
+ # resp.extraction_definition_summary_list[0].last_updated_time #=> Time
17029
+ # resp.extraction_definition_summary_list[0].last_updated_by #=> String
17030
+ # resp.next_token #=> String
17031
+ #
17032
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListExtractionDefinitions AWS API Documentation
17033
+ #
17034
+ # @overload list_extraction_definitions(params = {})
17035
+ # @param [Hash] params ({})
17036
+ def list_extraction_definitions(params = {}, options = {})
17037
+ req = build_request(:list_extraction_definitions, params)
17038
+ req.send_request(options)
17039
+ end
17040
+
16820
17041
  # List the flow association based on the filters.
16821
17042
  #
16822
17043
  # @option params [required, String] :instance_id
@@ -18111,7 +18332,7 @@ module Aws::Connect
18111
18332
  # max_results: 1,
18112
18333
  # next_token: "LargeNextToken",
18113
18334
  # output_type: "Raw", # required, accepts Raw, Redacted
18114
- # segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary
18335
+ # segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary, ExtractedInformation
18115
18336
  # })
18116
18337
  #
18117
18338
  # @example Response structure
@@ -18161,6 +18382,16 @@ module Aws::Connect
18161
18382
  # resp.segments[0].post_contact_summary.content #=> String
18162
18383
  # resp.segments[0].post_contact_summary.status #=> String, one of "FAILED", "COMPLETED"
18163
18384
  # resp.segments[0].post_contact_summary.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INVALID_ANALYSIS_CONFIGURATION", "INTERNAL_ERROR"
18385
+ # resp.segments[0].extracted_information.extraction_definition_id #=> String
18386
+ # resp.segments[0].extracted_information.extraction_definition_name #=> String
18387
+ # resp.segments[0].extracted_information.extraction_definition_display_label #=> String
18388
+ # resp.segments[0].extracted_information.extracted_values #=> Array
18389
+ # resp.segments[0].extracted_information.extracted_values[0].content #=> String
18390
+ # resp.segments[0].extracted_information.extracted_values[0].points_of_interest #=> Array
18391
+ # resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].id #=> String
18392
+ # resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.begin_offset_char #=> Integer
18393
+ # resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.end_offset_char #=> Integer
18394
+ # resp.segments[0].extracted_information.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INTERNAL_ERROR", "MAX_PACKAGE_FEATURE_ONLY"
18164
18395
  # resp.next_token #=> String
18165
18396
  #
18166
18397
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRealtimeContactAnalysisSegmentsV2 AWS API Documentation
@@ -18421,7 +18652,7 @@ module Aws::Connect
18421
18652
  # resp = client.list_rules({
18422
18653
  # instance_id: "InstanceId", # required
18423
18654
  # publish_status: "DRAFT", # accepts DRAFT, PUBLISHED
18424
- # event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnEmailAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach, OnAlertUpdate, OnSchedulePublish, OnScheduleUpdate, OnScheduleTimeOffRequestActivity
18655
+ # event_source_name: "OnPostCallAnalysisAvailable", # accepts OnPostCallAnalysisAvailable, OnRealTimeCallAnalysisAvailable, OnRealTimeChatAnalysisAvailable, OnPostChatAnalysisAvailable, OnAfterCallWorkAvailable, OnAfterChatWorkAvailable, OnEmailAnalysisAvailable, OnZendeskTicketCreate, OnZendeskTicketStatusUpdate, OnSalesforceCaseCreate, OnContactEvaluationSubmit, OnMetricDataUpdate, OnCaseCreate, OnCaseUpdate, OnSlaBreach, OnAlertUpdate, OnSchedulePublish, OnScheduleUpdate, OnScheduleTimeOffRequestActivity
18425
18656
  # max_results: 1,
18426
18657
  # next_token: "NextToken",
18427
18658
  # })
@@ -18432,12 +18663,12 @@ module Aws::Connect
18432
18663
  # resp.rule_summary_list[0].name #=> String
18433
18664
  # resp.rule_summary_list[0].rule_id #=> String
18434
18665
  # resp.rule_summary_list[0].rule_arn #=> String
18435
- # resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
18666
+ # resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnAfterCallWorkAvailable", "OnAfterChatWorkAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
18436
18667
  # resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
18437
18668
  # resp.rule_summary_list[0].rule_capability_tiers #=> Array
18438
18669
  # resp.rule_summary_list[0].rule_capability_tiers[0] #=> String, one of "GenerativeAI"
18439
18670
  # resp.rule_summary_list[0].action_summaries #=> Array
18440
- # resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
18671
+ # resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION", "EXTRACT_INFORMATION"
18441
18672
  # resp.rule_summary_list[0].created_time #=> Time
18442
18673
  # resp.rule_summary_list[0].last_updated_time #=> Time
18443
18674
  # resp.next_token #=> String
@@ -22577,10 +22808,10 @@ module Aws::Connect
22577
22808
  # resp.rules[0].name #=> String
22578
22809
  # resp.rules[0].rule_id #=> String
22579
22810
  # resp.rules[0].rule_arn #=> String
22580
- # resp.rules[0].trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
22811
+ # resp.rules[0].trigger_event_source.event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnAfterCallWorkAvailable", "OnAfterChatWorkAvailable", "OnEmailAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate", "OnSlaBreach", "OnAlertUpdate", "OnSchedulePublish", "OnScheduleUpdate", "OnScheduleTimeOffRequestActivity"
22581
22812
  # resp.rules[0].trigger_event_source.integration_association_id #=> String
22582
22813
  # resp.rules[0].action_summaries #=> Array
22583
- # resp.rules[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
22814
+ # resp.rules[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "ASSIGN_SLA", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION", "EXTRACT_INFORMATION"
22584
22815
  # resp.rules[0].rule_capability_tiers #=> Array
22585
22816
  # resp.rules[0].rule_capability_tiers[0] #=> String, one of "GenerativeAI"
22586
22817
  # resp.rules[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
@@ -23871,8 +24102,8 @@ module Aws::Connect
23871
24102
 
23872
24103
  # Starts a chat contact with an AI agent.
23873
24104
  #
23874
- # Use the returned `ParticipantToken` to call the
23875
- # [CreateParticipantConnection][1] API.
24105
+ # Use the returned `ParticipantToken` with the
24106
+ # [CreateParticipantConnection][1] operation.
23876
24107
  #
23877
24108
  # For more information about chat, see the following topics in the
23878
24109
  # *Connect Customer Administrator Guide*:
@@ -23897,7 +24128,7 @@ module Aws::Connect
23897
24128
  # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
23898
24129
  #
23899
24130
  # @option params [required, Types::AiAgentInput] :ai_agent
23900
- # The AI agent that participates in the contact.
24131
+ # The AI agent configuration for this contact.
23901
24132
  #
23902
24133
  # @option params [required, Types::ParticipantDetails] :participant_details
23903
24134
  # The display name and other details that identify the chat participant.
@@ -23906,13 +24137,11 @@ module Aws::Connect
23906
24137
  # The initial message to send to the newly created chat.
23907
24138
  #
23908
24139
  # @option params [Hash<String,String>] :attributes
23909
- # A map of key-value pairs to associate with the contact. Amazon Connect
23910
- # makes these attributes available to flows as standard contact
23911
- # attributes.
24140
+ # A map of key-value pairs to associate with the contact. We make these
24141
+ # attributes available to flows as standard contact attributes.
23912
24142
  #
23913
24143
  # You can provide up to 32,768 UTF-8 bytes across all key-value pairs
23914
- # per contact. Attribute keys can contain only alphanumeric characters,
23915
- # dashes, and underscores.
24144
+ # for each contact.
23916
24145
  #
23917
24146
  # @option params [String] :client_token
23918
24147
  # A unique, case-sensitive identifier that you provide to ensure the
@@ -25849,12 +26078,9 @@ module Aws::Connect
25849
26078
  # Control Panel (CCP).
25850
26079
  #
25851
26080
  # @option params [Hash<String,Types::SegmentAttributeValue>] :segment_attributes
25852
- # Use this map to specify system-defined attributes for the WebRTC
25853
- # contact segment. Use the `connect:Subtype` attribute to specify the
25854
- # channel subtype, such as `connect:WebRTC`.
25855
- #
25856
- # Attribute keys can contain only alphanumeric characters, hyphens, and
25857
- # underscores.
26081
+ # A map of system-defined attributes for the WebRTC contact segment. Use
26082
+ # the `connect:Subtype` attribute to specify the channel subtype, such
26083
+ # as `connect:WebRTC`.
25858
26084
  #
25859
26085
  # @return [Types::StartWebRTCContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
25860
26086
  #
@@ -28157,6 +28383,68 @@ module Aws::Connect
28157
28383
  req.send_request(options)
28158
28384
  end
28159
28385
 
28386
+ # Updates an extraction definition in the specified Connect Customer
28387
+ # instance.
28388
+ #
28389
+ # @option params [String] :client_token
28390
+ # A unique, case-sensitive identifier that you provide to ensure the
28391
+ # idempotency of the request. If not provided, the Amazon Web Services
28392
+ # SDK populates this field.
28393
+ #
28394
+ # **A suitable default value is auto-generated.** You should normally
28395
+ # not need to pass this option.**
28396
+ #
28397
+ # @option params [required, String] :extraction_definition_id
28398
+ # The identifier of the extraction definition to update.
28399
+ #
28400
+ # @option params [required, String] :instance_id
28401
+ # The identifier of the Connect Customer instance. You can [find the
28402
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
28403
+ #
28404
+ #
28405
+ #
28406
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
28407
+ #
28408
+ # @option params [required, String] :name
28409
+ # The name of the extraction definition.
28410
+ #
28411
+ # @option params [required, Types::ExtractionConfiguration] :extraction_configuration
28412
+ # The configuration that defines how data is extracted, including the
28413
+ # prompt hint and not-found behavior.
28414
+ #
28415
+ # @option params [Types::ExtractionDefinitionDisplay] :display
28416
+ # The display settings for the extraction definition.
28417
+ #
28418
+ # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
28419
+ #
28420
+ # @example Request syntax with placeholder values
28421
+ #
28422
+ # resp = client.update_extraction_definition({
28423
+ # client_token: "ClientToken",
28424
+ # extraction_definition_id: "ExtractionDefinitionId", # required
28425
+ # instance_id: "InstanceId", # required
28426
+ # name: "ExtractionDefinitionName", # required
28427
+ # extraction_configuration: { # required
28428
+ # prompt_hint: "ExtractionDefinitionPromptHint", # required
28429
+ # not_found_behavior: {
28430
+ # behavior: "USE_DEFAULT_VALUE", # required, accepts USE_DEFAULT_VALUE, OMIT
28431
+ # default_value: "NotFoundDefaultValue",
28432
+ # },
28433
+ # },
28434
+ # display: {
28435
+ # label: "ExtractionDefinitionDisplayLabel",
28436
+ # },
28437
+ # })
28438
+ #
28439
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateExtractionDefinition AWS API Documentation
28440
+ #
28441
+ # @overload update_extraction_definition(params = {})
28442
+ # @param [Hash] params ({})
28443
+ def update_extraction_definition(params = {}, options = {})
28444
+ req = build_request(:update_extraction_definition, params)
28445
+ req.send_request(options)
28446
+ end
28447
+
28160
28448
  # Updates the hours of operation.
28161
28449
  #
28162
28450
  # @option params [required, String] :instance_id
@@ -29587,7 +29875,7 @@ module Aws::Connect
29587
29875
  # function: "RuleFunction", # required
29588
29876
  # actions: [ # required
29589
29877
  # {
29590
- # action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
29878
+ # action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, ASSIGN_SLA, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION, EXTRACT_INFORMATION
29591
29879
  # task_action: {
29592
29880
  # name: "TaskNameExpression", # required
29593
29881
  # description: "TaskDescriptionExpression",
@@ -29677,6 +29965,13 @@ module Aws::Connect
29677
29965
  # submit_auto_evaluation_action: {
29678
29966
  # evaluation_form_id: "EvaluationFormId", # required
29679
29967
  # },
29968
+ # extract_information_action: {
29969
+ # rules_extraction_definitions: [ # required
29970
+ # {
29971
+ # identifier: "RulesExtractionDefinitionId", # required
29972
+ # },
29973
+ # ],
29974
+ # },
29680
29975
  # },
29681
29976
  # ],
29682
29977
  # publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
@@ -30999,7 +31294,7 @@ module Aws::Connect
30999
31294
  tracer: tracer
31000
31295
  )
31001
31296
  context[:gem_name] = 'aws-sdk-connect'
31002
- context[:gem_version] = '1.271.0'
31297
+ context[:gem_version] = '1.273.0'
31003
31298
  Seahorse::Client::Request.new(handlers, context)
31004
31299
  end
31005
31300