aws-sdk-connect 1.237.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: 72a5004928b255c8ed92acb2e30b11a0aca36ac9f618ce771f4df9496dbf3afc
4
- data.tar.gz: 8b0bdfc9f294207677ae58247d58d7cbb4869e5588091adb1d6bfc13d71dba8b
3
+ metadata.gz: f4191cec2d7127ca4a7bca10df8f9de6378eadf9991be8c75c87d4db6f2f74c5
4
+ data.tar.gz: 8fcb4831ba12dac0fad87bcd05e6e8076749c086687992d88566e7d6ae4bd387
5
5
  SHA512:
6
- metadata.gz: bfc62e42bccebf302612f138625cab38fecb3a64de7e8cf45e7a373eb12e0ccb41adb170dd986a08adde931c237497d0092a56fe3d5ba5751f3bdbb9e1252b1b
7
- data.tar.gz: 381def113b99a688fb8b379ca767410a5d59d36c73e448a884f43a39afa405018148a8befe62331c322b3facfe3959081f7bd42397df95d12eb0c12f35ada9d4
6
+ metadata.gz: e27ac466e842989509bfe41449df6e4c4d33b22cad331beea0fa0f2f2a769a51a7e7dca6fe96f3df223ee649d295379dffef63a6e2f4ae9a636f9a61a069d1af
7
+ data.tar.gz: 12970728c0d22aedeb9dce001e6b742c6a3e133db372ccdbb0daa854b24bb9218108b73b133105e840b9d124a02812f43c2a7ac17bf7c0be3e7708539972b107
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
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
+
9
+ 1.238.0 (2026-01-27)
10
+ ------------------
11
+
12
+ * Feature - Added support for task attachments. The StartTaskContact API now accepts file attachments, enabling customers to include files (.csv, .doc, .docx, .heic, .jfif, .jpeg, .jpg, .mov, .mp4, .pdf, .png, .ppt, .pptx, .rtf, .txt, etc.) when creating Task contacts. Supports up to 5 attachments per task.
13
+
4
14
  1.237.0 (2026-01-23)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.237.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
@@ -23073,6 +23095,10 @@ module Aws::Connect
23073
23095
  #
23074
23096
  # </note>
23075
23097
  #
23098
+ # @option params [Array<Types::TaskAttachment>] :attachments
23099
+ # List of S3 presigned URLs of task attachments and their file name. You
23100
+ # can have a maximum of 5 attachments per task.
23101
+ #
23076
23102
  # @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23077
23103
  #
23078
23104
  # * {Types::StartTaskContactResponse#contact_id #contact_id} => String
@@ -23119,6 +23145,12 @@ module Aws::Connect
23119
23145
  # value_arn: "SegmentAttributeValueString",
23120
23146
  # },
23121
23147
  # },
23148
+ # attachments: [
23149
+ # {
23150
+ # file_name: "FileName", # required
23151
+ # s3_url: "PreSignedAttachmentUrl", # required
23152
+ # },
23153
+ # ],
23122
23154
  # })
23123
23155
  #
23124
23156
  # @example Response structure
@@ -27824,7 +27856,7 @@ module Aws::Connect
27824
27856
  tracer: tracer
27825
27857
  )
27826
27858
  context[:gem_name] = 'aws-sdk-connect'
27827
- context[:gem_version] = '1.237.0'
27859
+ context[:gem_version] = '1.239.0'
27828
27860
  Seahorse::Client::Request.new(handlers, context)
27829
27861
  end
27830
27862
 
@@ -1764,6 +1764,8 @@ module Aws::Connect
1764
1764
  TargetListType = Shapes::StringShape.new(name: 'TargetListType')
1765
1765
  TargetSlaMinutes = Shapes::IntegerShape.new(name: 'TargetSlaMinutes')
1766
1766
  TaskActionDefinition = Shapes::StructureShape.new(name: 'TaskActionDefinition')
1767
+ TaskAttachment = Shapes::StructureShape.new(name: 'TaskAttachment')
1768
+ TaskAttachments = Shapes::ListShape.new(name: 'TaskAttachments')
1767
1769
  TaskDescriptionExpression = Shapes::StringShape.new(name: 'TaskDescriptionExpression')
1768
1770
  TaskNameExpression = Shapes::StringShape.new(name: 'TaskNameExpression')
1769
1771
  TaskTemplateArn = Shapes::StringShape.new(name: 'TaskTemplateArn')
@@ -3010,6 +3012,7 @@ module Aws::Connect
3010
3012
  ContactSearchSummary.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: ContactSearchSummarySegmentAttributes, location_name: "SegmentAttributes"))
3011
3013
  ContactSearchSummary.add_member(:name, Shapes::ShapeRef.new(shape: Name, location_name: "Name"))
3012
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"))
3013
3016
  ContactSearchSummary.add_member(:global_resiliency_metadata, Shapes::ShapeRef.new(shape: GlobalResiliencyMetadata, location_name: "GlobalResiliencyMetadata"))
3014
3017
  ContactSearchSummary.struct_class = Types::ContactSearchSummary
3015
3018
 
@@ -7233,6 +7236,7 @@ module Aws::Connect
7233
7236
  SearchCriteria.add_member(:searchable_contact_attributes, Shapes::ShapeRef.new(shape: SearchableContactAttributes, location_name: "SearchableContactAttributes"))
7234
7237
  SearchCriteria.add_member(:searchable_segment_attributes, Shapes::ShapeRef.new(shape: SearchableSegmentAttributes, location_name: "SearchableSegmentAttributes"))
7235
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"))
7236
7240
  SearchCriteria.struct_class = Types::SearchCriteria
