aws-sdk-connect 1.97.0 → 1.98.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: 9646bd029aef8b999e49a9b7045ccbe625a77eddf9f3632a70b82bc281b9b417
4
- data.tar.gz: 5ee1ea4e78820c98fc0bace3bad9da4787bb1b257a7dcd07f159588e868c81fd
3
+ metadata.gz: f743495f317c7663c592dc09e1a3c0bada465cfe5a034dde787e7510916a837c
4
+ data.tar.gz: 1f3fd412666fec0dd5a6c49f125cb67fcfa19e0817496f23100344150d8268cd
5
5
  SHA512:
6
- metadata.gz: 1c76c573a7eac715c27a885a6c1b2c826666b0b9e429c172285d34840532f915d02308cbb40ddffbd789ef7c4b2f2650b1f3d37d6b169b760ae703d6a801075c
7
- data.tar.gz: 0751ad511512b8892865d1117e7b8762582283459cf50726f0ee08ce567350a821b5b68f8ef203e8f254ba0fd084ad1e607ae25d144dea882c76376bd9638b3d
6
+ metadata.gz: b4acdea589c17b8797a288cc4cedeb5ef161bef6f62132a8b5885196bfb8e17e2295f3ccdf1cfd74de4e70e30311244f17c709290a749f249ccaaf4fed28dc91
7
+ data.tar.gz: 550cdf5002ddebe73d6da936f5ed3330a38622a509798c3aa0c22f37746b69d460689f9719014f26f9f1e93d86912181478fd3db1675b100a8687dec80df783b
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.98.0 (2023-02-24)
5
+ ------------------
6
+
7
+ * Feature - StartTaskContact API now supports linked task creation with a new optional RelatedContactId parameter
8
+
4
9
  1.97.0 (2023-02-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.97.0
1
+ 1.98.0
@@ -8176,6 +8176,13 @@ module Aws::Connect
8176
8176
  # @option params [String] :quick_connect_id
8177
8177
  # The identifier for the quick connect.
8178
8178
  #
8179
+ # @option params [String] :related_contact_id
8180
+ # The contactId that is [related][1] to this contact.
8181
+ #
8182
+ #
8183
+ #
8184
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks
8185
+ #
8179
8186
  # @return [Types::StartTaskContactResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8180
8187
  #
8181
8188
  # * {Types::StartTaskContactResponse#contact_id #contact_id} => String
@@ -8201,6 +8208,7 @@ module Aws::Connect
8201
8208
  # scheduled_time: Time.now,
8202
8209
  # task_template_id: "TaskTemplateId",
8203
8210
  # quick_connect_id: "QuickConnectId",
8211
+ # related_contact_id: "ContactId",
8204
8212
  # })
8205
8213
  #
8206
8214
  # @example Response structure
@@ -10359,7 +10367,7 @@ module Aws::Connect
10359
10367
  params: params,
10360
10368
  config: config)
10361
10369
  context[:gem_name] = 'aws-sdk-connect'
10362
- context[:gem_version] = '1.97.0'
10370
+ context[:gem_version] = '1.98.0'
10363
10371
  Seahorse::Client::Request.new(handlers, context)
10364
10372
  end
10365
10373
 
@@ -2722,6 +2722,7 @@ module Aws::Connect
2722
2722
  StartTaskContactRequest.add_member(:scheduled_time, Shapes::ShapeRef.new(shape: Timestamp, location_name: "ScheduledTime"))
2723
2723
  StartTaskContactRequest.add_member(:task_template_id, Shapes::ShapeRef.new(shape: TaskTemplateId, location_name: "TaskTemplateId"))
2724
2724
  StartTaskContactRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, location_name: "QuickConnectId"))
2725
+ StartTaskContactRequest.add_member(:related_contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "RelatedContactId"))
2725
2726
  StartTaskContactRequest.struct_class = Types::StartTaskContactRequest
2726
2727
 
2727
2728
  StartTaskContactResponse.add_member(:contact_id, Shapes::ShapeRef.new(shape: ContactId, location_name: "ContactId"))
@@ -9994,6 +9994,14 @@ module Aws::Connect
9994
9994
  # The identifier for the quick connect.
9995
9995
  # @return [String]
9996
9996
  #
9997
+ # @!attribute [rw] related_contact_id
9998
+ # The contactId that is [related][1] to this contact.
9999
+ #
10000
+ #
10001
+ #
10002
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/tasks.html#linked-tasks
10003
+ # @return [String]
10004
+ #
9997
10005
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StartTaskContactRequest AWS API Documentation
9998
10006
  #
9999
10007
  class StartTaskContactRequest < Struct.new(
@@ -10007,7 +10015,8 @@ module Aws::Connect
10007
10015
  :client_token,
10008
10016
  :scheduled_time,
10009
10017
  :task_template_id,
10010
- :quick_connect_id)
10018
+ :quick_connect_id,
10019
+ :related_contact_id)
10011
10020
  SENSITIVE = []
10012
10021
  include Aws::Structure
10013
10022
  end
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-connect/customizations'
52
52
  # @!group service
53
53
  module Aws::Connect
54
54
 
55
- GEM_VERSION = '1.97.0'
55
+ GEM_VERSION = '1.98.0'
56
56
 
57
57
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.97.0
4
+ version: 1.98.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-02-20 00:00:00.000000000 Z
11
+ date: 2023-02-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core