aws-sdk-connect 1.273.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +90 -4
- data/lib/aws-sdk-connect/client_api.rb +65 -16
- data/lib/aws-sdk-connect/types.rb +71 -2
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +20 -0
- data/sig/types.rbs +20 -0
- 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,11 @@
|
|
|
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
|
+
|
|
4
9
|
1.273.0 (2026-08-24)
|
|
5
10
|
------------------
|
|
6
11
|
|
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
|
#
|
|
@@ -19349,7 +19392,7 @@ module Aws::Connect
|
|
|
19349
19392
|
# resp = client.list_traffic_distribution_groups({
|
|
19350
19393
|
# max_results: 1,
|
|
19351
19394
|
# next_token: "NextToken",
|
|
19352
|
-
# instance_id: "
|
|
19395
|
+
# instance_id: "ACGRInstanceIdOrArn",
|
|
19353
19396
|
# })
|
|
19354
19397
|
#
|
|
19355
19398
|
# @example Response structure
|
|
@@ -20168,7 +20211,7 @@ module Aws::Connect
|
|
|
20168
20211
|
# @example Request syntax with placeholder values
|
|
20169
20212
|
#
|
|
20170
20213
|
# resp = client.replicate_instance({
|
|
20171
|
-
# instance_id: "
|
|
20214
|
+
# instance_id: "ACGRInstanceIdOrArn", # required
|
|
20172
20215
|
# replica_region: "AwsRegion", # required
|
|
20173
20216
|
# client_token: "ClientToken",
|
|
20174
20217
|
# replica_alias: "DirectoryAlias", # required
|
|
@@ -27789,6 +27832,49 @@ module Aws::Connect
|
|
|
27789
27832
|
req.send_request(options)
|
|
27790
27833
|
end
|
|
27791
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
|
+
|
|
27792
27878
|
# Updates all properties for an attribute using all properties from
|
|
27793
27879
|
# CreateDataTableAttribute. There are no other granular update
|
|
27794
27880
|
# endpoints. It does not act as a patch operation - all properties must
|
|
@@ -31294,7 +31380,7 @@ module Aws::Connect
|
|
|
31294
31380
|
tracer: tracer
|
|
31295
31381
|
)
|
|
31296
31382
|
context[:gem_name] = 'aws-sdk-connect'
|
|
31297
|
-
context[:gem_version] = '1.
|
|
31383
|
+
context[:gem_version] = '1.274.0'
|
|
31298
31384
|
Seahorse::Client::Request.new(handlers, context)
|
|
31299
31385
|
end
|
|
31300
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')
|
|
@@ -2073,7 +2079,6 @@ module Aws::Connect
|
|
|
2073
2079
|
TotalPauseCount = Shapes::IntegerShape.new(name: 'TotalPauseCount')
|
|
2074
2080
|
TotalPauseDurationInSeconds = Shapes::IntegerShape.new(name: 'TotalPauseDurationInSeconds')
|
|
2075
2081
|
TrafficDistributionGroup = Shapes::StructureShape.new(name: 'TrafficDistributionGroup')
|
|
2076
|
-
TrafficDistributionGroupArn = Shapes::StringShape.new(name: 'TrafficDistributionGroupArn')
|
|
2077
2082
|
TrafficDistributionGroupId = Shapes::StringShape.new(name: 'TrafficDistributionGroupId')
|
|
2078
2083
|
TrafficDistributionGroupIdOrArn = Shapes::StringShape.new(name: 'TrafficDistributionGroupIdOrArn')
|
|
2079
2084
|
TrafficDistributionGroupStatus = Shapes::StringShape.new(name: 'TrafficDistributionGroupStatus')
|
|
@@ -2125,6 +2130,8 @@ module Aws::Connect
|
|
|
2125
2130
|
UpdateContactScheduleResponse = Shapes::StructureShape.new(name: 'UpdateContactScheduleResponse')
|
|
2126
2131
|
UpdateContactTaskTemplateRequest = Shapes::StructureShape.new(name: 'UpdateContactTaskTemplateRequest')
|
|
2127
2132
|
UpdateContactTaskTemplateResponse = Shapes::StructureShape.new(name: 'UpdateContactTaskTemplateResponse')
|
|
2133
|
+
UpdateCrossRegionRoutingRequest = Shapes::StructureShape.new(name: 'UpdateCrossRegionRoutingRequest')
|
|
2134
|
+
UpdateCrossRegionRoutingResponse = Shapes::StructureShape.new(name: 'UpdateCrossRegionRoutingResponse')
|
|
2128
2135
|
UpdateDataTableAttributeRequest = Shapes::StructureShape.new(name: 'UpdateDataTableAttributeRequest')
|
|
2129
2136
|
UpdateDataTableAttributeResponse = Shapes::StructureShape.new(name: 'UpdateDataTableAttributeResponse')
|
|
2130
2137
|
UpdateDataTableMetadataRequest = Shapes::StructureShape.new(name: 'UpdateDataTableMetadataRequest')
|
|
@@ -2420,6 +2427,7 @@ module Aws::Connect
|
|
|
2420
2427
|
AgentInfo.add_member(:agent_initiated_hold_duration, Shapes::ShapeRef.new(shape: Duration, location_name: "AgentInitiatedHoldDuration"))
|
|
2421
2428
|
AgentInfo.add_member(:state_transitions, Shapes::ShapeRef.new(shape: StateTransitions, location_name: "StateTransitions"))
|
|
2422
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"))
|
|
2423
2431
|
AgentInfo.struct_class = Types::AgentInfo
|
|
2424
2432
|
|
|
2425
2433
|
AgentQualityMetrics.add_member(:audio, Shapes::ShapeRef.new(shape: AudioQualityMetricsInfo, location_name: "Audio"))
|
|
@@ -3890,13 +3898,13 @@ module Aws::Connect
|
|
|
3890
3898
|
|
|
3891
3899
|
CreateTrafficDistributionGroupRequest.add_member(:name, Shapes::ShapeRef.new(shape: Name128, required: true, location_name: "Name"))
|
|
3892
3900
|
CreateTrafficDistributionGroupRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description250, location_name: "Description"))
|
|
3893
|
-
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"))
|
|
3894
3902
|
CreateTrafficDistributionGroupRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
3895
3903
|
CreateTrafficDistributionGroupRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
3896
3904
|
CreateTrafficDistributionGroupRequest.struct_class = Types::CreateTrafficDistributionGroupRequest
|
|
3897
3905
|
|
|
3898
|
-
CreateTrafficDistributionGroupResponse.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
3899
|
-
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"))
|
|
3900
3908
|
CreateTrafficDistributionGroupResponse.struct_class = Types::CreateTrafficDistributionGroupResponse
|
|
3901
3909
|
|
|
3902
3910
|
CreateUseCaseRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
@@ -5662,6 +5670,12 @@ module Aws::Connect
|
|
|
5662
5670
|
GetContactMetricsResponse.add_member(:arn, Shapes::ShapeRef.new(shape: ARN, location_name: "Arn"))
|
|
5663
5671
|
GetContactMetricsResponse.struct_class = Types::GetContactMetricsResponse
|
|
5664
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
|
+
|
|
5665
5679
|
GetCurrentMetricDataRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
5666
5680
|
GetCurrentMetricDataRequest.add_member(:filters, Shapes::ShapeRef.new(shape: Filters, required: true, location_name: "Filters"))
|
|
5667
5681
|
GetCurrentMetricDataRequest.add_member(:groupings, Shapes::ShapeRef.new(shape: Groupings, location_name: "Groupings"))
|
|
@@ -5805,8 +5819,8 @@ module Aws::Connect
|
|
|
5805
5819
|
GetTrafficDistributionRequest.struct_class = Types::GetTrafficDistributionRequest
|
|
5806
5820
|
|
|
5807
5821
|
GetTrafficDistributionResponse.add_member(:telephony_config, Shapes::ShapeRef.new(shape: TelephonyConfig, location_name: "TelephonyConfig"))
|
|
5808
|
-
GetTrafficDistributionResponse.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
5809
|
-
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"))
|
|
5810
5824
|
GetTrafficDistributionResponse.add_member(:sign_in_config, Shapes::ShapeRef.new(shape: SignInConfig, location_name: "SignInConfig"))
|
|
5811
5825
|
GetTrafficDistributionResponse.add_member(:agent_config, Shapes::ShapeRef.new(shape: AgentConfig, location_name: "AgentConfig"))
|
|
5812
5826
|
GetTrafficDistributionResponse.struct_class = Types::GetTrafficDistributionResponse
|
|
@@ -6134,6 +6148,8 @@ module Aws::Connect
|
|
|
6134
6148
|
|
|
6135
6149
|
IpCidrList.member = Shapes::ShapeRef.new(shape: IpCidr)
|
|
6136
6150
|
|
|
6151
|
+
IsolatedRegionsList.member = Shapes::ShapeRef.new(shape: AwsRegion)
|
|
6152
|
+
|
|
6137
6153
|
KinesisFirehoseConfig.add_member(:firehose_arn, Shapes::ShapeRef.new(shape: ARN, required: true, location_name: "FirehoseArn"))
|
|
6138
6154
|
KinesisFirehoseConfig.struct_class = Types::KinesisFirehoseConfig
|
|
6139
6155
|
|
|
@@ -6790,7 +6806,7 @@ module Aws::Connect
|
|
|
6790
6806
|
ListTestCasesResponse.struct_class = Types::ListTestCasesResponse
|
|
6791
6807
|
|
|
6792
6808
|
ListTrafficDistributionGroupUsersRequest.add_member(:traffic_distribution_group_id, Shapes::ShapeRef.new(shape: TrafficDistributionGroupIdOrArn, required: true, location: "uri", location_name: "TrafficDistributionGroupId"))
|
|
6793
|
-
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}))
|
|
6794
6810
|
ListTrafficDistributionGroupUsersRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
6795
6811
|
ListTrafficDistributionGroupUsersRequest.struct_class = Types::ListTrafficDistributionGroupUsersRequest
|
|
6796
6812
|
|
|
@@ -6800,7 +6816,7 @@ module Aws::Connect
|
|
|
6800
6816
|
|
|
6801
6817
|
ListTrafficDistributionGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult10, location: "querystring", location_name: "maxResults"))
|
|
6802
6818
|
ListTrafficDistributionGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
6803
|
-
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"))
|
|
6804
6820
|
ListTrafficDistributionGroupsRequest.struct_class = Types::ListTrafficDistributionGroupsRequest
|
|
6805
6821
|
|
|
6806
6822
|
ListTrafficDistributionGroupsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
@@ -7817,7 +7833,7 @@ module Aws::Connect
|
|
|
7817
7833
|
ReleasePhoneNumberRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
|
|
7818
7834
|
ReleasePhoneNumberRequest.struct_class = Types::ReleasePhoneNumberRequest
|
|
7819
7835
|
|
|
7820
|
-
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"))
|
|
7821
7837
|
ReplicateInstanceRequest.add_member(:replica_region, Shapes::ShapeRef.new(shape: AwsRegion, required: true, location_name: "ReplicaRegion"))
|
|
7822
7838
|
ReplicateInstanceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
7823
7839
|
ReplicateInstanceRequest.add_member(:replica_alias, Shapes::ShapeRef.new(shape: DirectoryAlias, required: true, location_name: "ReplicaAlias"))
|
|
@@ -9155,20 +9171,20 @@ module Aws::Connect
|
|
|
9155
9171
|
TooManyRequestsException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
|
9156
9172
|
TooManyRequestsException.struct_class = Types::TooManyRequestsException
|
|
9157
9173
|
|
|
9158
|
-
TrafficDistributionGroup.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
9159
|
-
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"))
|
|
9160
9176
|
TrafficDistributionGroup.add_member(:name, Shapes::ShapeRef.new(shape: Name128, location_name: "Name"))
|
|
9161
9177
|
TrafficDistributionGroup.add_member(:description, Shapes::ShapeRef.new(shape: Description250, location_name: "Description"))
|
|
9162
|
-
TrafficDistributionGroup.add_member(:instance_arn, Shapes::ShapeRef.new(shape:
|
|
9178
|
+
TrafficDistributionGroup.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ACGRInstanceArn, location_name: "InstanceArn"))
|
|
9163
9179
|
TrafficDistributionGroup.add_member(:status, Shapes::ShapeRef.new(shape: TrafficDistributionGroupStatus, location_name: "Status"))
|
|
9164
9180
|
TrafficDistributionGroup.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
|
9165
9181
|
TrafficDistributionGroup.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
|
9166
9182
|
TrafficDistributionGroup.struct_class = Types::TrafficDistributionGroup
|
|
9167
9183
|
|
|
9168
|
-
TrafficDistributionGroupSummary.add_member(:id, Shapes::ShapeRef.new(shape:
|
|
9169
|
-
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"))
|
|
9170
9186
|
TrafficDistributionGroupSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name128, location_name: "Name"))
|
|
9171
|
-
TrafficDistributionGroupSummary.add_member(:instance_arn, Shapes::ShapeRef.new(shape:
|
|
9187
|
+
TrafficDistributionGroupSummary.add_member(:instance_arn, Shapes::ShapeRef.new(shape: ACGRInstanceArn, location_name: "InstanceArn"))
|
|
9172
9188
|
TrafficDistributionGroupSummary.add_member(:status, Shapes::ShapeRef.new(shape: TrafficDistributionGroupStatus, location_name: "Status"))
|
|
9173
9189
|
TrafficDistributionGroupSummary.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "IsDefault"))
|
|
9174
9190
|
TrafficDistributionGroupSummary.struct_class = Types::TrafficDistributionGroupSummary
|
|
@@ -9356,6 +9372,12 @@ module Aws::Connect
|
|
|
9356
9372
|
|
|
9357
9373
|
UpdateContactTaskTemplateResponse.struct_class = Types::UpdateContactTaskTemplateResponse
|
|
9358
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
|
+
|
|
9359
9381
|
UpdateDataTableAttributeRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
9360
9382
|
UpdateDataTableAttributeRequest.add_member(:data_table_id, Shapes::ShapeRef.new(shape: DataTableId, required: true, location: "uri", location_name: "DataTableId"))
|
|
9361
9383
|
UpdateDataTableAttributeRequest.add_member(:attribute_name, Shapes::ShapeRef.new(shape: DataTableName, required: true, location: "uri", location_name: "AttributeName"))
|
|
@@ -12657,6 +12679,19 @@ module Aws::Connect
|
|
|
12657
12679
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
12658
12680
|
end)
|
|
12659
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
|
+
|
|
12660
12695
|
api.add_operation(:get_current_metric_data, Seahorse::Model::Operation.new.tap do |o|
|
|
12661
12696
|
o.name = "GetCurrentMetricData"
|
|
12662
12697
|
o.http_method = "POST"
|
|
@@ -15440,6 +15475,20 @@ module Aws::Connect
|
|
|
15440
15475
|
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
|
15441
15476
|
end)
|
|
15442
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
|
+
|
|
15443
15492
|
api.add_operation(:update_data_table_attribute, Seahorse::Model::Operation.new.tap do |o|
|
|
15444
15493
|
o.name = "UpdateDataTableAttribute"
|
|
15445
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.
|
|
@@ -36490,7 +36531,7 @@ module Aws::Connect
|
|
|
36490
36531
|
# @return [String]
|
|
36491
36532
|
#
|
|
36492
36533
|
# @!attribute [rw] instance_arn
|
|
36493
|
-
# The Amazon Resource Name (ARN) of the
|
|
36534
|
+
# The Amazon Resource Name (ARN) of the instance.
|
|
36494
36535
|
# @return [String]
|
|
36495
36536
|
#
|
|
36496
36537
|
# @!attribute [rw] status
|
|
@@ -37508,6 +37549,34 @@ module Aws::Connect
|
|
|
37508
37549
|
#
|
|
37509
37550
|
class UpdateContactTaskTemplateResponse < Aws::EmptyStructure; end
|
|
37510
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
|
+
|
|
37511
37580
|
# @!attribute [rw] instance_id
|
|
37512
37581
|
# The unique identifier for the Amazon Connect instance.
|
|
37513
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
|
|
@@ -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
|
|
@@ -8756,6 +8767,15 @@ module Aws::Connect
|
|
|
8756
8767
|
class UpdateContactTaskTemplateResponse < Aws::EmptyStructure
|
|
8757
8768
|
end
|
|
8758
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
|
+
|
|
8759
8779
|
class UpdateDataTableAttributeRequest
|
|
8760
8780
|
attr_accessor instance_id: ::String
|
|
8761
8781
|
attr_accessor data_table_id: ::String
|