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.
@@ -3403,6 +3403,26 @@ module Aws::Connect
3403
3403
  # "key2":"value2"} }.
3404
3404
  # @return [Hash<String,String>]
3405
3405
  #
3406
+ # @!attribute [rw] flow_module_content_sha_256
3407
+ # Hash of the module content for integrity verification.
3408
+ # @return [String]
3409
+ #
3410
+ # @!attribute [rw] version
3411
+ # The version of the flow module.
3412
+ # @return [Integer]
3413
+ #
3414
+ # @!attribute [rw] version_description
3415
+ # Description of the version.
3416
+ # @return [String]
3417
+ #
3418
+ # @!attribute [rw] settings
3419
+ # The configuration settings for the flow module.
3420
+ # @return [String]
3421
+ #
3422
+ # @!attribute [rw] external_invocation_configuration
3423
+ # The external invocation configuration for the flow module
3424
+ # @return [Types::ExternalInvocationConfiguration]
3425
+ #
3406
3426
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModule AWS API Documentation
3407
3427
  #
3408
3428
  class ContactFlowModule < Struct.new(
@@ -3413,7 +3433,101 @@ module Aws::Connect
3413
3433
  :description,
3414
3434
  :state,
3415
3435
  :status,
3416
- :tags)
3436
+ :tags,
3437
+ :flow_module_content_sha_256,
3438
+ :version,
3439
+ :version_description,
3440
+ :settings,
3441
+ :external_invocation_configuration)
3442
+ SENSITIVE = []
3443
+ include Aws::Structure
3444
+ end
3445
+
3446
+ # Contains information about an alias.
3447
+ #
3448
+ # @!attribute [rw] contact_flow_module_id
3449
+ # The identifier of the flow module.
3450
+ # @return [String]
3451
+ #
3452
+ # @!attribute [rw] contact_flow_module_arn
3453
+ # The Amazon Resource Name (ARN) of the flow module.
3454
+ # @return [String]
3455
+ #
3456
+ # @!attribute [rw] alias_id
3457
+ # The identifier of the alias.
3458
+ # @return [String]
3459
+ #
3460
+ # @!attribute [rw] version
3461
+ # The version of the flow module.
3462
+ # @return [Integer]
3463
+ #
3464
+ # @!attribute [rw] name
3465
+ # The name of the alias.
3466
+ # @return [String]
3467
+ #
3468
+ # @!attribute [rw] description
3469
+ # The description of the alias.
3470
+ # @return [String]
3471
+ #
3472
+ # @!attribute [rw] last_modified_region
3473
+ # The Amazon Web Services Region where this resource was last
3474
+ # modified.
3475
+ # @return [String]
3476
+ #
3477
+ # @!attribute [rw] last_modified_time
3478
+ # The timestamp when this resource was last modified.
3479
+ # @return [Time]
3480
+ #
3481
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleAliasInfo AWS API Documentation
3482
+ #
3483
+ class ContactFlowModuleAliasInfo < Struct.new(
3484
+ :contact_flow_module_id,
3485
+ :contact_flow_module_arn,
3486
+ :alias_id,
3487
+ :version,
3488
+ :name,
3489
+ :description,
3490
+ :last_modified_region,
3491
+ :last_modified_time)
3492
+ SENSITIVE = []
3493
+ include Aws::Structure
3494
+ end
3495
+
3496
+ # Contains information about an alias.
3497
+ #
3498
+ # @!attribute [rw] arn
3499
+ # The Amazon Resource Name (ARN) of the flow module alias.
3500
+ # @return [String]
3501
+ #
3502
+ # @!attribute [rw] alias_id
3503
+ # The identifier of the alias.
3504
+ # @return [String]
3505
+ #
3506
+ # @!attribute [rw] version
3507
+ # The version of the flow module.
3508
+ # @return [Integer]
3509
+ #
3510
+ # @!attribute [rw] alias_name
3511
+ # The name of the alias.
3512
+ # @return [String]
3513
+ #
3514
+ # @!attribute [rw] alias_description
3515
+ # The description of the alias.
3516
+ # @return [String]
3517
+ #
3518
+ # @!attribute [rw] last_modified_time
3519
+ # The timestamp when this resource was last modified.
3520
+ # @return [Time]
3521
+ #
3522
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleAliasSummary AWS API Documentation
3523
+ #
3524
+ class ContactFlowModuleAliasSummary < Struct.new(
3525
+ :arn,
3526
+ :alias_id,
3527
+ :version,
3528
+ :alias_name,
3529
+ :alias_description,
3530
+ :last_modified_time)
3417
3531
  SENSITIVE = []
