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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +409 -3
- data/lib/aws-sdk-connect/client_api.rb +266 -1
- data/lib/aws-sdk-connect/types.rb +524 -3
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +112 -2
- data/sig/types.rbs +144 -0
- metadata +3 -3
data/sig/client.rbs
CHANGED
|
@@ -519,10 +519,43 @@ module Aws
|
|
|
519
519
|
?description: ::String,
|
|
520
520
|
content: ::String,
|
|
521
521
|
?tags: Hash[::String, ::String],
|
|
522
|
-
?client_token: ::String
|
|
522
|
+
?client_token: ::String,
|
|
523
|
+
?settings: ::String,
|
|
524
|
+
?external_invocation_configuration: {
|
|
525
|
+
enabled: bool?
|
|
526
|
+
}
|
|
523
527
|
) -> _CreateContactFlowModuleResponseSuccess
|
|
524
528
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleResponseSuccess
|
|
525
529
|
|
|
530
|
+
interface _CreateContactFlowModuleAliasResponseSuccess
|
|
531
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowModuleAliasResponse]
|
|
532
|
+
def contact_flow_module_arn: () -> ::String
|
|
533
|
+
def id: () -> ::String
|
|
534
|
+
end
|
|
535
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_module_alias-instance_method
|
|
536
|
+
def create_contact_flow_module_alias: (
|
|
537
|
+
instance_id: ::String,
|
|
538
|
+
?description: ::String,
|
|
539
|
+
contact_flow_module_id: ::String,
|
|
540
|
+
contact_flow_module_version: ::Integer,
|
|
541
|
+
alias_name: ::String
|
|
542
|
+
) -> _CreateContactFlowModuleAliasResponseSuccess
|
|
543
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleAliasResponseSuccess
|
|
544
|
+
|
|
545
|
+
interface _CreateContactFlowModuleVersionResponseSuccess
|
|
546
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowModuleVersionResponse]
|
|
547
|
+
def contact_flow_module_arn: () -> ::String
|
|
548
|
+
def version: () -> ::Integer
|
|
549
|
+
end
|
|
550
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_contact_flow_module_version-instance_method
|
|
551
|
+
def create_contact_flow_module_version: (
|
|
552
|
+
instance_id: ::String,
|
|
553
|
+
?description: ::String,
|
|
554
|
+
contact_flow_module_id: ::String,
|
|
555
|
+
?flow_module_content_sha_256: ::String
|
|
556
|
+
) -> _CreateContactFlowModuleVersionResponseSuccess
|
|
557
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContactFlowModuleVersionResponseSuccess
|
|
558
|
+
|
|
526
559
|
interface _CreateContactFlowVersionResponseSuccess
|
|
527
560
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateContactFlowVersionResponse]
|
|
528
561
|
def contact_flow_arn: () -> ::String
|
|
@@ -1320,6 +1353,28 @@ module Aws
|
|
|
1320
1353
|
) -> _DeleteContactFlowModuleResponseSuccess
|
|
1321
1354
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleResponseSuccess
|
|
1322
1355
|
|
|
1356
|
+
interface _DeleteContactFlowModuleAliasResponseSuccess
|
|
1357
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowModuleAliasResponse]
|
|
1358
|
+
end
|
|
1359
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_contact_flow_module_alias-instance_method
|
|
1360
|
+
def delete_contact_flow_module_alias: (
|
|
1361
|
+
instance_id: ::String,
|
|
1362
|
+
contact_flow_module_id: ::String,
|
|
1363
|
+
alias_id: ::String
|
|
1364
|
+
) -> _DeleteContactFlowModuleAliasResponseSuccess
|
|
1365
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleAliasResponseSuccess
|
|
1366
|
+
|
|
1367
|
+
interface _DeleteContactFlowModuleVersionResponseSuccess
|
|
1368
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowModuleVersionResponse]
|
|
1369
|
+
end
|
|
1370
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_contact_flow_module_version-instance_method
|
|
1371
|
+
def delete_contact_flow_module_version: (
|
|
1372
|
+
instance_id: ::String,
|
|
1373
|
+
contact_flow_module_id: ::String,
|
|
1374
|
+
contact_flow_module_version: ::Integer
|
|
1375
|
+
) -> _DeleteContactFlowModuleVersionResponseSuccess
|
|
1376
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContactFlowModuleVersionResponseSuccess
|
|
1377
|
+
|
|
1323
1378
|
interface _DeleteContactFlowVersionResponseSuccess
|
|
1324
1379
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContactFlowVersionResponse]
|
|
1325
1380
|
end
|
|
@@ -1580,6 +1635,18 @@ module Aws
|
|
|
1580
1635
|
) -> _DescribeContactFlowModuleResponseSuccess
|
|
1581
1636
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleResponseSuccess
|
|
1582
1637
|
|
|
1638
|
+
interface _DescribeContactFlowModuleAliasResponseSuccess
|
|
1639
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContactFlowModuleAliasResponse]
|
|
1640
|
+
def contact_flow_module_alias: () -> Types::ContactFlowModuleAliasInfo
|
|
1641
|
+
end
|
|
1642
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_contact_flow_module_alias-instance_method
|
|
1643
|
+
def describe_contact_flow_module_alias: (
|
|
1644
|
+
instance_id: ::String,
|
|
1645
|
+
contact_flow_module_id: ::String,
|
|
1646
|
+
alias_id: ::String
|
|
1647
|
+
) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
1648
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContactFlowModuleAliasResponseSuccess
|
|
1649
|
+
|
|
1583
1650
|
interface _DescribeEmailAddressResponseSuccess
|
|
1584
1651
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeEmailAddressResponse]
|
|
1585
1652
|
def email_address_id: () -> ::String
|
|
@@ -2381,6 +2448,34 @@ module Aws
|
|
|
2381
2448
|
) -> _ListContactEvaluationsResponseSuccess
|
|
2382
2449
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactEvaluationsResponseSuccess
|
|
2383
2450
|
|
|
2451
|
+
interface _ListContactFlowModuleAliasesResponseSuccess
|
|
2452
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModuleAliasesResponse]
|
|
2453
|
+
def contact_flow_module_alias_summary_list: () -> ::Array[Types::ContactFlowModuleAliasSummary]
|
|
2454
|
+
def next_token: () -> ::String
|
|
2455
|
+
end
|
|
2456
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_module_aliases-instance_method
|
|
2457
|
+
def list_contact_flow_module_aliases: (
|
|
2458
|
+
instance_id: ::String,
|
|
2459
|
+
contact_flow_module_id: ::String,
|
|
2460
|
+
?next_token: ::String,
|
|
2461
|
+
?max_results: ::Integer
|
|
2462
|
+
) -> _ListContactFlowModuleAliasesResponseSuccess
|
|
2463
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModuleAliasesResponseSuccess
|
|
2464
|
+
|
|
2465
|
+
interface _ListContactFlowModuleVersionsResponseSuccess
|
|
2466
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModuleVersionsResponse]
|
|
2467
|
+
def contact_flow_module_version_summary_list: () -> ::Array[Types::ContactFlowModuleVersionSummary]
|
|
2468
|
+
def next_token: () -> ::String
|
|
2469
|
+
end
|
|
2470
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_contact_flow_module_versions-instance_method
|
|
2471
|
+
def list_contact_flow_module_versions: (
|
|
2472
|
+
instance_id: ::String,
|
|
2473
|
+
contact_flow_module_id: ::String,
|
|
2474
|
+
?next_token: ::String,
|
|
2475
|
+
?max_results: ::Integer
|
|
2476
|
+
) -> _ListContactFlowModuleVersionsResponseSuccess
|
|
2477
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContactFlowModuleVersionsResponseSuccess
|
|
2478
|
+
|
|
2384
2479
|
interface _ListContactFlowModulesResponseSuccess
|
|
2385
2480
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListContactFlowModulesResponse]
|
|
2386
2481
|
def contact_flow_modules_summary_list: () -> ::Array[Types::ContactFlowModuleSummary]
|
|
@@ -4814,6 +4909,20 @@ module Aws
|
|
|
4814
4909
|
) -> _UpdateContactFlowMetadataResponseSuccess
|
|
4815
4910
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowMetadataResponseSuccess
|
|
4816
4911
|
|
|
4912
|
+
interface _UpdateContactFlowModuleAliasResponseSuccess
|
|
4913
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactFlowModuleAliasResponse]
|
|
4914
|
+
end
|
|
4915
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_contact_flow_module_alias-instance_method
|
|
4916
|
+
def update_contact_flow_module_alias: (
|
|
4917
|
+
instance_id: ::String,
|
|
4918
|
+
contact_flow_module_id: ::String,
|
|
4919
|
+
alias_id: ::String,
|
|
4920
|
+
?name: ::String,
|
|
4921
|
+
?description: ::String,
|
|
4922
|
+
?contact_flow_module_version: ::Integer
|
|
4923
|
+
) -> _UpdateContactFlowModuleAliasResponseSuccess
|
|
4924
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowModuleAliasResponseSuccess
|
|
4925
|
+
|
|
4817
4926
|
interface _UpdateContactFlowModuleContentResponseSuccess
|
|
4818
4927
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContactFlowModuleContentResponse]
|
|
4819
4928
|
end
|
|
@@ -4821,7 +4930,8 @@ module Aws
|
|
|
4821
4930
|
def update_contact_flow_module_content: (
|
|
4822
4931
|
instance_id: ::String,
|
|
4823
4932
|
contact_flow_module_id: ::String,
|
|
4824
|
-
content: ::String
|
|
4933
|
+
?content: ::String,
|
|
4934
|
+
?settings: ::String
|
|
4825
4935
|
) -> _UpdateContactFlowModuleContentResponseSuccess
|
|
4826
4936
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactFlowModuleContentResponseSuccess
|
|
4827
4937
|
|
data/sig/types.rbs
CHANGED
|
@@ -794,6 +794,33 @@ module Aws::Connect
|
|
|
794
794
|
attr_accessor state: ("ACTIVE" | "ARCHIVED")
|
|
795
795
|
attr_accessor status: ("PUBLISHED" | "SAVED")
|
|
796
796
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
797
|
+
attr_accessor flow_module_content_sha_256: ::String
|
|
798
|
+
attr_accessor version: ::Integer
|
|
799
|
+
attr_accessor version_description: ::String
|
|
800
|
+
attr_accessor settings: ::String
|
|
801
|
+
attr_accessor external_invocation_configuration: Types::ExternalInvocationConfiguration
|
|
802
|
+
SENSITIVE: []
|
|
803
|
+
end
|
|
804
|
+
|
|
805
|
+
class ContactFlowModuleAliasInfo
|
|
806
|
+
attr_accessor contact_flow_module_id: ::String
|
|
807
|
+
attr_accessor contact_flow_module_arn: ::String
|
|
808
|
+
attr_accessor alias_id: ::String
|
|
809
|
+
attr_accessor version: ::Integer
|
|
810
|
+
attr_accessor name: ::String
|
|
811
|
+
attr_accessor description: ::String
|
|
812
|
+
attr_accessor last_modified_region: ::String
|
|
813
|
+
attr_accessor last_modified_time: ::Time
|
|
814
|
+
SENSITIVE: []
|
|
815
|
+
end
|
|
816
|
+
|
|
817
|
+
class ContactFlowModuleAliasSummary
|
|
818
|
+
attr_accessor arn: ::String
|
|
819
|
+
attr_accessor alias_id: ::String
|
|
820
|
+
attr_accessor version: ::Integer
|
|
821
|
+
attr_accessor alias_name: ::String
|
|
822
|
+
attr_accessor alias_description: ::String
|
|
823
|
+
attr_accessor last_modified_time: ::Time
|
|
797
824
|
SENSITIVE: []
|
|
798
825
|
end
|
|
799
826
|
|
|
@@ -819,6 +846,13 @@ module Aws::Connect
|
|
|
819
846
|
SENSITIVE: []
|
|
820
847
|
end
|
|
821
848
|
|
|
849
|
+
class ContactFlowModuleVersionSummary
|
|
850
|
+
attr_accessor arn: ::String
|
|
851
|
+
attr_accessor version_description: ::String
|
|
852
|
+
attr_accessor version: ::Integer
|
|
853
|
+
SENSITIVE: []
|
|
854
|
+
end
|
|
855
|
+
|
|
822
856
|
class ContactFlowNotPublishedException
|
|
823
857
|
attr_accessor message: ::String
|
|
824
858
|
SENSITIVE: []
|
|
@@ -963,6 +997,21 @@ module Aws::Connect
|
|
|
963
997
|
SENSITIVE: []
|
|
964
998
|
end
|
|
965
999
|
|
|
1000
|
+
class CreateContactFlowModuleAliasRequest
|
|
1001
|
+
attr_accessor instance_id: ::String
|
|
1002
|
+
attr_accessor description: ::String
|
|
1003
|
+
attr_accessor contact_flow_module_id: ::String
|
|
1004
|
+
attr_accessor contact_flow_module_version: ::Integer
|
|
1005
|
+
attr_accessor alias_name: ::String
|
|
1006
|
+
SENSITIVE: []
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class CreateContactFlowModuleAliasResponse
|
|
1010
|
+
attr_accessor contact_flow_module_arn: ::String
|
|
1011
|
+
attr_accessor id: ::String
|
|
1012
|
+
SENSITIVE: []
|
|
1013
|
+
end
|
|
1014
|
+
|
|
966
1015
|
class CreateContactFlowModuleRequest
|
|
967
1016
|
attr_accessor instance_id: ::String
|
|
968
1017
|
attr_accessor name: ::String
|
|
@@ -970,6 +1019,8 @@ module Aws::Connect
|
|
|
970
1019
|
attr_accessor content: ::String
|
|
971
1020
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
972
1021
|
attr_accessor client_token: ::String
|
|
1022
|
+
attr_accessor settings: ::String
|
|
1023
|
+
attr_accessor external_invocation_configuration: Types::ExternalInvocationConfiguration
|
|
973
1024
|
SENSITIVE: []
|
|
974
1025
|
end
|
|
975
1026
|
|
|
@@ -979,6 +1030,20 @@ module Aws::Connect
|
|
|
979
1030
|
SENSITIVE: []
|
|
980
1031
|
end
|
|
981
1032
|
|
|
1033
|
+
class CreateContactFlowModuleVersionRequest
|
|
1034
|
+
attr_accessor instance_id: ::String
|
|
1035
|
+
attr_accessor description: ::String
|
|
1036
|
+
attr_accessor contact_flow_module_id: ::String
|
|
1037
|
+
attr_accessor flow_module_content_sha_256: ::String
|
|
1038
|
+
SENSITIVE: []
|
|
1039
|
+
end
|
|
1040
|
+
|
|
1041
|
+
class CreateContactFlowModuleVersionResponse
|
|
1042
|
+
attr_accessor contact_flow_module_arn: ::String
|
|
1043
|
+
attr_accessor version: ::Integer
|
|
1044
|
+
SENSITIVE: []
|
|
1045
|
+
end
|
|
1046
|
+
|
|
982
1047
|
class CreateContactFlowRequest
|
|
983
1048
|
attr_accessor instance_id: ::String
|
|
984
1049
|
attr_accessor name: ::String
|
|
@@ -1559,6 +1624,16 @@ module Aws::Connect
|
|
|
1559
1624
|
SENSITIVE: []
|
|
1560
1625
|
end
|
|
1561
1626
|
|
|
1627
|
+
class DeleteContactFlowModuleAliasRequest
|
|
1628
|
+
attr_accessor instance_id: ::String
|
|
1629
|
+
attr_accessor contact_flow_module_id: ::String
|
|
1630
|
+
attr_accessor alias_id: ::String
|
|
1631
|
+
SENSITIVE: []
|
|
1632
|
+
end
|
|
1633
|
+
|
|
1634
|
+
class DeleteContactFlowModuleAliasResponse < Aws::EmptyStructure
|
|
1635
|
+
end
|
|
1636
|
+
|
|
1562
1637
|
class DeleteContactFlowModuleRequest
|
|
1563
1638
|
attr_accessor instance_id: ::String
|
|
1564
1639
|
attr_accessor contact_flow_module_id: ::String
|
|
@@ -1568,6 +1643,16 @@ module Aws::Connect
|
|
|
1568
1643
|
class DeleteContactFlowModuleResponse < Aws::EmptyStructure
|
|
1569
1644
|
end
|
|
1570
1645
|
|
|
1646
|
+
class DeleteContactFlowModuleVersionRequest
|
|
1647
|
+
attr_accessor instance_id: ::String
|
|
1648
|
+
attr_accessor contact_flow_module_id: ::String
|
|
1649
|
+
attr_accessor contact_flow_module_version: ::Integer
|
|
1650
|
+
SENSITIVE: []
|
|
1651
|
+
end
|
|
1652
|
+
|
|
1653
|
+
class DeleteContactFlowModuleVersionResponse < Aws::EmptyStructure
|
|
1654
|
+
end
|
|
1655
|
+
|
|
1571
1656
|
class DeleteContactFlowRequest
|
|
1572
1657
|
attr_accessor instance_id: ::String
|
|
1573
1658
|
attr_accessor contact_flow_id: ::String
|
|
@@ -1782,6 +1867,18 @@ module Aws::Connect
|
|
|
1782
1867
|
SENSITIVE: []
|
|
1783
1868
|
end
|
|
1784
1869
|
|
|
1870
|
+
class DescribeContactFlowModuleAliasRequest
|
|
1871
|
+
attr_accessor instance_id: ::String
|
|
1872
|
+
attr_accessor contact_flow_module_id: ::String
|
|
1873
|
+
attr_accessor alias_id: ::String
|
|
1874
|
+
SENSITIVE: []
|
|
1875
|
+
end
|
|
1876
|
+
|
|
1877
|
+
class DescribeContactFlowModuleAliasResponse
|
|
1878
|
+
attr_accessor contact_flow_module_alias: Types::ContactFlowModuleAliasInfo
|
|
1879
|
+
SENSITIVE: []
|
|
1880
|
+
end
|
|
1881
|
+
|
|
1785
1882
|
class DescribeContactFlowModuleRequest
|
|
1786
1883
|
attr_accessor instance_id: ::String
|
|
1787
1884
|
attr_accessor contact_flow_module_id: ::String
|
|
@@ -2826,6 +2923,11 @@ module Aws::Connect
|
|
|
2826
2923
|
SENSITIVE: []
|
|
2827
2924
|
end
|
|
2828
2925
|
|
|
2926
|
+
class ExternalInvocationConfiguration
|
|
2927
|
+
attr_accessor enabled: bool
|
|
2928
|
+
SENSITIVE: []
|
|
2929
|
+
end
|
|
2930
|
+
|
|
2829
2931
|
class FailedRequest
|
|
2830
2932
|
attr_accessor request_identifier: ::String
|
|
2831
2933
|
attr_accessor failure_reason_code: ("INVALID_ATTRIBUTE_KEY" | "INVALID_CUSTOMER_ENDPOINT" | "INVALID_SYSTEM_ENDPOINT" | "INVALID_QUEUE" | "INVALID_OUTBOUND_STRATEGY" | "MISSING_CAMPAIGN" | "MISSING_CUSTOMER_ENDPOINT" | "MISSING_QUEUE_ID_AND_SYSTEM_ENDPOINT" | "REQUEST_THROTTLED" | "IDEMPOTENCY_EXCEPTION" | "INTERNAL_ERROR")
|
|
@@ -3570,6 +3672,34 @@ module Aws::Connect
|
|
|
3570
3672
|
SENSITIVE: []
|
|
3571
3673
|
end
|
|
3572
3674
|
|
|
3675
|
+
class ListContactFlowModuleAliasesRequest
|
|
3676
|
+
attr_accessor instance_id: ::String
|
|
3677
|
+
attr_accessor contact_flow_module_id: ::String
|
|
3678
|
+
attr_accessor next_token: ::String
|
|
3679
|
+
attr_accessor max_results: ::Integer
|
|
3680
|
+
SENSITIVE: []
|
|
3681
|
+
end
|
|
3682
|
+
|
|
3683
|
+
class ListContactFlowModuleAliasesResponse
|
|
3684
|
+
attr_accessor contact_flow_module_alias_summary_list: ::Array[Types::ContactFlowModuleAliasSummary]
|
|
3685
|
+
attr_accessor next_token: ::String
|
|
3686
|
+
SENSITIVE: []
|
|
3687
|
+
end
|
|
3688
|
+
|
|
3689
|
+
class ListContactFlowModuleVersionsRequest
|
|
3690
|
+
attr_accessor instance_id: ::String
|
|
3691
|
+
attr_accessor contact_flow_module_id: ::String
|
|
3692
|
+
attr_accessor next_token: ::String
|
|
3693
|
+
attr_accessor max_results: ::Integer
|
|
3694
|
+
SENSITIVE: []
|
|
3695
|
+
end
|
|
3696
|
+
|
|
3697
|
+
class ListContactFlowModuleVersionsResponse
|
|
3698
|
+
attr_accessor contact_flow_module_version_summary_list: ::Array[Types::ContactFlowModuleVersionSummary]
|
|
3699
|
+
attr_accessor next_token: ::String
|
|
3700
|
+
SENSITIVE: []
|
|
3701
|
+
end
|
|
3702
|
+
|
|
3573
3703
|
class ListContactFlowModulesRequest
|
|
3574
3704
|
attr_accessor instance_id: ::String
|
|
3575
3705
|
attr_accessor next_token: ::String
|
|
@@ -6278,10 +6408,24 @@ module Aws::Connect
|
|
|
6278
6408
|
class UpdateContactFlowMetadataResponse < Aws::EmptyStructure
|
|
6279
6409
|
end
|
|
6280
6410
|
|
|
6411
|
+
class UpdateContactFlowModuleAliasRequest
|
|
6412
|
+
attr_accessor instance_id: ::String
|
|
6413
|
+
attr_accessor contact_flow_module_id: ::String
|
|
6414
|
+
attr_accessor alias_id: ::String
|
|
6415
|
+
attr_accessor name: ::String
|
|
6416
|
+
attr_accessor description: ::String
|
|
6417
|
+
attr_accessor contact_flow_module_version: ::Integer
|
|
6418
|
+
SENSITIVE: []
|
|
6419
|
+
end
|
|
6420
|
+
|
|
6421
|
+
class UpdateContactFlowModuleAliasResponse < Aws::EmptyStructure
|
|
6422
|
+
end
|
|
6423
|
+
|
|
6281
6424
|
class UpdateContactFlowModuleContentRequest
|
|
6282
6425
|
attr_accessor instance_id: ::String
|
|
6283
6426
|
attr_accessor contact_flow_module_id: ::String
|
|
6284
6427
|
attr_accessor content: ::String
|
|
6428
|
+
attr_accessor settings: ::String
|
|
6285
6429
|
SENSITIVE: []
|
|
6286
6430
|
end
|
|
6287
6431
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.226.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|