aws-sdk-connect 1.153.0 → 1.155.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +81 -56
- data/lib/aws-sdk-connect/client_api.rb +6 -0
- data/lib/aws-sdk-connect/types.rb +20 -10
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +8 -2
- data/sig/types.rbs +8 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f1ddde038d256559085bcba7b9d2ab1469221727e08d2c97f9ca54b2be10bdec
|
4
|
+
data.tar.gz: 541f7d1f033c3f25cab3ed6e0e2d74ae42d2c82b63ddafd5fb6b5033dee55635
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa2d1fd98e8a5b19a7a95d369e21a8586490abd26e3eadf219194890b6061d9298b5bb5c5fe442976902afad49761dd77a0c92a38737b8ff1672454537e0e2cb
|
7
|
+
data.tar.gz: 95151c6683f3d1b426a48beca9f8a1b47fa949e23deb8ebc795e0901eb7a5f6dd5a021c3dfb13221dc0c6717b4bbddfe7a3fb5ceb47c9d50fa8b316db467b68d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.155.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.154.0 (2024-04-10)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds new Submit Auto Evaluation Action for Amazon Connect Rules.
|
13
|
+
|
4
14
|
1.153.0 (2024-03-20)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.155.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::Connect
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -196,10 +198,17 @@ module Aws::Connect
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -337,50 +346,65 @@ module Aws::Connect
|
|
337
346
|
# @option options [Aws::Connect::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Connect::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -2621,7 +2645,7 @@ module Aws::Connect
|
|
2621
2645
|
# function: "RuleFunction", # required
|
2622
2646
|
# actions: [ # required
|
2623
2647
|
# {
|
2624
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS
|
2648
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
2625
2649
|
# task_action: {
|
2626
2650
|
# name: "TaskNameExpression", # required
|
2627
2651
|
# description: "TaskDescriptionExpression",
|
@@ -2681,6 +2705,9 @@ module Aws::Connect
|
|
2681
2705
|
# },
|
2682
2706
|
# end_associated_tasks_action: {
|
2683
2707
|
# },
|
2708
|
+
# submit_auto_evaluation_action: {
|
2709
|
+
# evaluation_form_id: "EvaluationFormId", # required
|
2710
|
+
# },
|
2684
2711
|
# },
|
2685
2712
|
# ],
|
2686
2713
|
# publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
|
@@ -2740,9 +2767,6 @@ module Aws::Connect
|
|
2740
2767
|
# \| `SecurityProfile` \| `Queue` \| `RoutingProfile`
|
2741
2768
|
#
|
2742
2769
|
# @option params [Array<Types::Application>] :applications
|
2743
|
-
# This API is in preview release for Amazon Connect and is subject to
|
2744
|
-
# change.
|
2745
|
-
#
|
2746
2770
|
# A list of third-party applications that the security profile will give
|
2747
2771
|
# access to.
|
2748
2772
|
#
|
@@ -5210,7 +5234,7 @@ module Aws::Connect
|
|
5210
5234
|
# resp.rule.trigger_event_source.integration_association_id #=> String
|
5211
5235
|
# resp.rule.function #=> String
|
5212
5236
|
# resp.rule.actions #=> Array
|
5213
|
-
# resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS"
|
5237
|
+
# resp.rule.actions[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
5214
5238
|
# resp.rule.actions[0].task_action.name #=> String
|
5215
5239
|
# resp.rule.actions[0].task_action.description #=> String
|
5216
5240
|
# resp.rule.actions[0].task_action.contact_flow_id #=> String
|
@@ -5237,6 +5261,7 @@ module Aws::Connect
|
|
5237
5261
|
# resp.rule.actions[0].update_case_action.fields[0].value.boolean_value #=> Boolean
|
5238
5262
|
# resp.rule.actions[0].update_case_action.fields[0].value.double_value #=> Float
|
5239
5263
|
# resp.rule.actions[0].update_case_action.fields[0].value.string_value #=> String
|
5264
|
+
# resp.rule.actions[0].submit_auto_evaluation_action.evaluation_form_id #=> String
|
5240
5265
|
# resp.rule.publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
5241
5266
|
# resp.rule.created_time #=> Time
|
5242
5267
|
# resp.rule.last_updated_time #=> Time
|
@@ -10316,7 +10341,7 @@ module Aws::Connect
|
|
10316
10341
|
# resp.rule_summary_list[0].event_source_name #=> String, one of "OnPostCallAnalysisAvailable", "OnRealTimeCallAnalysisAvailable", "OnRealTimeChatAnalysisAvailable", "OnPostChatAnalysisAvailable", "OnZendeskTicketCreate", "OnZendeskTicketStatusUpdate", "OnSalesforceCaseCreate", "OnContactEvaluationSubmit", "OnMetricDataUpdate", "OnCaseCreate", "OnCaseUpdate"
|
10317
10342
|
# resp.rule_summary_list[0].publish_status #=> String, one of "DRAFT", "PUBLISHED"
|
10318
10343
|
# resp.rule_summary_list[0].action_summaries #=> Array
|
10319
|
-
# resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS"
|
10344
|
+
# resp.rule_summary_list[0].action_summaries[0].action_type #=> String, one of "CREATE_TASK", "ASSIGN_CONTACT_CATEGORY", "GENERATE_EVENTBRIDGE_EVENT", "SEND_NOTIFICATION", "CREATE_CASE", "UPDATE_CASE", "END_ASSOCIATED_TASKS", "SUBMIT_AUTO_EVALUATION"
|
10320
10345
|
# resp.rule_summary_list[0].created_time #=> Time
|
10321
10346
|
# resp.rule_summary_list[0].last_updated_time #=> Time
|
10322
10347
|
# resp.next_token #=> String
|
@@ -15863,7 +15888,7 @@ module Aws::Connect
|
|
15863
15888
|
# function: "RuleFunction", # required
|
15864
15889
|
# actions: [ # required
|
15865
15890
|
# {
|
15866
|
-
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS
|
15891
|
+
# action_type: "CREATE_TASK", # required, accepts CREATE_TASK, ASSIGN_CONTACT_CATEGORY, GENERATE_EVENTBRIDGE_EVENT, SEND_NOTIFICATION, CREATE_CASE, UPDATE_CASE, END_ASSOCIATED_TASKS, SUBMIT_AUTO_EVALUATION
|
15867
15892
|
# task_action: {
|
15868
15893
|
# name: "TaskNameExpression", # required
|
15869
15894
|
# description: "TaskDescriptionExpression",
|
@@ -15923,6 +15948,9 @@ module Aws::Connect
|
|
15923
15948
|
# },
|
15924
15949
|
# end_associated_tasks_action: {
|
15925
15950
|
# },
|
15951
|
+
# submit_auto_evaluation_action: {
|
15952
|
+
# evaluation_form_id: "EvaluationFormId", # required
|
15953
|
+
# },
|
15926
15954
|
# },
|
15927
15955
|
# ],
|
15928
15956
|
# publish_status: "DRAFT", # required, accepts DRAFT, PUBLISHED
|
@@ -15970,9 +15998,6 @@ module Aws::Connect
|
|
15970
15998
|
# to in Amazon Connect.
|
15971
15999
|
#
|
15972
16000
|
# @option params [Array<Types::Application>] :applications
|
15973
|
-
# This API is in preview release for Amazon Connect and is subject to
|
15974
|
-
# change.
|
15975
|
-
#
|
15976
16001
|
# A list of the third-party application's metadata.
|
15977
16002
|
#
|
15978
16003
|
# @option params [Array<String>] :hierarchy_restricted_resources
|
@@ -16681,7 +16706,7 @@ module Aws::Connect
|
|
16681
16706
|
params: params,
|
16682
16707
|
config: config)
|
16683
16708
|
context[:gem_name] = 'aws-sdk-connect'
|
16684
|
-
context[:gem_version] = '1.
|
16709
|
+
context[:gem_version] = '1.155.0'
|
16685
16710
|
Seahorse::Client::Request.new(handlers, context)
|
16686
16711
|
end
|
16687
16712
|
|
@@ -380,6 +380,7 @@ module Aws::Connect
|
|
380
380
|
EvaluationForm = Shapes::StructureShape.new(name: 'EvaluationForm')
|
381
381
|
EvaluationFormContent = Shapes::StructureShape.new(name: 'EvaluationFormContent')
|
382
382
|
EvaluationFormDescription = Shapes::StringShape.new(name: 'EvaluationFormDescription')
|
383
|
+
EvaluationFormId = Shapes::StringShape.new(name: 'EvaluationFormId')
|
383
384
|
EvaluationFormItem = Shapes::UnionShape.new(name: 'EvaluationFormItem')
|
384
385
|
EvaluationFormItemWeight = Shapes::FloatShape.new(name: 'EvaluationFormItemWeight')
|
385
386
|
EvaluationFormItemsList = Shapes::ListShape.new(name: 'EvaluationFormItemsList')
|
@@ -1012,6 +1013,7 @@ module Aws::Connect
|
|
1012
1013
|
StringCondition = Shapes::StructureShape.new(name: 'StringCondition')
|
1013
1014
|
StringReference = Shapes::StructureShape.new(name: 'StringReference')
|
1014
1015
|
Subject = Shapes::StringShape.new(name: 'Subject')
|
1016
|
+
SubmitAutoEvaluationActionDefinition = Shapes::StructureShape.new(name: 'SubmitAutoEvaluationActionDefinition')
|
1015
1017
|
SubmitContactEvaluationRequest = Shapes::StructureShape.new(name: 'SubmitContactEvaluationRequest')
|
1016
1018
|
SubmitContactEvaluationResponse = Shapes::StructureShape.new(name: 'SubmitContactEvaluationResponse')
|
1017
1019
|
Subtype = Shapes::StringShape.new(name: 'Subtype')
|
@@ -4116,6 +4118,7 @@ module Aws::Connect
|
|
4116
4118
|
RuleAction.add_member(:create_case_action, Shapes::ShapeRef.new(shape: CreateCaseActionDefinition, location_name: "CreateCaseAction"))
|
4117
4119
|
RuleAction.add_member(:update_case_action, Shapes::ShapeRef.new(shape: UpdateCaseActionDefinition, location_name: "UpdateCaseAction"))
|
4118
4120
|
RuleAction.add_member(:end_associated_tasks_action, Shapes::ShapeRef.new(shape: EndAssociatedTasksActionDefinition, location_name: "EndAssociatedTasksAction"))
|
4121
|
+
RuleAction.add_member(:submit_auto_evaluation_action, Shapes::ShapeRef.new(shape: SubmitAutoEvaluationActionDefinition, location_name: "SubmitAutoEvaluationAction"))
|
4119
4122
|
RuleAction.struct_class = Types::RuleAction
|
4120
4123
|
|
4121
4124
|
RuleActions.member = Shapes::ShapeRef.new(shape: RuleAction)
|
@@ -4541,6 +4544,9 @@ module Aws::Connect
|
|
4541
4544
|
StringReference.add_member(:value, Shapes::ShapeRef.new(shape: ReferenceValue, location_name: "Value"))
|
4542
4545
|
StringReference.struct_class = Types::StringReference
|
4543
4546
|
|
4547
|
+
SubmitAutoEvaluationActionDefinition.add_member(:evaluation_form_id, Shapes::ShapeRef.new(shape: EvaluationFormId, required: true, location_name: "EvaluationFormId"))
|
4548
|
+
SubmitAutoEvaluationActionDefinition.struct_class = Types::SubmitAutoEvaluationActionDefinition
|
4549
|
+
|
4544
4550
|
SubmitContactEvaluationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
4545
4551
|
SubmitContactEvaluationRequest.add_member(:evaluation_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location: "uri", location_name: "EvaluationId"))
|
4546
4552
|
SubmitContactEvaluationRequest.add_member(:answers, Shapes::ShapeRef.new(shape: EvaluationAnswersInputMap, location_name: "Answers"))
|
@@ -3339,9 +3339,6 @@ module Aws::Connect
|
|
3339
3339
|
# @return [Array<String>]
|
3340
3340
|
#
|
3341
3341
|
# @!attribute [rw] applications
|
3342
|
-
# This API is in preview release for Amazon Connect and is subject to
|
3343
|
-
# change.
|
3344
|
-
#
|
3345
3342
|
# A list of third-party applications that the security profile will
|
3346
3343
|
# give access to.
|
3347
3344
|
# @return [Array<Types::Application>]
|
@@ -12115,9 +12112,6 @@ module Aws::Connect
|
|
12115
12112
|
end
|
12116
12113
|
|
12117
12114
|
# @!attribute [rw] applications
|
12118
|
-
# This API is in preview release for Amazon Connect and is subject to
|
12119
|
-
# change.
|
12120
|
-
#
|
12121
12115
|
# A list of the third-party application's metadata.
|
12122
12116
|
# @return [Array<Types::Application>]
|
12123
12117
|
#
|
@@ -15521,6 +15515,10 @@ module Aws::Connect
|
|
15521
15515
|
# Supported only for `TriggerEventSource` values: `OnCaseUpdate`.
|
15522
15516
|
# @return [Types::EndAssociatedTasksActionDefinition]
|
15523
15517
|
#
|
15518
|
+
# @!attribute [rw] submit_auto_evaluation_action
|
15519
|
+
# Information about the submit automated evaluation action.
|
15520
|
+
# @return [Types::SubmitAutoEvaluationActionDefinition]
|
15521
|
+
#
|
15524
15522
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/RuleAction AWS API Documentation
|
15525
15523
|
#
|
15526
15524
|
class RuleAction < Struct.new(
|
@@ -15531,7 +15529,8 @@ module Aws::Connect
|
|
15531
15529
|
:send_notification_action,
|
15532
15530
|
:create_case_action,
|
15533
15531
|
:update_case_action,
|
15534
|
-
:end_associated_tasks_action
|
15532
|
+
:end_associated_tasks_action,
|
15533
|
+
:submit_auto_evaluation_action)
|
15535
15534
|
SENSITIVE = []
|
15536
15535
|
include Aws::Structure
|
15537
15536
|
end
|
@@ -17885,6 +17884,20 @@ module Aws::Connect
|
|
17885
17884
|
include Aws::Structure
|
17886
17885
|
end
|
17887
17886
|
|
17887
|
+
# Information about the submit automated evaluation action.
|
17888
|
+
#
|
17889
|
+
# @!attribute [rw] evaluation_form_id
|
17890
|
+
# The identifier of the auto-evaluation enabled form.
|
17891
|
+
# @return [String]
|
17892
|
+
#
|
17893
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SubmitAutoEvaluationActionDefinition AWS API Documentation
|
17894
|
+
#
|
17895
|
+
class SubmitAutoEvaluationActionDefinition < Struct.new(
|
17896
|
+
:evaluation_form_id)
|
17897
|
+
SENSITIVE = []
|
17898
|
+
include Aws::Structure
|
17899
|
+
end
|
17900
|
+
|
17888
17901
|
# @!attribute [rw] instance_id
|
17889
17902
|
# The identifier of the Amazon Connect instance. You can [find the
|
17890
17903
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
@@ -20039,9 +20052,6 @@ module Aws::Connect
|
|
20039
20052
|
# @return [Array<String>]
|
20040
20053
|
#
|
20041
20054
|
# @!attribute [rw] applications
|
20042
|
-
# This API is in preview release for Amazon Connect and is subject to
|
20043
|
-
# change.
|
20044
|
-
#
|
20045
20055
|
# A list of the third-party application's metadata.
|
20046
20056
|
# @return [Array<Types::Application>]
|
20047
20057
|
#
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -697,7 +697,7 @@ module Aws
|
|
697
697
|
function: ::String,
|
698
698
|
actions: Array[
|
699
699
|
{
|
700
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS"),
|
700
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
701
701
|
task_action: {
|
702
702
|
name: ::String,
|
703
703
|
description: ::String?,
|
@@ -752,6 +752,9 @@ module Aws
|
|
752
752
|
]
|
753
753
|
}?,
|
754
754
|
end_associated_tasks_action: {
|
755
|
+
}?,
|
756
|
+
submit_auto_evaluation_action: {
|
757
|
+
evaluation_form_id: ::String
|
755
758
|
}?
|
756
759
|
},
|
757
760
|
],
|
@@ -3825,7 +3828,7 @@ module Aws
|
|
3825
3828
|
function: ::String,
|
3826
3829
|
actions: Array[
|
3827
3830
|
{
|
3828
|
-
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS"),
|
3831
|
+
action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION"),
|
3829
3832
|
task_action: {
|
3830
3833
|
name: ::String,
|
3831
3834
|
description: ::String?,
|
@@ -3880,6 +3883,9 @@ module Aws
|
|
3880
3883
|
]
|
3881
3884
|
}?,
|
3882
3885
|
end_associated_tasks_action: {
|
3886
|
+
}?,
|
3887
|
+
submit_auto_evaluation_action: {
|
3888
|
+
evaluation_form_id: ::String
|
3883
3889
|
}?
|
3884
3890
|
},
|
3885
3891
|
],
|
data/sig/types.rbs
CHANGED
@@ -14,7 +14,7 @@ module Aws::Connect
|
|
14
14
|
end
|
15
15
|
|
16
16
|
class ActionSummary
|
17
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS")
|
17
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
18
18
|
SENSITIVE: []
|
19
19
|
end
|
20
20
|
|
@@ -3672,7 +3672,7 @@ module Aws::Connect
|
|
3672
3672
|
end
|
3673
3673
|
|
3674
3674
|
class RuleAction
|
3675
|
-
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS")
|
3675
|
+
attr_accessor action_type: ("CREATE_TASK" | "ASSIGN_CONTACT_CATEGORY" | "GENERATE_EVENTBRIDGE_EVENT" | "SEND_NOTIFICATION" | "CREATE_CASE" | "UPDATE_CASE" | "END_ASSOCIATED_TASKS" | "SUBMIT_AUTO_EVALUATION")
|
3676
3676
|
attr_accessor task_action: Types::TaskActionDefinition
|
3677
3677
|
attr_accessor event_bridge_action: Types::EventBridgeActionDefinition
|
3678
3678
|
attr_accessor assign_contact_category_action: Types::AssignContactCategoryActionDefinition
|
@@ -3680,6 +3680,7 @@ module Aws::Connect
|
|
3680
3680
|
attr_accessor create_case_action: Types::CreateCaseActionDefinition
|
3681
3681
|
attr_accessor update_case_action: Types::UpdateCaseActionDefinition
|
3682
3682
|
attr_accessor end_associated_tasks_action: Types::EndAssociatedTasksActionDefinition
|
3683
|
+
attr_accessor submit_auto_evaluation_action: Types::SubmitAutoEvaluationActionDefinition
|
3683
3684
|
SENSITIVE: []
|
3684
3685
|
end
|
3685
3686
|
|
@@ -4211,6 +4212,11 @@ module Aws::Connect
|
|
4211
4212
|
SENSITIVE: []
|
4212
4213
|
end
|
4213
4214
|
|
4215
|
+
class SubmitAutoEvaluationActionDefinition
|
4216
|
+
attr_accessor evaluation_form_id: ::String
|
4217
|
+
SENSITIVE: []
|
4218
|
+
end
|
4219
|
+
|
4214
4220
|
class SubmitContactEvaluationRequest
|
4215
4221
|
attr_accessor instance_id: ::String
|
4216
4222
|
attr_accessor evaluation_id: ::String
|
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.155.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: 2024-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|