3418
3532
  include Aws::Structure
3419
3533
  end
@@ -3506,6 +3620,30 @@ module Aws::Connect
3506
3620
  include Aws::Structure
3507
3621
  end
3508
3622
 
3623
+ # Contains information about a version.
3624
+ #
3625
+ # @!attribute [rw] arn
3626
+ # The Amazon Resource Name (ARN) of the flow module version.
3627
+ # @return [String]
3628
+ #
3629
+ # @!attribute [rw] version_description
3630
+ # The description of the flow module version.
3631
+ # @return [String]
3632
+ #
3633
+ # @!attribute [rw] version
3634
+ # The version of the flow module.
3635
+ # @return [Integer]
3636
+ #
3637
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleVersionSummary AWS API Documentation
3638
+ #
3639
+ class ContactFlowModuleVersionSummary < Struct.new(
3640
+ :arn,
3641
+ :version_description,
3642
+ :version)
3643
+ SENSITIVE = []
3644
+ include Aws::Structure
3645
+ end
3646
+
3509
3647
  # The flow has not been published.
3510
3648
  #
3511
3649
  # @!attribute [rw] message
@@ -4070,6 +4208,60 @@ module Aws::Connect
4070
4208
  include Aws::Structure
4071
4209
  end
4072
4210
 
4211
+ # @!attribute [rw] instance_id
4212
+ # The identifier of the Amazon Connect instance. You can [find the
4213
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
4214
+ #
4215
+ #
4216
+ #
4217
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
4218
+ # @return [String]
4219
+ #
4220
+ # @!attribute [rw] description
4221
+ # The description of the alias.
4222
+ # @return [String]
4223
+ #
4224
+ # @!attribute [rw] contact_flow_module_id
4225
+ # The identifier of the flow module.
4226
+ # @return [String]
4227
+ #
4228
+ # @!attribute [rw] contact_flow_module_version
4229
+ # The version of the flow module.
4230
+ # @return [Integer]
4231
+ #
4232
+ # @!attribute [rw] alias_name
4233
+ # The name of the alias.
4234
+ # @return [String]
4235
+ #
4236
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleAliasRequest AWS API Documentation
4237
+ #
4238
+ class CreateContactFlowModuleAliasRequest < Struct.new(
4239
+ :instance_id,
4240
+ :description,
4241
+ :contact_flow_module_id,
4242
+ :contact_flow_module_version,
4243
+ :alias_name)
4244
+ SENSITIVE = []
4245
+ include Aws::Structure
4246
+ end
4247
+
4248
+ # @!attribute [rw] contact_flow_module_arn
4249
+ # The Amazon Resource Name (ARN) of the flow module.
4250
+ # @return [String]
4251
+ #
4252
+ # @!attribute [rw] id
4253
+ # The identifier of the alias.
4254
+ # @return [String]
4255
+ #
4256
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleAliasResponse AWS API Documentation
4257
+ #
4258
+ class CreateContactFlowModuleAliasResponse < Struct.new(
4259
+ :contact_flow_module_arn,
4260
+ :id)
4261
+ SENSITIVE = []
4262
+ include Aws::Structure
4263
+ end
4264
+
4073
4265
  # @!attribute [rw] instance_id
