aws-sdk-connect 1.230.0 → 1.232.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1df315d87918612a9e82208b700a0a7bf12a70cae345b59a11cae778c5cfa3be
4
- data.tar.gz: 4abc95a9c791d78596657c0f09f94d77118f80b5e24b708a978294cdc9d240cd
3
+ metadata.gz: a64e6b78d4270c9b643d8bc759f2828b2a32742175d200a6f382aa1bd6b9921e
4
+ data.tar.gz: 2fa2de760a735d1abb8084a6bd43b3b729d713204f047b90e62b1a27a4bfb6b8
5
5
  SHA512:
6
- metadata.gz: b4b8fe1a0d4f2e5dee42b62ebfa89dd27d96f851de3b459d54a453fad5e11eff22fa59448bd29ae9fb6d8fd3fa897f19c0a0f515b61c5a8a68303a25194c7094
7
- data.tar.gz: fc0d0fe703d254c289d7b86539722173f4f77b7f305e730487a9435bcee1d87bae52a937d56c91cea8ac996bf2305e63b3e8614dd82c27d9f49406ce55e8f94b
6
+ metadata.gz: 521d0911642c3cb12a2a38771e3310a1baad6d0155bc59e5d5ee33f1094c886f8c905ea747b2974ae0e2807e76a5d33af62596c918913615017b3efeb42c9c3a
7
+ data.tar.gz: 4007965b7cd7a55cd2223d9eb98dedda1fbe78958bcea08be00b288c475857a3dd0ad281a7dc46d7718cc191a4af6e4c41443a3502a14b35e954e47dbd1d6d8c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.232.0 (2025-12-30)
5
+ ------------------
6
+
7
+ * Feature - Adds support for searching global contacts using the ActiveRegions filter, and pagination support for ListSecurityProfileFlowModules and ListEntitySecurityProfiles.
8
+
9
+ 1.231.0 (2025-12-29)
10
+ ------------------
11
+
12
+ * Feature - Changes for Contact for Global Search
13
+
4
14
  1.230.0 (2025-12-19)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.230.0
1
+ 1.232.0
@@ -7162,6 +7162,9 @@ module Aws::Connect
7162
7162
  # resp.contact.next_contacts[0].next_contact_metadata.quick_connect_contact_data.quick_connect_id #=> String
7163
7163
  # resp.contact.next_contacts[0].next_contact_metadata.quick_connect_contact_data.quick_connect_name #=> String
7164
7164
  # resp.contact.next_contacts[0].next_contact_metadata.quick_connect_contact_data.quick_connect_type #=> String, one of "USER", "QUEUE", "PHONE_NUMBER", "FLOW"
7165
+ # resp.contact.global_resiliency_metadata.active_region #=> String
7166
+ # resp.contact.global_resiliency_metadata.origin_region #=> String
7167
+ # resp.contact.global_resiliency_metadata.traffic_distribution_group_id #=> String
7165
7168
  #
7166
7169
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContact AWS API Documentation
7167
7170
  #
@@ -14785,6 +14788,8 @@ module Aws::Connect
14785
14788
  # * {Types::ListEntitySecurityProfilesResponse#security_profiles #security_profiles} => Array<Types::SecurityProfileItem>
14786
14789
  # * {Types::ListEntitySecurityProfilesResponse#next_token #next_token} => String
14787
14790
  #
14791
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
14792
+ #
14788
14793
  # @example Request syntax with placeholder values
14789
14794
  #
14790
14795
  # resp = client.list_entity_security_profiles({
@@ -16499,6 +16504,8 @@ module Aws::Connect
16499
16504
  # * {Types::ListSecurityProfileFlowModulesResponse#last_modified_time #last_modified_time} => Time
16500
16505
  # * {Types::ListSecurityProfileFlowModulesResponse#last_modified_region #last_modified_region} => String
16501
16506
  #
16507
+ # The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
16508
+ #
16502
16509
  # @example Request syntax with placeholder values
16503
16510
  #
16504
16511
  # resp = client.list_security_profile_flow_modules({
@@ -18430,6 +18437,7 @@ module Aws::Connect
18430
18437
  # ],
