aws-sdk-connect 1.57.0 → 1.58.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 +344 -15
- data/lib/aws-sdk-connect/client_api.rb +237 -0
- data/lib/aws-sdk-connect/errors.rb +32 -0
- data/lib/aws-sdk-connect/types.rb +499 -17
- data/lib/aws-sdk-connect.rb +1 -1
- metadata +2 -2
@@ -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
|
@@ -1765,6 +1936,62 @@ module Aws::Connect
|
|
1765
1936
|
include Aws::Structure
|
1766
1937
|
end
|
1767
1938
|
|
1939
|
+
# @note When making an API call, you may pass DeleteContactFlowModuleRequest
|
1940
|
+
# data as a hash:
|
1941
|
+
#
|
1942
|
+
# {
|
1943
|
+
# instance_id: "InstanceId", # required
|
1944
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
1945
|
+
# }
|
1946
|
+
#
|
1947
|
+
# @!attribute [rw] instance_id
|
1948
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1949
|
+
# instanceId in the ARN of the instance.
|
1950
|
+
# @return [String]
|
1951
|
+
#
|
1952
|
+
# @!attribute [rw] contact_flow_module_id
|
1953
|
+
# The identifier of the contact flow module.
|
1954
|
+
# @return [String]
|
1955
|
+
#
|
1956
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleRequest AWS API Documentation
|
1957
|
+
#
|
1958
|
+
class DeleteContactFlowModuleRequest < Struct.new(
|
1959
|
+
:instance_id,
|
1960
|
+
:contact_flow_module_id)
|
1961
|
+
SENSITIVE = []
|
1962
|
+
include Aws::Structure
|
1963
|
+
end
|
1964
|
+
|
1965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowModuleResponse AWS API Documentation
|
1966
|
+
#
|
1967
|
+
class DeleteContactFlowModuleResponse < Aws::EmptyStructure; end
|
1968
|
+
|
1969
|
+
# @note When making an API call, you may pass DeleteContactFlowRequest
|
1970
|
+
# data as a hash:
|
1971
|
+
#
|
1972
|
+
# {
|
1973
|
+
# instance_id: "InstanceId", # required
|
1974
|
+
# contact_flow_id: "ContactFlowId", # required
|
1975
|
+
# }
|
1976
|
+
#
|
1977
|
+
# @!attribute [rw] instance_id
|
1978
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1979
|
+
# instanceId in the ARN of the instance.
|
1980
|
+
# @return [String]
|
1981
|
+
#
|
1982
|
+
# @!attribute [rw] contact_flow_id
|
1983
|
+
# The identifier of the contact flow.
|
1984
|
+
# @return [String]
|
1985
|
+
#
|
1986
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteContactFlowRequest AWS API Documentation
|
1987
|
+
#
|
1988
|
+
class DeleteContactFlowRequest < Struct.new(
|
1989
|
+
:instance_id,
|
1990
|
+
:contact_flow_id)
|
1991
|
+
SENSITIVE = []
|
1992
|
+
include Aws::Structure
|
1993
|
+
end
|
1994
|
+
|
1768
1995
|
# @note When making an API call, you may pass DeleteHoursOfOperationRequest
|
1769
1996
|
# data as a hash:
|
1770
1997
|
#
|
@@ -2011,6 +2238,44 @@ module Aws::Connect
|
|
2011
2238
|
include Aws::Structure
|
2012
2239
|
end
|
2013
2240
|
|
2241
|
+
# @note When making an API call, you may pass DescribeContactFlowModuleRequest
|
2242
|
+
# data as a hash:
|
2243
|
+
#
|
2244
|
+
# {
|
2245
|
+
# instance_id: "InstanceId", # required
|
2246
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
2247
|
+
# }
|
2248
|
+
#
|
2249
|
+
# @!attribute [rw] instance_id
|
2250
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2251
|
+
# instanceId in the ARN of the instance.
|
2252
|
+
# @return [String]
|
2253
|
+
#
|
2254
|
+
# @!attribute [rw] contact_flow_module_id
|
2255
|
+
# The identifier of the contact flow module.
|
2256
|
+
# @return [String]
|
2257
|
+
#
|
2258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleRequest AWS API Documentation
|
2259
|
+
#
|
2260
|
+
class DescribeContactFlowModuleRequest < Struct.new(
|
2261
|
+
:instance_id,
|
2262
|
+
:contact_flow_module_id)
|
2263
|
+
SENSITIVE = []
|
2264
|
+
include Aws::Structure
|
2265
|
+
end
|
2266
|
+
|
2267
|
+
# @!attribute [rw] contact_flow_module
|
2268
|
+
# Information about the contact flow module.
|
2269
|
+
# @return [Types::ContactFlowModule]
|
2270
|
+
#
|
2271
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactFlowModuleResponse AWS API Documentation
|
2272
|
+
#
|
2273
|
+
class DescribeContactFlowModuleResponse < Struct.new(
|
2274
|
+
:contact_flow_module)
|
2275
|
+
SENSITIVE = []
|
2276
|
+
include Aws::Structure
|
2277
|
+
end
|
2278
|
+
|
2014
2279
|
# @note When making an API call, you may pass DescribeContactFlowRequest
|
2015
2280
|
# data as a hash:
|
2016
2281
|
#
|
@@ -2062,7 +2327,7 @@ module Aws::Connect
|
|
2062
2327
|
# @return [String]
|
2063
2328
|
#
|
2064
2329
|
# @!attribute [rw] contact_id
|
2065
|
-
# The identifier of the
|
2330
|
+
# The identifier of the contact.
|
2066
2331
|
# @return [String]
|
2067
2332
|
#
|
2068
2333
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeContactRequest AWS API Documentation
|
@@ -3774,7 +4039,8 @@ module Aws::Connect
|
|
3774
4039
|
# @return [Array<Types::HoursOfOperationConfig>]
|
3775
4040
|
#
|
3776
4041
|
# @!attribute [rw] tags
|
3777
|
-
#
|
4042
|
+
# The tags used to organize, track, or control access for this
|
4043
|
+
# resource.
|
3778
4044
|
# @return [Hash<String,String>]
|
3779
4045
|
#
|
3780
4046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/HoursOfOperation AWS API Documentation
|
@@ -3882,6 +4148,19 @@ module Aws::Connect
|
|
3882
4148
|
include Aws::Structure
|
3883
4149
|
end
|
3884
4150
|
|
4151
|
+
# An entity with the same name already exists.
|
4152
|
+
#
|
4153
|
+
# @!attribute [rw] message
|
4154
|
+
# @return [String]
|
4155
|
+
#
|
4156
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/IdempotencyException AWS API Documentation
|
4157
|
+
#
|
4158
|
+
class IdempotencyException < Struct.new(
|
4159
|
+
:message)
|
4160
|
+
SENSITIVE = []
|
4161
|
+
include Aws::Structure
|
4162
|
+
end
|
4163
|
+
|
3885
4164
|
# The Amazon Connect instance.
|
3886
4165
|
#
|
3887
4166
|
# @!attribute [rw] id
|
@@ -4159,6 +4438,19 @@ module Aws::Connect
|
|
4159
4438
|
include Aws::Structure
|
4160
4439
|
end
|
4161
4440
|
|
4441
|
+
# The problems with the module. Please fix before trying again.
|
4442
|
+
#
|
4443
|
+
# @!attribute [rw] problems
|
4444
|
+
# @return [Array<Types::ProblemDetail>]
|
4445
|
+
#
|
4446
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/InvalidContactFlowModuleException AWS API Documentation
|
4447
|
+
#
|
4448
|
+
class InvalidContactFlowModuleException < Struct.new(
|
4449
|
+
:problems)
|
4450
|
+
SENSITIVE = []
|
4451
|
+
include Aws::Structure
|
4452
|
+
end
|
4453
|
+
|
4162
4454
|
# One or more of the specified parameters are not valid.
|
4163
4455
|
#
|
4164
4456
|
# @!attribute [rw] message
|
@@ -4520,6 +4812,64 @@ module Aws::Connect
|
|
4520
4812
|
include Aws::Structure
|
4521
4813
|
end
|
4522
4814
|
|
4815
|
+
# @note When making an API call, you may pass ListContactFlowModulesRequest
|
4816
|
+
# data as a hash:
|
4817
|
+
#
|
4818
|
+
# {
|
4819
|
+
# instance_id: "InstanceId", # required
|
4820
|
+
# next_token: "NextToken",
|
4821
|
+
# max_results: 1,
|
4822
|
+
# contact_flow_module_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
4823
|
+
# }
|
4824
|
+
#
|
4825
|
+
# @!attribute [rw] instance_id
|
4826
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4827
|
+
# instanceId in the ARN of the instance.
|
4828
|
+
# @return [String]
|
4829
|
+
#
|
4830
|
+
# @!attribute [rw] next_token
|
4831
|
+
# The token for the next set of results. Use the value returned in the
|
4832
|
+
# previous response in the next request to retrieve the next set of
|
4833
|
+
# results.
|
4834
|
+
# @return [String]
|
4835
|
+
#
|
4836
|
+
# @!attribute [rw] max_results
|
4837
|
+
# The maximum number of results to return per page.
|
4838
|
+
# @return [Integer]
|
4839
|
+
#
|
4840
|
+
# @!attribute [rw] contact_flow_module_state
|
4841
|
+
# The state of the contact flow module.
|
4842
|
+
# @return [String]
|
4843
|
+
#
|
4844
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesRequest AWS API Documentation
|
4845
|
+
#
|
4846
|
+
class ListContactFlowModulesRequest < Struct.new(
|
4847
|
+
:instance_id,
|
4848
|
+
:next_token,
|
4849
|
+
:max_results,
|
4850
|
+
:contact_flow_module_state)
|
4851
|
+
SENSITIVE = []
|
4852
|
+
include Aws::Structure
|
4853
|
+
end
|
4854
|
+
|
4855
|
+
# @!attribute [rw] contact_flow_modules_summary_list
|
4856
|
+
# Information about the contact flow module.
|
4857
|
+
# @return [Array<Types::ContactFlowModuleSummary>]
|
4858
|
+
#
|
4859
|
+
# @!attribute [rw] next_token
|
4860
|
+
# If there are additional results, this is the token for the next set
|
4861
|
+
# of results.
|
4862
|
+
# @return [String]
|
4863
|
+
#
|
4864
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListContactFlowModulesResponse AWS API Documentation
|
4865
|
+
#
|
4866
|
+
class ListContactFlowModulesResponse < Struct.new(
|
4867
|
+
:contact_flow_modules_summary_list,
|
4868
|
+
:next_token)
|
4869
|
+
SENSITIVE = []
|
4870
|
+
include Aws::Structure
|
4871
|
+
end
|
4872
|
+
|
4523
4873
|
# @note When making an API call, you may pass ListContactFlowsRequest
|
4524
4874
|
# data as a hash:
|
4525
4875
|
#
|
@@ -4606,7 +4956,7 @@ module Aws::Connect
|
|
4606
4956
|
# previous response in the next request to retrieve the next set of
|
4607
4957
|
# results.
|
4608
4958
|
#
|
4609
|
-
# This is not expected to be set
|
4959
|
+
# This is not expected to be set, because the value returned in the
|
4610
4960
|
# previous response is always null.
|
4611
4961
|
# @return [String]
|
4612
4962
|
#
|
@@ -4864,6 +5214,7 @@ module Aws::Connect
|
|
4864
5214
|
# @return [String]
|
4865
5215
|
#
|
4866
5216
|
# @!attribute [rw] integration_type
|
5217
|
+
# The integration type.
|
4867
5218
|
# @return [String]
|
4868
5219
|
#
|
4869
5220
|
# @!attribute [rw] next_token
|
@@ -6005,7 +6356,8 @@ module Aws::Connect
|
|
6005
6356
|
# @return [String]
|
6006
6357
|
#
|
6007
6358
|
# @!attribute [rw] tags
|
6008
|
-
#
|
6359
|
+
# The tags used to organize, track, or control access for this
|
6360
|
+
# resource.
|
6009
6361
|
# @return [Hash<String,String>]
|
6010
6362
|
#
|
6011
6363
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/Queue AWS API Documentation
|
@@ -6143,7 +6495,8 @@ module Aws::Connect
|
|
6143
6495
|
# @return [Types::QuickConnectConfig]
|
6144
6496
|
#
|
6145
6497
|
# @!attribute [rw] tags
|
6146
|
-
#
|
6498
|
+
# The tags used to organize, track, or control access for this
|
6499
|
+
# resource.
|
6147
6500
|
# @return [Hash<String,String>]
|
6148
6501
|
#
|
6149
6502
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/QuickConnect AWS API Documentation
|
@@ -6282,7 +6635,7 @@ module Aws::Connect
|
|
6282
6635
|
# @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
6636
|
#
|
6284
6637
|
# @!attribute [rw] url
|
6285
|
-
# Information about
|
6638
|
+
# Information about the URL reference if the `referenceType` is `URL`.
|
6286
6639
|
# Otherwise, null.
|
6287
6640
|
# @return [Types::UrlReference]
|
6288
6641
|
#
|
@@ -6681,7 +7034,8 @@ module Aws::Connect
|
|
6681
7034
|
# @return [String]
|
6682
7035
|
#
|
6683
7036
|
# @!attribute [rw] tags
|
6684
|
-
#
|
7037
|
+
# The tags used to organize, track, or control access for this
|
7038
|
+
# resource.
|
6685
7039
|
# @return [Hash<String,String>]
|
6686
7040
|
#
|
6687
7041
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/SecurityProfile AWS API Documentation
|
@@ -7542,6 +7896,134 @@ module Aws::Connect
|
|
7542
7896
|
include Aws::Structure
|
7543
7897
|
end
|
7544
7898
|
|
7899
|
+
# @note When making an API call, you may pass UpdateContactFlowMetadataRequest
|
7900
|
+
# data as a hash:
|
7901
|
+
#
|
7902
|
+
# {
|
7903
|
+
# instance_id: "InstanceId", # required
|
7904
|
+
# contact_flow_id: "ContactFlowId", # required
|
7905
|
+
# name: "ContactFlowName",
|
7906
|
+
# description: "ContactFlowDescription",
|
7907
|
+
# contact_flow_state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
7908
|
+
# }
|
7909
|
+
#
|
7910
|
+
# @!attribute [rw] instance_id
|
7911
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7912
|
+
# instanceId in the ARN of the instance.
|
7913
|
+
# @return [String]
|
7914
|
+
#
|
7915
|
+
# @!attribute [rw] contact_flow_id
|
7916
|
+
# The identifier of the contact flow.
|
7917
|
+
# @return [String]
|
7918
|
+
#
|
7919
|
+
# @!attribute [rw] name
|
7920
|
+
# TThe name of the contact flow.
|
7921
|
+
# @return [String]
|
7922
|
+
#
|
7923
|
+
# @!attribute [rw] description
|
7924
|
+
# The description of the contact flow.
|
7925
|
+
# @return [String]
|
7926
|
+
#
|
7927
|
+
# @!attribute [rw] contact_flow_state
|
7928
|
+
# The state of contact flow.
|
7929
|
+
# @return [String]
|
7930
|
+
#
|
7931
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowMetadataRequest AWS API Documentation
|
7932
|
+
#
|
7933
|
+
class UpdateContactFlowMetadataRequest < Struct.new(
|
7934
|
+
:instance_id,
|
7935
|
+
:contact_flow_id,
|
7936
|
+
:name,
|
7937
|
+
:description,
|
7938
|
+
:contact_flow_state)
|
7939
|
+
SENSITIVE = []
|
7940
|
+
include Aws::Structure
|
7941
|
+
end
|
7942
|
+
|
7943
|
+
# @note When making an API call, you may pass UpdateContactFlowModuleContentRequest
|
7944
|
+
# data as a hash:
|
7945
|
+
#
|
7946
|
+
# {
|
7947
|
+
# instance_id: "InstanceId", # required
|
7948
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
7949
|
+
# content: "ContactFlowModuleContent", # required
|
7950
|
+
# }
|
7951
|
+
#
|
7952
|
+
# @!attribute [rw] instance_id
|
7953
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7954
|
+
# instanceId in the ARN of the instance.
|
7955
|
+
# @return [String]
|
7956
|
+
#
|
7957
|
+
# @!attribute [rw] contact_flow_module_id
|
7958
|
+
# The identifier of the contact flow module.
|
7959
|
+
# @return [String]
|
7960
|
+
#
|
7961
|
+
# @!attribute [rw] content
|
7962
|
+
# The content of the contact flow module.
|
7963
|
+
# @return [String]
|
7964
|
+
#
|
7965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentRequest AWS API Documentation
|
7966
|
+
#
|
7967
|
+
class UpdateContactFlowModuleContentRequest < Struct.new(
|
7968
|
+
:instance_id,
|
7969
|
+
:contact_flow_module_id,
|
7970
|
+
:content)
|
7971
|
+
SENSITIVE = []
|
7972
|
+
include Aws::Structure
|
7973
|
+
end
|
7974
|
+
|
7975
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleContentResponse AWS API Documentation
|
7976
|
+
#
|
7977
|
+
class UpdateContactFlowModuleContentResponse < Aws::EmptyStructure; end
|
7978
|
+
|
7979
|
+
# @note When making an API call, you may pass UpdateContactFlowModuleMetadataRequest
|
7980
|
+
# data as a hash:
|
7981
|
+
#
|
7982
|
+
# {
|
7983
|
+
# instance_id: "InstanceId", # required
|
7984
|
+
# contact_flow_module_id: "ContactFlowModuleId", # required
|
7985
|
+
# name: "ContactFlowModuleName",
|
7986
|
+
# description: "ContactFlowModuleDescription",
|
7987
|
+
# state: "ACTIVE", # accepts ACTIVE, ARCHIVED
|
7988
|
+
# }
|
7989
|
+
#
|
7990
|
+
# @!attribute [rw] instance_id
|
7991
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7992
|
+
# instanceId in the ARN of the instance.
|
7993
|
+
# @return [String]
|
7994
|
+
#
|
7995
|
+
# @!attribute [rw] contact_flow_module_id
|
7996
|
+
# The identifier of the contact flow module.
|
7997
|
+
# @return [String]
|
7998
|
+
#
|
7999
|
+
# @!attribute [rw] name
|
8000
|
+
# The name of the contact flow module.
|
8001
|
+
# @return [String]
|
8002
|
+
#
|
8003
|
+
# @!attribute [rw] description
|
8004
|
+
# The description of the contact flow module.
|
8005
|
+
# @return [String]
|
8006
|
+
#
|
8007
|
+
# @!attribute [rw] state
|
8008
|
+
# The state of contact flow module.
|
8009
|
+
# @return [String]
|
8010
|
+
#
|
8011
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataRequest AWS API Documentation
|
8012
|
+
#
|
8013
|
+
class UpdateContactFlowModuleMetadataRequest < Struct.new(
|
8014
|
+
:instance_id,
|
8015
|
+
:contact_flow_module_id,
|
8016
|
+
:name,
|
8017
|
+
:description,
|
8018
|
+
:state)
|
8019
|
+
SENSITIVE = []
|
8020
|
+
include Aws::Structure
|
8021
|
+
end
|
8022
|
+
|
8023
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateContactFlowModuleMetadataResponse AWS API Documentation
|
8024
|
+
#
|
8025
|
+
class UpdateContactFlowModuleMetadataResponse < Aws::EmptyStructure; end
|
8026
|
+
|
7545
8027
|
# @note When making an API call, you may pass UpdateContactFlowNameRequest
|
7546
8028
|
# data as a hash:
|
7547
8029
|
#
|