aws-sdk-connect 1.57.0 → 1.61.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +374 -23
- data/lib/aws-sdk-connect/client_api.rb +239 -0
- data/lib/aws-sdk-connect/errors.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +522 -22
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +4 -4
@@ -10,7 +10,7 @@
|
|
10
10
|
module Aws::Connect
|
11
11
|
module Types
|
12
12
|
|
13
|
-
# You do not have sufficient
|
13
|
+
# You do not have sufficient permissions to perform this action.
|
14
14
|
#
|
15
15
|
# @!attribute [rw] message
|
16
16
|
# @return [String]
|
@@ -73,7 +73,8 @@ module Aws::Connect
|
|
73
73
|
# @return [String]
|
74
74
|
#
|
75
75
|
# @!attribute [rw] tags
|
76
|
-
#
|
76
|
+
# The tags used to organize, track, or control access for this
|
77
|
+
# resource.
|
77
78
|
# @return [Hash<String,String>]
|
78
79
|
#
|
79
80
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AgentStatus AWS API Documentation
|
@@ -658,6 +659,10 @@ module Aws::Connect
|
|
658
659
|
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types
|
659
660
|
# @return [String]
|
660
661
|
#
|
662
|
+
# @!attribute [rw] state
|
663
|
+
# The type of contact flow.
|
664
|
+
# @return [String]
|
665
|
+
#
|
661
666
|
# @!attribute [rw] description
|
662
667
|
# The description of the contact flow.
|
663
668
|
# @return [String]
|
@@ -677,6 +682,7 @@ module Aws::Connect
|
|
677
682
|
:id,
|
678
683
|
:name,
|
679
684
|
:type,
|
685
|
+
:state,
|
680
686
|
:description,
|
681
687
|
:content,
|
682
688
|
:tags)
|
@@ -684,6 +690,85 @@ module Aws::Connect
|
|
684
690
|
include Aws::Structure
|
685
691
|
end
|
686
692
|
|
693
|
+
# Contains information about a contact flow module.
|
694
|
+
#
|
695
|
+
# @!attribute [rw] arn
|
696
|
+
# The Amazon Resource Name (ARN).
|
697
|
+
# @return [String]
|
698
|
+
#
|
699
|
+
# @!attribute [rw] id
|
700
|
+
# The identifier of the contact flow module.
|
701
|
+
# @return [String]
|
702
|
+
#
|
703
|
+
# @!attribute [rw] name
|
704
|
+
# The name of the contact flow module.
|
705
|
+
# @return [String]
|
706
|
+
#
|
707
|
+
# @!attribute [rw] content
|
708
|
+
# The content of the contact flow module.
|
709
|
+
# @return [String]
|
710
|
+
#
|
711
|
+
# @!attribute [rw] description
|
712
|
+
# The description of the contact flow module.
|
713
|
+
# @return [String]
|
714
|
+
#
|
715
|
+
# @!attribute [rw] state
|
716
|
+
# The type of contact flow module.
|
717
|
+
# @return [String]
|
718
|
+
#
|
719
|
+
# @!attribute [rw] status
|
720
|
+
# The status of the contact flow module.
|
721
|
+
# @return [String]
|
722
|
+
#
|
723
|
+
# @!attribute [rw] tags
|
724
|
+
# The tags used to organize, track, or control access for this
|
725
|
+
# resource.
|
726
|
+
# @return [Hash<String,String>]
|
727
|
+
#
|
728
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModule AWS API Documentation
|
729
|
+
#
|
730
|
+
class ContactFlowModule < Struct.new(
|
731
|
+
:arn,
|
732
|
+
:id,
|
733
|
+
:name,
|
734
|
+
:content,
|
735
|
+
:description,
|
736
|
+
:state,
|
737
|
+
:status,
|
738
|
+
:tags)
|
739
|
+
SENSITIVE = []
|
740
|
+
include Aws::Structure
|
741
|
+
end
|
742
|
+
|
743
|
+
# Contains summary information about a contact flow.
|
744
|
+
#
|
745
|
+
# @!attribute [rw] id
|
746
|
+
# The identifier of the contact flow module.
|
747
|
+
# @return [String]
|
748
|
+
#
|
749
|
+
# @!attribute [rw] arn
|
750
|
+
# The Amazon Resource Name (ARN) of the contact flow module.
|
751
|
+
# @return [String]
|
752
|
+
#
|
753
|
+
# @!attribute [rw] name
|
754
|
+
# The name of the contact flow module.
|
755
|
+
# @return [String]
|
756
|
+
#
|
757
|
+
# @!attribute [rw] state
|
758
|
+
# The type of contact flow module.
|
759
|
+
# @return [String]
|
760
|
+
#
|
761
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowModuleSummary AWS API Documentation
|
762
|
+
#
|
763
|
+
class ContactFlowModuleSummary < Struct.new(
|
764
|
+
:id,
|
765
|
+
:arn,
|
766
|
+
:name,
|
767
|
+
:state)
|
768
|
+
SENSITIVE = []
|
769
|
+
include Aws::Structure
|
770
|
+
end
|
771
|
+
|
687
772
|
# The contact flow has not been published.
|
688
773
|
#
|
689
774
|
# @!attribute [rw] message
|
@@ -722,13 +807,18 @@ module Aws::Connect
|
|
722
807
|
# The type of contact flow.
|
723
808
|
# @return [String]
|
724
809
|
#
|
810
|
+
# @!attribute [rw] contact_flow_state
|
811
|
+
# The type of contact flow.
|
812
|
+
# @return [String]
|
813
|
+
#
|
725
814
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ContactFlowSummary AWS API Documentation
|
726
815
|
#
|
727
816
|
class ContactFlowSummary < Struct.new(
|
728
817
|
:id,
|
729
818
|
:arn,
|
730
819
|
:name,
|
731
|
-
:contact_flow_type
|
820
|
+
:contact_flow_type,
|
821
|
+
:contact_flow_state)
|
732
822
|
SENSITIVE = []
|
733
823
|
include Aws::Structure
|
734
824
|
end
|
@@ -783,7 +873,8 @@ module Aws::Connect
|
|
783
873
|
# @return [Integer]
|
784
874
|
#
|
785
875
|
# @!attribute [rw] tags
|
786
|
-
#
|
876
|
+
# The tags used to organize, track, or control access for this
|
877
|
+
# resource.
|
787
878
|
# @return [Hash<String,String>]
|
788
879
|
#
|
789
880
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateAgentStatusRequest AWS API Documentation
|
@@ -816,6 +907,80 @@ module Aws::Connect
|
|
816
907
|
include Aws::Structure
|
817
908
|
end
|
818
909
|
|
910
|
+
# @note When making an API call, you may pass CreateContactFlowModuleRequest
|
911
|
+
# data as a hash:
|
912
|
+
#
|
913
|
+
# {
|
914
|
+
# instance_id: "InstanceId", # required
|
915
|
+
# name: "ContactFlowModuleName", # required
|
916
|
+
# description: "ContactFlowModuleDescription",
|
917
|
+
# content: "ContactFlowModuleContent", # required
|
918
|
+
# tags: {
|
919
|
+
# "TagKey" => "TagValue",
|
920
|
+
# },
|
921
|
+
# client_token: "ClientToken",
|
922
|
+
# }
|
923
|
+
#
|
924
|
+
# @!attribute [rw] instance_id
|
925
|
+
# The identifier of the Amazon Connect instance. You can find the
|
926
|
+
# instanceId in the ARN of the instance.
|
927
|
+
# @return [String]
|
928
|
+
#
|
929
|
+
# @!attribute [rw] name
|
930
|
+
# The name of the contact flow module.
|
931
|
+
# @return [String]
|
932
|
+
#
|
933
|
+
# @!attribute [rw] description
|
934
|
+
# The description of the contact flow module.
|
935
|
+
# @return [String]
|
936
|
+
#
|
937
|
+
# @!attribute [rw] content
|
938
|
+
# The content of the contact flow module.
|
939
|
+
# @return [String]
|
940
|
+
#
|
941
|
+
# @!attribute [rw] tags
|
942
|
+
# The tags used to organize, track, or control access for this
|
943
|
+
# resource.
|
944
|
+
# @return [Hash<String,String>]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] client_token
|
947
|
+
# A unique, case-sensitive identifier that you provide to ensure the
|
948
|
+
# idempotency of the request.
|
949
|
+
#
|
950
|
+
# **A suitable default value is auto-generated.** You should normally
|
951
|
+
# not need to pass this option.
|
952
|
+
# @return [String]
|
953
|
+
#
|
954
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleRequest AWS API Documentation
|
955
|
+
#
|
956
|
+
class CreateContactFlowModuleRequest < Struct.new(
|
957
|
+
:instance_id,
|
958
|
+
:name,
|
959
|
+
:description,
|
960
|
+
:content,
|
961
|
+
:tags,
|
962
|
+
:client_token)
|
963
|
+
SENSITIVE = []
|
964
|
+
include Aws::Structure
|
965
|
+
end
|
966
|
+
|
967
|
+
# @!attribute [rw] id
|
968
|
+
# The identifier of the contact flow module.
|
969
|
+
# @return [String]
|
970
|
+
#
|
971
|
+
# @!attribute [rw] arn
|
972
|
+
# The Amazon Resource Name (ARN) of the contact flow module.
|
973
|
+
# @return [String]
|
974
|
+
#
|
975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateContactFlowModuleResponse AWS API Documentation
|
976
|
+
#
|
977
|
+
class CreateContactFlowModuleResponse < Struct.new(
|
978
|
+
:id,
|
979
|
+
:arn)
|
980
|
+
SENSITIVE = []
|
981
|
+
include Aws::Structure
|
982
|
+
end
|
983
|
+
|
819
984
|
# @note When making an API call, you may pass CreateContactFlowRequest
|
820
985
|
# data as a hash:
|
821
986
|
#
|
@@ -939,7 +1104,8 @@ module Aws::Connect
|
|
939
1104
|
# @return [Array<Types::HoursOfOperationConfig>]
|
940
1105
|
#
|
941
1106
|
# @!attribute [rw] tags
|
942
|
-
#
|
1107
|
+
# The tags used to organize, track, or control access for this
|
1108
|
+
# resource.
|
943
1109
|
# @return [Hash<String,String>]
|
944
1110
|
#
|
945
1111
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateHoursOfOperationRequest AWS API Documentation
|
@@ -1082,7 +1248,8 @@ module Aws::Connect
|
|
1082
1248
|
# @return [String]
|
1083
1249
|
#
|
1084
1250
|
# @!attribute [rw] tags
|
1085
|
-
#
|
1251
|
+
# The tags used to organize, track, or control access for this
|
1252
|
+
# resource.
|
1086
1253
|
# @return [Hash<String,String>]
|
1087
1254
|
#
|
1088
1255
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
|
@@ -1167,7 +1334,8 @@ module Aws::Connect
|
|
1167
1334
|
# @return [Array<String>]
|
1168
1335
|
#
|
1169
1336
|
# @!attribute [rw] tags
|
1170
|
-
#
|
1337
|
+
# The tags used to organize, track, or control access for this
|
1338
|
+
# resource.
|
1171
1339
|
# @return [Hash<String,String>]
|
1172
1340
|
#
|
1173
1341
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQueueRequest AWS API Documentation
|
@@ -1246,7 +1414,8 @@ module Aws::Connect
|
|
1246
1414
|
# @return [Types::QuickConnectConfig]
|
1247
1415
|
#
|
1248
1416
|
# @!attribute [rw] tags
|
1249
|
-
#
|
1417
|
+
# The tags used to organize, track, or control access for this
|
1418
|
+
# resource.
|
1250
1419
|
# @return [Hash<String,String>]
|
1251
1420
|
#
|
1252
1421
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateQuickConnectRequest AWS API Documentation
|
@@ -1402,7 +1571,8 @@ module Aws::Connect
|
|
1402
1571
|
# @return [String]
|
1403
1572
|
#
|
1404
1573
|
# @!attribute [rw] tags
|
1405
|
-
#
|
1574
|
+
# The tags used to organize, track, or control access for this
|
1575
|
+
# resource.
|
1406
1576
|
# @return [Hash<String,String>]
|
1407
1577
|
#
|
1408
1578
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateSecurityProfileRequest AWS API Documentation
|
@@ -1462,7 +1632,8 @@ module Aws::Connect
|
|
1462
1632
|
# @return [String]
|
1463
1633
|
#
|
1464
1634
|
# @!attribute [rw] tags
|
1465
|
-
#
|
1635
|
+
# The tags used to organize, track, or control access for this
|
1636
|
+
# resource.
|
1466
1637
|
# @return [Hash<String,String>]
|
1467
1638
|
#
|
1468
1639
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
|
@@ -1500,6 +1671,9 @@ module Aws::Connect
|
|
1500
1671
|
# name: "HierarchyGroupName", # required
|
1501
1672
|
# parent_group_id: "HierarchyGroupId",
|
1502
1673
|
# instance_id: "InstanceId", # required
|
1674
|
+
# tags: {
|
1675
|
+
# "TagKey" => "TagValue",
|
1676
|
+
# },
|
1503
1677
|
# }
|
1504
1678
|
#
|
1505
1679
|
# @!attribute [rw] name
|
@@ -1517,12 +1691,18 @@ module Aws::Connect
|
|
1517
1691
|
# instanceId in the ARN of the instance.
|
1518
1692
|
# @return [String]
|
1519
1693
|
#
|
1694
|
+
# @!attribute [rw] tags
|
1695
|
+
# The tags used to organize, track, or control access for this
|
1696
|
+
# resource.
|
1697
|
+
# @return [Hash<String,String>]
|
1698
|
+
#
|
1520
1699
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserHierarchyGroupRequest AWS API Documentation
|
1521
1700
|
#
|
1522
1701
|
class CreateUserHierarchyGroupRequest < Struct.new(
|
1523
1702
|
:name,
|
1524
1703
|
:parent_group_id,
|
1525
|
-
:instance_id
|
1704
|
+
:instance_id,
|
1705
|
+
:tags)
|
1526
1706
|
SENSITIVE = []
|
1527
1707
|
include Aws::Structure
|
1528
1708
|
end
|
@@ -1765,6 +1945,62 @@ module Aws::Connect
|
|
1765
1945
|
include Aws::Structure
|
1766
1946
|
end
|
1767
1947
|
|
1948
|
+
# @note When making an API call, you may pass DeleteContactFlowModuleRequest
|
1949
|
+
# data as a hash:
|
1950
|
+
#
|
1951
|
+
# {
|
1952
|
+
# instance_id: "InstanceId", # required
|
1953
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
1954
|
+
# }
|
1955
|
+
#
|
1956
|
+
# @!attribute [rw] instance_id
|
1957
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1958
|
+
# instanceId in the ARN of the instance.
|
1959
|
+
# @return [String]
|
1960
|
+
#
|
1961
|
+
# @!attribute [rw] contact_flow_module_id
|
1962
|
+
# The identifier of the contact flow module.
|
1963
|
+
# @return [String]
|
1964
|
+
#
|
1965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleRequest AWS API Documentation
|
1966
|
+
#
|
1967
|
+
class DeleteContactFlowModuleRequest < Struct.new(
|
1968
|
+
:instance_id,
|
1969
|
+
:contact_flow_module_id)
|
1970
|
+
SENSITIVE = []
|
1971
|
+
include Aws::Structure
|
1972
|
+
end
|
1973
|
+
|
1974
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleResponse AWS API Documentation
|
1975
|
+
#
|
1976
|
+
class DeleteContactFlowModuleResponse < Aws::EmptyStructure; end
|
1977
|
+
|
1978
|
+
# @note When making an API call, you may pass DeleteContactFlowRequest
|
1979
|
+
# data as a hash:
|
1980
|
+
#
|
1981
|
+
# {
|
1982
|
+
# instance_id: "InstanceId", # required
|
1983
|
+
# contact_flow_id: "ContactFlowId", # required
|
1984
|
+
# }
|
1985
|
+
#
|
1986
|
+
# @!attribute [rw] instance_id
|
1987
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1988
|
+
# instanceId in the ARN of the instance.
|
1989
|
+
# @return [String]
|
1990
|
+
#
|
1991
|
+
# @!attribute [rw] contact_flow_id
|
1992
|
+
# The identifier of the contact flow.
|
1993
|
+
# @return [String]
|
1994
|
+
#
|
1995
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowRequest AWS API Documentation
|
1996
|
+
#
|
1997
|
+
class DeleteContactFlowRequest < Struct.new(
|
1998
|
+
:instance_id,
|
1999
|
+
:contact_flow_id)
|
2000
|
+
SENSITIVE = []
|
2001
|
+
include Aws::Structure
|
2002
|
+
end
|
2003
|
+
|
1768
2004
|
# @note When making an API call, you may pass DeleteHoursOfOperationRequest
|
1769
2005
|
# data as a hash:
|
1770
2006
|
#
|
@@ -2011,6 +2247,44 @@ module Aws::Connect
|
|
2011
2247
|
include Aws::Structure
|
2012
2248
|
end
|
2013
2249
|
|
2250
|
+
# @note When making an API call, you may pass DescribeContactFlowModuleRequest
|
2251
|
+
# data as a hash:
|
2252
|
+
#
|
2253
|
+
# {
|
2254
|
+
# instance_id: "InstanceId", # required
|
2255
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
2256
|
+
# }
|
2257
|
+
#
|
2258
|
+
# @!attribute [rw] instance_id
|
2259
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2260
|
+
# instanceId in the ARN of the instance.
|
2261
|
+
# @return [String]
|
2262
|
+
#
|
2263
|
+
# @!attribute [rw] contact_flow_module_id
|
2264
|
+
# The identifier of the contact flow module.
|
2265
|
+
# @return [String]
|
2266
|
+
#
|
2267
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleRequest AWS API Documentation
|
2268
|
+
#
|
2269
|
+
class DescribeContactFlowModuleRequest < Struct.new(
|
2270
|
+
:instance_id,
|
2271
|
+
:contact_flow_module_id)
|
2272
|
+
SENSITIVE = []
|
2273
|
+
include Aws::Structure
|
2274
|
+
end
|
2275
|
+
|
2276
|
+
# @!attribute [rw] contact_flow_module
|
2277
|
+
# Information about the contact flow module.
|
2278
|
+
# @return [Types::ContactFlowModule]
|
2279
|
+
#
|
2280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleResponse AWS API Documentation
|
2281
|
+
#
|
2282
|
+
class DescribeContactFlowModuleResponse < Struct.new(
|
2283
|
+
:contact_flow_module)
|
2284
|
+
SENSITIVE = []
|
2285
|
+
include Aws::Structure
|
2286
|
+
end
|
2287
|
+
|
2014
2288
|
# @note When making an API call, you may pass DescribeContactFlowRequest
|
2015
2289
|
# data as a hash:
|
2016
2290
|
#
|
@@ -2062,7 +2336,7 @@ module Aws::Connect
|
|
2062
2336
|
# @return [String]
|
2063
2337
|
#
|
2064
2338
|
# @!attribute [rw] contact_id
|
2065
|
-
# The identifier of the
|
2339
|
+
# The identifier of the contact.
|
2066
2340
|
# @return [String]
|
2067
2341
|
#
|
2068
2342
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactRequest AWS API Documentation
|
@@ -2839,8 +3113,10 @@ module Aws::Connect
|
|
2839
3113
|
# }
|
2840
3114
|
#
|
2841
3115
|
# @!attribute [rw] queues
|
2842
|
-
# The queues to use to filter the metrics. You
|
2843
|
-
# queues per request.
|
3116
|
+
# The queues to use to filter the metrics. You should specify at least
|
3117
|
+
# one queue, and can specify up to 100 queues per request. The
|
3118
|
+
# `GetCurrentMetricsData` API in particular requires a queue when you
|
3119
|
+
# include a `Filter` in your request.
|
2844
3120
|
# @return [Array<String>]
|
2845
3121
|
#
|
2846
3122
|
# @!attribute [rw] channels
|
@@ -3456,6 +3732,11 @@ module Aws::Connect
|
|
3456
3732
|
# Information about the levels in the hierarchy group.
|
3457
3733
|
# @return [Types::HierarchyPath]
|
3458
3734
|
#
|
3735
|
+
# @!attribute [rw] tags
|
3736
|
+
# The tags used to organize, track, or control access for this
|
3737
|
+
# resource.
|
3738
|
+
# @return [Hash<String,String>]
|
3739
|
+
#
|
3459
3740
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HierarchyGroup AWS API Documentation
|
3460
3741
|
#
|
3461
3742
|
class HierarchyGroup < Struct.new(
|
@@ -3463,7 +3744,8 @@ module Aws::Connect
|
|
3463
3744
|
:arn,
|
3464
3745
|
:name,
|
3465
3746
|
:level_id,
|
3466
|
-
:hierarchy_path
|
3747
|
+
:hierarchy_path,
|
3748
|
+
:tags)
|
3467
3749
|
SENSITIVE = []
|
3468
3750
|
include Aws::Structure
|
3469
3751
|
end
|
@@ -3774,7 +4056,8 @@ module Aws::Connect
|
|
3774
4056
|
# @return [Array<Types::HoursOfOperationConfig>]
|
3775
4057
|
#
|
3776
4058
|
# @!attribute [rw] tags
|
3777
|
-
#
|
4059
|
+
# The tags used to organize, track, or control access for this
|
4060
|
+
# resource.
|
3778
4061
|
# @return [Hash<String,String>]
|
3779
4062
|
#
|
3780
4063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
|
@@ -3882,6 +4165,19 @@ module Aws::Connect
|
|
3882
4165
|
include Aws::Structure
|
3883
4166
|
end
|
3884
4167
|
|
4168
|
+
# An entity with the same name already exists.
|
4169
|
+
#
|
4170
|
+
# @!attribute [rw] message
|
4171
|
+
# @return [String]
|
4172
|
+
#
|
4173
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/IdempotencyException AWS API Documentation
|
4174
|
+
#
|
4175
|
+
class IdempotencyException < Struct.new(
|
4176
|
+
:message)
|
4177
|
+
SENSITIVE = []
|
4178
|
+
include Aws::Structure
|
4179
|
+
end
|
4180
|
+
|
3885
4181
|
# The Amazon Connect instance.
|
3886
4182
|
#
|
3887
4183
|
# @!attribute [rw] id
|
@@ -4159,6 +4455,19 @@ module Aws::Connect
|
|
4159
4455
|
include Aws::Structure
|
4160
4456
|
end
|
4161
4457
|
|
4458
|
+
# The problems with the module. Please fix before trying again.
|
4459
|
+
#
|
4460
|
+
# @!attribute [rw] problems
|
4461
|
+
# @return [Array<Types::ProblemDetail>]
|
4462
|
+
#
|
4463
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidContactFlowModuleException AWS API Documentation
|
4464
|
+
#
|
4465
|
+
class InvalidContactFlowModuleException < Struct.new(
|
4466
|
+
:problems)
|
4467
|
+
SENSITIVE = []
|
4468
|
+
include Aws::Structure
|
4469
|
+
end
|
4470
|
+
|
4162
4471
|
# One or more of the specified parameters are not valid.
|
4163
4472
|
#
|
4164
4473
|
# @!attribute [rw] message
|
@@ -4520,6 +4829,64 @@ module Aws::Connect
|
|
4520
4829
|
include Aws::Structure
|
4521
4830
|
end
|
4522
4831
|
|
4832
|
+
# @note When making an API call, you may pass ListContactFlowModulesRequest
|
4833
|
+
# data as a hash:
|
4834
|
+
#
|
4835
|
+
# {
|
4836
|
+
# instance_id: "InstanceId", # required
|
4837
|
+
# next_token: "NextToken",
|
4838
|
+
# max_results: 1,
|
4839
|
+
# contact_flow_module_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
4840
|
+
# }
|
4841
|
+
#
|
4842
|
+
# @!attribute [rw] instance_id
|
4843
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4844
|
+
# instanceId in the ARN of the instance.
|
4845
|
+
# @return [String]
|
4846
|
+
#
|
4847
|
+
# @!attribute [rw] next_token
|
4848
|
+
# The token for the next set of results. Use the value returned in the
|
4849
|
+
# previous response in the next request to retrieve the next set of
|
4850
|
+
# results.
|
4851
|
+
# @return [String]
|
4852
|
+
#
|
4853
|
+
# @!attribute [rw] max_results
|
4854
|
+
# The maximum number of results to return per page.
|
4855
|
+
# @return [Integer]
|
4856
|
+
#
|
4857
|
+
# @!attribute [rw] contact_flow_module_state
|
4858
|
+
# The state of the contact flow module.
|
4859
|
+
# @return [String]
|
4860
|
+
#
|
4861
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesRequest AWS API Documentation
|
4862
|
+
#
|
4863
|
+
class ListContactFlowModulesRequest < Struct.new(
|
4864
|
+
:instance_id,
|
4865
|
+
:next_token,
|
4866
|
+
:max_results,
|
4867
|
+
:contact_flow_module_state)
|
4868
|
+
SENSITIVE = []
|
4869
|
+
include Aws::Structure
|
4870
|
+
end
|
4871
|
+
|
4872
|
+
# @!attribute [rw] contact_flow_modules_summary_list
|
4873
|
+
# Information about the contact flow module.
|
4874
|
+
# @return [Array<Types::ContactFlowModuleSummary>]
|
4875
|
+
#
|
4876
|
+
# @!attribute [rw] next_token
|
4877
|
+
# If there are additional results, this is the token for the next set
|
4878
|
+
# of results.
|
4879
|
+
# @return [String]
|
4880
|
+
#
|
4881
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesResponse AWS API Documentation
|
4882
|
+
#
|
4883
|
+
class ListContactFlowModulesResponse < Struct.new(
|
4884
|
+
:contact_flow_modules_summary_list,
|
4885
|
+
:next_token)
|
4886
|
+
SENSITIVE = []
|
4887
|
+
include Aws::Structure
|
4888
|
+
end
|
4889
|
+
|
4523
4890
|
# @note When making an API call, you may pass ListContactFlowsRequest
|
4524
4891
|
# data as a hash:
|
4525
4892
|
#
|
@@ -4606,7 +4973,7 @@ module Aws::Connect
|
|
4606
4973
|
# previous response in the next request to retrieve the next set of
|
4607
4974
|
# results.
|
4608
4975
|
#
|
4609
|
-
# This is not expected to be set
|
4976
|
+
# This is not expected to be set, because the value returned in the
|
4610
4977
|
# previous response is always null.
|
4611
4978
|
# @return [String]
|
4612
4979
|
#
|
@@ -4864,6 +5231,7 @@ module Aws::Connect
|
|
4864
5231
|
# @return [String]
|
4865
5232
|
#
|
4866
5233
|
# @!attribute [rw] integration_type
|
5234
|
+
# The integration type.
|
4867
5235
|
# @return [String]
|
4868
5236
|
#
|
4869
5237
|
# @!attribute [rw] next_token
|
@@ -6005,7 +6373,8 @@ module Aws::Connect
|
|
6005
6373
|
# @return [String]
|
6006
6374
|
#
|
6007
6375
|
# @!attribute [rw] tags
|
6008
|
-
#
|
6376
|
+
# The tags used to organize, track, or control access for this
|
6377
|
+
# resource.
|
6009
6378
|
# @return [Hash<String,String>]
|
6010
6379
|
#
|
6011
6380
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
|
@@ -6143,7 +6512,8 @@ module Aws::Connect
|
|
6143
6512
|
# @return [Types::QuickConnectConfig]
|
6144
6513
|
#
|
6145
6514
|
# @!attribute [rw] tags
|
6146
|
-
#
|
6515
|
+
# The tags used to organize, track, or control access for this
|
6516
|
+
# resource.
|
6147
6517
|
# @return [Hash<String,String>]
|
6148
6518
|
#
|
6149
6519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
|
@@ -6282,7 +6652,7 @@ module Aws::Connect
|
|
6282
6652
|
# @note ReferenceSummary is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ReferenceSummary corresponding to the set member.
|
6283
6653
|
#
|
6284
6654
|
# @!attribute [rw] url
|
6285
|
-
# Information about
|
6655
|
+
# Information about the URL reference if the `referenceType` is `URL`.
|
6286
6656
|
# Otherwise, null.
|
6287
6657
|
# @return [Types::UrlReference]
|
6288
6658
|
#
|
@@ -6681,7 +7051,8 @@ module Aws::Connect
|
|
6681
7051
|
# @return [String]
|
6682
7052
|
#
|
6683
7053
|
# @!attribute [rw] tags
|
6684
|
-
#
|
7054
|
+
# The tags used to organize, track, or control access for this
|
7055
|
+
# resource.
|
6685
7056
|
# @return [Hash<String,String>]
|
6686
7057
|
#
|
6687
7058
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
|
@@ -7542,6 +7913,134 @@ module Aws::Connect
|
|
7542
7913
|
include Aws::Structure
|
7543
7914
|
end
|
7544
7915
|
|
7916
|
+
# @note When making an API call, you may pass UpdateContactFlowMetadataRequest
|
7917
|
+
# data as a hash:
|
7918
|
+
#
|
7919
|
+
# {
|
7920
|
+
# instance_id: "InstanceId", # required
|
7921
|
+
# contact_flow_id: "ContactFlowId", # required
|
7922
|
+
# name: "ContactFlowName",
|
7923
|
+
# description: "ContactFlowDescription",
|
7924
|
+
# contact_flow_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
7925
|
+
# }
|
7926
|
+
#
|
7927
|
+
# @!attribute [rw] instance_id
|
7928
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7929
|
+
# instanceId in the ARN of the instance.
|
7930
|
+
# @return [String]
|
7931
|
+
#
|
7932
|
+
# @!attribute [rw] contact_flow_id
|
7933
|
+
# The identifier of the contact flow.
|
7934
|
+
# @return [String]
|
7935
|
+
#
|
7936
|
+
# @!attribute [rw] name
|
7937
|
+
# TThe name of the contact flow.
|
7938
|
+
# @return [String]
|
7939
|
+
#
|
7940
|
+
# @!attribute [rw] description
|
7941
|
+
# The description of the contact flow.
|
7942
|
+
# @return [String]
|
7943
|
+
#
|
7944
|
+
# @!attribute [rw] contact_flow_state
|
7945
|
+
# The state of contact flow.
|
7946
|
+
# @return [String]
|
7947
|
+
#
|
7948
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowMetadataRequest AWS API Documentation
|
7949
|
+
#
|
7950
|
+
class UpdateContactFlowMetadataRequest < Struct.new(
|
7951
|
+
:instance_id,
|
7952
|
+
:contact_flow_id,
|
7953
|
+
:name,
|
7954
|
+
:description,
|
7955
|
+
:contact_flow_state)
|
7956
|
+
SENSITIVE = []
|
7957
|
+
include Aws::Structure
|
7958
|
+
end
|
7959
|
+
|
7960
|
+
# @note When making an API call, you may pass UpdateContactFlowModuleContentRequest
|
7961
|
+
# data as a hash:
|
7962
|
+
#
|
7963
|
+
# {
|
7964
|
+
# instance_id: "InstanceId", # required
|
7965
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
7966
|
+
# content: "ContactFlowModuleContent", # required
|
7967
|
+
# }
|
7968
|
+
#
|
7969
|
+
# @!attribute [rw] instance_id
|
7970
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7971
|
+
# instanceId in the ARN of the instance.
|
7972
|
+
# @return [String]
|
7973
|
+
#
|
7974
|
+
# @!attribute [rw] contact_flow_module_id
|
7975
|
+
# The identifier of the contact flow module.
|
7976
|
+
# @return [String]
|
7977
|
+
#
|
7978
|
+
# @!attribute [rw] content
|
7979
|
+
# The content of the contact flow module.
|
7980
|
+
# @return [String]
|
7981
|
+
#
|
7982
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentRequest AWS API Documentation
|
7983
|
+
#
|
7984
|
+
class UpdateContactFlowModuleContentRequest < Struct.new(
|
7985
|
+
:instance_id,
|
7986
|
+
:contact_flow_module_id,
|
7987
|
+
:content)
|
7988
|
+
SENSITIVE = []
|
7989
|
+
include Aws::Structure
|
7990
|
+
end
|
7991
|
+
|
7992
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentResponse AWS API Documentation
|
7993
|
+
#
|
7994
|
+
class UpdateContactFlowModuleContentResponse < Aws::EmptyStructure; end
|
7995
|
+
|
7996
|
+
# @note When making an API call, you may pass UpdateContactFlowModuleMetadataRequest
|
7997
|
+
# data as a hash:
|
7998
|
+
#
|
7999
|
+
# {
|
8000
|
+
# instance_id: "InstanceId", # required
|
8001
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
8002
|
+
# name: "ContactFlowModuleName",
|
8003
|
+
# description: "ContactFlowModuleDescription",
|
8004
|
+
# state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
8005
|
+
# }
|
8006
|
+
#
|
8007
|
+
# @!attribute [rw] instance_id
|
8008
|
+
# The identifier of the Amazon Connect instance. You can find the
|
8009
|
+
# instanceId in the ARN of the instance.
|
8010
|
+
# @return [String]
|
8011
|
+
#
|
8012
|
+
# @!attribute [rw] contact_flow_module_id
|
8013
|
+
# The identifier of the contact flow module.
|
8014
|
+
# @return [String]
|
8015
|
+
#
|
8016
|
+
# @!attribute [rw] name
|
8017
|
+
# The name of the contact flow module.
|
8018
|
+
# @return [String]
|
8019
|
+
#
|
8020
|
+
# @!attribute [rw] description
|
8021
|
+
# The description of the contact flow module.
|
8022
|
+
# @return [String]
|
8023
|
+
#
|
8024
|
+
# @!attribute [rw] state
|
8025
|
+
# The state of contact flow module.
|
8026
|
+
# @return [String]
|
8027
|
+
#
|
8028
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataRequest AWS API Documentation
|
8029
|
+
#
|
8030
|
+
class UpdateContactFlowModuleMetadataRequest < Struct.new(
|
8031
|
+
:instance_id,
|
8032
|
+
:contact_flow_module_id,
|
8033
|
+
:name,
|
8034
|
+
:description,
|
8035
|
+
:state)
|
8036
|
+
SENSITIVE = []
|
8037
|
+
include Aws::Structure
|
8038
|
+
end
|
8039
|
+
|
8040
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataResponse AWS API Documentation
|
8041
|
+
#
|
8042
|
+
class UpdateContactFlowModuleMetadataResponse < Aws::EmptyStructure; end
|
8043
|
+
|
7545
8044
|
# @note When making an API call, you may pass UpdateContactFlowNameRequest
|
7546
8045
|
# data as a hash:
|
7547
8046
|
#
|
@@ -7752,7 +8251,8 @@ module Aws::Connect
|
|
7752
8251
|
# The type of attribute.
|
7753
8252
|
#
|
7754
8253
|
# <note markdown="1"> Only allowlisted customers can consume USE\_CUSTOM\_TTS\_VOICES. To
|
7755
|
-
# access this feature, contact
|
8254
|
+
# access this feature, contact Amazon Web Services Support for
|
8255
|
+
# allowlisting.
|
7756
8256
|
#
|
7757
8257
|
# </note>
|
7758
8258
|
# @return [String]
|