4074
4266
  # The identifier of the Amazon Connect instance. You can [find the
4075
4267
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -4116,6 +4308,14 @@ module Aws::Connect
4116
4308
  # [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
4117
4309
  # @return [String]
4118
4310
  #
4311
+ # @!attribute [rw] settings
4312
+ # The configuration settings for the flow module.
4313
+ # @return [String]
4314
+ #
4315
+ # @!attribute [rw] external_invocation_configuration
4316
+ # The external invocation configuration for the flow module.
4317
+ # @return [Types::ExternalInvocationConfiguration]
4318
+ #
4119
4319
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleRequest AWS API Documentation
4120
4320
  #
4121
4321
  class CreateContactFlowModuleRequest < Struct.new(
@@ -4124,7 +4324,9 @@ module Aws::Connect
4124
4324
  :description,
4125
4325
  :content,
4126
4326
  :tags,
4127
- :client_token)
4327
+ :client_token,
4328
+ :settings,
4329
+ :external_invocation_configuration)
4128
4330
  SENSITIVE = []
4129
4331
  include Aws::Structure
4130
4332
  end
@@ -4146,6 +4348,55 @@ module Aws::Connect
4146
4348
  include Aws::Structure
4147
4349
  end
4148
4350
 
4351
+ # @!attribute [rw] instance_id
4352
+ # The identifier of the Amazon Connect instance. You can [find the
4353
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
4354
+ #
4355
+ #
4356
+ #
4357
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
4358
+ # @return [String]
4359
+ #
4360
+ # @!attribute [rw] description
4361
+ # The description of the flow module version.
4362
+ # @return [String]
4363
+ #
4364
+ # @!attribute [rw] contact_flow_module_id
4365
+ # The identifier of the flow module.
4366
+ # @return [String]
4367
+ #
4368
+ # @!attribute [rw] flow_module_content_sha_256
4369
+ # Indicates the checksum value of the flow module content.
4370
+ # @return [String]
4371
+ #
4372
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleVersionRequest AWS API Documentation
4373
+ #
4374
+ class CreateContactFlowModuleVersionRequest < Struct.new(
4375
+ :instance_id,
4376
+ :description,
4377
+ :contact_flow_module_id,
4378
+ :flow_module_content_sha_256)
4379
+ SENSITIVE = []
4380
+ include Aws::Structure
4381
+ end
4382
+
4383
+ # @!attribute [rw] contact_flow_module_arn
4384
+ # The Amazon Resource Name (ARN) of the flow module.
4385
+ # @return [String]
4386
+ #
4387
+ # @!attribute [rw] version
4388
+ # The version of the flow module.
4389
+ # @return [Integer]
4390
+ #
4391
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleVersionResponse AWS API Documentation
4392
+ #
4393
+ class CreateContactFlowModuleVersionResponse < Struct.new(
4394
+ :contact_flow_module_arn,
4395
+ :version)
4396
+ SENSITIVE = []
4397
+ include Aws::Structure
4398
+ end
4399
+
4149
4400
  # @!attribute [rw] instance_id
4150
4401
  # The identifier of the Amazon Connect instance.
4151
4402
  # @return [String]
@@ -6667,6 +6918,37 @@ module Aws::Connect
6667
6918
  include Aws::Structure
6668
6919
  end
6669
6920
 
