aws-sdk-connect 1.272.0 → 1.274.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +101 -5
- data/lib/aws-sdk-connect/client_api.rb +85 -16
- data/lib/aws-sdk-connect/types.rb +153 -2
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +21 -1
- data/sig/types.rbs +39 -1
- 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: a325a1b2346f14332c0d7e9527ad7962f3c0d6777fb6ad6738ce57032c93f432
|
|
4
|
+
data.tar.gz: bdbe3ff9259b60910f403ff6e943ce42a155bd70f0c46b19cf145376e9c3a561
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 07542321fd202a2c8bdd5dbd835b406938591963229e1b5277f3308ecb1566a295ef08de98232e979d15c9c2cd2c781ccb4a4437f57803fb518b2f5fe46b2d64
|
|
7
|
+
data.tar.gz: f979d424350e29abb9bd57c4ca8ba1fcde89579ea04bb7b5f34878bd17834af6c5b759ef62786f528b969ead6b19d6b58b519be64af1b821750092c39ea07ba1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.274.0 (2026-08-31)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Added support for global routing on Amazon Connect Global Resiliency instances. New APIs GetCrossRegionRouting and UpdateCrossRegionRouting allow you to view and control cross-region contact routing between linked instances, so both Regions are active at all times.
|
|
8
|
+
|
|
9
|
+
1.273.0 (2026-08-24)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds the ExtractedInformation segment to the ListRealtimeContactAnalysisSegmentsV2 API, enabling customers to retrieve information extracted from real-time contact analysis.
|
|
13
|
+
|
|
4
14
|
1.272.0 (2026-08-17)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.274.0
|
|
@@ -5677,7 +5677,7 @@ module Aws::Connect
|
|
|
5677
5677
|
# resp = client.create_traffic_distribution_group({
|
|
5678
5678
|
# name: "Name128", # required
|
|
5679
5679
|
# description: "Description250",
|
|
5680
|
-
# instance_id: "
|
|
5680
|
+
# instance_id: "ACGRInstanceIdOrArn", # required
|
|
5681
5681
|
# client_token: "ClientToken",
|
|
5682
5682
|
# tags: {
|
|
5683
5683
|
# "TagKey" => "TagValue",
|
|
@@ -8151,6 +8151,7 @@ module Aws::Connect
|
|
|
8151
8151
|
# resp.contact.agent_info.state_transitions[0].state_start_timestamp #=> Time
|
|
8152
8152
|
# resp.contact.agent_info.state_transitions[0].state_end_timestamp #=> Time
|
|
8153
8153
|
# resp.contact.agent_info.voice_enhancement_mode #=> String, one of "VOICE_ISOLATION", "NOISE_SUPPRESSION", "NONE"
|
|
8154
|
+
# resp.contact.agent_info.active_region #=> String
|
|
8154
8155
|
# resp.contact.initiation_timestamp #=> Time
|
|
8155
8156
|
# resp.contact.disconnect_timestamp #=> Time
|
|
8156
8157
|
# resp.contact.last_update_timestamp #=> Time
|
|
@@ -11723,6 +11724,48 @@ module Aws::Connect
|
|
|
11723
11724
|
req.send_request(options)
|
|
11724
11725
|
end
|
|
11725
11726
|
|
|
11727
|
+
# Retrieves the current cross-region routing configuration for an Amazon
|
|
11728
|
+
# Connect Global Resiliency instance enabled for global routing. This
|
|
11729
|
+
# operation returns whether cross-region routing is currently enabled or
|
|
11730
|
+
# disabled (isolated) for the instance.
|
|
11731
|
+
#
|
|
11732
|
+
# <note markdown="1"> This operation is available only for Amazon Connect Global Resiliency
|
|
11733
|
+
# instances enabled for global routing.
|
|
11734
|
+
#
|
|
11735
|
+
# </note>
|
|
11736
|
+
#
|
|
11737
|
+
# @option params [required, String] :instance_id
|
|
11738
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
11739
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
11740
|
+
#
|
|
11741
|
+
#
|
|
11742
|
+
#
|
|
11743
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
11744
|
+
#
|
|
11745
|
+
# @return [Types::GetCrossRegionRoutingResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
11746
|
+
#
|
|
11747
|
+
# * {Types::GetCrossRegionRoutingResponse#isolated_regions #isolated_regions} => Array<String>
|
|
11748
|
+
#
|
|
11749
|
+
# @example Request syntax with placeholder values
|
|
11750
|
+
#
|
|
11751
|
+
# resp = client.get_cross_region_routing({
|
|
11752
|
+
# instance_id: "ACGRInstanceIdOrArn", # required
|
|
11753
|
+
# })
|
|
11754
|
+
#
|
|
11755
|
+
# @example Response structure
|
|
11756
|
+
#
|
|
11757
|
+
# resp.isolated_regions #=> Array
|
|
11758
|
+
# resp.isolated_regions[0] #=> String
|
|
11759
|
+
#
|
|
11760
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetCrossRegionRouting AWS API Documentation
|
|
11761
|
+
#
|
|
11762
|
+
# @overload get_cross_region_routing(params = {})
|
|
11763
|
+
# @param [Hash] params ({})
|
|
11764
|
+
def get_cross_region_routing(params = {}, options = {})
|
|
11765
|
+
req = build_request(:get_cross_region_routing, params)
|
|
11766
|
+
req.send_request(options)
|
|
11767
|
+
end
|
|
11768
|
+
|
|
11726
11769
|
# Gets the real-time metric data from the specified Connect Customer
|
|
11727
11770
|
# instance.
|
|
11728
11771
|
#
|
|
@@ -18332,7 +18375,7 @@ module Aws::Connect
|
|
|
18332
18375
|
# max_results: 1,
|
|
18333
18376
|
# next_token: "LargeNextToken",
|
|
18334
18377
|
# output_type: "Raw", # required, accepts Raw, Redacted
|
|
18335
|
-
# segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary
|
|
18378
|
+
# segment_types: ["Transcript"], # required, accepts Transcript, Categories, Issues, Event, Attachments, PostContactSummary, ExtractedInformation
|
|
18336
18379
|
# })
|
|
18337
18380
|
#
|
|
18338
18381
|
# @example Response structure
|
|
@@ -18382,6 +18425,16 @@ module Aws::Connect
|
|
|
18382
18425
|
# resp.segments[0].post_contact_summary.content #=> String
|
|
18383
18426
|
# resp.segments[0].post_contact_summary.status #=> String, one of "FAILED", "COMPLETED"
|
|
18384
18427
|
# resp.segments[0].post_contact_summary.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INVALID_ANALYSIS_CONFIGURATION", "INTERNAL_ERROR"
|
|
18428
|
+
# resp.segments[0].extracted_information.extraction_definition_id #=> String
|
|
18429
|
+
# resp.segments[0].extracted_information.extraction_definition_name #=> String
|
|
18430
|
+
# resp.segments[0].extracted_information.extraction_definition_display_label #=> String
|
|
18431
|
+
# resp.segments[0].extracted_information.extracted_values #=> Array
|
|
18432
|
+
# resp.segments[0].extracted_information.extracted_values[0].content #=> String
|
|
18433
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest #=> Array
|
|
18434
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].id #=> String
|
|
18435
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.begin_offset_char #=> Integer
|
|
18436
|
+
# resp.segments[0].extracted_information.extracted_values[0].points_of_interest[0].character_offsets.end_offset_char #=> Integer
|
|
18437
|
+
# resp.segments[0].extracted_information.failure_code #=> String, one of "QUOTA_EXCEEDED", "INSUFFICIENT_CONVERSATION_CONTENT", "FAILED_SAFETY_GUIDELINES", "INTERNAL_ERROR", "MAX_PACKAGE_FEATURE_ONLY"
|
|
18385
18438
|
# resp.next_token #=> String
|
|
18386
18439
|
#
|
|
18387
18440
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListRealtimeContactAnalysisSegmentsV2 AWS API Documentation
|
|
@@ -19339,7 +19392,7 @@ module Aws::Connect
|
|
|
19339
19392
|
# resp = client.list_traffic_distribution_groups({
|
|
19340
19393
|
# max_results: 1,
|
|
19341
19394
|
# next_token: "NextToken",
|
|
19342
|
-
# instance_id: "
|
|
19395
|
+
# instance_id: "ACGRInstanceIdOrArn",
|
|
19343
19396
|
# })
|
|
19344
19397
|
#
|
|
19345
19398
|
# @example Response structure
|
|
@@ -20158,7 +20211,7 @@ module Aws::Connect
|
|
|
20158
20211
|
# @example Request syntax with placeholder values
|
|
20159
20212
|
#
|
|
20160
20213
|
# resp = client.replicate_instance({
|
|
20161
|
-
# instance_id: "
|
|
20214
|
+
# instance_id: "ACGRInstanceIdOrArn", # required
|
|
20162
20215
|
# replica_region: "AwsRegion", # required
|
|
20163
20216
|
# client_token: "ClientToken",
|
|
20164
20217
|
# replica_alias: "DirectoryAlias", # required
|
|
@@ -27779,6 +27832,49 @@ module Aws::Connect
|
|
|
27779
27832
|
req.send_request(options)
|
|
27780
27833
|
end
|
|
27781
27834
|
|
|
27835
|
+
# Updates the cross-region routing configuration for an Amazon Connect
|
|
27836
|
+
# Global Resiliency instance enabled for global routing. When invoked
|
|
27837
|
+
# with `IsolatedAll` set to `true`, this operation disables cross-region
|
|
27838
|
+
# routing, meaning contacts originating in one Region will no longer be
|
|
27839
|
+
# routed to agents in another Region.
|
|
27840
|
+
#
|
|
27841
|
+
# <note markdown="1"> This operation is available only for Amazon Connect Global Resiliency
|
|
27842
|
+
# instances enabled for global routing. Reporting and contact search
|
|
27843
|
+
# continue to operate globally after you use this operation.
|
|
27844
|
+
#
|
|
27845
|
+
# </note>
|
|
27846
|
+
#
|
|
27847
|
+
# @option params [required, String] :instance_id
|
|
27848
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
27849
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
27850
|
+
#
|
|
27851
|
+
#
|
|
27852
|
+
#
|
|
27853
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
27854
|
+
#
|
|
27855
|
+
# @option params [required, Boolean] :isolated_all
|
|
27856
|
+
# Set to `true` to disable cross-region routing for all Regions
|
|
27857
|
+
# associated with this instance. Set to `false` to re-enable
|
|
27858
|
+
# cross-region routing.
|
|
27859
|
+
#
|
|
27860
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
27861
|
+
#
|
|
27862
|
+
# @example Request syntax with placeholder values
|
|
27863
|
+
#
|
|
27864
|
+
# resp = client.update_cross_region_routing({
|
|
27865
|
+
# instance_id: "ACGRInstanceIdOrArn", # required
|
|
27866
|
+
# isolated_all: false, # required
|
|
27867
|
+
# })
|
|
27868
|
+
#
|
|
27869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateCrossRegionRouting AWS API Documentation
|
|
27870
|
+
#
|
|
27871
|
+
# @overload update_cross_region_routing(params = {})
|
|
27872
|
+
# @param [Hash] params ({})
|
|
27873
|
+
def update_cross_region_routing(params = {}, options = {})
|
|
27874
|
+
req = build_request(:update_cross_region_routing, params)
|
|
27875
|
+
req.send_request(options)
|
|
27876
|
+
end
|
|
27877
|
+
|
|
27782
27878
|
# Updates all properties for an attribute using all properties from
|
|
27783
27879
|
# CreateDataTableAttribute. There are no other granular update
|
|
27784
27880
|
# endpoints. It does not act as a patch operation - all properties must
|
|
@@ -31284,7 +31380,7 @@ module Aws::Connect
|
|
|
31284
31380
|
tracer: tracer
|
|
31285
31381
|
)
|
|
31286
31382
|
context[:gem_name] = 'aws-sdk-connect'
|
|
31287
|
-
context[:gem_version] = '1.
|
|
31383
|
+
context[:gem_version] = '1.274.0'
|
|
31288
31384
|
Seahorse::Client::Request.new(handlers, context)
|
|
31289
31385
|
end
|
|
31290
31386
|
|
|
@@ -14,6 +14,10 @@ module Aws::Connect
|
|
|
14
14
|
|
|
15
15
|
include Seahorse::Model
|
|
16
16
|
|
|
17
|
+
ACGRInstanceArn = Shapes::StringShape.new(name: 'ACGRInstanceArn')
|
|
18
|
+
ACGRInstanceIdOrArn = Shapes::StringShape.new(name: 'ACGRInstanceIdOrArn')
|
|
19
|
+
ACGRTrafficDistributionGroupArn = Shapes::StringShape.new(name: 'ACGRTrafficDistributionGroupArn')
|
|
20
|
+
ACGRTrafficDistributionGroupId = Shapes::StringShape.new(name: 'ACGRTrafficDistributionGroupId')
|
|
17
21
|
ARN = Shapes::StringShape.new(name: 'ARN')
|
|
18
22
|
AWSAccountId = Shapes::StringShape.new(name: 'AWSAccountId')
|
|
19
23
|
AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
|
|
@@ -985,6 +989,8 @@ module Aws::Connect
|
|
|
985
989
|
GetContactAttributesResponse = Shapes::StructureShape.new(name: 'GetContactAttributesResponse')
|
|
986
990
|
GetContactMetricsRequest = Shapes::StructureShape.new(name: 'GetContactMetricsRequest')
|
|
987
991
|
GetContactMetricsResponse = Shapes::StructureShape.new(name: 'GetContactMetricsResponse')
|
|
992
|
+
GetCrossRegionRoutingRequest = Shapes::StructureShape.new(name: 'GetCrossRegionRoutingRequest')
|
|
993
|
+
GetCrossRegionRoutingResponse = Shapes::StructureShape.new(name: 'GetCrossRegionRoutingResponse')
|
|
988
994
|
GetCurrentMetricDataRequest = Shapes::StructureShape.new(name: 'GetCurrentMetricDataRequest')
|
|
989
995
|
GetCurrentMetricDataResponse = Shapes::StructureShape.new(name: 'GetCurrentMetricDataResponse')
|
|
990
996
|
GetCurrentUserDataRequest = Shapes::StructureShape.new(name: 'GetCurrentUserDataRequest')
|
|
@@ -1090,7 +1096,6 @@ module Aws::Connect
|
|
|
1090
1096
|
InputData = Shapes::StringShape.new(name: 'InputData')
|
|
1091
1097
|
InputPredefinedAttributeConfiguration = Shapes::StructureShape.new(name: 'InputPredefinedAttributeConfiguration')
|
|
1092
1098
|
Instance = Shapes::StructureShape.new(name: 'Instance')
|
|
1093
|
-
InstanceArn = Shapes::StringShape.new(name: 'InstanceArn')
|
|
1094
1099
|
InstanceAttributeType = Shapes::StringShape.new(name: 'InstanceAttributeType')
|
|
1095
1100
|
InstanceAttributeValue = Shapes::StringShape.new(name: 'InstanceAttributeValue')
|
|
1096
1101
|
InstanceId = Shapes::StringShape.new(name: 'InstanceId')
|
|
@@ -1125,6 +1130,7 @@ module Aws::Connect
|
|
|
1125
1130
|
IpCidr = Shapes::StringShape.new(name: 'IpCidr')
|
|
1126
1131
|
IpCidrList = Shapes::ListShape.new(name: 'IpCidrList')
|
|
1127
1132
|
IsReadOnly = Shapes::BooleanShape.new(name: 'IsReadOnly')
|
|
1133
|
+
IsolatedRegionsList = Shapes::ListShape.new(name: 'IsolatedRegionsList')
|
|
1128
1134
|
IvrRecordingTrack = Shapes::StringShape.new(name: 'IvrRecordingTrack')
|
|
1129
1135
|
JoinToken = Shapes::StringShape.new(name: 'JoinToken')
|
|
1130
1136
|
KeyId = Shapes::StringShape.new(name: 'KeyId')
|
|
@@ -1613,6 +1619,10 @@ module Aws::Connect
|
|
|
1613
1619
|
RealTimeContactAnalysisCharacterIntervals = Shapes::ListShape.new(name: 'RealTimeContactAnalysisCharacterIntervals')
|
|
1614
1620
|
RealTimeContactAnalysisContentType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisContentType')
|
|
1615
1621
|
RealTimeContactAnalysisEventType = Shapes::StringShape.new(name: 'RealTimeContactAnalysisEventType')
|
|
1622
|
+
RealTimeContactAnalysisExtractedInformationContent = Shapes::StringShape.new(name: 'RealTimeContactAnalysisExtractedInformationContent')
|
|
1623
|
+
RealTimeContactAnalysisExtractedInformationFailureCode = Shapes::StringShape.new(name: 'RealTimeContactAnalysisExtractedInformationFailureCode')
|
|
1624
|
+
RealTimeContactAnalysisExtractedInformationValue = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisExtractedInformationValue')
|
|
1625
|
+
RealTimeContactAnalysisExtractedInformationValues = Shapes::ListShape.new(name: 'RealTimeContactAnalysisExtractedInformationValues')
|
|
1616
1626
|
RealTimeContactAnalysisId256 = Shapes::StringShape.new(name: 'RealTimeContactAnalysisId256')
|
|
1617
1627
|
RealTimeContactAnalysisIssueDetected = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisIssueDetected')
|
|
1618
1628
|
RealTimeContactAnalysisIssuesDetected = Shapes::ListShape.new(name: 'RealTimeContactAnalysisIssuesDetected')
|
|
@@ -1627,6 +1637,7 @@ module Aws::Connect
|
|
|
1627
1637
|
RealTimeContactAnalysisSegmentAttachments = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentAttachments')
|
|
1628
1638
|
RealTimeContactAnalysisSegmentCategories = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentCategories')
|
|
1629
1639
|
RealTimeContactAnalysisSegmentEvent = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentEvent')
|
|
1640
|
+
RealTimeContactAnalysisSegmentExtractedInformation = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentExtractedInformation')
|
|
1630
1641
|
RealTimeContactAnalysisSegmentIssues = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentIssues')
|
|
1631
1642
|
RealTimeContactAnalysisSegmentPostContactSummary = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentPostContactSummary')
|
|
1632
1643
|
RealTimeContactAnalysisSegmentTranscript = Shapes::StructureShape.new(name: 'RealTimeContactAnalysisSegmentTranscript')
|
|
@@ -2068,7 +2079,6 @@ module Aws::Connect
|
|
|
2068
2079
|
TotalPauseCount = Shapes::IntegerShape.new(name: 'TotalPauseCount')
|
|
2069
2080
|
TotalPauseDurationInSeconds = Shapes::IntegerShape.new(name: 'TotalPauseDurationInSeconds')
|
|
2070
2081
|
TrafficDistributionGroup = Shapes::StructureShape.new(name: 'TrafficDistributionGroup')
|
|
2071
|
-
TrafficDistributionGroupArn = Shapes::StringShape.new(name: 'TrafficDistributionGroupArn')
|
|
2072
2082
|
TrafficDistributionGroupId = Shapes::StringShape.new(name: 'TrafficDistributionGroupId')
|
|
2073
2083
|
TrafficDistributionGroupIdOrArn = Shapes::StringShape.new(name: 'TrafficDistributionGroupIdOrArn')
|
|
2074
2084
|
TrafficDistributionGroupStatus = Shapes::StringShape.new(name: 'TrafficDistributionGroupStatus')
|
|
@@ -2120,6 +2130,8 @@ module Aws::Connect
|
|
|
2120
2130
|
UpdateContactScheduleResponse = Shapes::StructureShape.new(name: 'UpdateContactScheduleResponse')
|
|
2121
2131
|
UpdateContactTaskTemplateRequest = Shapes::StructureShape.new(name: 'UpdateContactTaskTemplateRequest')
|
|
2122
2132
|
UpdateContactTaskTemplateResponse = Shapes::StructureShape.new(name: 'UpdateContactTaskTemplateResponse')
|
|
2133
|
+
UpdateCrossRegionRoutingRequest = Shapes::StructureShape.new(name: 'UpdateCrossRegionRoutingRequest')
|
|
2134
|
+
UpdateCrossRegionRoutingResponse = Shapes::StructureShape.new(name: 'UpdateCrossRegionRoutingResponse')
|
|
2123
2135
|
UpdateDataTableAttributeRequest = Shapes::StructureShape.new(name: 'UpdateDataTableAttributeRequest')
|
|
2124
2136
|
UpdateDataTableAttributeResponse = Shapes::StructureShape.new(name: 'UpdateDataTableAttributeResponse')
|
|
2125
2137
|
UpdateDataTableMetadataRequest = Shapes::StructureShape.new(name: 'UpdateDataTableMetadataRequest')
|
|
@@ -2415,6 +2427,7 @@ module Aws::Connect
|
|
|
2415
2427
|
AgentInfo.add_member(:agent_initiated_hold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "AgentInitiatedHoldDuration"))
|
|
2416
2428
|
AgentInfo.add_member(:state_transitions, Shapes::ShapeRef.new(shape: StateTransitions, location_name: "StateTransitions"))
|
|
2417
2429
|
AgentInfo.add_member(:voice_enhancement_mode, Shapes::ShapeRef.new(shape: VoiceEnhancementMode, location_name: "VoiceEnhancementMode"))
|
|
2430
|
+
AgentInfo.add_member(:active_region, Shapes::ShapeRef.new(shape: ActiveRegion, location_name: "ActiveRegion"))
|
|
2418
2431
|
AgentInfo.struct_class = Types::AgentInfo
|
|
2419
2432
|
|
|
2420
2433
|
AgentQualityMetrics.add_member(:audio, Shapes::ShapeRef.new(shape: AudioQualityMetricsInfo, location_name: "Audio"))
|
|
@@ -3885,13 +3898,13 @@ module Aws::Connect
|
|
|
3885
3898
|
|
|
3886
3899
|
CreateTrafficDistributionGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name128, required: true, location_name: "Name"))
|
|
3887
3900
|
CreateTrafficDistributionGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description250, location_name: "Description"))
|
|
3888
|
-
CreateTrafficDistributionGroupRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape:
|
|
3901
|
+
CreateTrafficDistributionGroupRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, required: true, location_name: "InstanceId"))
|
|
3889
3902
|
CreateTrafficDistributionGroupRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3890
3903
|
CreateTrafficDistributionGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3891
3904
|
CreateTrafficDistributionGroupRequest.struct_class = Types::CreateTrafficDistributionGroupRequest
|
|
3892
3905
|
|
|
3893
|
-
CreateTrafficDistributionGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
3894
|
-
CreateTrafficDistributionGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape:
|
|
3906
|
+
CreateTrafficDistributionGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupId, location_name: "Id"))
|
|
3907
|
+
CreateTrafficDistributionGroupResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupArn, location_name: "Arn"))
|
|
3895
3908
|
CreateTrafficDistributionGroupResponse.struct_class = Types::CreateTrafficDistributionGroupResponse
|
|
3896
3909
|
|
|
3897
3910
|
CreateUseCaseRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
@@ -5657,6 +5670,12 @@ module Aws::Connect
|
|
|
5657
5670
|
GetContactMetricsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
|
5658
5671
|
GetContactMetricsResponse.struct_class = Types::GetContactMetricsResponse
|
|
5659
5672
|
|
|
5673
|
+
GetCrossRegionRoutingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, required: true, location: "uri", location_name: "InstanceId"))
|
|
5674
|
+
GetCrossRegionRoutingRequest.struct_class = Types::GetCrossRegionRoutingRequest
|
|
5675
|
+
|
|
5676
|
+
GetCrossRegionRoutingResponse.add_member(:isolated_regions, Shapes::ShapeRef.new(shape: IsolatedRegionsList, location_name: "IsolatedRegions"))
|
|
5677
|
+
GetCrossRegionRoutingResponse.struct_class = Types::GetCrossRegionRoutingResponse
|
|
5678
|
+
|
|
5660
5679
|
GetCurrentMetricDataRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
5661
5680
|
GetCurrentMetricDataRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, required: true, location_name: "Filters"))
|
|
5662
5681
|
GetCurrentMetricDataRequest.add_member(:groupings, Shapes::ShapeRef.new(shape: Groupings, location_name: "Groupings"))
|
|
@@ -5800,8 +5819,8 @@ module Aws::Connect
|
|
|
5800
5819
|
GetTrafficDistributionRequest.struct_class = Types::GetTrafficDistributionRequest
|
|
5801
5820
|
|
|
5802
5821
|
GetTrafficDistributionResponse.add_member(:telephony_config, Shapes::ShapeRef.new(shape: TelephonyConfig, location_name: "TelephonyConfig"))
|
|
5803
|
-
GetTrafficDistributionResponse.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
5804
|
-
GetTrafficDistributionResponse.add_member(:arn, Shapes::ShapeRef.new(shape:
|
|
5822
|
+
GetTrafficDistributionResponse.add_member(:id, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupId, location_name: "Id"))
|
|
5823
|
+
GetTrafficDistributionResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupArn, location_name: "Arn"))
|
|
5805
5824
|
GetTrafficDistributionResponse.add_member(:sign_in_config, Shapes::ShapeRef.new(shape: SignInConfig, location_name: "SignInConfig"))
|
|
5806
5825
|
GetTrafficDistributionResponse.add_member(:agent_config, Shapes::ShapeRef.new(shape: AgentConfig, location_name: "AgentConfig"))
|
|
5807
5826
|
GetTrafficDistributionResponse.struct_class = Types::GetTrafficDistributionResponse
|
|
@@ -6129,6 +6148,8 @@ module Aws::Connect
|
|
|
6129
6148
|
|
|
6130
6149
|
IpCidrList.member = Shapes::ShapeRef.new(shape: IpCidr)
|
|
6131
6150
|
|
|
6151
|
+
IsolatedRegionsList.member = Shapes::ShapeRef.new(shape: AwsRegion)
|
|
6152
|
+
|
|
6132
6153
|
KinesisFirehoseConfig.add_member(:firehose_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "FirehoseArn"))
|
|
6133
6154
|
KinesisFirehoseConfig.struct_class = Types::KinesisFirehoseConfig
|
|
6134
6155
|
|
|
@@ -6785,7 +6806,7 @@ module Aws::Connect
|
|
|
6785
6806
|
ListTestCasesResponse.struct_class = Types::ListTestCasesResponse
|
|
6786
6807
|
|
|
6787
6808
|
ListTrafficDistributionGroupUsersRequest.add_member(:traffic_distribution_group_id, Shapes::ShapeRef.new(shape: TrafficDistributionGroupIdOrArn, required: true, location: "uri", location_name: "TrafficDistributionGroupId"))
|
|
6788
|
-
ListTrafficDistributionGroupUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
|
6809
|
+
ListTrafficDistributionGroupUsersRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
|
|
6789
6810
|
ListTrafficDistributionGroupUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
6790
6811
|
ListTrafficDistributionGroupUsersRequest.struct_class = Types::ListTrafficDistributionGroupUsersRequest
|
|
6791
6812
|
|
|
@@ -6795,7 +6816,7 @@ module Aws::Connect
|
|
|
6795
6816
|
|
|
6796
6817
|
ListTrafficDistributionGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult10, location: "querystring", location_name: "maxResults"))
|
|
6797
6818
|
ListTrafficDistributionGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
6798
|
-
ListTrafficDistributionGroupsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape:
|
|
6819
|
+
ListTrafficDistributionGroupsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, location: "querystring", location_name: "instanceId"))
|
|
6799
6820
|
ListTrafficDistributionGroupsRequest.struct_class = Types::ListTrafficDistributionGroupsRequest
|
|
6800
6821
|
|
|
6801
6822
|
ListTrafficDistributionGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
@@ -7614,6 +7635,12 @@ module Aws::Connect
|
|
|
7614
7635
|
|
|
7615
7636
|
RealTimeContactAnalysisCharacterIntervals.member = Shapes::ShapeRef.new(shape: RealTimeContactAnalysisCharacterInterval)
|
|
7616
7637
|
|
|
7638
|
+
RealTimeContactAnalysisExtractedInformationValue.add_member(:content, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationContent, required: true, location_name: "Content"))
|
|
7639
|
+
RealTimeContactAnalysisExtractedInformationValue.add_member(:points_of_interest, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTranscriptItemsWithCharacterOffsets, required: true, location_name: "PointsOfInterest"))
|
|
7640
|
+
RealTimeContactAnalysisExtractedInformationValue.struct_class = Types::RealTimeContactAnalysisExtractedInformationValue
|
|
7641
|
+
|
|
7642
|
+
RealTimeContactAnalysisExtractedInformationValues.member = Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationValue)
|
|
7643
|
+
|
|
7617
7644
|
RealTimeContactAnalysisIssueDetected.add_member(:transcript_items, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTranscriptItemsWithContent, required: true, location_name: "TranscriptItems"))
|
|
7618
7645
|
RealTimeContactAnalysisIssueDetected.struct_class = Types::RealTimeContactAnalysisIssueDetected
|
|
7619
7646
|
|
|
@@ -7646,6 +7673,13 @@ module Aws::Connect
|
|
|
7646
7673
|
RealTimeContactAnalysisSegmentEvent.add_member(:time, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisTimeData, required: true, location_name: "Time"))
|
|
7647
7674
|
RealTimeContactAnalysisSegmentEvent.struct_class = Types::RealTimeContactAnalysisSegmentEvent
|
|
7648
7675
|
|
|
7676
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_id, Shapes::ShapeRef.new(shape: ExtractionDefinitionId, required: true, location_name: "ExtractionDefinitionId"))
|
|
7677
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_name, Shapes::ShapeRef.new(shape: ExtractionDefinitionName, required: true, location_name: "ExtractionDefinitionName"))
|
|
7678
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extraction_definition_display_label, Shapes::ShapeRef.new(shape: ExtractionDefinitionDisplayLabel, location_name: "ExtractionDefinitionDisplayLabel"))
|
|
7679
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:extracted_values, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationValues, location_name: "ExtractedValues"))
|
|
7680
|
+
RealTimeContactAnalysisSegmentExtractedInformation.add_member(:failure_code, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisExtractedInformationFailureCode, location_name: "FailureCode"))
|
|
7681
|
+
RealTimeContactAnalysisSegmentExtractedInformation.struct_class = Types::RealTimeContactAnalysisSegmentExtractedInformation
|
|
7682
|
+
|
|
7649
7683
|
RealTimeContactAnalysisSegmentIssues.add_member(:issues_detected, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisIssuesDetected, required: true, location_name: "IssuesDetected"))
|
|
7650
7684
|
RealTimeContactAnalysisSegmentIssues.struct_class = Types::RealTimeContactAnalysisSegmentIssues
|
|
7651
7685
|
|
|
@@ -7695,6 +7729,7 @@ module Aws::Connect
|
|
|
7695
7729
|
RealtimeContactAnalysisSegment.add_member(:event, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentEvent, location_name: "Event"))
|
|
7696
7730
|
RealtimeContactAnalysisSegment.add_member(:attachments, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentAttachments, location_name: "Attachments"))
|
|
7697
7731
|
RealtimeContactAnalysisSegment.add_member(:post_contact_summary, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentPostContactSummary, location_name: "PostContactSummary"))
|
|
7732
|
+
RealtimeContactAnalysisSegment.add_member(:extracted_information, Shapes::ShapeRef.new(shape: RealTimeContactAnalysisSegmentExtractedInformation, location_name: "ExtractedInformation"))
|
|
7698
7733
|
RealtimeContactAnalysisSegment.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
|
|
7699
7734
|
RealtimeContactAnalysisSegment.add_member_subclass(:transcript, Types::RealtimeContactAnalysisSegment::Transcript)
|
|
7700
7735
|
RealtimeContactAnalysisSegment.add_member_subclass(:categories, Types::RealtimeContactAnalysisSegment::Categories)
|
|
@@ -7702,6 +7737,7 @@ module Aws::Connect
|
|
|
7702
7737
|
RealtimeContactAnalysisSegment.add_member_subclass(:event, Types::RealtimeContactAnalysisSegment::Event)
|
|
7703
7738
|
RealtimeContactAnalysisSegment.add_member_subclass(:attachments, Types::RealtimeContactAnalysisSegment::Attachments)
|
|
7704
7739
|
RealtimeContactAnalysisSegment.add_member_subclass(:post_contact_summary, Types::RealtimeContactAnalysisSegment::PostContactSummary)
|
|
7740
|
+
RealtimeContactAnalysisSegment.add_member_subclass(:extracted_information, Types::RealtimeContactAnalysisSegment::ExtractedInformation)
|
|
7705
7741
|
RealtimeContactAnalysisSegment.add_member_subclass(:unknown, Types::RealtimeContactAnalysisSegment::Unknown)
|
|
7706
7742
|
RealtimeContactAnalysisSegment.struct_class = Types::RealtimeContactAnalysisSegment
|
|
7707
7743
|
|
|
@@ -7797,7 +7833,7 @@ module Aws::Connect
|
|
|
7797
7833
|
ReleasePhoneNumberRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
7798
7834
|
ReleasePhoneNumberRequest.struct_class = Types::ReleasePhoneNumberRequest
|
|
7799
7835
|
|
|
7800
|
-
ReplicateInstanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape:
|
|
7836
|
+
ReplicateInstanceRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, required: true, location: "uri", location_name: "InstanceId"))
|
|
7801
7837
|
ReplicateInstanceRequest.add_member(:replica_region, Shapes::ShapeRef.new(shape: AwsRegion, required: true, location_name: "ReplicaRegion"))
|
|
7802
7838
|
ReplicateInstanceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
7803
7839
|
ReplicateInstanceRequest.add_member(:replica_alias, Shapes::ShapeRef.new(shape: DirectoryAlias, required: true, location_name: "ReplicaAlias"))
|
|
@@ -9135,20 +9171,20 @@ module Aws::Connect
|
|
|
9135
9171
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
9136
9172
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
|
9137
9173
|
|
|
9138
|
-
TrafficDistributionGroup.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
9139
|
-
TrafficDistributionGroup.add_member(:arn, Shapes::ShapeRef.new(shape:
|
|
9174
|
+
TrafficDistributionGroup.add_member(:id, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupId, location_name: "Id"))
|
|
9175
|
+
TrafficDistributionGroup.add_member(:arn, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupArn, location_name: "Arn"))
|
|
9140
9176
|
TrafficDistributionGroup.add_member(:name, Shapes::ShapeRef.new(shape: Name128, location_name: "Name"))
|
|
9141
9177
|
TrafficDistributionGroup.add_member(:description, Shapes::ShapeRef.new(shape: Description250, location_name: "Description"))
|
|
9142
|
-
TrafficDistributionGroup.add_member(:instance_arn, Shapes::ShapeRef.new(shape:
|
|
9178
|
+
TrafficDistributionGroup.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ACGRInstanceArn, location_name: "InstanceArn"))
|
|
9143
9179
|
TrafficDistributionGroup.add_member(:status, Shapes::ShapeRef.new(shape: TrafficDistributionGroupStatus, location_name: "Status"))
|
|
9144
9180
|
TrafficDistributionGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
9145
9181
|
TrafficDistributionGroup.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
|
9146
9182
|
TrafficDistributionGroup.struct_class = Types::TrafficDistributionGroup
|
|
9147
9183
|
|
|
9148
|
-
TrafficDistributionGroupSummary.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
9149
|
-
TrafficDistributionGroupSummary.add_member(:arn, Shapes::ShapeRef.new(shape:
|
|
9184
|
+
TrafficDistributionGroupSummary.add_member(:id, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupId, location_name: "Id"))
|
|
9185
|
+
TrafficDistributionGroupSummary.add_member(:arn, Shapes::ShapeRef.new(shape: ACGRTrafficDistributionGroupArn, location_name: "Arn"))
|
|
9150
9186
|
TrafficDistributionGroupSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name128, location_name: "Name"))
|
|
9151
|
-
TrafficDistributionGroupSummary.add_member(:instance_arn, Shapes::ShapeRef.new(shape:
|
|
9187
|
+
TrafficDistributionGroupSummary.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ACGRInstanceArn, location_name: "InstanceArn"))
|
|
9152
9188
|
TrafficDistributionGroupSummary.add_member(:status, Shapes::ShapeRef.new(shape: TrafficDistributionGroupStatus, location_name: "Status"))
|
|
9153
9189
|
TrafficDistributionGroupSummary.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
|
9154
9190
|
TrafficDistributionGroupSummary.struct_class = Types::TrafficDistributionGroupSummary
|
|
@@ -9336,6 +9372,12 @@ module Aws::Connect
|
|
|
9336
9372
|
|
|
9337
9373
|
UpdateContactTaskTemplateResponse.struct_class = Types::UpdateContactTaskTemplateResponse
|
|
9338
9374
|
|
|
9375
|
+
UpdateCrossRegionRoutingRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: ACGRInstanceIdOrArn, required: true, location: "uri", location_name: "InstanceId"))
|
|
9376
|
+
UpdateCrossRegionRoutingRequest.add_member(:isolated_all, Shapes::ShapeRef.new(shape: Boolean, required: true, location_name: "IsolatedAll"))
|
|
9377
|
+
UpdateCrossRegionRoutingRequest.struct_class = Types::UpdateCrossRegionRoutingRequest
|
|
9378
|
+
|
|
9379
|
+
UpdateCrossRegionRoutingResponse.struct_class = Types::UpdateCrossRegionRoutingResponse
|
|
9380
|
+
|
|
9339
9381
|
UpdateDataTableAttributeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
9340
9382
|
UpdateDataTableAttributeRequest.add_member(:data_table_id, Shapes::ShapeRef.new(shape: DataTableId, required: true, location: "uri", location_name: "DataTableId"))
|
|
9341
9383
|
UpdateDataTableAttributeRequest.add_member(:attribute_name, Shapes::ShapeRef.new(shape: DataTableName, required: true, location: "uri", location_name: "AttributeName"))
|
|
@@ -12637,6 +12679,19 @@ module Aws::Connect
|
|
|
12637
12679
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
12638
12680
|
end)
|
|
12639
12681
|
|
|
12682
|
+
api.add_operation(:get_cross_region_routing, Seahorse::Model::Operation.new.tap do |o|
|
|
12683
|
+
o.name = "GetCrossRegionRouting"
|
|
12684
|
+
o.http_method = "GET"
|
|
12685
|
+
o.http_request_uri = "/cross-region-routing/{InstanceId}"
|
|
12686
|
+
o.input = Shapes::ShapeRef.new(shape: GetCrossRegionRoutingRequest)
|
|
12687
|
+
o.output = Shapes::ShapeRef.new(shape: GetCrossRegionRoutingResponse)
|
|
12688
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
12689
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
12690
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
12691
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
12692
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
12693
|
+
end)
|
|
12694
|
+
|
|
12640
12695
|
api.add_operation(:get_current_metric_data, Seahorse::Model::Operation.new.tap do |o|
|
|
12641
12696
|
o.name = "GetCurrentMetricData"
|
|
12642
12697
|
o.http_method = "POST"
|
|
@@ -15420,6 +15475,20 @@ module Aws::Connect
|
|
|
15420
15475
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
15421
15476
|
end)
|
|
15422
15477
|
|
|
15478
|
+
api.add_operation(:update_cross_region_routing, Seahorse::Model::Operation.new.tap do |o|
|
|
15479
|
+
o.name = "UpdateCrossRegionRouting"
|
|
15480
|
+
o.http_method = "PUT"
|
|
15481
|
+
o.http_request_uri = "/cross-region-routing/{InstanceId}"
|
|
15482
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateCrossRegionRoutingRequest)
|
|
15483
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateCrossRegionRoutingResponse)
|
|
15484
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
|
15485
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
15486
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
15487
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
|
15488
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
15489
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
15490
|
+
end)
|
|
15491
|
+
|
|
15423
15492
|
api.add_operation(:update_data_table_attribute, Seahorse::Model::Operation.new.tap do |o|
|
|
15424
15493
|
o.name = "UpdateDataTableAttribute"
|
|
15425
15494
|
o.http_method = "POST"
|
|
@@ -367,6 +367,13 @@ module Aws::Connect
|
|
|
367
367
|
# user.
|
|
368
368
|
# @return [String]
|
|
369
369
|
#
|
|
370
|
+
# @!attribute [rw] active_region
|
|
371
|
+
# The Region where the agent was active when they handled the contact.
|
|
372
|
+
# For Amazon Connect Global Resiliency instances enabled for global
|
|
373
|
+
# routing, this indicates the Region in which the agent's session was
|
|
374
|
+
# established at the time of the contact.
|
|
375
|
+
# @return [String]
|
|
376
|
+
#
|
|
370
377
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentInfo AWS API Documentation
|
|
371
378
|
#
|
|
372
379
|
class AgentInfo < Struct.new(
|
|
@@ -383,7 +390,8 @@ module Aws::Connect
|
|
|
383
390
|
:after_contact_work_end_timestamp,
|
|
384
391
|
:agent_initiated_hold_duration,
|
|
385
392
|
:state_transitions,
|
|
386
|
-
:voice_enhancement_mode
|
|
393
|
+
:voice_enhancement_mode,
|
|
394
|
+
:active_region)
|
|
387
395
|
SENSITIVE = []
|
|
388
396
|
include Aws::Structure
|
|
389
397
|
end
|
|
@@ -16214,6 +16222,39 @@ module Aws::Connect
|
|
|
16214
16222
|
include Aws::Structure
|
|
16215
16223
|
end
|
|
16216
16224
|
|
|
16225
|
+
# @!attribute [rw] instance_id
|
|
16226
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
16227
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
16228
|
+
#
|
|
16229
|
+
#
|
|
16230
|
+
#
|
|
16231
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
16232
|
+
# @return [String]
|
|
16233
|
+
#
|
|
16234
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetCrossRegionRoutingRequest AWS API Documentation
|
|
16235
|
+
#
|
|
16236
|
+
class GetCrossRegionRoutingRequest < Struct.new(
|
|
16237
|
+
:instance_id)
|
|
16238
|
+
SENSITIVE = []
|
|
16239
|
+
include Aws::Structure
|
|
16240
|
+
end
|
|
16241
|
+
|
|
16242
|
+
# @!attribute [rw] isolated_regions
|
|
16243
|
+
# The list of Regions for which cross-region routing is currently
|
|
16244
|
+
# disabled (isolated). When a Region appears in this list, contacts
|
|
16245
|
+
# originating in that Region will not be routed to agents in other
|
|
16246
|
+
# Regions, and agents in that Region will not receive contacts from
|
|
16247
|
+
# other Regions.
|
|
16248
|
+
# @return [Array<String>]
|
|
16249
|
+
#
|
|
16250
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetCrossRegionRoutingResponse AWS API Documentation
|
|
16251
|
+
#
|
|
16252
|
+
class GetCrossRegionRoutingResponse < Struct.new(
|
|
16253
|
+
:isolated_regions)
|
|
16254
|
+
SENSITIVE = []
|
|
16255
|
+
include Aws::Structure
|
|
16256
|
+
end
|
|
16257
|
+
|
|
16217
16258
|
# @!attribute [rw] instance_id
|
|
16218
16259
|
# The identifier of the Connect Customer instance. You can [find the
|
|
16219
16260
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -28624,6 +28665,27 @@ module Aws::Connect
|
|
|
28624
28665
|
include Aws::Structure
|
|
28625
28666
|
end
|
|
28626
28667
|
|
|
28668
|
+
# An individual value extracted from the conversation, including its
|
|
28669
|
+
# content and the locations where it was found.
|
|
28670
|
+
#
|
|
28671
|
+
# @!attribute [rw] content
|
|
28672
|
+
# The text content of the extracted value.
|
|
28673
|
+
# @return [String]
|
|
28674
|
+
#
|
|
28675
|
+
# @!attribute [rw] points_of_interest
|
|
28676
|
+
# The sections in the conversation that indicate where the extracted
|
|
28677
|
+
# value was found.
|
|
28678
|
+
# @return [Array<Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets>]
|
|
28679
|
+
#
|
|
28680
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealTimeContactAnalysisExtractedInformationValue AWS API Documentation
|
|
28681
|
+
#
|
|
28682
|
+
class RealTimeContactAnalysisExtractedInformationValue < Struct.new(
|
|
28683
|
+
:content,
|
|
28684
|
+
:points_of_interest)
|
|
28685
|
+
SENSITIVE = []
|
|
28686
|
+
include Aws::Structure
|
|
28687
|
+
end
|
|
28688
|
+
|
|
28627
28689
|
# Potential issues that are detected based on an artificial intelligence
|
|
28628
28690
|
# analysis of each turn in the conversation.
|
|
28629
28691
|
#
|
|
@@ -28754,6 +28816,61 @@ module Aws::Connect
|
|
|
28754
28816
|
include Aws::Structure
|
|
28755
28817
|
end
|
|
28756
28818
|
|
|
28819
|
+
# Segment containing information extracted from the conversation. Each
|
|
28820
|
+
# segment represents the results for a single extraction definition.
|
|
28821
|
+
#
|
|
28822
|
+
# @!attribute [rw] extraction_definition_id
|
|
28823
|
+
# The identifier of the extraction definition that produced this
|
|
28824
|
+
# result.
|
|
28825
|
+
# @return [String]
|
|
28826
|
+
#
|
|
28827
|
+
# @!attribute [rw] extraction_definition_name
|
|
28828
|
+
# The name of the extraction definition that produced this result.
|
|
28829
|
+
# @return [String]
|
|
28830
|
+
#
|
|
28831
|
+
# @!attribute [rw] extraction_definition_display_label
|
|
28832
|
+
# The display label of the extraction definition that produced this
|
|
28833
|
+
# result.
|
|
28834
|
+
# @return [String]
|
|
28835
|
+
#
|
|
28836
|
+
# @!attribute [rw] extracted_values
|
|
28837
|
+
# The list of values extracted from the conversation for this
|
|
28838
|
+
# extraction definition. This field is empty when a `FailureCode` is
|
|
28839
|
+
# present.
|
|
28840
|
+
# @return [Array<Types::RealTimeContactAnalysisExtractedInformationValue>]
|
|
28841
|
+
#
|
|
28842
|
+
# @!attribute [rw] failure_code
|
|
28843
|
+
# If the information failed to be extracted, one of the following
|
|
28844
|
+
# failure codes occurs:
|
|
28845
|
+
#
|
|
28846
|
+
# * `QUOTA_EXCEEDED`: The number of concurrent analytics jobs reached
|
|
28847
|
+
# your service quota.
|
|
28848
|
+
#
|
|
28849
|
+
# * `INSUFFICIENT_CONVERSATION_CONTENT`: Information extraction
|
|
28850
|
+
# requires a conversation with at least one turn from each
|
|
28851
|
+
# participant.
|
|
28852
|
+
#
|
|
28853
|
+
# * `FAILED_SAFETY_GUIDELINES`: The extracted information cannot be
|
|
28854
|
+
# provided because it failed to meet system safety guidelines.
|
|
28855
|
+
#
|
|
28856
|
+
# * `INTERNAL_ERROR`: Internal system error.
|
|
28857
|
+
#
|
|
28858
|
+
# * `MAX_PACKAGE_FEATURE_ONLY`: Information extraction is only
|
|
28859
|
+
# available in Amazon Connect Customer instances.
|
|
28860
|
+
# @return [String]
|
|
28861
|
+
#
|
|
28862
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealTimeContactAnalysisSegmentExtractedInformation AWS API Documentation
|
|
28863
|
+
#
|
|
28864
|
+
class RealTimeContactAnalysisSegmentExtractedInformation < Struct.new(
|
|
28865
|
+
:extraction_definition_id,
|
|
28866
|
+
:extraction_definition_name,
|
|
28867
|
+
:extraction_definition_display_label,
|
|
28868
|
+
:extracted_values,
|
|
28869
|
+
:failure_code)
|
|
28870
|
+
SENSITIVE = []
|
|
28871
|
+
include Aws::Structure
|
|
28872
|
+
end
|
|
28873
|
+
|
|
28757
28874
|
# Segment type containing a list of detected issues.
|
|
28758
28875
|
#
|
|
28759
28876
|
# @!attribute [rw] issues_detected
|
|
@@ -28996,6 +29113,10 @@ module Aws::Connect
|
|
|
28996
29113
|
# Information about the post-contact summary.
|
|
28997
29114
|
# @return [Types::RealTimeContactAnalysisSegmentPostContactSummary]
|
|
28998
29115
|
#
|
|
29116
|
+
# @!attribute [rw] extracted_information
|
|
29117
|
+
# The extracted information from the conversation.
|
|
29118
|
+
# @return [Types::RealTimeContactAnalysisSegmentExtractedInformation]
|
|
29119
|
+
#
|
|
28999
29120
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RealtimeContactAnalysisSegment AWS API Documentation
|
|
29000
29121
|
#
|
|
29001
29122
|
class RealtimeContactAnalysisSegment < Struct.new(
|
|
@@ -29005,6 +29126,7 @@ module Aws::Connect
|
|
|
29005
29126
|
:event,
|
|
29006
29127
|
:attachments,
|
|
29007
29128
|
:post_contact_summary,
|
|
29129
|
+
:extracted_information,
|
|
29008
29130
|
:unknown)
|
|
29009
29131
|
SENSITIVE = []
|
|
29010
29132
|
include Aws::Structure
|
|
@@ -29016,6 +29138,7 @@ module Aws::Connect
|
|
|
29016
29138
|
class Event < RealtimeContactAnalysisSegment; end
|
|
29017
29139
|
class Attachments < RealtimeContactAnalysisSegment; end
|
|
29018
29140
|
class PostContactSummary < RealtimeContactAnalysisSegment; end
|
|
29141
|
+
class ExtractedInformation < RealtimeContactAnalysisSegment; end
|
|
29019
29142
|
class Unknown < RealtimeContactAnalysisSegment; end
|
|
29020
29143
|
end
|
|
29021
29144
|
|
|
@@ -36408,7 +36531,7 @@ module Aws::Connect
|
|
|
36408
36531
|
# @return [String]
|
|
36409
36532
|
#
|
|
36410
36533
|
# @!attribute [rw] instance_arn
|
|
36411
|
-
# The Amazon Resource Name (ARN) of the
|
|
36534
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
36412
36535
|
# @return [String]
|
|
36413
36536
|
#
|
|
36414
36537
|
# @!attribute [rw] status
|
|
@@ -37426,6 +37549,34 @@ module Aws::Connect
|
|
|
37426
37549
|
#
|
|
37427
37550
|
class UpdateContactTaskTemplateResponse < Aws::EmptyStructure; end
|
|
37428
37551
|
|
|
37552
|
+
# @!attribute [rw] instance_id
|
|
37553
|
+
# The identifier of the Connect Customer instance. You can [find the
|
|
37554
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
37555
|
+
#
|
|
37556
|
+
#
|
|
37557
|
+
#
|
|
37558
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
37559
|
+
# @return [String]
|
|
37560
|
+
#
|
|
37561
|
+
# @!attribute [rw] isolated_all
|
|
37562
|
+
# Set to `true` to disable cross-region routing for all Regions
|
|
37563
|
+
# associated with this instance. Set to `false` to re-enable
|
|
37564
|
+
# cross-region routing.
|
|
37565
|
+
# @return [Boolean]
|
|
37566
|
+
#
|
|
37567
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateCrossRegionRoutingRequest AWS API Documentation
|
|
37568
|
+
#
|
|
37569
|
+
class UpdateCrossRegionRoutingRequest < Struct.new(
|
|
37570
|
+
:instance_id,
|
|
37571
|
+
:isolated_all)
|
|
37572
|
+
SENSITIVE = []
|
|
37573
|
+
include Aws::Structure
|
|
37574
|
+
end
|
|
37575
|
+
|
|
37576
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateCrossRegionRoutingResponse AWS API Documentation
|
|
37577
|
+
#
|
|
37578
|
+
class UpdateCrossRegionRoutingResponse < Aws::EmptyStructure; end
|
|
37579
|
+
|
|
37429
37580
|
# @!attribute [rw] instance_id
|
|
37430
37581
|
# The unique identifier for the Amazon Connect instance.
|
|
37431
37582
|
# @return [String]
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2427,6 +2427,16 @@ module Aws
|
|
|
2427
2427
|
) -> _GetContactMetricsResponseSuccess
|
|
2428
2428
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetContactMetricsResponseSuccess
|
|
2429
2429
|
|
|
2430
|
+
interface _GetCrossRegionRoutingResponseSuccess
|
|
2431
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetCrossRegionRoutingResponse]
|
|
2432
|
+
def isolated_regions: () -> ::Array[::String]
|
|
2433
|
+
end
|
|
2434
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_cross_region_routing-instance_method
|
|
2435
|
+
def get_cross_region_routing: (
|
|
2436
|
+
instance_id: ::String
|
|
2437
|
+
) -> _GetCrossRegionRoutingResponseSuccess
|
|
2438
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCrossRegionRoutingResponseSuccess
|
|
2439
|
+
|
|
2430
2440
|
interface _GetCurrentMetricDataResponseSuccess
|
|
2431
2441
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetCurrentMetricDataResponse]
|
|
2432
2442
|
def next_token: () -> ::String
|
|
@@ -3351,7 +3361,7 @@ module Aws
|
|
|
3351
3361
|
?max_results: ::Integer,
|
|
3352
3362
|
?next_token: ::String,
|
|
3353
3363
|
output_type: ("Raw" | "Redacted"),
|
|
3354
|
-
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
|
3364
|
+
segment_types: Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary" | "ExtractedInformation")]
|
|
3355
3365
|
) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
|
3356
3366
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRealtimeContactAnalysisSegmentsV2ResponseSuccess
|
|
3357
3367
|
|
|
@@ -5378,6 +5388,16 @@ module Aws
|
|
|
5378
5388
|
) -> _UpdateContactTaskTemplateResponseSuccess
|
|
5379
5389
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactTaskTemplateResponseSuccess
|
|
5380
5390
|
|
|
5391
|
+
interface _UpdateCrossRegionRoutingResponseSuccess
|
|
5392
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateCrossRegionRoutingResponse]
|
|
5393
|
+
end
|
|
5394
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_cross_region_routing-instance_method
|
|
5395
|
+
def update_cross_region_routing: (
|
|
5396
|
+
instance_id: ::String,
|
|
5397
|
+
isolated_all: bool
|
|
5398
|
+
) -> _UpdateCrossRegionRoutingResponseSuccess
|
|
5399
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCrossRegionRoutingResponseSuccess
|
|
5400
|
+
|
|
5381
5401
|
interface _UpdateDataTableAttributeResponseSuccess
|
|
5382
5402
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateDataTableAttributeResponse]
|
|
5383
5403
|
def name: () -> ::String
|
data/sig/types.rbs
CHANGED
|
@@ -100,6 +100,7 @@ module Aws::Connect
|
|
|
100
100
|
attr_accessor agent_initiated_hold_duration: ::Integer
|
|
101
101
|
attr_accessor state_transitions: ::Array[Types::StateTransition]
|
|
102
102
|
attr_accessor voice_enhancement_mode: ("VOICE_ISOLATION" | "NOISE_SUPPRESSION" | "NONE")
|
|
103
|
+
attr_accessor active_region: ::String
|
|
103
104
|
SENSITIVE: []
|
|
104
105
|
end
|
|
105
106
|
|
|
@@ -4163,6 +4164,16 @@ module Aws::Connect
|
|
|
4163
4164
|
SENSITIVE: []
|
|
4164
4165
|
end
|
|
4165
4166
|
|
|
4167
|
+
class GetCrossRegionRoutingRequest
|
|
4168
|
+
attr_accessor instance_id: ::String
|
|
4169
|
+
SENSITIVE: []
|
|
4170
|
+
end
|
|
4171
|
+
|
|
4172
|
+
class GetCrossRegionRoutingResponse
|
|
4173
|
+
attr_accessor isolated_regions: ::Array[::String]
|
|
4174
|
+
SENSITIVE: []
|
|
4175
|
+
end
|
|
4176
|
+
|
|
4166
4177
|
class GetCurrentMetricDataRequest
|
|
4167
4178
|
attr_accessor instance_id: ::String
|
|
4168
4179
|
attr_accessor filters: Types::Filters
|
|
@@ -5432,7 +5443,7 @@ module Aws::Connect
|
|
|
5432
5443
|
attr_accessor max_results: ::Integer
|
|
5433
5444
|
attr_accessor next_token: ::String
|
|
5434
5445
|
attr_accessor output_type: ("Raw" | "Redacted")
|
|
5435
|
-
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary")]
|
|
5446
|
+
attr_accessor segment_types: ::Array[("Transcript" | "Categories" | "Issues" | "Event" | "Attachments" | "PostContactSummary" | "ExtractedInformation")]
|
|
5436
5447
|
SENSITIVE: []
|
|
5437
5448
|
end
|
|
5438
5449
|
|
|
@@ -6633,6 +6644,12 @@ module Aws::Connect
|
|
|
6633
6644
|
SENSITIVE: []
|
|
6634
6645
|
end
|
|
6635
6646
|
|
|
6647
|
+
class RealTimeContactAnalysisExtractedInformationValue
|
|
6648
|
+
attr_accessor content: ::String
|
|
6649
|
+
attr_accessor points_of_interest: ::Array[Types::RealTimeContactAnalysisTranscriptItemWithCharacterOffsets]
|
|
6650
|
+
SENSITIVE: []
|
|
6651
|
+
end
|
|
6652
|
+
|
|
6636
6653
|
class RealTimeContactAnalysisIssueDetected
|
|
6637
6654
|
attr_accessor transcript_items: ::Array[Types::RealTimeContactAnalysisTranscriptItemWithContent]
|
|
6638
6655
|
SENSITIVE: []
|
|
@@ -6668,6 +6685,15 @@ module Aws::Connect
|
|
|
6668
6685
|
SENSITIVE: []
|
|
6669
6686
|
end
|
|
6670
6687
|
|
|
6688
|
+
class RealTimeContactAnalysisSegmentExtractedInformation
|
|
6689
|
+
attr_accessor extraction_definition_id: ::String
|
|
6690
|
+
attr_accessor extraction_definition_name: ::String
|
|
6691
|
+
attr_accessor extraction_definition_display_label: ::String
|
|
6692
|
+
attr_accessor extracted_values: ::Array[Types::RealTimeContactAnalysisExtractedInformationValue]
|
|
6693
|
+
attr_accessor failure_code: ("QUOTA_EXCEEDED" | "INSUFFICIENT_CONVERSATION_CONTENT" | "FAILED_SAFETY_GUIDELINES" | "INTERNAL_ERROR" | "MAX_PACKAGE_FEATURE_ONLY")
|
|
6694
|
+
SENSITIVE: []
|
|
6695
|
+
end
|
|
6696
|
+
|
|
6671
6697
|
class RealTimeContactAnalysisSegmentIssues
|
|
6672
6698
|
attr_accessor issues_detected: ::Array[Types::RealTimeContactAnalysisIssueDetected]
|
|
6673
6699
|
SENSITIVE: []
|
|
@@ -6729,6 +6755,7 @@ module Aws::Connect
|
|
|
6729
6755
|
attr_accessor event: Types::RealTimeContactAnalysisSegmentEvent
|
|
6730
6756
|
attr_accessor attachments: Types::RealTimeContactAnalysisSegmentAttachments
|
|
6731
6757
|
attr_accessor post_contact_summary: Types::RealTimeContactAnalysisSegmentPostContactSummary
|
|
6758
|
+
attr_accessor extracted_information: Types::RealTimeContactAnalysisSegmentExtractedInformation
|
|
6732
6759
|
attr_accessor unknown: untyped
|
|
6733
6760
|
SENSITIVE: []
|
|
6734
6761
|
|
|
@@ -6744,6 +6771,8 @@ module Aws::Connect
|
|
|
6744
6771
|
end
|
|
6745
6772
|
class PostContactSummary < RealtimeContactAnalysisSegment
|
|
6746
6773
|
end
|
|
6774
|
+
class ExtractedInformation < RealtimeContactAnalysisSegment
|
|
6775
|
+
end
|
|
6747
6776
|
class Unknown < RealtimeContactAnalysisSegment
|
|
6748
6777
|
end
|
|
6749
6778
|
end
|
|
@@ -8738,6 +8767,15 @@ module Aws::Connect
|
|
|
8738
8767
|
class UpdateContactTaskTemplateResponse < Aws::EmptyStructure
|
|
8739
8768
|
end
|
|
8740
8769
|
|
|
8770
|
+
class UpdateCrossRegionRoutingRequest
|
|
8771
|
+
attr_accessor instance_id: ::String
|
|
8772
|
+
attr_accessor isolated_all: bool
|
|
8773
|
+
SENSITIVE: []
|
|
8774
|
+
end
|
|
8775
|
+
|
|
8776
|
+
class UpdateCrossRegionRoutingResponse < Aws::EmptyStructure
|
|
8777
|
+
end
|
|
8778
|
+
|
|
8741
8779
|
class UpdateDataTableAttributeRequest
|
|
8742
8780
|
attr_accessor instance_id: ::String
|
|
8743
8781
|
attr_accessor data_table_id: ::String
|