18431
18438
  # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
18432
18439
  # },
18440
+ # active_regions: ["RegionName"],
18433
18441
  # },
18434
18442
  # max_results: 1,
18435
18443
  # next_token: "LargeNextToken",
@@ -18491,6 +18499,9 @@ module Aws::Connect
18491
18499
  # resp.contacts[0].routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
18492
18500
  # resp.contacts[0].routing_criteria.activation_timestamp #=> Time
18493
18501
  # resp.contacts[0].routing_criteria.index #=> Integer
18502
+ # resp.contacts[0].global_resiliency_metadata.active_region #=> String
18503
+ # resp.contacts[0].global_resiliency_metadata.origin_region #=> String
18504
+ # resp.contacts[0].global_resiliency_metadata.traffic_distribution_group_id #=> String
18494
18505
  # resp.next_token #=> String
18495
18506
  # resp.total_count #=> Integer
18496
18507
  #
@@ -26848,7 +26859,7 @@ module Aws::Connect
26848
26859
  tracer: tracer
26849
26860
  )
26850
26861
  context[:gem_name] = 'aws-sdk-connect'
26851
- context[:gem_version] = '1.230.0'
26862
+ context[:gem_version] = '1.232.0'
26852
26863
  Seahorse::Client::Request.new(handlers, context)
26853
26864
  end
26854
26865
 
@@ -24,6 +24,8 @@ module Aws::Connect
24
24
  ActionType = Shapes::StringShape.new(name: 'ActionType')
25
25
  ActivateEvaluationFormRequest = Shapes::StructureShape.new(name: 'ActivateEvaluationFormRequest')
26
26
  ActivateEvaluationFormResponse = Shapes::StructureShape.new(name: 'ActivateEvaluationFormResponse')
27
+ ActiveRegion = Shapes::StringShape.new(name: 'ActiveRegion')
28
+ ActiveRegionList = Shapes::ListShape.new(name: 'ActiveRegionList')
27
29
  AdditionalEmailRecipients = Shapes::StructureShape.new(name: 'AdditionalEmailRecipients')
28
30
  AfterContactWorkTimeLimit = Shapes::IntegerShape.new(name: 'AfterContactWorkTimeLimit')
29
31
  AgentAvailabilityTimer = Shapes::StringShape.new(name: 'AgentAvailabilityTimer')
@@ -860,6 +862,7 @@ module Aws::Connect
860
862
  GetTaskTemplateResponse = Shapes::StructureShape.new(name: 'GetTaskTemplateResponse')
861
863
  GetTrafficDistributionRequest = Shapes::StructureShape.new(name: 'GetTrafficDistributionRequest')
862
864
  GetTrafficDistributionResponse = Shapes::StructureShape.new(name: 'GetTrafficDistributionResponse')
865
+ GlobalResiliencyMetadata = Shapes::StructureShape.new(name: 'GlobalResiliencyMetadata')
863
866
  GlobalSignInEndpoint = Shapes::StringShape.new(name: 'GlobalSignInEndpoint')
864
867
  GranularAccessControlConfiguration = Shapes::StructureShape.new(name: 'GranularAccessControlConfiguration')
865
868
  Grouping = Shapes::StringShape.new(name: 'Grouping')
@@ -961,6 +964,7 @@ module Aws::Connect
961
964
  InternalServiceException = Shapes::StructureShape.new(name: 'InternalServiceException')
962
965
  IntervalDetails = Shapes::StructureShape.new(name: 'IntervalDetails')
963
966
  IntervalPeriod = Shapes::StringShape.new(name: 'IntervalPeriod')
967
+ InvalidActiveRegionException = Shapes::StructureShape.new(name: 'InvalidActiveRegionException')
964
968
  InvalidContactFlowException = Shapes::StructureShape.new(name: 'InvalidContactFlowException')
965
969
  InvalidContactFlowModuleException = Shapes::StructureShape.new(name: 'InvalidContactFlowModuleException')
966
970
  InvalidParameterException = Shapes::StructureShape.new(name: 'InvalidParameterException')
