@aws-sdk/client-connect 3.150.0 → 3.160.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.
- package/CHANGELOG.md +27 -0
- package/README.md +1 -1
- package/dist-cjs/Connect.js +15 -0
- package/dist-cjs/commands/SearchSecurityProfilesCommand.js +36 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_1.js +32 -12
- package/dist-cjs/pagination/SearchSecurityProfilesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +134 -5
- package/dist-es/Connect.js +15 -0
- package/dist-es/commands/SearchSecurityProfilesCommand.js +39 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_1.js +11 -6
- package/dist-es/pagination/SearchSecurityProfilesPaginator.js +75 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +148 -0
- package/dist-types/Connect.d.ts +46 -46
- package/dist-types/ConnectClient.d.ts +4 -3
- package/dist-types/commands/AssociatePhoneNumberContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/CreateContactFlowCommand.d.ts +2 -2
- package/dist-types/commands/CreateContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DeleteContactFlowCommand.d.ts +1 -1
- package/dist-types/commands/DeleteContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DescribeContactFlowCommand.d.ts +2 -2
- package/dist-types/commands/DescribeContactFlowModuleCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateLambdaFunctionCommand.d.ts +1 -1
- package/dist-types/commands/DisassociatePhoneNumberContactFlowCommand.d.ts +2 -2
- package/dist-types/commands/ListContactFlowModulesCommand.d.ts +1 -1
- package/dist-types/commands/ListContactFlowsCommand.d.ts +3 -3
- package/dist-types/commands/ListLambdaFunctionsCommand.d.ts +1 -1
- package/dist-types/commands/SearchSecurityProfilesCommand.d.ts +36 -0
- package/dist-types/commands/StartChatContactCommand.d.ts +1 -1
- package/dist-types/commands/StartOutboundVoiceContactCommand.d.ts +5 -5
- package/dist-types/commands/StartTaskContactCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/TransferContactCommand.d.ts +2 -2
- package/dist-types/commands/UpdateContactAttributesCommand.d.ts +1 -9
- package/dist-types/commands/UpdateContactFlowContentCommand.d.ts +2 -2
- package/dist-types/commands/UpdateContactFlowMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactFlowModuleContentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactFlowModuleMetadataCommand.d.ts +1 -1
- package/dist-types/commands/UpdateContactFlowNameCommand.d.ts +2 -2
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +91 -88
- package/dist-types/models/models_1.d.ts +185 -61
- package/dist-types/pagination/SearchSecurityProfilesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +3 -0
- package/dist-types/ts3.4/Connect.d.ts +5 -0
- package/dist-types/ts3.4/ConnectClient.d.ts +3 -2
- package/dist-types/ts3.4/commands/SearchSecurityProfilesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_1.d.ts +72 -13
- package/dist-types/ts3.4/pagination/SearchSecurityProfilesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +3 -0
- package/package.json +27 -27
|
@@ -138,7 +138,7 @@ export interface AgentStatus {
|
|
|
138
138
|
*/
|
|
139
139
|
State?: AgentStatusState | string;
|
|
140
140
|
/**
|
|
141
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
141
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
142
142
|
*/
|
|
143
143
|
Tags?: Record<string, string>;
|
|
144
144
|
}
|
|
@@ -543,7 +543,7 @@ export interface AssociatePhoneNumberContactFlowRequest {
|
|
|
543
543
|
*/
|
|
544
544
|
InstanceId: string | undefined;
|
|
545
545
|
/**
|
|
546
|
-
* <p>The identifier of the
|
|
546
|
+
* <p>The identifier of the flow.</p>
|
|
547
547
|
*/
|
|
548
548
|
ContactFlowId: string | undefined;
|
|
549
549
|
}
|
|
@@ -642,7 +642,7 @@ export interface ClaimPhoneNumberRequest {
|
|
|
642
642
|
*/
|
|
643
643
|
PhoneNumberDescription?: string;
|
|
644
644
|
/**
|
|
645
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
645
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
646
646
|
*/
|
|
647
647
|
Tags?: Record<string, string>;
|
|
648
648
|
/**
|
|
@@ -695,7 +695,7 @@ export interface CreateAgentStatusRequest {
|
|
|
695
695
|
*/
|
|
696
696
|
DisplayOrder?: number;
|
|
697
697
|
/**
|
|
698
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
698
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
699
699
|
*/
|
|
700
700
|
Tags?: Record<string, string>;
|
|
701
701
|
}
|
|
@@ -738,34 +738,34 @@ export interface CreateContactFlowRequest {
|
|
|
738
738
|
*/
|
|
739
739
|
InstanceId: string | undefined;
|
|
740
740
|
/**
|
|
741
|
-
* <p>The name of the
|
|
741
|
+
* <p>The name of the flow.</p>
|
|
742
742
|
*/
|
|
743
743
|
Name: string | undefined;
|
|
744
744
|
/**
|
|
745
|
-
* <p>The type of the
|
|
745
|
+
* <p>The type of the flow. For descriptions of the available types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types">Choose a flow type</a> in the <i>Amazon Connect Administrator
|
|
746
746
|
* Guide</i>.</p>
|
|
747
747
|
*/
|
|
748
748
|
Type: ContactFlowType | string | undefined;
|
|
749
749
|
/**
|
|
750
|
-
* <p>The description of the
|
|
750
|
+
* <p>The description of the flow. </p>
|
|
751
751
|
*/
|
|
752
752
|
Description?: string;
|
|
753
753
|
/**
|
|
754
|
-
* <p>The content of the
|
|
754
|
+
* <p>The content of the flow. </p>
|
|
755
755
|
*/
|
|
756
756
|
Content: string | undefined;
|
|
757
757
|
/**
|
|
758
|
-
* <p>
|
|
758
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
759
759
|
*/
|
|
760
760
|
Tags?: Record<string, string>;
|
|
761
761
|
}
|
|
762
762
|
export interface CreateContactFlowResponse {
|
|
763
763
|
/**
|
|
764
|
-
* <p>The identifier of the
|
|
764
|
+
* <p>The identifier of the flow.</p>
|
|
765
765
|
*/
|
|
766
766
|
ContactFlowId?: string;
|
|
767
767
|
/**
|
|
768
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
768
|
+
* <p>The Amazon Resource Name (ARN) of the flow.</p>
|
|
769
769
|
*/
|
|
770
770
|
ContactFlowArn?: string;
|
|
771
771
|
}
|
|
@@ -779,13 +779,13 @@ export interface ProblemDetail {
|
|
|
779
779
|
message?: string;
|
|
780
780
|
}
|
|
781
781
|
/**
|
|
782
|
-
* <p>The
|
|
782
|
+
* <p>The flow is not valid.</p>
|
|
783
783
|
*/
|
|
784
784
|
export declare class InvalidContactFlowException extends __BaseException {
|
|
785
785
|
readonly name: "InvalidContactFlowException";
|
|
786
786
|
readonly $fault: "client";
|
|
787
787
|
/**
|
|
788
|
-
* <p>The problems with the
|
|
788
|
+
* <p>The problems with the flow. Please fix before trying again.</p>
|
|
789
789
|
*/
|
|
790
790
|
problems?: ProblemDetail[];
|
|
791
791
|
/**
|
|
@@ -799,19 +799,19 @@ export interface CreateContactFlowModuleRequest {
|
|
|
799
799
|
*/
|
|
800
800
|
InstanceId: string | undefined;
|
|
801
801
|
/**
|
|
802
|
-
* <p>The name of the
|
|
802
|
+
* <p>The name of the flow module.</p>
|
|
803
803
|
*/
|
|
804
804
|
Name: string | undefined;
|
|
805
805
|
/**
|
|
806
|
-
* <p>The description of the
|
|
806
|
+
* <p>The description of the flow module. </p>
|
|
807
807
|
*/
|
|
808
808
|
Description?: string;
|
|
809
809
|
/**
|
|
810
|
-
* <p>The content of the
|
|
810
|
+
* <p>The content of the flow module.</p>
|
|
811
811
|
*/
|
|
812
812
|
Content: string | undefined;
|
|
813
813
|
/**
|
|
814
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
814
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
815
815
|
*/
|
|
816
816
|
Tags?: Record<string, string>;
|
|
817
817
|
/**
|
|
@@ -822,11 +822,11 @@ export interface CreateContactFlowModuleRequest {
|
|
|
822
822
|
}
|
|
823
823
|
export interface CreateContactFlowModuleResponse {
|
|
824
824
|
/**
|
|
825
|
-
* <p>The identifier of the
|
|
825
|
+
* <p>The identifier of the flow module.</p>
|
|
826
826
|
*/
|
|
827
827
|
Id?: string;
|
|
828
828
|
/**
|
|
829
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
829
|
+
* <p>The Amazon Resource Name (ARN) of the flow module.</p>
|
|
830
830
|
*/
|
|
831
831
|
Arn?: string;
|
|
832
832
|
}
|
|
@@ -903,7 +903,7 @@ export interface CreateHoursOfOperationRequest {
|
|
|
903
903
|
*/
|
|
904
904
|
Config: HoursOfOperationConfig[] | undefined;
|
|
905
905
|
/**
|
|
906
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
906
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
907
907
|
*/
|
|
908
908
|
Tags?: Record<string, string>;
|
|
909
909
|
}
|
|
@@ -980,6 +980,9 @@ export interface CreateIntegrationAssociationRequest {
|
|
|
980
980
|
IntegrationType: IntegrationType | string | undefined;
|
|
981
981
|
/**
|
|
982
982
|
* <p>The Amazon Resource Name (ARN) of the integration.</p>
|
|
983
|
+
* <note>
|
|
984
|
+
* <p>When integrating with Amazon Pinpoint, the Amazon Connect and Amazon Pinpoint instances must be in the same account.</p>
|
|
985
|
+
* </note>
|
|
983
986
|
*/
|
|
984
987
|
IntegrationArn: string | undefined;
|
|
985
988
|
/**
|
|
@@ -995,7 +998,7 @@ export interface CreateIntegrationAssociationRequest {
|
|
|
995
998
|
*/
|
|
996
999
|
SourceType?: SourceType | string;
|
|
997
1000
|
/**
|
|
998
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1001
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
999
1002
|
*/
|
|
1000
1003
|
Tags?: Record<string, string>;
|
|
1001
1004
|
}
|
|
@@ -1056,7 +1059,7 @@ export interface CreateQueueRequest {
|
|
|
1056
1059
|
*/
|
|
1057
1060
|
QuickConnectIds?: string[];
|
|
1058
1061
|
/**
|
|
1059
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1062
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1060
1063
|
*/
|
|
1061
1064
|
Tags?: Record<string, string>;
|
|
1062
1065
|
}
|
|
@@ -1080,7 +1083,7 @@ export interface PhoneNumberQuickConnectConfig {
|
|
|
1080
1083
|
PhoneNumber: string | undefined;
|
|
1081
1084
|
}
|
|
1082
1085
|
/**
|
|
1083
|
-
* <p>Contains information about a queue for a quick connect. The
|
|
1086
|
+
* <p>Contains information about a queue for a quick connect. The flow must be of type
|
|
1084
1087
|
* Transfer to Queue.</p>
|
|
1085
1088
|
*/
|
|
1086
1089
|
export interface QueueQuickConnectConfig {
|
|
@@ -1089,7 +1092,7 @@ export interface QueueQuickConnectConfig {
|
|
|
1089
1092
|
*/
|
|
1090
1093
|
QueueId: string | undefined;
|
|
1091
1094
|
/**
|
|
1092
|
-
* <p>The identifier of the
|
|
1095
|
+
* <p>The identifier of the flow.</p>
|
|
1093
1096
|
*/
|
|
1094
1097
|
ContactFlowId: string | undefined;
|
|
1095
1098
|
}
|
|
@@ -1108,7 +1111,7 @@ export interface UserQuickConnectConfig {
|
|
|
1108
1111
|
*/
|
|
1109
1112
|
UserId: string | undefined;
|
|
1110
1113
|
/**
|
|
1111
|
-
* <p>The identifier of the
|
|
1114
|
+
* <p>The identifier of the flow.</p>
|
|
1112
1115
|
*/
|
|
1113
1116
|
ContactFlowId: string | undefined;
|
|
1114
1117
|
}
|
|
@@ -1152,7 +1155,7 @@ export interface CreateQuickConnectRequest {
|
|
|
1152
1155
|
*/
|
|
1153
1156
|
QuickConnectConfig: QuickConnectConfig | undefined;
|
|
1154
1157
|
/**
|
|
1155
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1158
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1156
1159
|
*/
|
|
1157
1160
|
Tags?: Record<string, string>;
|
|
1158
1161
|
}
|
|
@@ -1211,7 +1214,7 @@ export interface CreateRoutingProfileRequest {
|
|
|
1211
1214
|
*/
|
|
1212
1215
|
MediaConcurrencies: MediaConcurrency[] | undefined;
|
|
1213
1216
|
/**
|
|
1214
|
-
* <p>
|
|
1217
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1215
1218
|
*/
|
|
1216
1219
|
Tags?: Record<string, string>;
|
|
1217
1220
|
}
|
|
@@ -1243,7 +1246,7 @@ export interface CreateSecurityProfileRequest {
|
|
|
1243
1246
|
*/
|
|
1244
1247
|
InstanceId: string | undefined;
|
|
1245
1248
|
/**
|
|
1246
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1249
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1247
1250
|
*/
|
|
1248
1251
|
Tags?: Record<string, string>;
|
|
1249
1252
|
}
|
|
@@ -1448,7 +1451,7 @@ export interface PropertyValidationExceptionProperty {
|
|
|
1448
1451
|
Message: string | undefined;
|
|
1449
1452
|
}
|
|
1450
1453
|
/**
|
|
1451
|
-
* <p
|
|
1454
|
+
* <p>The property is not valid.</p>
|
|
1452
1455
|
*/
|
|
1453
1456
|
export declare class PropertyValidationException extends __BaseException {
|
|
1454
1457
|
readonly name: "PropertyValidationException";
|
|
@@ -1479,7 +1482,7 @@ export interface CreateUseCaseRequest {
|
|
|
1479
1482
|
*/
|
|
1480
1483
|
UseCaseType: UseCaseType | string | undefined;
|
|
1481
1484
|
/**
|
|
1482
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1485
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1483
1486
|
*/
|
|
1484
1487
|
Tags?: Record<string, string>;
|
|
1485
1488
|
}
|
|
@@ -1585,7 +1588,7 @@ export interface CreateUserRequest {
|
|
|
1585
1588
|
*/
|
|
1586
1589
|
InstanceId: string | undefined;
|
|
1587
1590
|
/**
|
|
1588
|
-
* <p>
|
|
1591
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1589
1592
|
*/
|
|
1590
1593
|
Tags?: Record<string, string>;
|
|
1591
1594
|
}
|
|
@@ -1614,7 +1617,7 @@ export interface CreateUserHierarchyGroupRequest {
|
|
|
1614
1617
|
*/
|
|
1615
1618
|
InstanceId: string | undefined;
|
|
1616
1619
|
/**
|
|
1617
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1620
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1618
1621
|
*/
|
|
1619
1622
|
Tags?: Record<string, string>;
|
|
1620
1623
|
}
|
|
@@ -1658,7 +1661,7 @@ export interface CreateVocabularyRequest {
|
|
|
1658
1661
|
*/
|
|
1659
1662
|
Content: string | undefined;
|
|
1660
1663
|
/**
|
|
1661
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
1664
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
1662
1665
|
*/
|
|
1663
1666
|
Tags?: Record<string, string>;
|
|
1664
1667
|
}
|
|
@@ -1688,7 +1691,7 @@ export interface DeleteContactFlowRequest {
|
|
|
1688
1691
|
*/
|
|
1689
1692
|
InstanceId: string | undefined;
|
|
1690
1693
|
/**
|
|
1691
|
-
* <p>The identifier of the
|
|
1694
|
+
* <p>The identifier of the flow.</p>
|
|
1692
1695
|
*/
|
|
1693
1696
|
ContactFlowId: string | undefined;
|
|
1694
1697
|
}
|
|
@@ -1698,7 +1701,7 @@ export interface DeleteContactFlowModuleRequest {
|
|
|
1698
1701
|
*/
|
|
1699
1702
|
InstanceId: string | undefined;
|
|
1700
1703
|
/**
|
|
1701
|
-
* <p>The identifier of the
|
|
1704
|
+
* <p>The identifier of the flow module.</p>
|
|
1702
1705
|
*/
|
|
1703
1706
|
ContactFlowModuleId: string | undefined;
|
|
1704
1707
|
}
|
|
@@ -1961,7 +1964,7 @@ export interface DescribeContactResponse {
|
|
|
1961
1964
|
Contact?: Contact;
|
|
1962
1965
|
}
|
|
1963
1966
|
/**
|
|
1964
|
-
* <p>The
|
|
1967
|
+
* <p>The flow has not been published.</p>
|
|
1965
1968
|
*/
|
|
1966
1969
|
export declare class ContactFlowNotPublishedException extends __BaseException {
|
|
1967
1970
|
readonly name: "ContactFlowNotPublishedException";
|
|
@@ -1978,7 +1981,7 @@ export interface DescribeContactFlowRequest {
|
|
|
1978
1981
|
*/
|
|
1979
1982
|
InstanceId: string | undefined;
|
|
1980
1983
|
/**
|
|
1981
|
-
* <p>The identifier of the
|
|
1984
|
+
* <p>The identifier of the flow.</p>
|
|
1982
1985
|
*/
|
|
1983
1986
|
ContactFlowId: string | undefined;
|
|
1984
1987
|
}
|
|
@@ -1987,46 +1990,46 @@ export declare enum ContactFlowState {
|
|
|
1987
1990
|
ARCHIVED = "ARCHIVED"
|
|
1988
1991
|
}
|
|
1989
1992
|
/**
|
|
1990
|
-
* <p>Contains information about a
|
|
1993
|
+
* <p>Contains information about a flow.</p>
|
|
1991
1994
|
*/
|
|
1992
1995
|
export interface ContactFlow {
|
|
1993
1996
|
/**
|
|
1994
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
1997
|
+
* <p>The Amazon Resource Name (ARN) of the flow.</p>
|
|
1995
1998
|
*/
|
|
1996
1999
|
Arn?: string;
|
|
1997
2000
|
/**
|
|
1998
|
-
* <p>The identifier of the
|
|
2001
|
+
* <p>The identifier of the flow.</p>
|
|
1999
2002
|
*/
|
|
2000
2003
|
Id?: string;
|
|
2001
2004
|
/**
|
|
2002
|
-
* <p>The name of the
|
|
2005
|
+
* <p>The name of the flow.</p>
|
|
2003
2006
|
*/
|
|
2004
2007
|
Name?: string;
|
|
2005
2008
|
/**
|
|
2006
|
-
* <p>The type of the
|
|
2009
|
+
* <p>The type of the flow. For descriptions of the available types, see <a href="https://docs.aws.amazon.com/connect/latest/adminguide/create-contact-flow.html#contact-flow-types">Choose a flow type</a> in the <i>Amazon Connect Administrator
|
|
2007
2010
|
* Guide</i>.</p>
|
|
2008
2011
|
*/
|
|
2009
2012
|
Type?: ContactFlowType | string;
|
|
2010
2013
|
/**
|
|
2011
|
-
* <p>The type of
|
|
2014
|
+
* <p>The type of flow.</p>
|
|
2012
2015
|
*/
|
|
2013
2016
|
State?: ContactFlowState | string;
|
|
2014
2017
|
/**
|
|
2015
|
-
* <p>The description of the
|
|
2018
|
+
* <p>The description of the flow.</p>
|
|
2016
2019
|
*/
|
|
2017
2020
|
Description?: string;
|
|
2018
2021
|
/**
|
|
2019
|
-
* <p>The content of the
|
|
2022
|
+
* <p>The content of the flow.</p>
|
|
2020
2023
|
*/
|
|
2021
2024
|
Content?: string;
|
|
2022
2025
|
/**
|
|
2023
|
-
* <p>
|
|
2026
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2024
2027
|
*/
|
|
2025
2028
|
Tags?: Record<string, string>;
|
|
2026
2029
|
}
|
|
2027
2030
|
export interface DescribeContactFlowResponse {
|
|
2028
2031
|
/**
|
|
2029
|
-
* <p>Information about the
|
|
2032
|
+
* <p>Information about the flow.</p>
|
|
2030
2033
|
*/
|
|
2031
2034
|
ContactFlow?: ContactFlow;
|
|
2032
2035
|
}
|
|
@@ -2036,7 +2039,7 @@ export interface DescribeContactFlowModuleRequest {
|
|
|
2036
2039
|
*/
|
|
2037
2040
|
InstanceId: string | undefined;
|
|
2038
2041
|
/**
|
|
2039
|
-
* <p>The identifier of the
|
|
2042
|
+
* <p>The identifier of the flow module.</p>
|
|
2040
2043
|
*/
|
|
2041
2044
|
ContactFlowModuleId: string | undefined;
|
|
2042
2045
|
}
|
|
@@ -2049,7 +2052,7 @@ export declare enum ContactFlowModuleStatus {
|
|
|
2049
2052
|
SAVED = "SAVED"
|
|
2050
2053
|
}
|
|
2051
2054
|
/**
|
|
2052
|
-
* <p>Contains information about a
|
|
2055
|
+
* <p>Contains information about a flow module.</p>
|
|
2053
2056
|
*/
|
|
2054
2057
|
export interface ContactFlowModule {
|
|
2055
2058
|
/**
|
|
@@ -2057,37 +2060,37 @@ export interface ContactFlowModule {
|
|
|
2057
2060
|
*/
|
|
2058
2061
|
Arn?: string;
|
|
2059
2062
|
/**
|
|
2060
|
-
* <p>The identifier of the
|
|
2063
|
+
* <p>The identifier of the flow module.</p>
|
|
2061
2064
|
*/
|
|
2062
2065
|
Id?: string;
|
|
2063
2066
|
/**
|
|
2064
|
-
* <p>The name of the
|
|
2067
|
+
* <p>The name of the flow module.</p>
|
|
2065
2068
|
*/
|
|
2066
2069
|
Name?: string;
|
|
2067
2070
|
/**
|
|
2068
|
-
* <p>The content of the
|
|
2071
|
+
* <p>The content of the flow module.</p>
|
|
2069
2072
|
*/
|
|
2070
2073
|
Content?: string;
|
|
2071
2074
|
/**
|
|
2072
|
-
* <p>The description of the
|
|
2075
|
+
* <p>The description of the flow module.</p>
|
|
2073
2076
|
*/
|
|
2074
2077
|
Description?: string;
|
|
2075
2078
|
/**
|
|
2076
|
-
* <p>The type of
|
|
2079
|
+
* <p>The type of flow module.</p>
|
|
2077
2080
|
*/
|
|
2078
2081
|
State?: ContactFlowModuleState | string;
|
|
2079
2082
|
/**
|
|
2080
|
-
* <p>The status of the
|
|
2083
|
+
* <p>The status of the flow module.</p>
|
|
2081
2084
|
*/
|
|
2082
2085
|
Status?: ContactFlowModuleStatus | string;
|
|
2083
2086
|
/**
|
|
2084
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2087
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2085
2088
|
*/
|
|
2086
2089
|
Tags?: Record<string, string>;
|
|
2087
2090
|
}
|
|
2088
2091
|
export interface DescribeContactFlowModuleResponse {
|
|
2089
2092
|
/**
|
|
2090
|
-
* <p>Information about the
|
|
2093
|
+
* <p>Information about the flow module.</p>
|
|
2091
2094
|
*/
|
|
2092
2095
|
ContactFlowModule?: ContactFlowModule;
|
|
2093
2096
|
}
|
|
@@ -2130,7 +2133,7 @@ export interface HoursOfOperation {
|
|
|
2130
2133
|
*/
|
|
2131
2134
|
Config?: HoursOfOperationConfig[];
|
|
2132
2135
|
/**
|
|
2133
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2136
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2134
2137
|
*/
|
|
2135
2138
|
Tags?: Record<string, string>;
|
|
2136
2139
|
}
|
|
@@ -2575,7 +2578,7 @@ export interface ClaimedPhoneNumberSummary {
|
|
|
2575
2578
|
*/
|
|
2576
2579
|
TargetArn?: string;
|
|
2577
2580
|
/**
|
|
2578
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2581
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2579
2582
|
*/
|
|
2580
2583
|
Tags?: Record<string, string>;
|
|
2581
2584
|
/**
|
|
@@ -2640,7 +2643,7 @@ export interface Queue {
|
|
|
2640
2643
|
*/
|
|
2641
2644
|
Status?: QueueStatus | string;
|
|
2642
2645
|
/**
|
|
2643
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2646
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2644
2647
|
*/
|
|
2645
2648
|
Tags?: Record<string, string>;
|
|
2646
2649
|
}
|
|
@@ -2685,7 +2688,7 @@ export interface QuickConnect {
|
|
|
2685
2688
|
*/
|
|
2686
2689
|
QuickConnectConfig?: QuickConnectConfig;
|
|
2687
2690
|
/**
|
|
2688
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2691
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2689
2692
|
*/
|
|
2690
2693
|
Tags?: Record<string, string>;
|
|
2691
2694
|
}
|
|
@@ -2739,7 +2742,7 @@ export interface RoutingProfile {
|
|
|
2739
2742
|
*/
|
|
2740
2743
|
DefaultOutboundQueueId?: string;
|
|
2741
2744
|
/**
|
|
2742
|
-
* <p>
|
|
2745
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2743
2746
|
*/
|
|
2744
2747
|
Tags?: Record<string, string>;
|
|
2745
2748
|
}
|
|
@@ -2784,7 +2787,7 @@ export interface SecurityProfile {
|
|
|
2784
2787
|
*/
|
|
2785
2788
|
Description?: string;
|
|
2786
2789
|
/**
|
|
2787
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2790
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2788
2791
|
*/
|
|
2789
2792
|
Tags?: Record<string, string>;
|
|
2790
2793
|
}
|
|
@@ -2933,7 +2936,7 @@ export interface HierarchyGroup {
|
|
|
2933
2936
|
*/
|
|
2934
2937
|
HierarchyPath?: HierarchyPath;
|
|
2935
2938
|
/**
|
|
2936
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
2939
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
2937
2940
|
*/
|
|
2938
2941
|
Tags?: Record<string, string>;
|
|
2939
2942
|
}
|
|
@@ -3050,7 +3053,7 @@ export interface Vocabulary {
|
|
|
3050
3053
|
*/
|
|
3051
3054
|
Content?: string;
|
|
3052
3055
|
/**
|
|
3053
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
3056
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
3054
3057
|
*/
|
|
3055
3058
|
Tags?: Record<string, string>;
|
|
3056
3059
|
}
|
|
@@ -3998,7 +4001,7 @@ export interface GetTaskTemplateResponse {
|
|
|
3998
4001
|
*/
|
|
3999
4002
|
CreatedTime?: Date;
|
|
4000
4003
|
/**
|
|
4001
|
-
* <p>The tags used to organize, track, or control access for this resource.</p>
|
|
4004
|
+
* <p>The tags used to organize, track, or control access for this resource. For example, { "tags": {"key1":"value1", "key2":"value2"} }.</p>
|
|
4002
4005
|
*/
|
|
4003
4006
|
Tags?: Record<string, string>;
|
|
4004
4007
|
}
|
|
@@ -4118,34 +4121,34 @@ export interface ListContactFlowModulesRequest {
|
|
|
4118
4121
|
*/
|
|
4119
4122
|
MaxResults?: number;
|
|
4120
4123
|
/**
|
|
4121
|
-
* <p>The state of the
|
|
4124
|
+
* <p>The state of the flow module.</p>
|
|
4122
4125
|
*/
|
|
4123
4126
|
ContactFlowModuleState?: ContactFlowModuleState | string;
|
|
4124
4127
|
}
|
|
4125
4128
|
/**
|
|
4126
|
-
* <p>Contains summary information about a
|
|
4129
|
+
* <p>Contains summary information about a flow.</p>
|
|
4127
4130
|
*/
|
|
4128
4131
|
export interface ContactFlowModuleSummary {
|
|
4129
4132
|
/**
|
|
4130
|
-
* <p>The identifier of the
|
|
4133
|
+
* <p>The identifier of the flow module.</p>
|
|
4131
4134
|
*/
|
|
4132
4135
|
Id?: string;
|
|
4133
4136
|
/**
|
|
4134
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
4137
|
+
* <p>The Amazon Resource Name (ARN) of the flow module.</p>
|
|
4135
4138
|
*/
|
|
4136
4139
|
Arn?: string;
|
|
4137
4140
|
/**
|
|
4138
|
-
* <p>The name of the
|
|
4141
|
+
* <p>The name of the flow module.</p>
|
|
4139
4142
|
*/
|
|
4140
4143
|
Name?: string;
|
|
4141
4144
|
/**
|
|
4142
|
-
* <p>The type of
|
|
4145
|
+
* <p>The type of flow module.</p>
|
|
4143
4146
|
*/
|
|
4144
4147
|
State?: ContactFlowModuleState | string;
|
|
4145
4148
|
}
|
|
4146
4149
|
export interface ListContactFlowModulesResponse {
|
|
4147
4150
|
/**
|
|
4148
|
-
* <p>Information about the
|
|
4151
|
+
* <p>Information about the flow module.</p>
|
|
4149
4152
|
*/
|
|
4150
4153
|
ContactFlowModulesSummaryList?: ContactFlowModuleSummary[];
|
|
4151
4154
|
/**
|
|
@@ -4159,7 +4162,7 @@ export interface ListContactFlowsRequest {
|
|
|
4159
4162
|
*/
|
|
4160
4163
|
InstanceId: string | undefined;
|
|
4161
4164
|
/**
|
|
4162
|
-
* <p>The type of
|
|
4165
|
+
* <p>The type of flow.</p>
|
|
4163
4166
|
*/
|
|
4164
4167
|
ContactFlowTypes?: (ContactFlowType | string)[];
|
|
4165
4168
|
/**
|
|
@@ -4168,40 +4171,40 @@ export interface ListContactFlowsRequest {
|
|
|
4168
4171
|
*/
|
|
4169
4172
|
NextToken?: string;
|
|
4170
4173
|
/**
|
|
4171
|
-
* <p>The maximum number of results to return per page.</p>
|
|
4174
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
4172
4175
|
*/
|
|
4173
4176
|
MaxResults?: number;
|
|
4174
4177
|
}
|
|
4175
4178
|
/**
|
|
4176
|
-
* <p>Contains summary information about a
|
|
4177
|
-
* <p>You can also create and update
|
|
4179
|
+
* <p>Contains summary information about a flow.</p>
|
|
4180
|
+
* <p>You can also create and update flows using the <a href="https://docs.aws.amazon.com/connect/latest/adminguide/flow-language.html">Amazon Connect
|
|
4178
4181
|
* Flow language</a>.</p>
|
|
4179
4182
|
*/
|
|
4180
4183
|
export interface ContactFlowSummary {
|
|
4181
4184
|
/**
|
|
4182
|
-
* <p>The identifier of the
|
|
4185
|
+
* <p>The identifier of the flow.</p>
|
|
4183
4186
|
*/
|
|
4184
4187
|
Id?: string;
|
|
4185
4188
|
/**
|
|
4186
|
-
* <p>The Amazon Resource Name (ARN) of the
|
|
4189
|
+
* <p>The Amazon Resource Name (ARN) of the flow.</p>
|
|
4187
4190
|
*/
|
|
4188
4191
|
Arn?: string;
|
|
4189
4192
|
/**
|
|
4190
|
-
* <p>The name of the
|
|
4193
|
+
* <p>The name of the flow.</p>
|
|
4191
4194
|
*/
|
|
4192
4195
|
Name?: string;
|
|
4193
4196
|
/**
|
|
4194
|
-
* <p>The type of
|
|
4197
|
+
* <p>The type of flow.</p>
|
|
4195
4198
|
*/
|
|
4196
4199
|
ContactFlowType?: ContactFlowType | string;
|
|
4197
4200
|
/**
|
|
4198
|
-
* <p>The type of
|
|
4201
|
+
* <p>The type of flow.</p>
|
|
4199
4202
|
*/
|
|
4200
4203
|
ContactFlowState?: ContactFlowState | string;
|
|
4201
4204
|
}
|
|
4202
4205
|
export interface ListContactFlowsResponse {
|
|
4203
4206
|
/**
|
|
4204
|
-
* <p>Information about the
|
|
4207
|
+
* <p>Information about the flows.</p>
|
|
4205
4208
|
*/
|
|
4206
4209
|
ContactFlowSummaryList?: ContactFlowSummary[];
|
|
4207
4210
|
/**
|
|
@@ -4437,7 +4440,7 @@ export declare namespace ReferenceSummary {
|
|
|
4437
4440
|
}
|
|
4438
4441
|
export interface ListContactReferencesResponse {
|
|
4439
4442
|
/**
|
|
4440
|
-
* <p>Information about the
|
|
4443
|
+
* <p>Information about the flows.</p>
|
|
4441
4444
|
*/
|
|
4442
4445
|
ReferenceSummaryList?: ReferenceSummary[];
|
|
4443
4446
|
/**
|
|
@@ -4513,7 +4516,7 @@ export interface ListHoursOfOperationsRequest {
|
|
|
4513
4516
|
*/
|
|
4514
4517
|
NextToken?: string;
|
|
4515
4518
|
/**
|
|
4516
|
-
* <p>The maximum number of results to return per page.</p>
|
|
4519
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
4517
4520
|
*/
|
|
4518
4521
|
MaxResults?: number;
|
|
4519
4522
|
}
|
|
@@ -4796,7 +4799,7 @@ export interface ListPhoneNumbersRequest {
|
|
|
4796
4799
|
*/
|
|
4797
4800
|
NextToken?: string;
|
|
4798
4801
|
/**
|
|
4799
|
-
* <p>The maximum number of results to return per page.</p>
|
|
4802
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
4800
4803
|
*/
|
|
4801
4804
|
MaxResults?: number;
|
|
4802
4805
|
}
|
|
@@ -4913,7 +4916,7 @@ export interface ListPromptsRequest {
|
|
|
4913
4916
|
*/
|
|
4914
4917
|
NextToken?: string;
|
|
4915
4918
|
/**
|
|
4916
|
-
* <p>The maximum number of results to return per page.</p>
|
|
4919
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
4917
4920
|
*/
|
|
4918
4921
|
MaxResults?: number;
|
|
4919
4922
|
}
|
|
@@ -4959,7 +4962,7 @@ export interface ListQueueQuickConnectsRequest {
|
|
|
4959
4962
|
*/
|
|
4960
4963
|
NextToken?: string;
|
|
4961
4964
|
/**
|
|
4962
|
-
* <p>The maximum number of results to return per page.</p>
|
|
4965
|
+
* <p>The maximum number of results to return per page. The default MaxResult size is 100.</p>
|
|
4963
4966
|
*/
|
|
4964
4967
|
MaxResults?: number;
|
|
4965
4968
|
}
|