aws-sdk-connect 1.238.0 → 1.239.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: dacbb7fff7f8179ff7fcb8fa7b024d1f622fc4bcc82c1eb9366af37282b1b05f
4
- data.tar.gz: d1809597a32a6d75ddbf606090f66e6d942dd7c8dd5ebd5dfb607c13fa9f7e00
3
+ metadata.gz: f4191cec2d7127ca4a7bca10df8f9de6378eadf9991be8c75c87d4db6f2f74c5
4
+ data.tar.gz: 8fcb4831ba12dac0fad87bcd05e6e8076749c086687992d88566e7d6ae4bd387
5
5
  SHA512:
6
- metadata.gz: e7f3570e429a3a18553e48c1ef8a09d65ce2981d7cedc8f63e5951eacc6f10cce74b8d76ae3f0abed373ca64ce110d64b704b4dc6545dec15cecd81ffe237792
7
- data.tar.gz: beb79b3d8041339f6bd738a09bd08184465a51531ddc2f90159b04114ab39c9dc845b382928ec0e623c24eec753b038bdf30d6db4986d78e48787dfb3145b252
6
+ metadata.gz: e27ac466e842989509bfe41449df6e4c4d33b22cad331beea0fa0f2f2a769a51a7e7dca6fe96f3df223ee649d295379dffef63a6e2f4ae9a636f9a61a069d1af
7
+ data.tar.gz: 12970728c0d22aedeb9dce001e6b742c6a3e133db372ccdbb0daa854b24bb9218108b73b133105e840b9d124a02812f43c2a7ac17bf7c0be3e7708539972b107
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.239.0 (2026-01-28)
5
+ ------------------
6
+
7
+ * Feature - Adds support for filtering search results based on tags assigned to contacts.
8
+
4
9
  1.238.0 (2026-01-27)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.238.0
1
+ 1.239.0
@@ -19086,6 +19086,26 @@ module Aws::Connect
19086
19086
  # match_type: "MATCH_ALL", # accepts MATCH_ALL, MATCH_ANY, MATCH_EXACT, MATCH_NONE
19087
19087
  # },
19088
19088
  # active_regions: ["RegionName"],
19089
+ # contact_tags: {
19090
+ # or_conditions: [
19091
+ # [
19092
+ # {
19093
+ # tag_key: "String",
19094
+ # tag_value: "String",
19095
+ # },
19096
+ # ],
19097
+ # ],
19098
+ # and_conditions: [
19099
+ # {
19100
+ # tag_key: "String",
19101
+ # tag_value: "String",
19102
+ # },
19103
+ # ],
19104
+ # tag_condition: {
19105
+ # tag_key: "String",
19106
+ # tag_value: "String",
19107
+ # },
19108
+ # },
19089
19109
  # },
19090
19110
  # max_results: 1,
19091
19111
  # next_token: "LargeNextToken",
@@ -19147,6 +19167,8 @@ module Aws::Connect
19147
19167
  # resp.contacts[0].routing_criteria.steps[0].status #=> String, one of "ACTIVE", "INACTIVE", "JOINED", "EXPIRED"
19148
19168
  # resp.contacts[0].routing_criteria.activation_timestamp #=> Time
19149
19169
  # resp.contacts[0].routing_criteria.index #=> Integer
19170
+ # resp.contacts[0].tags #=> Hash
19171
+ # resp.contacts[0].tags["ContactTagKey"] #=> String
19150
19172
  # resp.contacts[0].global_resiliency_metadata.active_region #=> String
19151
19173
  # resp.contacts[0].global_resiliency_metadata.origin_region #=> String
19152
19174
  # resp.contacts[0].global_resiliency_metadata.traffic_distribution_group_id #=> String
@@ -27834,7 +27856,7 @@ module Aws::Connect
27834
27856
  tracer: tracer
27835
27857
  )
27836
27858
  context[:gem_name] = 'aws-sdk-connect'
27837
- context[:gem_version] = '1.238.0'
27859
+ context[:gem_version] = '1.239.0'
27838
27860
  Seahorse::Client::Request.new(handlers, context)
27839
27861
  end
27840
27862
 
@@ -3012,6 +3012,7 @@ module Aws::Connect
3012
3012
  ContactSearchSummary.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: ContactSearchSummarySegmentAttributes, location_name: "SegmentAttributes"))
3013
3013
  ContactSearchSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
3014
3014
  ContactSearchSummary.add_member(:routing_criteria, Shapes::ShapeRef.new(shape: RoutingCriteria, location_name: "RoutingCriteria"))
3015
+ ContactSearchSummary.add_member(:tags, Shapes::ShapeRef.new(shape: ContactTagMap, location_name: "Tags"))
3015
3016
  ContactSearchSummary.add_member(:global_resiliency_metadata, Shapes::ShapeRef.new(shape: GlobalResiliencyMetadata, location_name: "GlobalResiliencyMetadata"))
3016
3017
  ContactSearchSummary.struct_class = Types::ContactSearchSummary
3017
3018
 
@@ -7235,6 +7236,7 @@ module Aws::Connect
7235
7236
  SearchCriteria.add_member(:searchable_contact_attributes, Shapes::ShapeRef.new(shape: SearchableContactAttributes, location_name: "SearchableContactAttributes"))