@@ -1190,6 +1194,7 @@ module Aws::Connect
1190
1194
  OperationalHour = Shapes::StructureShape.new(name: 'OperationalHour')
1191
1195
  OperationalHours = Shapes::ListShape.new(name: 'OperationalHours')
1192
1196
  Origin = Shapes::StringShape.new(name: 'Origin')
1197
+ OriginRegion = Shapes::StringShape.new(name: 'OriginRegion')
1193
1198
  OriginsList = Shapes::ListShape.new(name: 'OriginsList')
1194
1199
  OutboundAdditionalRecipients = Shapes::StructureShape.new(name: 'OutboundAdditionalRecipients')
1195
1200
  OutboundCallerConfig = Shapes::StructureShape.new(name: 'OutboundCallerConfig')
@@ -1996,6 +2001,8 @@ module Aws::Connect
1996
2001
  ActivateEvaluationFormResponse.add_member(:evaluation_form_version, Shapes::ShapeRef.new(shape: VersionNumber, required: true, location_name: "EvaluationFormVersion"))
1997
2002
  ActivateEvaluationFormResponse.struct_class = Types::ActivateEvaluationFormResponse
1998
2003
 
2004
+ ActiveRegionList.member = Shapes::ShapeRef.new(shape: RegionName)
2005
+
1999
2006
  AdditionalEmailRecipients.add_member(:to_list, Shapes::ShapeRef.new(shape: EmailRecipientsList, location_name: "ToList"))
2000
2007
  AdditionalEmailRecipients.add_member(:cc_list, Shapes::ShapeRef.new(shape: EmailRecipientsList, location_name: "CcList"))
2001
2008
  AdditionalEmailRecipients.struct_class = Types::AdditionalEmailRecipients
@@ -2700,6 +2707,7 @@ module Aws::Connect
2700
2707
  Contact.add_member(:outbound_strategy, Shapes::ShapeRef.new(shape: OutboundStrategy, location_name: "OutboundStrategy"))
2701
2708
  Contact.add_member(:attributes, Shapes::ShapeRef.new(shape: Attributes, location_name: "Attributes"))
2702
2709
  Contact.add_member(:next_contacts, Shapes::ShapeRef.new(shape: NextContacts, location_name: "NextContacts"))
2710
+ Contact.add_member(:global_resiliency_metadata, Shapes::ShapeRef.new(shape: GlobalResiliencyMetadata, location_name: "GlobalResiliencyMetadata"))
2703
2711
  Contact.struct_class = Types::Contact
2704
2712
 
2705
2713
  ContactAnalysis.add_member(:transcript, Shapes::ShapeRef.new(shape: Transcript, location_name: "Transcript"))
@@ -2910,6 +2918,7 @@ module Aws::Connect
2910
2918
  ContactSearchSummary.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: ContactSearchSummarySegmentAttributes, location_name: "SegmentAttributes"))
2911
2919
  ContactSearchSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
2912
2920
  ContactSearchSummary.add_member(:routing_criteria, Shapes::ShapeRef.new(shape: RoutingCriteria, location_name: "RoutingCriteria"))
2921
+ ContactSearchSummary.add_member(:global_resiliency_metadata, Shapes::ShapeRef.new(shape: GlobalResiliencyMetadata, location_name: "GlobalResiliencyMetadata"))
2913
2922
  ContactSearchSummary.struct_class = Types::ContactSearchSummary
2914
2923
 
2915
2924
  ContactSearchSummaryAgentInfo.add_member(:id, Shapes::ShapeRef.new(shape: AgentResourceId, location_name: "Id"))
@@ -4958,6 +4967,11 @@ module Aws::Connect
4958
4967
  GetTrafficDistributionResponse.add_member(:agent_config, Shapes::ShapeRef.new(shape: AgentConfig, location_name: "AgentConfig"))
4959
4968
  GetTrafficDistributionResponse.struct_class = Types::GetTrafficDistributionResponse
4960
4969
 