6921
+ # @!attribute [rw] instance_id
6922
+ # The identifier of the Amazon Connect instance. You can [find the
6923
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
6924
+ #
6925
+ #
6926
+ #
6927
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
6928
+ # @return [String]
6929
+ #
6930
+ # @!attribute [rw] contact_flow_module_id
6931
+ # The identifier of the flow module.
6932
+ # @return [String]
6933
+ #
6934
+ # @!attribute [rw] alias_id
6935
+ # The identifier of the alias.
6936
+ # @return [String]
6937
+ #
6938
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleAliasRequest AWS API Documentation
6939
+ #
6940
+ class DeleteContactFlowModuleAliasRequest < Struct.new(
6941
+ :instance_id,
6942
+ :contact_flow_module_id,
6943
+ :alias_id)
6944
+ SENSITIVE = []
6945
+ include Aws::Structure
6946
+ end
6947
+
6948
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleAliasResponse AWS API Documentation
6949
+ #
6950
+ class DeleteContactFlowModuleAliasResponse < Aws::EmptyStructure; end
6951
+
6670
6952
  # @!attribute [rw] instance_id
6671
6953
  # The identifier of the Amazon Connect instance. You can [find the
6672
6954
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -6693,6 +6975,37 @@ module Aws::Connect
6693
6975
  #
6694
6976
  class DeleteContactFlowModuleResponse < Aws::EmptyStructure; end
6695
6977
 
6978
+ # @!attribute [rw] instance_id
6979
+ # The identifier of the Amazon Connect instance. You can [find the
6980
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
6981
+ #
6982
+ #
6983
+ #
6984
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
6985
+ # @return [String]
6986
+ #
6987
+ # @!attribute [rw] contact_flow_module_id
6988
+ # The identifier of the flow module.
6989
+ # @return [String]
6990
+ #
6991
+ # @!attribute [rw] contact_flow_module_version
6992
+ # The version of the flow module to delete.
6993
+ # @return [Integer]
6994
+ #
6995
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleVersionRequest AWS API Documentation
6996
+ #
6997
+ class DeleteContactFlowModuleVersionRequest < Struct.new(
6998
+ :instance_id,
6999
+ :contact_flow_module_id,
7000
+ :contact_flow_module_version)
7001
+ SENSITIVE = []
7002
+ include Aws::Structure
7003
+ end
7004
+
7005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleVersionResponse AWS API Documentation
7006
+ #
7007
+ class DeleteContactFlowModuleVersionResponse < Aws::EmptyStructure; end
7008
+
6696
7009
  # @!attribute [rw] instance_id
6697
7010
  # The identifier of the Amazon Connect instance. You can [find the
6698
7011
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -7397,6 +7710,45 @@ module Aws::Connect
7397
7710
  include Aws::Structure
7398
7711
  end
7399
7712
 
7713
+ # @!attribute [rw] instance_id
7714
+ # The identifier of the Amazon Connect instance. You can [find the
7715
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
7716
+ #
7717
+ #
7718
+ #
7719
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
7720
+ # @return [String]
7721
+ #
7722
+ # @!attribute [rw] contact_flow_module_id
7723
+ # The identifier of the flow module.
7724
+ # @return [String]
7725
+ #
7726
+ # @!attribute [rw] alias_id
7727
+ # The identifier of the alias.
7728
+ # @return [String]
7729
+ #
7730
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleAliasRequest AWS API Documentation
7731
+ #
7732
+ class DescribeContactFlowModuleAliasRequest < Struct.new(
7733
+ :instance_id,
7734
+ :contact_flow_module_id,
7735
+ :alias_id)
7736
+ SENSITIVE = []
7737
+ include Aws::Structure
7738
+ end
7739
+
7740
+ # @!attribute [rw] contact_flow_module_alias
7741
+ # Information about the flow module alias.
7742
+ # @return [Types::ContactFlowModuleAliasInfo]
7743
+ #
7744
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleAliasResponse AWS API Documentation
7745
+ #
7746
+ class DescribeContactFlowModuleAliasResponse < Struct.new(
7747
+ :contact_flow_module_alias)
7748
+ SENSITIVE = []
7749
+ include Aws::Structure
7750
+ end
7751
+
7400
7752
  # @!attribute [rw] instance_id
7401
7753
  # The identifier of the Amazon Connect instance. You can [find the
7402
7754
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -11067,6 +11419,20 @@ module Aws::Connect
11067
11419
  include Aws::Structure
