aws-sdk-connect 1.225.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f54b21c409b8e6605097543e7c445b3268f5f4c44479222efe1cc4ffe5782cd1
4
- data.tar.gz: 618793bb3f5538a5e94417702c8ea8bfc0d78a7769a579cdacd10a5f5542ff65
3
+ metadata.gz: c0f38fc1a55fe9ce8d8e5f727bfaebf06faea88b464810ca9f77e715e2a34da3
4
+ data.tar.gz: da011bfea2dc3fa2df5117a8e30633c68017b0dcc88f9aa6ec34d6e846880b65
5
5
  SHA512:
6
- metadata.gz: 251ea227026da2ece77d62b2a3ae41b872a09e01157febcd89e382d24c2eb8d363e00891523d49832976481107f5082c5b4f2e2e28a58bdf428b410940263ef5
7
- data.tar.gz: 70753afcdbea8feb353eb41840030f6c09ee0415d8f01668338843ea03ef37e1a87ec692de456cdc91fac107fdbceb6df54e0e76b84d4bb8e4d5d0b90b4ba614
6
+ metadata.gz: 0d673b8c658862f0cdee24c80b450bbd4dfc438dff0de0968e2161d9225052a2cbe9c90b428e486136fd2c3178a91d2adcc9f8e57f5cd2b7f1dab303419a3fc6
7
+ data.tar.gz: 4a480b427cee3451fd5cb9f7dcd5e01fc48280a97e509b42336ff6171e81052e4d957f45bdef3da0e291320302a03d9cfd2885a74acebd24e2d76d5ff5576609
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.225.0 (2025-11-20)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.225.0
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
@@ -4814,6 +4925,77 @@ module Aws::Connect
4814
4925
  req.send_request(options)
4815
4926
  end
4816
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
+
4817
4999
  # Deletes the particular version specified in flow version identifier.
4818
5000
  #
4819
5001
  # @option params [required, String] :instance_id
@@ -6218,6 +6400,11 @@ module Aws::Connect
6218
6400
  # resp.contact_flow_module.status #=> String, one of "PUBLISHED", "SAVED"
6219
6401
  # resp.contact_flow_module.tags #=> Hash
6220
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
6221
6408
  #
6222
6409
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModule AWS API Documentation
6223
6410
  #
@@ -6228,6 +6415,55 @@ module Aws::Connect
6228
6415
  req.send_request(options)
6229
6416
  end
6230
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
+
6231
6467
  # Describe email address form the specified Amazon Connect instance.
6232
6468
  #
6233
6469
  # @option params [required, String] :instance_id
@@ -12017,6 +12253,119 @@ module Aws::Connect
12017
12253
  req.send_request(options)
12018
12254
  end
12019
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
+
12020
12369
  # Provides information about the flow modules for the specified Amazon
12021
12370
  # Connect instance.
12022
12371
  #
@@ -15464,6 +15813,11 @@ module Aws::Connect
15464
15813
  # resp.contact_flow_modules[0].status #=> String, one of "PUBLISHED", "SAVED"
15465
15814
  # resp.contact_flow_modules[0].tags #=> Hash
15466
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
15467
15821
  # resp.next_token #=> String
15468
15822
  # resp.approximate_total_count #=> Integer
15469
15823
  #
@@ -20291,6 +20645,54 @@ module Aws::Connect
20291
20645
  req.send_request(options)
20292
20646
  end
20293
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
+
20294
20696
  # Updates specified flow module for the specified Amazon Connect
20295
20697
  # instance.
20296
20698
  #
@@ -20310,7 +20712,7 @@ module Aws::Connect
20310
20712
  # @option params [required, String] :contact_flow_module_id
20311
20713
  # The identifier of the flow module.
20312
20714
  #
20313
- # @option params [required, String] :content
20715
+ # @option params [String] :content
20314
20716
  # The JSON string that represents the content of the flow. For an
20315
20717
  # example, see [Example flow in Amazon Connect Flow language][1].
20316
20718
  #
@@ -20318,6 +20720,9 @@ module Aws::Connect
20318
20720
  #
20319
20721
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html
20320
20722
  #
20723
+ # @option params [String] :settings
20724
+ # Serialized JSON string of the flow module Settings schema.
20725
+ #
20321
20726
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
20322
20727
  #
20323
20728
  # @example Request syntax with placeholder values
@@ -20325,7 +20730,8 @@ module Aws::Connect
20325
20730
  # resp = client.update_contact_flow_module_content({
20326
20731
  # instance_id: "InstanceId", # required
20327
20732
  # contact_flow_module_id: "ContactFlowModuleId", # required
20328
- # content: "ContactFlowModuleContent", # required
20733
+ # content: "ContactFlowModuleContent",
20734
+ # settings: "FlowModuleSettings",
20329
20735
  # })
20330
20736
  #
20331
20737
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContent AWS API Documentation
@@ -22960,7 +23366,7 @@ module Aws::Connect
22960
23366
  tracer: tracer
22961
23367
  )
22962
23368
  context[:gem_name] = 'aws-sdk-connect'
22963
- context[:gem_version] = '1.225.0'
23369
+ context[:gem_version] = '1.226.0'
22964
23370
  Seahorse::Client::Request.new(handlers, context)
22965
23371
  end
22966
23372