4970
+ GlobalResiliencyMetadata.add_member(:active_region, Shapes::ShapeRef.new(shape: ActiveRegion, location_name: "ActiveRegion"))
4971
+ GlobalResiliencyMetadata.add_member(:origin_region, Shapes::ShapeRef.new(shape: OriginRegion, location_name: "OriginRegion"))
4972
+ GlobalResiliencyMetadata.add_member(:traffic_distribution_group_id, Shapes::ShapeRef.new(shape: TrafficDistributionGroupId, location_name: "TrafficDistributionGroupId"))
4973
+ GlobalResiliencyMetadata.struct_class = Types::GlobalResiliencyMetadata
4974
+
4961
4975
  GranularAccessControlConfiguration.add_member(:data_table_access_control_configuration, Shapes::ShapeRef.new(shape: DataTableAccessControlConfiguration, location_name: "DataTableAccessControlConfiguration"))
4962
4976
  GranularAccessControlConfiguration.struct_class = Types::GranularAccessControlConfiguration
4963
4977
 
@@ -5236,6 +5250,9 @@ module Aws::Connect
5236
5250
  IntervalDetails.add_member(:interval_period, Shapes::ShapeRef.new(shape: IntervalPeriod, location_name: "IntervalPeriod"))
5237
5251
  IntervalDetails.struct_class = Types::IntervalDetails
5238
5252
 
5253
+ InvalidActiveRegionException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
5254
+ InvalidActiveRegionException.struct_class = Types::InvalidActiveRegionException
5255
+
5239
5256
  InvalidContactFlowException.add_member(:problems, Shapes::ShapeRef.new(shape: Problems, location_name: "problems"))
5240
5257
  InvalidContactFlowException.struct_class = Types::InvalidContactFlowException
5241
5258
 
@@ -6934,6 +6951,7 @@ module Aws::Connect
6934
6951
  SearchCriteria.add_member(:additional_time_range, Shapes::ShapeRef.new(shape: SearchContactsAdditionalTimeRange, location_name: "AdditionalTimeRange"))
6935
6952
  SearchCriteria.add_member(:searchable_contact_attributes, Shapes::ShapeRef.new(shape: SearchableContactAttributes, location_name: "SearchableContactAttributes"))
6936
6953
  SearchCriteria.add_member(:searchable_segment_attributes, Shapes::ShapeRef.new(shape: SearchableSegmentAttributes, location_name: "SearchableSegmentAttributes"))
6954
+ SearchCriteria.add_member(:active_regions, Shapes::ShapeRef.new(shape: ActiveRegionList, location_name: "ActiveRegions"))
6937
6955
  SearchCriteria.struct_class = Types::SearchCriteria
6938
6956
 
6939
6957
  SearchDataTablesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
@@ -11320,6 +11338,12 @@ module Aws::Connect
11320
11338
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
11321
11339
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11322
11340
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
11341
+ o[:pager] = Aws::Pager.new(
11342
+ limit_key: "max_results",
11343
+ tokens: {
11344
+ "next_token" => "next_token"
11345
+ }
11346
+ )
11323
11347
  end)
11324
11348
 
11325
11349
  api.add_operation(:list_evaluation_form_versions, Seahorse::Model::Operation.new.tap do |o|
@@ -11804,6 +11828,12 @@ module Aws::Connect
11804
11828
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
11805
11829
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11806
11830
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
11831
+ o[:pager] = Aws::Pager.new(
11832
+ limit_key: "max_results",
11833
+ tokens: {
11834
+ "next_token" => "next_token"
11835
+ }
11836
+ )
11807
11837
  end)
11808
11838
 
11809
11839
  api.add_operation(:list_security_profile_permissions, Seahorse::Model::Operation.new.tap do |o|
@@ -12182,6 +12212,7 @@ module Aws::Connect
12182
12212
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
12183
12213
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12184
12214
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12215
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12185
12216
  end)
12186
12217
 
12187
12218
  api.add_operation(:search_agent_statuses, Seahorse::Model::Operation.new.tap do |o|
@@ -12719,6 +12750,7 @@ module Aws::Connect
12719
12750
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
12720
12751
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12721
12752
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12753
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12722
12754
  end)
12723
12755
 
12724
12756
  api.add_operation(:start_contact_streaming, Seahorse::Model::Operation.new.tap do |o|
@@ -12846,6 +12878,7 @@ module Aws::Connect
12846
12878
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
12847
12879
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12848
12880
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12881
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12849
12882
  end)