7237
7241
 
7238
7242
  SearchDataTablesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
@@ -7809,6 +7813,7 @@ module Aws::Connect
7809
7813
  StartTaskContactRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, location_name: "QuickConnectId"))
7810
7814
  StartTaskContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
7811
7815
  StartTaskContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
7816
+ StartTaskContactRequest.add_member(:attachments, Shapes::ShapeRef.new(shape: TaskAttachments, location_name: "Attachments"))
7812
7817
  StartTaskContactRequest.struct_class = Types::StartTaskContactRequest
7813
7818
 
7814
7819
  StartTaskContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -7981,6 +7986,12 @@ module Aws::Connect
7981
7986
  TaskActionDefinition.add_member(:references, Shapes::ShapeRef.new(shape: ContactReferences, location_name: "References"))
7982
7987
  TaskActionDefinition.struct_class = Types::TaskActionDefinition
7983
7988
 
7989
+ TaskAttachment.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "FileName"))
7990
+ TaskAttachment.add_member(:s3_url, Shapes::ShapeRef.new(shape: PreSignedAttachmentUrl, required: true, location_name: "S3Url"))
7991
+ TaskAttachment.struct_class = Types::TaskAttachment
7992
+
7993
+ TaskAttachments.member = Shapes::ShapeRef.new(shape: TaskAttachment)
7994
+
7984
7995
  TaskTemplateConstraints.add_member(:required_fields, Shapes::ShapeRef.new(shape: RequiredTaskTemplateFields, location_name: "RequiredFields"))
7985
7996
  TaskTemplateConstraints.add_member(:read_only_fields, Shapes::ShapeRef.new(shape: ReadOnlyTaskTemplateFields, location_name: "ReadOnlyFields"))
7986
7997
  TaskTemplateConstraints.add_member(:invisible_fields, Shapes::ShapeRef.new(shape: InvisibleTaskTemplateFields, location_name: "InvisibleFields"))
@@ -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
@@ -31046,6 +31065,11 @@ module Aws::Connect
31046
31065
  # </note>
31047
31066
  # @return [Hash<String,Types::SegmentAttributeValue>]
31048
31067
  #
31068
+ # @!attribute [rw] attachments
31069
+ # List of S3 presigned URLs of task attachments and their file name.
31070
+ # You can have a maximum of 5 attachments per task.
31071
+ # @return [Array<Types::TaskAttachment>]
31072
+ #
31049
31073
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
31050
31074
  #
31051
31075
  class StartTaskContactRequest < Struct.new(
@@ -31061,8 +31085,9 @@ module Aws::Connect
31061
31085
  :task_template_id,
31062
31086
  :quick_connect_id,
31063
31087
  :related_contact_id,
31064
- :segment_attributes)
31065
- SENSITIVE = [:name, :description]
31088
+ :segment_attributes,
31089
+ :attachments)
31090
+ SENSITIVE = [:name, :description, :attachments]
31066
31091
  include Aws::Structure
31067
31092
  end
31068
31093
 
@@ -31828,6 +31853,26 @@ module Aws::Connect
31828
31853
  include Aws::Structure
31829
31854
  end
31830
31855
 
31856
+ # Information about the task attachment files.
31857
+ #
31858
+ # @!attribute [rw] file_name
31859
+ # A case-sensitive name of the attached file being uploaded.
31860
+ # @return [String]
31861
+ #
31862
+ # @!attribute [rw] s3_url
31863
+ # The pre-signed URLs for the S3 bucket where the task attachment is
31864
+ # stored.
31865
+ # @return [String]
31866
+ #
31867
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TaskAttachment AWS API Documentation
31868
+ #
31869
+ class TaskAttachment < Struct.new(
31870
+ :file_name,
31871
+ :s3_url)
31872
+ SENSITIVE = []
31873
+ include Aws::Structure
31874
+ end
31875
+
31831
31876
  # Describes constraints that apply to the template fields.
31832
31877
  #
31833
31878
  # @!attribute [rw] required_fields
@@ -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.237.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,
@@ -5769,7 +5789,13 @@ module Aws
5769
5789
  untyped,
5770
5790
  ]?,
5771
5791
  value_arn: ::String?
5772
- }]
5792
+ }],
5793
+ ?attachments: Array[
5794
+ {
5795
+ file_name: ::String,
5796
+ s3_url: ::String
5797
+ },
5798
+ ]
5773
5799
  ) -> _StartTaskContactResponseSuccess
5774
5800
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
5775
5801
 
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
 
@@ -7210,7 +7212,8 @@ module Aws::Connect
7210
7212
  attr_accessor quick_connect_id: ::String
7211
7213
  attr_accessor related_contact_id: ::String
7212
7214
  attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
7213
- SENSITIVE: [:name, :description]
7215
+ attr_accessor attachments: ::Array[Types::TaskAttachment]
7216
+ SENSITIVE: [:name, :description, :attachments]
7214
7217
  end
7215
7218
 
7216
7219
  class StartTaskContactResponse
@@ -7417,6 +7420,12 @@ module Aws::Connect
7417
7420
  SENSITIVE: []
7418
7421
  end
7419
7422
 
7423
+ class TaskAttachment
7424
+ attr_accessor file_name: ::String
7425
+ attr_accessor s3_url: ::String
7426
+ SENSITIVE: []
7427
+ end
7428
+
7420
7429
  class TaskTemplateConstraints
7421
7430
  attr_accessor required_fields: ::Array[Types::RequiredFieldInfo]
7422
7431
  attr_accessor read_only_fields: ::Array[Types::ReadOnlyFieldInfo]
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.237.0
4
+ version: 1.239.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services