7236
7237
  SearchCriteria.add_member(:searchable_segment_attributes, Shapes::ShapeRef.new(shape: SearchableSegmentAttributes, location_name: "SearchableSegmentAttributes"))
7237
7238
  SearchCriteria.add_member(:active_regions, Shapes::ShapeRef.new(shape: ActiveRegionList, location_name: "ActiveRegions"))
7239
+ SearchCriteria.add_member(:contact_tags, Shapes::ShapeRef.new(shape: ControlPlaneTagFilter, location_name: "ContactTags"))
7238
7240
  SearchCriteria.struct_class = Types::SearchCriteria
7239
7241
 
7240
7242
  SearchDataTablesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
@@ -4548,6 +4548,11 @@ module Aws::Connect
4548
4548
  # Latest routing criteria on the contact.
4549
4549
  # @return [Types::RoutingCriteria]
4550
4550
  #
4551
+ # @!attribute [rw] tags
4552
+ # Tags associated with the contact. This contains both Amazon Web
4553
+ # Services generated and user-defined tags.
4554
+ # @return [Hash<String,String>]
4555
+ #
4551
4556
  # @!attribute [rw] global_resiliency_metadata
4552
4557
  # Additional routing information for contacts created in ACGR
4553
4558
  # instances.
@@ -4570,6 +4575,7 @@ module Aws::Connect
4570
4575
  :segment_attributes,
4571
4576
  :name,
4572
4577
  :routing_criteria,
4578
+ :tags,
4573
4579
  :global_resiliency_metadata)
4574
4580
  SENSITIVE = [:segment_attributes, :name]
4575
4581
  include Aws::Structure
@@ -27862,6 +27868,18 @@ module Aws::Connect
27862
27868
  # The list of active regions for contacts in ACGR instances.
27863
27869
  # @return [Array<String>]
27864
27870
  #
27871
+ # @!attribute [rw] contact_tags
27872
+ # An object that can be used to specify Tag conditions inside the
27873
+ # `SearchFilter`. This accepts an `OR` of `AND` (List of List) input
27874
+ # where:
27875
+ #
27876
+ # * Top level list specifies conditions that need to be applied with
27877
+ # `OR` operator
27878
+ #
27879
+ # * Inner list specifies conditions that need to be applied with `AND`
27880
+ # operator.
27881
+ # @return [Types::ControlPlaneTagFilter]
27882
+ #
27865
27883
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SearchCriteria AWS API Documentation
27866
27884
  #
27867
27885
  class SearchCriteria < Struct.new(
@@ -27876,7 +27894,8 @@ module Aws::Connect
27876
27894
  :additional_time_range,
27877
27895
  :searchable_contact_attributes,
27878
27896
  :searchable_segment_attributes,
27879
- :active_regions)
27897
+ :active_regions,
27898
+ :contact_tags)
27880
27899
  SENSITIVE = []
27881
27900
  include Aws::Structure
27882
27901
  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.238.0'
57
+ GEM_VERSION = '1.239.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -4350,7 +4350,27 @@ module Aws
4350
4350
  ],
4351
4351
  match_type: ("MATCH_ALL" | "MATCH_ANY" | "MATCH_EXACT" | "MATCH_NONE")?
4352
4352
  }?,
4353
- active_regions: Array[::String]?
4353
+ active_regions: Array[::String]?,
4354
+ contact_tags: {
4355
+ or_conditions: Array[
4356
+ Array[
4357
+ {
4358
+ tag_key: ::String?,
4359
+ tag_value: ::String?
4360
+ },
4361
+ ],
4362
+ ]?,
4363
+ and_conditions: Array[
4364
+ {
4365
+ tag_key: ::String?,
4366
+ tag_value: ::String?
4367
+ },
4368
+ ]?,
4369
+ tag_condition: {
4370
+ tag_key: ::String?,
4371
+ tag_value: ::String?
4372
+ }?
4373
+ }?
4354
4374
  },
4355
4375
  ?max_results: ::Integer,
4356
4376
  ?next_token: ::String,
data/sig/types.rbs CHANGED
@@ -1104,6 +1104,7 @@ module Aws::Connect
1104
1104
  attr_accessor segment_attributes: ::Hash[::String, Types::ContactSearchSummarySegmentAttributeValue]
1105
1105
  attr_accessor name: ::String
1106
1106
  attr_accessor routing_criteria: Types::RoutingCriteria
1107
+ attr_accessor tags: ::Hash[::String, ::String]
1107
1108
  attr_accessor global_resiliency_metadata: Types::GlobalResiliencyMetadata
1108
1109
  SENSITIVE: [:segment_attributes, :name]
1109
1110
  end
@@ -6499,6 +6500,7 @@ module Aws::Connect
6499
6500
  attr_accessor searchable_contact_attributes: Types::SearchableContactAttributes
6500
6501
  attr_accessor searchable_segment_attributes: Types::SearchableSegmentAttributes
6501
6502
  attr_accessor active_regions: ::Array[::String]
6503
+ attr_accessor contact_tags: Types::ControlPlaneTagFilter
6502
6504
  SENSITIVE: []
6503
6505
  end
6504
6506
 
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.238.0
4
+ version: 1.239.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services