12850
12883
 
12851
12884
  api.add_operation(:stop_contact_media_processing, Seahorse::Model::Operation.new.tap do |o|
@@ -12871,6 +12904,7 @@ module Aws::Connect
12871
12904
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
12872
12905
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12873
12906
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12907
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12874
12908
  end)
12875
12909
 
12876
12910
  api.add_operation(:stop_contact_streaming, Seahorse::Model::Operation.new.tap do |o|
@@ -12907,6 +12941,7 @@ module Aws::Connect
12907
12941
  o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
12908
12942
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
12909
12943
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12944
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12910
12945
  end)
12911
12946
 
12912
12947
  api.add_operation(:tag_contact, Seahorse::Model::Operation.new.tap do |o|
@@ -12920,6 +12955,7 @@ module Aws::Connect
12920
12955
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12921
12956
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
12922
12957
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
12958
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12923
12959
  end)
12924
12960
 
12925
12961
  api.add_operation(:tag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -12961,6 +12997,7 @@ module Aws::Connect
12961
12997
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
12962
12998
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
12963
12999
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
13000
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
12964
13001
  end)
12965
13002
 
12966
13003
  api.add_operation(:untag_resource, Seahorse::Model::Operation.new.tap do |o|
@@ -13017,6 +13054,7 @@ module Aws::Connect
13017
13054
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
13018
13055
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
13019
13056
  o.errors << Shapes::ShapeRef.new(shape: ConflictException)
13057
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
13020
13058
  end)
13021
13059
 
13022
13060
  api.add_operation(:update_contact_attributes, Seahorse::Model::Operation.new.tap do |o|
@@ -13029,6 +13067,7 @@ module Aws::Connect
13029
13067
  o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
13030
13068
  o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
13031
13069
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
13070
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
13032
13071
  end)
13033
13072
 
13034
13073
  api.add_operation(:update_contact_evaluation, Seahorse::Model::Operation.new.tap do |o|
@@ -13143,6 +13182,7 @@ module Aws::Connect
13143
13182
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
13144
13183
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
13145
13184
  o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
13185
+ o.errors << Shapes::ShapeRef.new(shape: InvalidActiveRegionException)
13146
13186
  end)
13147
13187
 
13148
13188
  api.add_operation(:update_contact_schedule, Seahorse::Model::Operation.new.tap do |o|
@@ -36,6 +36,7 @@ module Aws::Connect
36
36
  # * {DuplicateResourceException}
37
37
  # * {IdempotencyException}
38
38
  # * {InternalServiceException}
39
+ # * {InvalidActiveRegionException}
39
40
  # * {InvalidContactFlowException}
40
41
  # * {InvalidContactFlowModuleException}
41
42
  # * {InvalidParameterException}
@@ -195,6 +196,21 @@ module Aws::Connect
195
196
  end
196
197
  end
197
198
 
199
+ class InvalidActiveRegionException < ServiceError
200
+
201
+ # @param [Seahorse::Client::RequestContext] context
202
+ # @param [String] message
203
+ # @param [Aws::Connect::Types::InvalidActiveRegionException] data
204
+ def initialize(context, message, data = Aws::EmptyStructure.new)
205
+ super(context, message, data)
206
+ end
207
+
208
+ # @return [String]
209
+ def message
210
+ @message || @data[:message]
211
+ end
212
+ end
213
+
198
214
  class InvalidContactFlowException < ServiceError
199
215
 
200
216
  # @param [Seahorse::Client::RequestContext] context
@@ -3543,6 +3543,11 @@ module Aws::Connect
3543
3543
  # List of next contact entries for the contact.
3544
3544
  # @return [Array<Types::NextContactEntry>]
3545
3545
  #
3546
+ # @!attribute [rw] global_resiliency_metadata
3547
+ # Information about the global resiliency configuration for the
3548
+ # contact, including traffic distribution details.
3549
+ # @return [Types::GlobalResiliencyMetadata]
3550
+ #
3546
3551
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Contact AWS API Documentation
3547
3552
  #
3548
3553
  class Contact < Struct.new(
@@ -3592,7 +3597,8 @@ module Aws::Connect
3592
3597
  :contact_details,
3593
3598
  :outbound_strategy,
3594
3599
  :attributes,
3595
- :next_contacts)
3600
+ :next_contacts,
3601
+ :global_resiliency_metadata)
3596
3602
  SENSITIVE = [:name, :description]