11068
11420
  end
11069
11421
 
11422
+ # The external invocation configuration for the flow module
11423
+ #
11424
+ # @!attribute [rw] enabled
11425
+ # Enable external invocation.
11426
+ # @return [Boolean]
11427
+ #
11428
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ExternalInvocationConfiguration AWS API Documentation
11429
+ #
11430
+ class ExternalInvocationConfiguration < Struct.new(
11431
+ :enabled)
11432
+ SENSITIVE = []
11433
+ include Aws::Structure
11434
+ end
11435
+
11070
11436
  # Request for which contact failed to be generated.
11071
11437
  #
11072
11438
  # @!attribute [rw] request_identifier
@@ -16398,6 +16764,110 @@ module Aws::Connect
16398
16764
  include Aws::Structure
16399
16765
  end
16400
16766
 
16767
+ # @!attribute [rw] instance_id
16768
+ # The identifier of the Amazon Connect instance. You can [find the
16769
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16770
+ #
16771
+ #
16772
+ #
16773
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16774
+ # @return [String]
16775
+ #
16776
+ # @!attribute [rw] contact_flow_module_id
16777
+ # The identifier of the flow module.
16778
+ # @return [String]
16779
+ #
16780
+ # @!attribute [rw] next_token
16781
+ # The token for the next set of results. Use the value returned in the
16782
+ # previous response in the next request to retrieve the next set of
16783
+ # results.
16784
+ # @return [String]
16785
+ #
16786
+ # @!attribute [rw] max_results
16787
+ # The maximum number of results to return per page.
16788
+ # @return [Integer]
16789
+ #
16790
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleAliasesRequest AWS API Documentation
16791
+ #
16792
+ class ListContactFlowModuleAliasesRequest < Struct.new(
16793
+ :instance_id,
16794
+ :contact_flow_module_id,
16795
+ :next_token,
16796
+ :max_results)
16797
+ SENSITIVE = []
16798
+ include Aws::Structure
16799
+ end
16800
+
16801
+ # @!attribute [rw] contact_flow_module_alias_summary_list
16802
+ # Information about the flow module aliases.
16803
+ # @return [Array<Types::ContactFlowModuleAliasSummary>]
16804
+ #
16805
+ # @!attribute [rw] next_token
16806
+ # If there are additional results, this is the token for the next set
16807
+ # of results.
16808
+ # @return [String]
16809
+ #
16810
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleAliasesResponse AWS API Documentation
16811
+ #
16812
+ class ListContactFlowModuleAliasesResponse < Struct.new(
16813
+ :contact_flow_module_alias_summary_list,
16814
+ :next_token)
16815
+ SENSITIVE = []
16816
+ include Aws::Structure
16817
+ end
16818
+
16819
+ # @!attribute [rw] instance_id
16820
+ # The identifier of the Amazon Connect instance. You can [find the
16821
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
16822
+ #
16823
+ #
16824
+ #
16825
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
16826
+ # @return [String]
16827
+ #
16828
+ # @!attribute [rw] contact_flow_module_id
16829
+ # The identifier of the flow module.
16830
+ # @return [String]
16831
+ #
16832
+ # @!attribute [rw] next_token
16833
+ # The token for the next set of results. Use the value returned in the
16834
+ # previous response in the next request to retrieve the next set of
16835
+ # results.
16836
+ # @return [String]
16837
+ #
16838
+ # @!attribute [rw] max_results
16839
+ # The maximum number of results to return per page.
16840
+ # @return [Integer]
16841
+ #
16842
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleVersionsRequest AWS API Documentation
16843
+ #
16844
+ class ListContactFlowModuleVersionsRequest < Struct.new(
16845
+ :instance_id,
16846
+ :contact_flow_module_id,
16847
+ :next_token,
16848
+ :max_results)
16849
+ SENSITIVE = []
16850
+ include Aws::Structure
16851
+ end
16852
+
16853
+ # @!attribute [rw] contact_flow_module_version_summary_list
16854
+ # Information about the flow module versions.
16855
+ # @return [Array<Types::ContactFlowModuleVersionSummary>]
16856
+ #
16857
+ # @!attribute [rw] next_token
16858
+ # If there are additional results, this is the token for the next set
16859
+ # of results.
16860
+ # @return [String]
16861
+ #
16862
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModuleVersionsResponse AWS API Documentation
16863
+ #
16864
+ class ListContactFlowModuleVersionsResponse < Struct.new(
16865
+ :contact_flow_module_version_summary_list,
16866
+ :next_token)
16867
+ SENSITIVE = []
16868
+ include Aws::Structure
16869
+ end
16870
+
16401
16871
  # @!attribute [rw] instance_id
