aws-sdk-connect 1.224.0 → 1.226.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 +429 -5
- data/lib/aws-sdk-connect/client_api.rb +267 -1
- data/lib/aws-sdk-connect/types.rb +530 -4
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +122 -4
- data/sig/types.rbs +145 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c0f38fc1a55fe9ce8d8e5f727bfaebf06faea88b464810ca9f77e715e2a34da3
|
|
4
|
+
data.tar.gz: da011bfea2dc3fa2df5117a8e30633c68017b0dcc88f9aa6ec34d6e846880b65
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0d673b8c658862f0cdee24c80b450bbd4dfc438dff0de0968e2161d9225052a2cbe9c90b428e486136fd2c3178a91d2adcc9f8e57f5cd2b7f1dab303419a3fc6
|
|
7
|
+
data.tar.gz: 4a480b427cee3451fd5cb9f7dcd5e01fc48280a97e509b42336ff6171e81052e4d957f45bdef3da0e291320302a03d9cfd2885a74acebd24e2d76d5ff5576609
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.226.0 (2025-11-21)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - New APIs to support aliases and versions for ContactFlowModule. Updated ContactFlowModule APIs to support custom blocks.
|
|
8
|
+
|
|
9
|
+
1.225.0 (2025-11-20)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Add optional ability to exclude users from send notification actions for Contact Lens Rules.
|
|
13
|
+
|
|
4
14
|
1.224.0 (2025-11-18)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.226.0
|
|
@@ -2313,6 +2313,12 @@ module Aws::Connect
|
|
|
2313
2313
|
#
|
|
2314
2314
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
2315
2315
|
#
|
|
2316
|
+
# @option params [String] :settings
|
|
2317
|
+
# The configuration settings for the flow module.
|
|
2318
|
+
#
|
|
2319
|
+
# @option params [Types::ExternalInvocationConfiguration] :external_invocation_configuration
|
|
2320
|
+
# The external invocation configuration for the flow module.
|
|
2321
|
+
#
|
|
2316
2322
|
# @return [Types::CreateContactFlowModuleResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2317
2323
|
#
|
|
2318
2324
|
# * {Types::CreateContactFlowModuleResponse#id #id} => String
|
|
@@ -2329,6 +2335,10 @@ module Aws::Connect
|
|
|
2329
2335
|
# "TagKey" => "TagValue",
|
|
2330
2336
|
# },
|
|
2331
2337
|
# client_token: "ClientToken",
|
|
2338
|
+
# settings: "FlowModuleSettings",
|
|
2339
|
+
# external_invocation_configuration: {
|
|
2340
|
+
# enabled: false,
|
|
2341
|
+
# },
|
|
2332
2342
|
# })
|
|
2333
2343
|
#
|
|
2334
2344
|
# @example Response structure
|
|
@@ -2345,6 +2355,107 @@ module Aws::Connect
|
|
|
2345
2355
|
req.send_request(options)
|
|
2346
2356
|
end
|
|
2347
2357
|
|
|
2358
|
+
# Creates a named alias that points to a specific version of a contact
|
|
2359
|
+
# flow module.
|
|
2360
|
+
#
|
|
2361
|
+
# @option params [required, String] :instance_id
|
|
2362
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
2363
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
2364
|
+
#
|
|
2365
|
+
#
|
|
2366
|
+
#
|
|
2367
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
2368
|
+
#
|
|
2369
|
+
# @option params [String] :description
|
|
2370
|
+
# The description of the alias.
|
|
2371
|
+
#
|
|
2372
|
+
# @option params [required, String] :contact_flow_module_id
|
|
2373
|
+
# The identifier of the flow module.
|
|
2374
|
+
#
|
|
2375
|
+
# @option params [required, Integer] :contact_flow_module_version
|
|
2376
|
+
# The version of the flow module.
|
|
2377
|
+
#
|
|
2378
|
+
# @option params [required, String] :alias_name
|
|
2379
|
+
# The name of the alias.
|
|
2380
|
+
#
|
|
2381
|
+
# @return [Types::CreateContactFlowModuleAliasResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2382
|
+
#
|
|
2383
|
+
# * {Types::CreateContactFlowModuleAliasResponse#contact_flow_module_arn #contact_flow_module_arn} => String
|
|
2384
|
+
# * {Types::CreateContactFlowModuleAliasResponse#id #id} => String
|
|
2385
|
+
#
|
|
2386
|
+
# @example Request syntax with placeholder values
|
|
2387
|
+
#
|
|
2388
|
+
# resp = client.create_contact_flow_module_alias({
|
|
2389
|
+
# instance_id: "InstanceIdOrArn", # required
|
|
2390
|
+
# description: "ContactFlowDescription",
|
|
2391
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
|
2392
|
+
# contact_flow_module_version: 1, # required
|
|
2393
|
+
# alias_name: "ContactFlowModuleAlias", # required
|
|
2394
|
+
# })
|
|
2395
|
+
#
|
|
2396
|
+
# @example Response structure
|
|
2397
|
+
#
|
|
2398
|
+
# resp.contact_flow_module_arn #=> String
|
|
2399
|
+
# resp.id #=> String
|
|
2400
|
+
#
|
|
2401
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleAlias AWS API Documentation
|
|
2402
|
+
#
|
|
2403
|
+
# @overload create_contact_flow_module_alias(params = {})
|
|
2404
|
+
# @param [Hash] params ({})
|
|
2405
|
+
def create_contact_flow_module_alias(params = {}, options = {})
|
|
2406
|
+
req = build_request(:create_contact_flow_module_alias, params)
|
|
2407
|
+
req.send_request(options)
|
|
2408
|
+
end
|
|
2409
|
+
|
|
2410
|
+
# Creates an immutable snapshot of a contact flow module, preserving its
|
|
2411
|
+
# content and settings at a specific point in time for version control
|
|
2412
|
+
# and rollback capabilities.
|
|
2413
|
+
#
|
|
2414
|
+
# @option params [required, String] :instance_id
|
|
2415
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
2416
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
2417
|
+
#
|
|
2418
|
+
#
|
|
2419
|
+
#
|
|
2420
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
2421
|
+
#
|
|
2422
|
+
# @option params [String] :description
|
|
2423
|
+
# The description of the flow module version.
|
|
2424
|
+
#
|
|
2425
|
+
# @option params [required, String] :contact_flow_module_id
|
|
2426
|
+
# The identifier of the flow module.
|
|
2427
|
+
#
|
|
2428
|
+
# @option params [String] :flow_module_content_sha_256
|
|
2429
|
+
# Indicates the checksum value of the flow module content.
|
|
2430
|
+
#
|
|
2431
|
+
# @return [Types::CreateContactFlowModuleVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2432
|
+
#
|
|
2433
|
+
# * {Types::CreateContactFlowModuleVersionResponse#contact_flow_module_arn #contact_flow_module_arn} => String
|
|
2434
|
+
# * {Types::CreateContactFlowModuleVersionResponse#version #version} => Integer
|
|
2435
|
+
#
|
|
2436
|
+
# @example Request syntax with placeholder values
|
|
2437
|
+
#
|
|
2438
|
+
# resp = client.create_contact_flow_module_version({
|
|
2439
|
+
# instance_id: "InstanceId", # required
|
|
2440
|
+
# description: "ContactFlowModuleDescription",
|
|
2441
|
+
# contact_flow_module_id: "ARN", # required
|
|
2442
|
+
# flow_module_content_sha_256: "FlowModuleContentSha256",
|
|
2443
|
+
# })
|
|
2444
|
+
#
|
|
2445
|
+
# @example Response structure
|
|
2446
|
+
#
|
|
2447
|
+
# resp.contact_flow_module_arn #=> String
|
|
2448
|
+
# resp.version #=> Integer
|
|
2449
|
+
#
|
|
2450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleVersion AWS API Documentation
|
|
2451
|
+
#
|
|
2452
|
+
# @overload create_contact_flow_module_version(params = {})
|
|
2453
|
+
# @param [Hash] params ({})
|
|
2454
|
+
def create_contact_flow_module_version(params = {}, options = {})
|
|
2455
|
+
req = build_request(:create_contact_flow_module_version, params)
|
|
2456
|
+
req.send_request(options)
|
|
2457
|
+
end
|
|
2458
|
+
|
|
2348
2459
|
# Publishes a new version of the flow provided. Versions are immutable
|
|
2349
2460
|
# and monotonically increasing. If the `FlowContentSha256` provided is
|
|
2350
2461
|
# different from the `FlowContentSha256` of the `$LATEST` published flow
|
|
@@ -3761,6 +3872,12 @@ module Aws::Connect
|
|
|
3761
3872
|
# },
|
|
3762
3873
|
# user_ids: ["UserId"],
|
|
3763
3874
|
# },
|
|
3875
|
+
# exclusion: {
|
|
3876
|
+
# user_tags: {
|
|
3877
|
+
# "String" => "String",
|
|
3878
|
+
# },
|
|
3879
|
+
# user_ids: ["UserId"],
|
|
3880
|
+
# },
|
|
3764
3881
|
# },
|
|
3765
3882
|
# create_case_action: {
|
|
3766
3883
|
# fields: [ # required
|
|
@@ -4808,6 +4925,77 @@ module Aws::Connect
|
|
|
4808
4925
|
req.send_request(options)
|
|
4809
4926
|
end
|
|
4810
4927
|
|
|
4928
|
+
# Removes an alias reference, breaking the named connection to the
|
|
4929
|
+
# underlying module version without affecting the version itself.
|
|
4930
|
+
#
|
|
4931
|
+
# @option params [required, String] :instance_id
|
|
4932
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
4933
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
4934
|
+
#
|
|
4935
|
+
#
|
|
4936
|
+
#
|
|
4937
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
4938
|
+
#
|
|
4939
|
+
# @option params [required, String] :contact_flow_module_id
|
|
4940
|
+
# The identifier of the flow module.
|
|
4941
|
+
#
|
|
4942
|
+
# @option params [required, String] :alias_id
|
|
4943
|
+
# The identifier of the alias.
|
|
4944
|
+
#
|
|
4945
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4946
|
+
#
|
|
4947
|
+
# @example Request syntax with placeholder values
|
|
4948
|
+
#
|
|
4949
|
+
# resp = client.delete_contact_flow_module_alias({
|
|
4950
|
+
# instance_id: "InstanceIdOrArn", # required
|
|
4951
|
+
# contact_flow_module_id: "ResourceId", # required
|
|
4952
|
+
# alias_id: "ResourceId", # required
|
|
4953
|
+
# })
|
|
4954
|
+
#
|
|
4955
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleAlias AWS API Documentation
|
|
4956
|
+
#
|
|
4957
|
+
# @overload delete_contact_flow_module_alias(params = {})
|
|
4958
|
+
# @param [Hash] params ({})
|
|
4959
|
+
def delete_contact_flow_module_alias(params = {}, options = {})
|
|
4960
|
+
req = build_request(:delete_contact_flow_module_alias, params)
|
|
4961
|
+
req.send_request(options)
|
|
4962
|
+
end
|
|
4963
|
+
|
|
4964
|
+
# Removes a specific version of a contact flow module.
|
|
4965
|
+
#
|
|
4966
|
+
# @option params [required, String] :instance_id
|
|
4967
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
4968
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
4969
|
+
#
|
|
4970
|
+
#
|
|
4971
|
+
#
|
|
4972
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
4973
|
+
#
|
|
4974
|
+
# @option params [required, String] :contact_flow_module_id
|
|
4975
|
+
# The identifier of the flow module.
|
|
4976
|
+
#
|
|
4977
|
+
# @option params [required, Integer] :contact_flow_module_version
|
|
4978
|
+
# The version of the flow module to delete.
|
|
4979
|
+
#
|
|
4980
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
4981
|
+
#
|
|
4982
|
+
# @example Request syntax with placeholder values
|
|
4983
|
+
#
|
|
4984
|
+
# resp = client.delete_contact_flow_module_version({
|
|
4985
|
+
# instance_id: "InstanceId", # required
|
|
4986
|
+
# contact_flow_module_id: "ARN", # required
|
|
4987
|
+
# contact_flow_module_version: 1, # required
|
|
4988
|
+
# })
|
|
4989
|
+
#
|
|
4990
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleVersion AWS API Documentation
|
|
4991
|
+
#
|
|
4992
|
+
# @overload delete_contact_flow_module_version(params = {})
|
|
4993
|
+
# @param [Hash] params ({})
|
|
4994
|
+
def delete_contact_flow_module_version(params = {}, options = {})
|
|
4995
|
+
req = build_request(:delete_contact_flow_module_version, params)
|
|
4996
|
+
req.send_request(options)
|
|
4997
|
+
end
|
|
4998
|
+
|
|
4811
4999
|
# Deletes the particular version specified in flow version identifier.
|
|
4812
5000
|
#
|
|
4813
5001
|
# @option params [required, String] :instance_id
|
|
@@ -6212,6 +6400,11 @@ module Aws::Connect
|
|
|
6212
6400
|
# resp.contact_flow_module.status #=> String, one of "PUBLISHED", "SAVED"
|
|
6213
6401
|
# resp.contact_flow_module.tags #=> Hash
|
|
6214
6402
|
# resp.contact_flow_module.tags["TagKey"] #=> String
|
|
6403
|
+
# resp.contact_flow_module.flow_module_content_sha_256 #=> String
|
|
6404
|
+
# resp.contact_flow_module.version #=> Integer
|
|
6405
|
+
# resp.contact_flow_module.version_description #=> String
|
|
6406
|
+
# resp.contact_flow_module.settings #=> String
|
|
6407
|
+
# resp.contact_flow_module.external_invocation_configuration.enabled #=> Boolean
|
|
6215
6408
|
#
|
|
6216
6409
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModule AWS API Documentation
|
|
6217
6410
|
#
|
|
@@ -6222,6 +6415,55 @@ module Aws::Connect
|
|
|
6222
6415
|
req.send_request(options)
|
|
6223
6416
|
end
|
|
6224
6417
|
|
|
6418
|
+
# Retrieves detailed information about a specific alias, including which
|
|
6419
|
+
# version it currently points to and its metadata.
|
|
6420
|
+
#
|
|
6421
|
+
# @option params [required, String] :instance_id
|
|
6422
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
6423
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
6424
|
+
#
|
|
6425
|
+
#
|
|
6426
|
+
#
|
|
6427
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
6428
|
+
#
|
|
6429
|
+
# @option params [required, String] :contact_flow_module_id
|
|
6430
|
+
# The identifier of the flow module.
|
|
6431
|
+
#
|
|
6432
|
+
# @option params [required, String] :alias_id
|
|
6433
|
+
# The identifier of the alias.
|
|
6434
|
+
#
|
|
6435
|
+
# @return [Types::DescribeContactFlowModuleAliasResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
6436
|
+
#
|
|
6437
|
+
# * {Types::DescribeContactFlowModuleAliasResponse#contact_flow_module_alias #contact_flow_module_alias} => Types::ContactFlowModuleAliasInfo
|
|
6438
|
+
#
|
|
6439
|
+
# @example Request syntax with placeholder values
|
|
6440
|
+
#
|
|
6441
|
+
# resp = client.describe_contact_flow_module_alias({
|
|
6442
|
+
# instance_id: "InstanceIdOrArn", # required
|
|
6443
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
|
6444
|
+
# alias_id: "ResourceId", # required
|
|
6445
|
+
# })
|
|
6446
|
+
#
|
|
6447
|
+
# @example Response structure
|
|
6448
|
+
#
|
|
6449
|
+
# resp.contact_flow_module_alias.contact_flow_module_id #=> String
|
|
6450
|
+
# resp.contact_flow_module_alias.contact_flow_module_arn #=> String
|
|
6451
|
+
# resp.contact_flow_module_alias.alias_id #=> String
|
|
6452
|
+
# resp.contact_flow_module_alias.version #=> Integer
|
|
6453
|
+
# resp.contact_flow_module_alias.name #=> String
|
|
6454
|
+
# resp.contact_flow_module_alias.description #=> String
|
|
6455
|
+
# resp.contact_flow_module_alias.last_modified_region #=> String
|
|
6456
|
+
# resp.contact_flow_module_alias.last_modified_time #=> Time
|
|
6457
|
+
#
|
|
6458
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleAlias AWS API Documentation
|
|
6459
|
+
#
|
|
6460
|
+
# @overload describe_contact_flow_module_alias(params = {})
|
|
6461
|
+
# @param [Hash] params ({})
|
|
6462
|
+
def describe_contact_flow_module_alias(params = {}, options = {})
|
|
6463
|
+
req = build_request(:describe_contact_flow_module_alias, params)
|
|
6464
|
+
req.send_request(options)
|
|
6465
|
+
end
|
|
6466
|
+
|
|
6225
6467
|
# Describe email address form the specified Amazon Connect instance.
|
|
6226
6468
|
#
|
|
6227
6469
|
# @option params [required, String] :instance_id
|
|
@@ -7023,6 +7265,10 @@ module Aws::Connect
|
|
|
7023
7265
|
# resp.rule.actions[0].send_notification_action.recipient.user_tags["String"] #=> String
|
|
7024
7266
|
# resp.rule.actions[0].send_notification_action.recipient.user_ids #=> Array
|
|
7025
7267
|
# resp.rule.actions[0].send_notification_action.recipient.user_ids[0] #=> String
|
|
7268
|
+
# resp.rule.actions[0].send_notification_action.exclusion.user_tags #=> Hash
|
|
7269
|
+
# resp.rule.actions[0].send_notification_action.exclusion.user_tags["String"] #=> String
|
|
7270
|
+
# resp.rule.actions[0].send_notification_action.exclusion.user_ids #=> Array
|
|
7271
|
+
# resp.rule.actions[0].send_notification_action.exclusion.user_ids[0] #=> String
|
|
7026
7272
|
# resp.rule.actions[0].create_case_action.fields #=> Array
|
|
7027
7273
|
# resp.rule.actions[0].create_case_action.fields[0].id #=> String
|
|
7028
7274
|
# resp.rule.actions[0].create_case_action.fields[0].value.boolean_value #=> Boolean
|
|
@@ -12007,6 +12253,119 @@ module Aws::Connect
|
|
|
12007
12253
|
req.send_request(options)
|
|
12008
12254
|
end
|
|
12009
12255
|
|
|
12256
|
+
# Lists all aliases associated with a contact flow module, showing their
|
|
12257
|
+
# current version mappings and metadata.
|
|
12258
|
+
#
|
|
12259
|
+
# @option params [required, String] :instance_id
|
|
12260
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
12261
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
12262
|
+
#
|
|
12263
|
+
#
|
|
12264
|
+
#
|
|
12265
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
12266
|
+
#
|
|
12267
|
+
# @option params [required, String] :contact_flow_module_id
|
|
12268
|
+
# The identifier of the flow module.
|
|
12269
|
+
#
|
|
12270
|
+
# @option params [String] :next_token
|
|
12271
|
+
# The token for the next set of results. Use the value returned in the
|
|
12272
|
+
# previous response in the next request to retrieve the next set of
|
|
12273
|
+
# results.
|
|
12274
|
+
#
|
|
12275
|
+
# @option params [Integer] :max_results
|
|
12276
|
+
# The maximum number of results to return per page.
|
|
12277
|
+
#
|
|
12278
|
+
# @return [Types::ListContactFlowModuleAliasesResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12279
|
+
#
|
|
12280
|
+
# * {Types::ListContactFlowModuleAliasesResponse#contact_flow_module_alias_summary_list #contact_flow_module_alias_summary_list} => Array<Types::ContactFlowModuleAliasSummary>
|
|
12281
|
+
# * {Types::ListContactFlowModuleAliasesResponse#next_token #next_token} => String
|
|
12282
|
+
#
|
|
12283
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
12284
|
+
#
|
|
12285
|
+
# @example Request syntax with placeholder values
|
|
12286
|
+
#
|
|
12287
|
+
# resp = client.list_contact_flow_module_aliases({
|
|
12288
|
+
# instance_id: "InstanceIdOrArn", # required
|
|
12289
|
+
# contact_flow_module_id: "ARN", # required
|
|
12290
|
+
# next_token: "NextToken",
|
|
12291
|
+
# max_results: 1,
|
|
12292
|
+
# })
|
|
12293
|
+
#
|
|
12294
|
+
# @example Response structure
|
|
12295
|
+
#
|
|
12296
|
+
# resp.contact_flow_module_alias_summary_list #=> Array
|
|
12297
|
+
# resp.contact_flow_module_alias_summary_list[0].arn #=> String
|
|
12298
|
+
# resp.contact_flow_module_alias_summary_list[0].alias_id #=> String
|
|
12299
|
+
# resp.contact_flow_module_alias_summary_list[0].version #=> Integer
|
|
12300
|
+
# resp.contact_flow_module_alias_summary_list[0].alias_name #=> String
|
|
12301
|
+
# resp.contact_flow_module_alias_summary_list[0].alias_description #=> String
|
|
12302
|
+
# resp.contact_flow_module_alias_summary_list[0].last_modified_time #=> Time
|
|
12303
|
+
# resp.next_token #=> String
|
|
12304
|
+
#
|
|
12305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleAliases AWS API Documentation
|
|
12306
|
+
#
|
|
12307
|
+
# @overload list_contact_flow_module_aliases(params = {})
|
|
12308
|
+
# @param [Hash] params ({})
|
|
12309
|
+
def list_contact_flow_module_aliases(params = {}, options = {})
|
|
12310
|
+
req = build_request(:list_contact_flow_module_aliases, params)
|
|
12311
|
+
req.send_request(options)
|
|
12312
|
+
end
|
|
12313
|
+
|
|
12314
|
+
# Retrieves a paginated list of all versions for a specific contact flow
|
|
12315
|
+
# module.
|
|
12316
|
+
#
|
|
12317
|
+
# @option params [required, String] :instance_id
|
|
12318
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
12319
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
12320
|
+
#
|
|
12321
|
+
#
|
|
12322
|
+
#
|
|
12323
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
12324
|
+
#
|
|
12325
|
+
# @option params [required, String] :contact_flow_module_id
|
|
12326
|
+
# The identifier of the flow module.
|
|
12327
|
+
#
|
|
12328
|
+
# @option params [String] :next_token
|
|
12329
|
+
# The token for the next set of results. Use the value returned in the
|
|
12330
|
+
# previous response in the next request to retrieve the next set of
|
|
12331
|
+
# results.
|
|
12332
|
+
#
|
|
12333
|
+
# @option params [Integer] :max_results
|
|
12334
|
+
# The maximum number of results to return per page.
|
|
12335
|
+
#
|
|
12336
|
+
# @return [Types::ListContactFlowModuleVersionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
12337
|
+
#
|
|
12338
|
+
# * {Types::ListContactFlowModuleVersionsResponse#contact_flow_module_version_summary_list #contact_flow_module_version_summary_list} => Array<Types::ContactFlowModuleVersionSummary>
|
|
12339
|
+
# * {Types::ListContactFlowModuleVersionsResponse#next_token #next_token} => String
|
|
12340
|
+
#
|
|
12341
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
12342
|
+
#
|
|
12343
|
+
# @example Request syntax with placeholder values
|
|
12344
|
+
#
|
|
12345
|
+
# resp = client.list_contact_flow_module_versions({
|
|
12346
|
+
# instance_id: "InstanceId", # required
|
|
12347
|
+
# contact_flow_module_id: "ARN", # required
|
|
12348
|
+
# next_token: "NextToken",
|
|
12349
|
+
# max_results: 1,
|
|
12350
|
+
# })
|
|
12351
|
+
#
|
|
12352
|
+
# @example Response structure
|
|
12353
|
+
#
|
|
12354
|
+
# resp.contact_flow_module_version_summary_list #=> Array
|
|
12355
|
+
# resp.contact_flow_module_version_summary_list[0].arn #=> String
|
|
12356
|
+
# resp.contact_flow_module_version_summary_list[0].version_description #=> String
|
|
12357
|
+
# resp.contact_flow_module_version_summary_list[0].version #=> Integer
|
|
12358
|
+
# resp.next_token #=> String
|
|
12359
|
+
#
|
|
12360
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleVersions AWS API Documentation
|
|
12361
|
+
#
|
|
12362
|
+
# @overload list_contact_flow_module_versions(params = {})
|
|
12363
|
+
# @param [Hash] params ({})
|
|
12364
|
+
def list_contact_flow_module_versions(params = {}, options = {})
|
|
12365
|
+
req = build_request(:list_contact_flow_module_versions, params)
|
|
12366
|
+
req.send_request(options)
|
|
12367
|
+
end
|
|
12368
|
+
|
|
12010
12369
|
# Provides information about the flow modules for the specified Amazon
|
|
12011
12370
|
# Connect instance.
|
|
12012
12371
|
#
|
|
@@ -15454,6 +15813,11 @@ module Aws::Connect
|
|
|
15454
15813
|
# resp.contact_flow_modules[0].status #=> String, one of "PUBLISHED", "SAVED"
|
|
15455
15814
|
# resp.contact_flow_modules[0].tags #=> Hash
|
|
15456
15815
|
# resp.contact_flow_modules[0].tags["TagKey"] #=> String
|
|
15816
|
+
# resp.contact_flow_modules[0].flow_module_content_sha_256 #=> String
|
|
15817
|
+
# resp.contact_flow_modules[0].version #=> Integer
|
|
15818
|
+
# resp.contact_flow_modules[0].version_description #=> String
|
|
15819
|
+
# resp.contact_flow_modules[0].settings #=> String
|
|
15820
|
+
# resp.contact_flow_modules[0].external_invocation_configuration.enabled #=> Boolean
|
|
15457
15821
|
# resp.next_token #=> String
|
|
15458
15822
|
# resp.approximate_total_count #=> Integer
|
|
15459
15823
|
#
|
|
@@ -18622,8 +18986,10 @@ module Aws::Connect
|
|
|
18622
18986
|
# and then puts the contact in queue, the call is then routed to the
|
|
18623
18987
|
# agent, like any other inbound case.
|
|
18624
18988
|
#
|
|
18625
|
-
#
|
|
18626
|
-
#
|
|
18989
|
+
# Dialing timeout for this operation can be configured with the
|
|
18990
|
+
# “RingTimeoutInSeconds” parameter. If not specified, the default
|
|
18991
|
+
# dialing timeout will be 60 seconds which means if the call is not
|
|
18992
|
+
# connected within 60 seconds, it fails.
|
|
18627
18993
|
#
|
|
18628
18994
|
# <note markdown="1"> UK numbers with a 447 prefix are not allowed by default. Before you
|
|
18629
18995
|
# can dial these UK mobile numbers, you must submit a service quota
|
|
@@ -20279,6 +20645,54 @@ module Aws::Connect
|
|
|
20279
20645
|
req.send_request(options)
|
|
20280
20646
|
end
|
|
20281
20647
|
|
|
20648
|
+
# Updates a specific Aliases metadata, including the version it’s tied
|
|
20649
|
+
# to, it’s name, and description.
|
|
20650
|
+
#
|
|
20651
|
+
# @option params [required, String] :instance_id
|
|
20652
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
20653
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
20654
|
+
#
|
|
20655
|
+
#
|
|
20656
|
+
#
|
|
20657
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
20658
|
+
#
|
|
20659
|
+
# @option params [required, String] :contact_flow_module_id
|
|
20660
|
+
# The identifier of the flow module.
|
|
20661
|
+
#
|
|
20662
|
+
# @option params [required, String] :alias_id
|
|
20663
|
+
# The identifier of the alias.
|
|
20664
|
+
#
|
|
20665
|
+
# @option params [String] :name
|
|
20666
|
+
# The name of the alias.
|
|
20667
|
+
#
|
|
20668
|
+
# @option params [String] :description
|
|
20669
|
+
# The description of the alias.
|
|
20670
|
+
#
|
|
20671
|
+
# @option params [Integer] :contact_flow_module_version
|
|
20672
|
+
# The version of the flow module.
|
|
20673
|
+
#
|
|
20674
|
+
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
20675
|
+
#
|
|
20676
|
+
# @example Request syntax with placeholder values
|
|
20677
|
+
#
|
|
20678
|
+
# resp = client.update_contact_flow_module_alias({
|
|
20679
|
+
# instance_id: "InstanceIdOrArn", # required
|
|
20680
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
|
20681
|
+
# alias_id: "ResourceId", # required
|
|
20682
|
+
# name: "ContactFlowModuleName",
|
|
20683
|
+
# description: "ContactFlowModuleDescription",
|
|
20684
|
+
# contact_flow_module_version: 1,
|
|
20685
|
+
# })
|
|
20686
|
+
#
|
|
20687
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleAlias AWS API Documentation
|
|
20688
|
+
#
|
|
20689
|
+
# @overload update_contact_flow_module_alias(params = {})
|
|
20690
|
+
# @param [Hash] params ({})
|
|
20691
|
+
def update_contact_flow_module_alias(params = {}, options = {})
|
|
20692
|
+
req = build_request(:update_contact_flow_module_alias, params)
|
|
20693
|
+
req.send_request(options)
|
|
20694
|
+
end
|
|
20695
|
+
|
|
20282
20696
|
# Updates specified flow module for the specified Amazon Connect
|
|
20283
20697
|
# instance.
|
|
20284
20698
|
#
|
|
@@ -20298,7 +20712,7 @@ module Aws::Connect
|
|
|
20298
20712
|
# @option params [required, String] :contact_flow_module_id
|
|
20299
20713
|
# The identifier of the flow module.
|
|
20300
20714
|
#
|
|
20301
|
-
# @option params [
|
|
20715
|
+
# @option params [String] :content
|
|
20302
20716
|
# The JSON string that represents the content of the flow. For an
|
|
20303
20717
|
# example, see [Example flow in Amazon Connect Flow language][1].
|
|
20304
20718
|
#
|
|
@@ -20306,6 +20720,9 @@ module Aws::Connect
|
|
|
20306
20720
|
#
|
|
20307
20721
|
# [1]: https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html
|
|
20308
20722
|
#
|
|
20723
|
+
# @option params [String] :settings
|
|
20724
|
+
# Serialized JSON string of the flow module Settings schema.
|
|
20725
|
+
#
|
|
20309
20726
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
|
20310
20727
|
#
|
|
20311
20728
|
# @example Request syntax with placeholder values
|
|
@@ -20313,7 +20730,8 @@ module Aws::Connect
|
|
|
20313
20730
|
# resp = client.update_contact_flow_module_content({
|
|
20314
20731
|
# instance_id: "InstanceId", # required
|
|
20315
20732
|
# contact_flow_module_id: "ContactFlowModuleId", # required
|
|
20316
|
-
# content: "ContactFlowModuleContent",
|
|
20733
|
+
# content: "ContactFlowModuleContent",
|
|
20734
|
+
# settings: "FlowModuleSettings",
|
|
20317
20735
|
# })
|
|
20318
20736
|
#
|
|
20319
20737
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContent AWS API Documentation
|
|
@@ -22106,6 +22524,12 @@ module Aws::Connect
|
|
|
22106
22524
|
# },
|
|
22107
22525
|
# user_ids: ["UserId"],
|
|
22108
22526
|
# },
|
|
22527
|
+
# exclusion: {
|
|
22528
|
+
# user_tags: {
|
|
22529
|
+
# "String" => "String",
|
|
22530
|
+
# },
|
|
22531
|
+
# user_ids: ["UserId"],
|
|
22532
|
+
# },
|
|
22109
22533
|
# },
|
|
22110
22534
|
# create_case_action: {
|
|
22111
22535
|
# fields: [ # required
|
|
@@ -22942,7 +23366,7 @@ module Aws::Connect
|
|
|
22942
23366
|
tracer: tracer
|
|
22943
23367
|
)
|
|
22944
23368
|
context[:gem_name] = 'aws-sdk-connect'
|
|
22945
|
-
context[:gem_version] = '1.
|
|
23369
|
+
context[:gem_version] = '1.226.0'
|
|
22946
23370
|
Seahorse::Client::Request.new(handlers, context)
|
|
22947
23371
|
end
|
|
22948
23372
|
|