3597
3603
  include Aws::Structure
3598
3604
  end
@@ -4511,6 +4517,11 @@ module Aws::Connect
4511
4517
  # Latest routing criteria on the contact.
4512
4518
  # @return [Types::RoutingCriteria]
4513
4519
  #
4520
+ # @!attribute [rw] global_resiliency_metadata
4521
+ # Additional routing information for contacts created in ACGR
4522
+ # instances.
4523
+ # @return [Types::GlobalResiliencyMetadata]
4524
+ #
4514
4525
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactSearchSummary AWS API Documentation
4515
4526
  #
4516
4527
  class ContactSearchSummary < Struct.new(
@@ -4527,7 +4538,8 @@ module Aws::Connect
4527
4538
  :scheduled_timestamp,
4528
4539
  :segment_attributes,
4529
4540
  :name,
4530
- :routing_criteria)
4541
+ :routing_criteria,
4542
+ :global_resiliency_metadata)
4531
4543
  SENSITIVE = [:segment_attributes, :name]
4532
4544
  include Aws::Structure
4533
4545
  end
@@ -17121,6 +17133,34 @@ module Aws::Connect
17121
17133
  include Aws::Structure
17122
17134
  end
17123
17135
 
17136
+ # Information about the global resiliency configuration for the contact,
17137
+ # including traffic distribution details.
17138
+ #
17139
+ # @!attribute [rw] active_region
17140
+ # The current AWS region in which the contact is active. This
17141
+ # indicates where the contact is being processed in real-time.
17142
+ # @return [String]
17143
+ #
17144
+ # @!attribute [rw] origin_region
17145
+ # The AWS region where the contact was originally created and
17146
+ # initiated. This may differ from the ActiveRegion if the contact has
17147
+ # been transferred across regions.
17148
+ # @return [String]
17149
+ #
17150
+ # @!attribute [rw] traffic_distribution_group_id
17151
+ # The identifier of the traffic distribution group.
17152
+ # @return [String]
17153
+ #
17154
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GlobalResiliencyMetadata AWS API Documentation
17155
+ #
17156
+ class GlobalResiliencyMetadata < Struct.new(
17157
+ :active_region,
17158
+ :origin_region,
17159
+ :traffic_distribution_group_id)
17160
+ SENSITIVE = []
17161
+ include Aws::Structure
17162
+ end
17163
+
17124
17164
  # Contains granular access control configuration for security profiles,
17125
17165
  # including data table access permissions.
17126
17166
  #
@@ -18637,6 +18677,23 @@ module Aws::Connect
18637
18677
  include Aws::Structure
18638
18678
  end
18639
18679
 
18680
+ # This exception occurs when an API request is made to a non-active
18681
+ # region in an Amazon Connect instance configured with Amazon Connect
18682
+ # Global Resiliency. For example, if the active region is US West
18683
+ # (Oregon) and a request is made to US East (N. Virginia), the exception
18684
+ # will be returned.
18685
+ #
18686
+ # @!attribute [rw] message
18687
+ # @return [String]
18688
+ #
18689
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidActiveRegionException AWS API Documentation
18690
+ #
18691
+ class InvalidActiveRegionException < Struct.new(
18692
+ :message)
18693
+ SENSITIVE = []
18694
+ include Aws::Structure
18695
+ end
18696
+
18640
18697
  # The flow is not valid.
18641
18698
  #
18642
18699
  # @!attribute [rw] problems
@@ -26885,6 +26942,10 @@ module Aws::Connect
26885
26942
  # contact.
26886
26943
  # @return [Types::SearchableSegmentAttributes]
26887
26944
  #