16402
16872
  # The identifier of the Amazon Connect instance. You can [find the
16403
16873
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -27438,6 +27908,52 @@ module Aws::Connect
27438
27908
  #
27439
27909
  class UpdateContactFlowMetadataResponse < Aws::EmptyStructure; end
27440
27910
 
27911
+ # @!attribute [rw] instance_id
27912
+ # The identifier of the Amazon Connect instance. You can [find the
27913
+ # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
27914
+ #
27915
+ #
27916
+ #
27917
+ # [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
27918
+ # @return [String]
27919
+ #
27920
+ # @!attribute [rw] contact_flow_module_id
27921
+ # The identifier of the flow module.
27922
+ # @return [String]
27923
+ #
27924
+ # @!attribute [rw] alias_id
27925
+ # The identifier of the alias.
27926
+ # @return [String]
27927
+ #
27928
+ # @!attribute [rw] name
27929
+ # The name of the alias.
27930
+ # @return [String]
27931
+ #
27932
+ # @!attribute [rw] description
27933
+ # The description of the alias.
27934
+ # @return [String]
27935
+ #
27936
+ # @!attribute [rw] contact_flow_module_version
27937
+ # The version of the flow module.
27938
+ # @return [Integer]
27939
+ #
27940
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleAliasRequest AWS API Documentation
27941
+ #
27942
+ class UpdateContactFlowModuleAliasRequest < Struct.new(
27943
+ :instance_id,
27944
+ :contact_flow_module_id,
27945
+ :alias_id,
27946
+ :name,
27947
+ :description,
27948
+ :contact_flow_module_version)
27949
+ SENSITIVE = []
27950
+ include Aws::Structure
27951
+ end
27952
+
27953
+ # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleAliasResponse AWS API Documentation
27954
+ #
27955
+ class UpdateContactFlowModuleAliasResponse < Aws::EmptyStructure; end
27956
+
27441
27957
  # @!attribute [rw] instance_id
27442
27958
  # The identifier of the Amazon Connect instance. You can [find the
27443
27959
  # instance ID][1] in the Amazon Resource Name (ARN) of the instance.
@@ -27460,12 +27976,17 @@ module Aws::Connect
27460
27976
  # [1]: https://docs.aws.amazon.com/connect/latest/APIReference/flow-language-example.html
27461
27977
  # @return [String]
27462
27978
  #
27979
+ # @!attribute [rw] settings
27980
+ # Serialized JSON string of the flow module Settings schema.
27981
+ # @return [String]
27982
+ #
27463
27983
  # @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentRequest AWS API Documentation
27464
27984
  #
27465
27985
  class UpdateContactFlowModuleContentRequest < Struct.new(
27466
27986
  :instance_id,
27467
27987
  :contact_flow_module_id,
27468
- :content)
27988
+ :content,
27989
+ :settings)
27469
27990
  SENSITIVE = []
27470
27991
  include Aws::Structure
27471
27992
  end
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.225.0'
57
+ GEM_VERSION = '1.226.0'
58
58
 
59
59
  end
60
60