aws-sdk-connect 1.237.0 → 1.238.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: dacbb7fff7f8179ff7fcb8fa7b024d1f622fc4bcc82c1eb9366af37282b1b05f
4
+ data.tar.gz: d1809597a32a6d75ddbf606090f66e6d942dd7c8dd5ebd5dfb607c13fa9f7e00
5
5
  SHA512:
6
- metadata.gz: bfc62e42bccebf302612f138625cab38fecb3a64de7e8cf45e7a373eb12e0ccb41adb170dd986a08adde931c237497d0092a56fe3d5ba5751f3bdbb9e1252b1b
7
- data.tar.gz: 381def113b99a688fb8b379ca767410a5d59d36c73e448a884f43a39afa405018148a8befe62331c322b3facfe3959081f7bd42397df95d12eb0c12f35ada9d4
6
+ metadata.gz: e7f3570e429a3a18553e48c1ef8a09d65ce2981d7cedc8f63e5951eacc6f10cce74b8d76ae3f0abed373ca64ce110d64b704b4dc6545dec15cecd81ffe237792
7
+ data.tar.gz: beb79b3d8041339f6bd738a09bd08184465a51531ddc2f90159b04114ab39c9dc845b382928ec0e623c24eec753b038bdf30d6db4986d78e48787dfb3145b252
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.238.0 (2026-01-27)
5
+ ------------------
6
+
7
+ * 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.
8
+
4
9
  1.237.0 (2026-01-23)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.237.0
1
+ 1.238.0
@@ -23073,6 +23073,10 @@ module Aws::Connect
23073
23073
  #
23074
23074
  # </note>
23075
23075
  #
23076
+ # @option params [Array<Types::TaskAttachment>] :attachments
23077
+ # List of S3 presigned URLs of task attachments and their file name. You
23078
+ # can have a maximum of 5 attachments per task.
23079
+ #
23076
23080
  # @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
23077
23081
  #
23078
23082
  # * {Types::StartTaskContactResponse#contact_id #contact_id} => String
@@ -23119,6 +23123,12 @@ module Aws::Connect
23119
23123
  # value_arn: "SegmentAttributeValueString",
23120
23124
  # },
23121
23125
  # },
23126
+ # attachments: [
23127
+ # {
23128
+ # file_name: "FileName", # required
23129
+ # s3_url: "PreSignedAttachmentUrl", # required
23130
+ # },
23131
+ # ],
23122
23132
  # })
23123
23133
  #
23124
23134
  # @example Response structure
@@ -27824,7 +27834,7 @@ module Aws::Connect
27824
27834
  tracer: tracer
27825
27835
  )
27826
27836
  context[:gem_name] = 'aws-sdk-connect'
27827
- context[:gem_version] = '1.237.0'
27837
+ context[:gem_version] = '1.238.0'
27828
27838
  Seahorse::Client::Request.new(handlers, context)
27829
27839
  end
27830
27840
 
@@ -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')
@@ -7809,6 +7811,7 @@ module Aws::Connect
7809
7811
  StartTaskContactRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, location_name: "QuickConnectId"))
7810
7812
  StartTaskContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
7811
7813
  StartTaskContactRequest.add_member(:segment_attributes, Shapes::ShapeRef.new(shape: SegmentAttributes, location_name: "SegmentAttributes"))
7814
+ StartTaskContactRequest.add_member(:attachments, Shapes::ShapeRef.new(shape: TaskAttachments, location_name: "Attachments"))
7812
7815
  StartTaskContactRequest.struct_class = Types::StartTaskContactRequest
7813
7816
 
7814
7817
  StartTaskContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -7981,6 +7984,12 @@ module Aws::Connect
7981
7984
  TaskActionDefinition.add_member(:references, Shapes::ShapeRef.new(shape: ContactReferences, location_name: "References"))
7982
7985
  TaskActionDefinition.struct_class = Types::TaskActionDefinition
7983
7986
 
7987
+ TaskAttachment.add_member(:file_name, Shapes::ShapeRef.new(shape: FileName, required: true, location_name: "FileName"))
7988
+ TaskAttachment.add_member(:s3_url, Shapes::ShapeRef.new(shape: PreSignedAttachmentUrl, required: true, location_name: "S3Url"))
7989
+ TaskAttachment.struct_class = Types::TaskAttachment
7990
+
7991
+ TaskAttachments.member = Shapes::ShapeRef.new(shape: TaskAttachment)
7992
+
7984
7993
  TaskTemplateConstraints.add_member(:required_fields, Shapes::ShapeRef.new(shape: RequiredTaskTemplateFields, location_name: "RequiredFields"))