26945
+ # @!attribute [rw] active_regions
26946
+ # The list of active regions for contacts in ACGR instances.
26947
+ # @return [Array<String>]
26948
+ #
26888
26949
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
26889
26950
  #
26890
26951
  class SearchCriteria < Struct.new(
@@ -26898,7 +26959,8 @@ module Aws::Connect
26898
26959
  :routing_criteria,
26899
26960
  :additional_time_range,
26900
26961
  :searchable_contact_attributes,
26901
- :searchable_segment_attributes)
26962
+ :searchable_segment_attributes,
26963
+ :active_regions)
26902
26964
  SENSITIVE = []
26903
26965
  include Aws::Structure
26904
26966
  end
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.230.0'
57
+ GEM_VERSION = '1.232.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -4174,7 +4174,8 @@ module Aws
4174
4174
  },
4175
4175
  ],
4176
4176
  match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
4177
- }?
4177
+ }?,
4178
+ active_regions: Array[::String]?
4178
4179
  },
4179
4180
  ?max_results: ::Integer,
4180
4181
  ?next_token: ::String,
data/sig/errors.rbs CHANGED
@@ -38,6 +38,9 @@ module Aws
38
38
  class InternalServiceException < ::Aws::Errors::ServiceError
39
39
  def message: () -> ::String
40
40
  end
41
+ class InvalidActiveRegionException < ::Aws::Errors::ServiceError
42
+ def message: () -> ::String
43
+ end
41
44
  class InvalidContactFlowException < ::Aws::Errors::ServiceError
42
45
  def problems: () -> ::String
43
46
  end
data/sig/types.rbs CHANGED
@@ -863,6 +863,7 @@ module Aws::Connect
863
863
  attr_accessor outbound_strategy: Types::OutboundStrategy
864
864
  attr_accessor attributes: ::Hash[::String, ::String]
865
865
  attr_accessor next_contacts: ::Array[Types::NextContactEntry]
866
+ attr_accessor global_resiliency_metadata: Types::GlobalResiliencyMetadata
866
867
  SENSITIVE: [:name, :description]
867
868
  end
868
869
 
@@ -1096,6 +1097,7 @@ module Aws::Connect
1096
1097
  attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
1097
1098
  attr_accessor name: ::String
1098
1099
  attr_accessor routing_criteria: Types::RoutingCriteria
1100
+ attr_accessor global_resiliency_metadata: Types::GlobalResiliencyMetadata
1099
1101
  SENSITIVE: [:segment_attributes, :name]
1100
1102
  end
1101
1103
 
@@ -3764,6 +3766,13 @@ module Aws::Connect
3764
3766
  SENSITIVE: []
3765
3767
  end
3766
3768
 
3769
+ class GlobalResiliencyMetadata
3770
+ attr_accessor active_region: ::String
3771
+ attr_accessor origin_region: ::String
3772
+ attr_accessor traffic_distribution_group_id: ::String
3773
+ SENSITIVE: []
3774
+ end
3775
+
3767
3776
  class GranularAccessControlConfiguration
3768
3777
  attr_accessor data_table_access_control_configuration: Types::DataTableAccessControlConfiguration
3769
3778
  SENSITIVE: []
@@ -4085,6 +4094,11 @@ module Aws::Connect
4085
4094
  SENSITIVE: []
4086
4095
  end
4087
4096
 
4097
+ class InvalidActiveRegionException
4098
+ attr_accessor message: ::String
4099
+ SENSITIVE: []
4100
+ end
4101
+
4088
4102
  class InvalidContactFlowException
4089
4103
  attr_accessor problems: ::Array[Types::ProblemDetail]
4090
4104
  SENSITIVE: []
@@ -6247,6 +6261,7 @@ module Aws::Connect
6247
6261
  attr_accessor additional_time_range: Types::SearchContactsAdditionalTimeRange
6248
6262
  attr_accessor searchable_contact_attributes: Types::SearchableContactAttributes
6249
6263
  attr_accessor searchable_segment_attributes: Types::SearchableSegmentAttributes
6264
+ attr_accessor active_regions: ::Array[::String]
6250
6265
  SENSITIVE: []
6251
6266
  end
6252
6267
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.230.0
4
+ version: 1.232.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services