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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +9 -1
- data/lib/aws-sdk-connect/client_api.rb +1 -0
- data/lib/aws-sdk-connect/types.rb +10 -1
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f743495f317c7663c592dc09e1a3c0bada465cfe5a034dde787e7510916a837c
|
4
|
+
data.tar.gz: 1f3fd412666fec0dd5a6c49f125cb67fcfa19e0817496f23100344150d8268cd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4acdea589c17b8797a288cc4cedeb5ef161bef6f62132a8b5885196bfb8e17e2295f3ccdf1cfd74de4e70e30311244f17c709290a749f249ccaaf4fed28dc91
|
7
|
+
data.tar.gz: 550cdf5002ddebe73d6da936f5ed3330a38622a509798c3aa0c22f37746b69d460689f9719014f26f9f1e93d86912181478fd3db1675b100a8687dec80df783b
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
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.
|
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
|
data/lib/aws-sdk-connect.rb
CHANGED
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.
|
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-
|
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
|