7985
7994
  TaskTemplateConstraints.add_member(:read_only_fields, Shapes::ShapeRef.new(shape: ReadOnlyTaskTemplateFields, location_name: "ReadOnlyFields"))
7986
7995
  TaskTemplateConstraints.add_member(:invisible_fields, Shapes::ShapeRef.new(shape: InvisibleTaskTemplateFields, location_name: "InvisibleFields"))
@@ -31046,6 +31046,11 @@ module Aws::Connect
31046
31046
  # </note>
31047
31047
  # @return [Hash<String,Types::SegmentAttributeValue>]
31048
31048
  #
31049
+ # @!attribute [rw] attachments
31050
+ # List of S3 presigned URLs of task attachments and their file name.
31051
+ # You can have a maximum of 5 attachments per task.
31052
+ # @return [Array<Types::TaskAttachment>]
31053
+ #
31049
31054
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
31050
31055
  #
31051
31056
  class StartTaskContactRequest < Struct.new(
@@ -31061,8 +31066,9 @@ module Aws::Connect
31061
31066
  :task_template_id,
31062
31067
  :quick_connect_id,
31063
31068
  :related_contact_id,
31064
- :segment_attributes)
31065
- SENSITIVE = [:name, :description]
31069
+ :segment_attributes,
31070
+ :attachments)
31071
+ SENSITIVE = [:name, :description, :attachments]
31066
31072
  include Aws::Structure
31067
31073
  end
31068
31074
 
@@ -31828,6 +31834,26 @@ module Aws::Connect
31828
31834
  include Aws::Structure
31829
31835
  end
31830
31836
 
31837
+ # Information about the task attachment files.
31838
+ #
31839
+ # @!attribute [rw] file_name
31840
+ # A case-sensitive name of the attached file being uploaded.
31841
+ # @return [String]
31842
+ #
31843
+ # @!attribute [rw] s3_url
31844
+ # The pre-signed URLs for the S3 bucket where the task attachment is
31845
+ # stored.
31846
+ # @return [String]
31847
+ #
31848
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/TaskAttachment AWS API Documentation
31849
+ #
31850
+ class TaskAttachment < Struct.new(
31851
+ :file_name,
31852
+ :s3_url)
31853
+ SENSITIVE = []
31854
+ include Aws::Structure
31855
+ end
31856
+
31831
31857
  # Describes constraints that apply to the template fields.
31832
31858
  #
31833
31859
  # @!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.238.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -5769,7 +5769,13 @@ module Aws
5769
5769
  untyped,
5770
5770
  ]?,
5771
5771
  value_arn: ::String?
5772
- }]
5772
+ }],
5773
+ ?attachments: Array[
5774
+ {
5775
+ file_name: ::String,
5776
+ s3_url: ::String
5777
+ },
5778
+ ]
5773
5779
  ) -> _StartTaskContactResponseSuccess
5774
5780
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartTaskContactResponseSuccess
5775
5781
 
data/sig/types.rbs CHANGED
@@ -7210,7 +7210,8 @@ module Aws::Connect
7210
7210
  attr_accessor quick_connect_id: ::String
7211
7211
  attr_accessor related_contact_id: ::String
7212
7212
  attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
7213
- SENSITIVE: [:name, :description]
7213
+ attr_accessor attachments: ::Array[Types::TaskAttachment]
7214
+ SENSITIVE: [:name, :description, :attachments]
7214
7215
  end
7215
7216
 
7216
7217
  class StartTaskContactResponse
@@ -7417,6 +7418,12 @@ module Aws::Connect
7417
7418
  SENSITIVE: []
7418
7419
  end
7419
7420
 
7421
+ class TaskAttachment
7422
+ attr_accessor file_name: ::String
7423
+ attr_accessor s3_url: ::String
7424
+ SENSITIVE: []
7425
+ end
7426
+
7420
7427
  class TaskTemplateConstraints
7421
7428
  attr_accessor required_fields: ::Array[Types::RequiredFieldInfo]
7422
7429
  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.238.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services