@aws-sdk/client-connectcases 3.787.0 → 3.790.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/dist-cjs/index.js +178 -7
- package/dist-es/commands/CreateRelatedItemCommand.js +2 -1
- package/dist-es/commands/SearchRelatedItemsCommand.js +2 -1
- package/dist-es/models/models_0.js +105 -0
- package/dist-es/protocols/Aws_restJson1.js +62 -2
- package/dist-types/commands/CreateCaseCommand.d.ts +0 -1
- package/dist-types/commands/CreateDomainCommand.d.ts +0 -1
- package/dist-types/commands/CreateRelatedItemCommand.d.ts +17 -0
- package/dist-types/commands/DeleteDomainCommand.d.ts +0 -1
- package/dist-types/commands/DeleteLayoutCommand.d.ts +0 -1
- package/dist-types/commands/DeleteTemplateCommand.d.ts +0 -1
- package/dist-types/commands/PutCaseEventConfigurationCommand.d.ts +5 -0
- package/dist-types/commands/SearchRelatedItemsCommand.d.ts +23 -0
- package/dist-types/models/models_0.d.ts +255 -3
- package/dist-types/ts3.4/models/models_0.d.ts +124 -0
- package/package.json +1 -1
|
@@ -70,6 +70,11 @@ declare const PutCaseEventConfigurationCommand_base: {
|
|
|
70
70
|
* @throws {@link AccessDeniedException} (client fault)
|
|
71
71
|
* <p>You do not have sufficient access to perform this action.</p>
|
|
72
72
|
*
|
|
73
|
+
* @throws {@link ConflictException} (client fault)
|
|
74
|
+
* <p>The requested operation would cause a conflict with the current state of a service
|
|
75
|
+
* resource associated with the request. Resolve the conflict before retrying this request. See
|
|
76
|
+
* the accompanying error message for details.</p>
|
|
77
|
+
*
|
|
73
78
|
* @throws {@link InternalServerException} (server fault)
|
|
74
79
|
* <p>We couldn't process your request because of an issue with the server. Try again
|
|
75
80
|
* later.</p>
|
|
@@ -55,6 +55,10 @@ declare const SearchRelatedItemsCommand_base: {
|
|
|
55
55
|
* file: { // FileFilter
|
|
56
56
|
* fileArn: "STRING_VALUE",
|
|
57
57
|
* },
|
|
58
|
+
* sla: { // SlaFilter
|
|
59
|
+
* name: "STRING_VALUE",
|
|
60
|
+
* status: "STRING_VALUE",
|
|
61
|
+
* },
|
|
58
62
|
* },
|
|
59
63
|
* ],
|
|
60
64
|
* };
|
|
@@ -80,6 +84,25 @@ declare const SearchRelatedItemsCommand_base: {
|
|
|
80
84
|
* // file: { // FileContent
|
|
81
85
|
* // fileArn: "STRING_VALUE", // required
|
|
82
86
|
* // },
|
|
87
|
+
* // sla: { // SlaContent
|
|
88
|
+
* // slaConfiguration: { // SlaConfiguration
|
|
89
|
+
* // name: "STRING_VALUE", // required
|
|
90
|
+
* // type: "STRING_VALUE", // required
|
|
91
|
+
* // status: "STRING_VALUE", // required
|
|
92
|
+
* // fieldId: "STRING_VALUE",
|
|
93
|
+
* // targetFieldValues: [ // SlaFieldValueUnionList
|
|
94
|
+
* // { // FieldValueUnion Union: only one key present
|
|
95
|
+
* // stringValue: "STRING_VALUE",
|
|
96
|
+
* // doubleValue: Number("double"),
|
|
97
|
+
* // booleanValue: true || false,
|
|
98
|
+
* // emptyValue: {},
|
|
99
|
+
* // userArnValue: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // ],
|
|
102
|
+
* // targetTime: new Date("TIMESTAMP"), // required
|
|
103
|
+
* // completionTime: new Date("TIMESTAMP"),
|
|
104
|
+
* // },
|
|
105
|
+
* // },
|
|
83
106
|
* // },
|
|
84
107
|
* // tags: { // Tags
|
|
85
108
|
* // "<keys>": "STRING_VALUE",
|
|
@@ -520,6 +520,7 @@ export declare const RelatedItemType: {
|
|
|
520
520
|
readonly COMMENT: "Comment";
|
|
521
521
|
readonly CONTACT: "Contact";
|
|
522
522
|
readonly FILE: "File";
|
|
523
|
+
readonly SLA: "Sla";
|
|
523
524
|
};
|
|
524
525
|
/**
|
|
525
526
|
* @public
|
|
@@ -696,11 +697,84 @@ export interface FileContent {
|
|
|
696
697
|
*/
|
|
697
698
|
fileArn: string | undefined;
|
|
698
699
|
}
|
|
700
|
+
/**
|
|
701
|
+
* @public
|
|
702
|
+
* @enum
|
|
703
|
+
*/
|
|
704
|
+
export declare const SlaType: {
|
|
705
|
+
readonly CASE_FIELD: "CaseField";
|
|
706
|
+
};
|
|
707
|
+
/**
|
|
708
|
+
* @public
|
|
709
|
+
*/
|
|
710
|
+
export type SlaType = (typeof SlaType)[keyof typeof SlaType];
|
|
711
|
+
/**
|
|
712
|
+
* <p>Represents the input configuration of an SLA being created.</p>
|
|
713
|
+
* @public
|
|
714
|
+
*/
|
|
715
|
+
export interface SlaInputConfiguration {
|
|
716
|
+
/**
|
|
717
|
+
* <p>Name of an SLA.</p>
|
|
718
|
+
* @public
|
|
719
|
+
*/
|
|
720
|
+
name: string | undefined;
|
|
721
|
+
/**
|
|
722
|
+
* <p>Type of SLA.</p>
|
|
723
|
+
* @public
|
|
724
|
+
*/
|
|
725
|
+
type: SlaType | undefined;
|
|
726
|
+
/**
|
|
727
|
+
* <p>Unique identifier of a field.</p>
|
|
728
|
+
* @public
|
|
729
|
+
*/
|
|
730
|
+
fieldId?: string | undefined;
|
|
731
|
+
/**
|
|
732
|
+
* <p>Represents a list of target field values for the fieldId specified in SlaInputConfiguration.
|
|
733
|
+
* The SLA is considered met if any one of these target field values matches the actual field value.</p>
|
|
734
|
+
* @public
|
|
735
|
+
*/
|
|
736
|
+
targetFieldValues?: FieldValueUnion[] | undefined;
|
|
737
|
+
/**
|
|
738
|
+
* <p>Target duration in minutes within which an SLA should be completed.</p>
|
|
739
|
+
* @public
|
|
740
|
+
*/
|
|
741
|
+
targetSlaMinutes: number | undefined;
|
|
742
|
+
}
|
|
743
|
+
/**
|
|
744
|
+
* <p>Represents the content of an SLA.</p>
|
|
745
|
+
* @public
|
|
746
|
+
*/
|
|
747
|
+
export type SlaInputContent = SlaInputContent.SlaInputConfigurationMember | SlaInputContent.$UnknownMember;
|
|
748
|
+
/**
|
|
749
|
+
* @public
|
|
750
|
+
*/
|
|
751
|
+
export declare namespace SlaInputContent {
|
|
752
|
+
/**
|
|
753
|
+
* <p>Represents an input SLA configuration.</p>
|
|
754
|
+
* @public
|
|
755
|
+
*/
|
|
756
|
+
interface SlaInputConfigurationMember {
|
|
757
|
+
slaInputConfiguration: SlaInputConfiguration;
|
|
758
|
+
$unknown?: never;
|
|
759
|
+
}
|
|
760
|
+
/**
|
|
761
|
+
* @public
|
|
762
|
+
*/
|
|
763
|
+
interface $UnknownMember {
|
|
764
|
+
slaInputConfiguration?: never;
|
|
765
|
+
$unknown: [string, any];
|
|
766
|
+
}
|
|
767
|
+
interface Visitor<T> {
|
|
768
|
+
slaInputConfiguration: (value: SlaInputConfiguration) => T;
|
|
769
|
+
_: (name: string, value: any) => T;
|
|
770
|
+
}
|
|
771
|
+
const visit: <T>(value: SlaInputContent, visitor: Visitor<T>) => T;
|
|
772
|
+
}
|
|
699
773
|
/**
|
|
700
774
|
* <p>Represents the content of a related item to be created.</p>
|
|
701
775
|
* @public
|
|
702
776
|
*/
|
|
703
|
-
export type RelatedItemInputContent = RelatedItemInputContent.CommentMember | RelatedItemInputContent.ContactMember | RelatedItemInputContent.FileMember | RelatedItemInputContent.$UnknownMember;
|
|
777
|
+
export type RelatedItemInputContent = RelatedItemInputContent.CommentMember | RelatedItemInputContent.ContactMember | RelatedItemInputContent.FileMember | RelatedItemInputContent.SlaMember | RelatedItemInputContent.$UnknownMember;
|
|
704
778
|
/**
|
|
705
779
|
* @public
|
|
706
780
|
*/
|
|
@@ -713,6 +787,7 @@ export declare namespace RelatedItemInputContent {
|
|
|
713
787
|
contact: Contact;
|
|
714
788
|
comment?: never;
|
|
715
789
|
file?: never;
|
|
790
|
+
sla?: never;
|
|
716
791
|
$unknown?: never;
|
|
717
792
|
}
|
|
718
793
|
/**
|
|
@@ -723,6 +798,7 @@ export declare namespace RelatedItemInputContent {
|
|
|
723
798
|
contact?: never;
|
|
724
799
|
comment: CommentContent;
|
|
725
800
|
file?: never;
|
|
801
|
+
sla?: never;
|
|
726
802
|
$unknown?: never;
|
|
727
803
|
}
|
|
728
804
|
/**
|
|
@@ -733,6 +809,18 @@ export declare namespace RelatedItemInputContent {
|
|
|
733
809
|
contact?: never;
|
|
734
810
|
comment?: never;
|
|
735
811
|
file: FileContent;
|
|
812
|
+
sla?: never;
|
|
813
|
+
$unknown?: never;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* <p>Represents the content of an SLA to be created.</p>
|
|
817
|
+
* @public
|
|
818
|
+
*/
|
|
819
|
+
interface SlaMember {
|
|
820
|
+
contact?: never;
|
|
821
|
+
comment?: never;
|
|
822
|
+
file?: never;
|
|
823
|
+
sla: SlaInputContent;
|
|
736
824
|
$unknown?: never;
|
|
737
825
|
}
|
|
738
826
|
/**
|
|
@@ -742,12 +830,14 @@ export declare namespace RelatedItemInputContent {
|
|
|
742
830
|
contact?: never;
|
|
743
831
|
comment?: never;
|
|
744
832
|
file?: never;
|
|
833
|
+
sla?: never;
|
|
745
834
|
$unknown: [string, any];
|
|
746
835
|
}
|
|
747
836
|
interface Visitor<T> {
|
|
748
837
|
contact: (value: Contact) => T;
|
|
749
838
|
comment: (value: CommentContent) => T;
|
|
750
839
|
file: (value: FileContent) => T;
|
|
840
|
+
sla: (value: SlaInputContent) => T;
|
|
751
841
|
_: (name: string, value: any) => T;
|
|
752
842
|
}
|
|
753
843
|
const visit: <T>(value: RelatedItemInputContent, visitor: Visitor<T>) => T;
|
|
@@ -843,11 +933,41 @@ export interface FileFilter {
|
|
|
843
933
|
*/
|
|
844
934
|
fileArn?: string | undefined;
|
|
845
935
|
}
|
|
936
|
+
/**
|
|
937
|
+
* @public
|
|
938
|
+
* @enum
|
|
939
|
+
*/
|
|
940
|
+
export declare const SlaStatus: {
|
|
941
|
+
readonly ACTIVE: "Active";
|
|
942
|
+
readonly MET: "Met";
|
|
943
|
+
readonly NOT_MET: "NotMet";
|
|
944
|
+
readonly OVERDUE: "Overdue";
|
|
945
|
+
};
|
|
946
|
+
/**
|
|
947
|
+
* @public
|
|
948
|
+
*/
|
|
949
|
+
export type SlaStatus = (typeof SlaStatus)[keyof typeof SlaStatus];
|
|
950
|
+
/**
|
|
951
|
+
* <p>A filter for related items of type <code>SLA</code>.</p>
|
|
952
|
+
* @public
|
|
953
|
+
*/
|
|
954
|
+
export interface SlaFilter {
|
|
955
|
+
/**
|
|
956
|
+
* <p>Name of an SLA.</p>
|
|
957
|
+
* @public
|
|
958
|
+
*/
|
|
959
|
+
name?: string | undefined;
|
|
960
|
+
/**
|
|
961
|
+
* <p>Status of an SLA.</p>
|
|
962
|
+
* @public
|
|
963
|
+
*/
|
|
964
|
+
status?: SlaStatus | undefined;
|
|
965
|
+
}
|
|
846
966
|
/**
|
|
847
967
|
* <p>The list of types of related items and their parameters to use for filtering.</p>
|
|
848
968
|
* @public
|
|
849
969
|
*/
|
|
850
|
-
export type RelatedItemTypeFilter = RelatedItemTypeFilter.CommentMember | RelatedItemTypeFilter.ContactMember | RelatedItemTypeFilter.FileMember | RelatedItemTypeFilter.$UnknownMember;
|
|
970
|
+
export type RelatedItemTypeFilter = RelatedItemTypeFilter.CommentMember | RelatedItemTypeFilter.ContactMember | RelatedItemTypeFilter.FileMember | RelatedItemTypeFilter.SlaMember | RelatedItemTypeFilter.$UnknownMember;
|
|
851
971
|
/**
|
|
852
972
|
* @public
|
|
853
973
|
*/
|
|
@@ -860,6 +980,7 @@ export declare namespace RelatedItemTypeFilter {
|
|
|
860
980
|
contact: ContactFilter;
|
|
861
981
|
comment?: never;
|
|
862
982
|
file?: never;
|
|
983
|
+
sla?: never;
|
|
863
984
|
$unknown?: never;
|
|
864
985
|
}
|
|
865
986
|
/**
|
|
@@ -870,6 +991,7 @@ export declare namespace RelatedItemTypeFilter {
|
|
|
870
991
|
contact?: never;
|
|
871
992
|
comment: CommentFilter;
|
|
872
993
|
file?: never;
|
|
994
|
+
sla?: never;
|
|
873
995
|
$unknown?: never;
|
|
874
996
|
}
|
|
875
997
|
/**
|
|
@@ -880,6 +1002,18 @@ export declare namespace RelatedItemTypeFilter {
|
|
|
880
1002
|
contact?: never;
|
|
881
1003
|
comment?: never;
|
|
882
1004
|
file: FileFilter;
|
|
1005
|
+
sla?: never;
|
|
1006
|
+
$unknown?: never;
|
|
1007
|
+
}
|
|
1008
|
+
/**
|
|
1009
|
+
* <p> Filter for related items of type <code>SLA</code>.</p>
|
|
1010
|
+
* @public
|
|
1011
|
+
*/
|
|
1012
|
+
interface SlaMember {
|
|
1013
|
+
contact?: never;
|
|
1014
|
+
comment?: never;
|
|
1015
|
+
file?: never;
|
|
1016
|
+
sla: SlaFilter;
|
|
883
1017
|
$unknown?: never;
|
|
884
1018
|
}
|
|
885
1019
|
/**
|
|
@@ -889,12 +1023,14 @@ export declare namespace RelatedItemTypeFilter {
|
|
|
889
1023
|
contact?: never;
|
|
890
1024
|
comment?: never;
|
|
891
1025
|
file?: never;
|
|
1026
|
+
sla?: never;
|
|
892
1027
|
$unknown: [string, any];
|
|
893
1028
|
}
|
|
894
1029
|
interface Visitor<T> {
|
|
895
1030
|
contact: (value: ContactFilter) => T;
|
|
896
1031
|
comment: (value: CommentFilter) => T;
|
|
897
1032
|
file: (value: FileFilter) => T;
|
|
1033
|
+
sla: (value: SlaFilter) => T;
|
|
898
1034
|
_: (name: string, value: any) => T;
|
|
899
1035
|
}
|
|
900
1036
|
const visit: <T>(value: RelatedItemTypeFilter, visitor: Visitor<T>) => T;
|
|
@@ -952,11 +1088,63 @@ export interface ContactContent {
|
|
|
952
1088
|
*/
|
|
953
1089
|
connectedToSystemTime: Date | undefined;
|
|
954
1090
|
}
|
|
1091
|
+
/**
|
|
1092
|
+
* <p>Represents an SLA configuration.</p>
|
|
1093
|
+
* @public
|
|
1094
|
+
*/
|
|
1095
|
+
export interface SlaConfiguration {
|
|
1096
|
+
/**
|
|
1097
|
+
* <p>Name of an SLA.</p>
|
|
1098
|
+
* @public
|
|
1099
|
+
*/
|
|
1100
|
+
name: string | undefined;
|
|
1101
|
+
/**
|
|
1102
|
+
* <p>Type of SLA.</p>
|
|
1103
|
+
* @public
|
|
1104
|
+
*/
|
|
1105
|
+
type: SlaType | undefined;
|
|
1106
|
+
/**
|
|
1107
|
+
* <p>Status of an SLA.</p>
|
|
1108
|
+
* @public
|
|
1109
|
+
*/
|
|
1110
|
+
status: SlaStatus | undefined;
|
|
1111
|
+
/**
|
|
1112
|
+
* <p>Unique identifier of a field.</p>
|
|
1113
|
+
* @public
|
|
1114
|
+
*/
|
|
1115
|
+
fieldId?: string | undefined;
|
|
1116
|
+
/**
|
|
1117
|
+
* <p>Represents a list of target field values for the fieldId specified in SlaConfiguration.</p>
|
|
1118
|
+
* @public
|
|
1119
|
+
*/
|
|
1120
|
+
targetFieldValues?: FieldValueUnion[] | undefined;
|
|
1121
|
+
/**
|
|
1122
|
+
* <p>Target time by which an SLA should be completed.</p>
|
|
1123
|
+
* @public
|
|
1124
|
+
*/
|
|
1125
|
+
targetTime: Date | undefined;
|
|
1126
|
+
/**
|
|
1127
|
+
* <p>Time at which an SLA was completed.</p>
|
|
1128
|
+
* @public
|
|
1129
|
+
*/
|
|
1130
|
+
completionTime?: Date | undefined;
|
|
1131
|
+
}
|
|
1132
|
+
/**
|
|
1133
|
+
* <p>Represents the content of an SLA to be returned to agents.</p>
|
|
1134
|
+
* @public
|
|
1135
|
+
*/
|
|
1136
|
+
export interface SlaContent {
|
|
1137
|
+
/**
|
|
1138
|
+
* <p>Represents an SLA configuration.</p>
|
|
1139
|
+
* @public
|
|
1140
|
+
*/
|
|
1141
|
+
slaConfiguration: SlaConfiguration | undefined;
|
|
1142
|
+
}
|
|
955
1143
|
/**
|
|
956
1144
|
* <p>Represents the content of a particular type of related item.</p>
|
|
957
1145
|
* @public
|
|
958
1146
|
*/
|
|
959
|
-
export type RelatedItemContent = RelatedItemContent.CommentMember | RelatedItemContent.ContactMember | RelatedItemContent.FileMember | RelatedItemContent.$UnknownMember;
|
|
1147
|
+
export type RelatedItemContent = RelatedItemContent.CommentMember | RelatedItemContent.ContactMember | RelatedItemContent.FileMember | RelatedItemContent.SlaMember | RelatedItemContent.$UnknownMember;
|
|
960
1148
|
/**
|
|
961
1149
|
* @public
|
|
962
1150
|
*/
|
|
@@ -969,6 +1157,7 @@ export declare namespace RelatedItemContent {
|
|
|
969
1157
|
contact: ContactContent;
|
|
970
1158
|
comment?: never;
|
|
971
1159
|
file?: never;
|
|
1160
|
+
sla?: never;
|
|
972
1161
|
$unknown?: never;
|
|
973
1162
|
}
|
|
974
1163
|
/**
|
|
@@ -979,6 +1168,7 @@ export declare namespace RelatedItemContent {
|
|
|
979
1168
|
contact?: never;
|
|
980
1169
|
comment: CommentContent;
|
|
981
1170
|
file?: never;
|
|
1171
|
+
sla?: never;
|
|
982
1172
|
$unknown?: never;
|
|
983
1173
|
}
|
|
984
1174
|
/**
|
|
@@ -989,6 +1179,18 @@ export declare namespace RelatedItemContent {
|
|
|
989
1179
|
contact?: never;
|
|
990
1180
|
comment?: never;
|
|
991
1181
|
file: FileContent;
|
|
1182
|
+
sla?: never;
|
|
1183
|
+
$unknown?: never;
|
|
1184
|
+
}
|
|
1185
|
+
/**
|
|
1186
|
+
* <p>Represents the content of an SLA to be returned to agents.</p>
|
|
1187
|
+
* @public
|
|
1188
|
+
*/
|
|
1189
|
+
interface SlaMember {
|
|
1190
|
+
contact?: never;
|
|
1191
|
+
comment?: never;
|
|
1192
|
+
file?: never;
|
|
1193
|
+
sla: SlaContent;
|
|
992
1194
|
$unknown?: never;
|
|
993
1195
|
}
|
|
994
1196
|
/**
|
|
@@ -998,12 +1200,14 @@ export declare namespace RelatedItemContent {
|
|
|
998
1200
|
contact?: never;
|
|
999
1201
|
comment?: never;
|
|
1000
1202
|
file?: never;
|
|
1203
|
+
sla?: never;
|
|
1001
1204
|
$unknown: [string, any];
|
|
1002
1205
|
}
|
|
1003
1206
|
interface Visitor<T> {
|
|
1004
1207
|
contact: (value: ContactContent) => T;
|
|
1005
1208
|
comment: (value: CommentContent) => T;
|
|
1006
1209
|
file: (value: FileContent) => T;
|
|
1210
|
+
sla: (value: SlaContent) => T;
|
|
1007
1211
|
_: (name: string, value: any) => T;
|
|
1008
1212
|
}
|
|
1009
1213
|
const visit: <T>(value: RelatedItemContent, visitor: Visitor<T>) => T;
|
|
@@ -3293,3 +3497,51 @@ export interface SearchCasesRequest {
|
|
|
3293
3497
|
*/
|
|
3294
3498
|
fields?: FieldIdentifier[] | undefined;
|
|
3295
3499
|
}
|
|
3500
|
+
/**
|
|
3501
|
+
* @internal
|
|
3502
|
+
*/
|
|
3503
|
+
export declare const SlaInputConfigurationFilterSensitiveLog: (obj: SlaInputConfiguration) => any;
|
|
3504
|
+
/**
|
|
3505
|
+
* @internal
|
|
3506
|
+
*/
|
|
3507
|
+
export declare const SlaInputContentFilterSensitiveLog: (obj: SlaInputContent) => any;
|
|
3508
|
+
/**
|
|
3509
|
+
* @internal
|
|
3510
|
+
*/
|
|
3511
|
+
export declare const RelatedItemInputContentFilterSensitiveLog: (obj: RelatedItemInputContent) => any;
|
|
3512
|
+
/**
|
|
3513
|
+
* @internal
|
|
3514
|
+
*/
|
|
3515
|
+
export declare const CreateRelatedItemRequestFilterSensitiveLog: (obj: CreateRelatedItemRequest) => any;
|
|
3516
|
+
/**
|
|
3517
|
+
* @internal
|
|
3518
|
+
*/
|
|
3519
|
+
export declare const SlaFilterFilterSensitiveLog: (obj: SlaFilter) => any;
|
|
3520
|
+
/**
|
|
3521
|
+
* @internal
|
|
3522
|
+
*/
|
|
3523
|
+
export declare const RelatedItemTypeFilterFilterSensitiveLog: (obj: RelatedItemTypeFilter) => any;
|
|
3524
|
+
/**
|
|
3525
|
+
* @internal
|
|
3526
|
+
*/
|
|
3527
|
+
export declare const SearchRelatedItemsRequestFilterSensitiveLog: (obj: SearchRelatedItemsRequest) => any;
|
|
3528
|
+
/**
|
|
3529
|
+
* @internal
|
|
3530
|
+
*/
|
|
3531
|
+
export declare const SlaConfigurationFilterSensitiveLog: (obj: SlaConfiguration) => any;
|
|
3532
|
+
/**
|
|
3533
|
+
* @internal
|
|
3534
|
+
*/
|
|
3535
|
+
export declare const SlaContentFilterSensitiveLog: (obj: SlaContent) => any;
|
|
3536
|
+
/**
|
|
3537
|
+
* @internal
|
|
3538
|
+
*/
|
|
3539
|
+
export declare const RelatedItemContentFilterSensitiveLog: (obj: RelatedItemContent) => any;
|
|
3540
|
+
/**
|
|
3541
|
+
* @internal
|
|
3542
|
+
*/
|
|
3543
|
+
export declare const SearchRelatedItemsResponseItemFilterSensitiveLog: (obj: SearchRelatedItemsResponseItem) => any;
|
|
3544
|
+
/**
|
|
3545
|
+
* @internal
|
|
3546
|
+
*/
|
|
3547
|
+
export declare const SearchRelatedItemsResponseFilterSensitiveLog: (obj: SearchRelatedItemsResponse) => any;
|
|
@@ -243,6 +243,7 @@ export declare const RelatedItemType: {
|
|
|
243
243
|
readonly COMMENT: "Comment";
|
|
244
244
|
readonly CONTACT: "Contact";
|
|
245
245
|
readonly FILE: "File";
|
|
246
|
+
readonly SLA: "Sla";
|
|
246
247
|
};
|
|
247
248
|
export type RelatedItemType =
|
|
248
249
|
(typeof RelatedItemType)[keyof typeof RelatedItemType];
|
|
@@ -294,40 +295,82 @@ export interface Contact {
|
|
|
294
295
|
export interface FileContent {
|
|
295
296
|
fileArn: string | undefined;
|
|
296
297
|
}
|
|
298
|
+
export declare const SlaType: {
|
|
299
|
+
readonly CASE_FIELD: "CaseField";
|
|
300
|
+
};
|
|
301
|
+
export type SlaType = (typeof SlaType)[keyof typeof SlaType];
|
|
302
|
+
export interface SlaInputConfiguration {
|
|
303
|
+
name: string | undefined;
|
|
304
|
+
type: SlaType | undefined;
|
|
305
|
+
fieldId?: string | undefined;
|
|
306
|
+
targetFieldValues?: FieldValueUnion[] | undefined;
|
|
307
|
+
targetSlaMinutes: number | undefined;
|
|
308
|
+
}
|
|
309
|
+
export type SlaInputContent =
|
|
310
|
+
| SlaInputContent.SlaInputConfigurationMember
|
|
311
|
+
| SlaInputContent.$UnknownMember;
|
|
312
|
+
export declare namespace SlaInputContent {
|
|
313
|
+
interface SlaInputConfigurationMember {
|
|
314
|
+
slaInputConfiguration: SlaInputConfiguration;
|
|
315
|
+
$unknown?: never;
|
|
316
|
+
}
|
|
317
|
+
interface $UnknownMember {
|
|
318
|
+
slaInputConfiguration?: never;
|
|
319
|
+
$unknown: [string, any];
|
|
320
|
+
}
|
|
321
|
+
interface Visitor<T> {
|
|
322
|
+
slaInputConfiguration: (value: SlaInputConfiguration) => T;
|
|
323
|
+
_: (name: string, value: any) => T;
|
|
324
|
+
}
|
|
325
|
+
const visit: <T>(value: SlaInputContent, visitor: Visitor<T>) => T;
|
|
326
|
+
}
|
|
297
327
|
export type RelatedItemInputContent =
|
|
298
328
|
| RelatedItemInputContent.CommentMember
|
|
299
329
|
| RelatedItemInputContent.ContactMember
|
|
300
330
|
| RelatedItemInputContent.FileMember
|
|
331
|
+
| RelatedItemInputContent.SlaMember
|
|
301
332
|
| RelatedItemInputContent.$UnknownMember;
|
|
302
333
|
export declare namespace RelatedItemInputContent {
|
|
303
334
|
interface ContactMember {
|
|
304
335
|
contact: Contact;
|
|
305
336
|
comment?: never;
|
|
306
337
|
file?: never;
|
|
338
|
+
sla?: never;
|
|
307
339
|
$unknown?: never;
|
|
308
340
|
}
|
|
309
341
|
interface CommentMember {
|
|
310
342
|
contact?: never;
|
|
311
343
|
comment: CommentContent;
|
|
312
344
|
file?: never;
|
|
345
|
+
sla?: never;
|
|
313
346
|
$unknown?: never;
|
|
314
347
|
}
|
|
315
348
|
interface FileMember {
|
|
316
349
|
contact?: never;
|
|
317
350
|
comment?: never;
|
|
318
351
|
file: FileContent;
|
|
352
|
+
sla?: never;
|
|
353
|
+
$unknown?: never;
|
|
354
|
+
}
|
|
355
|
+
interface SlaMember {
|
|
356
|
+
contact?: never;
|
|
357
|
+
comment?: never;
|
|
358
|
+
file?: never;
|
|
359
|
+
sla: SlaInputContent;
|
|
319
360
|
$unknown?: never;
|
|
320
361
|
}
|
|
321
362
|
interface $UnknownMember {
|
|
322
363
|
contact?: never;
|
|
323
364
|
comment?: never;
|
|
324
365
|
file?: never;
|
|
366
|
+
sla?: never;
|
|
325
367
|
$unknown: [string, any];
|
|
326
368
|
}
|
|
327
369
|
interface Visitor<T> {
|
|
328
370
|
contact: (value: Contact) => T;
|
|
329
371
|
comment: (value: CommentContent) => T;
|
|
330
372
|
file: (value: FileContent) => T;
|
|
373
|
+
sla: (value: SlaInputContent) => T;
|
|
331
374
|
_: (name: string, value: any) => T;
|
|
332
375
|
}
|
|
333
376
|
const visit: <T>(value: RelatedItemInputContent, visitor: Visitor<T>) => T;
|
|
@@ -358,40 +401,64 @@ export interface ContactFilter {
|
|
|
358
401
|
export interface FileFilter {
|
|
359
402
|
fileArn?: string | undefined;
|
|
360
403
|
}
|
|
404
|
+
export declare const SlaStatus: {
|
|
405
|
+
readonly ACTIVE: "Active";
|
|
406
|
+
readonly MET: "Met";
|
|
407
|
+
readonly NOT_MET: "NotMet";
|
|
408
|
+
readonly OVERDUE: "Overdue";
|
|
409
|
+
};
|
|
410
|
+
export type SlaStatus = (typeof SlaStatus)[keyof typeof SlaStatus];
|
|
411
|
+
export interface SlaFilter {
|
|
412
|
+
name?: string | undefined;
|
|
413
|
+
status?: SlaStatus | undefined;
|
|
414
|
+
}
|
|
361
415
|
export type RelatedItemTypeFilter =
|
|
362
416
|
| RelatedItemTypeFilter.CommentMember
|
|
363
417
|
| RelatedItemTypeFilter.ContactMember
|
|
364
418
|
| RelatedItemTypeFilter.FileMember
|
|
419
|
+
| RelatedItemTypeFilter.SlaMember
|
|
365
420
|
| RelatedItemTypeFilter.$UnknownMember;
|
|
366
421
|
export declare namespace RelatedItemTypeFilter {
|
|
367
422
|
interface ContactMember {
|
|
368
423
|
contact: ContactFilter;
|
|
369
424
|
comment?: never;
|
|
370
425
|
file?: never;
|
|
426
|
+
sla?: never;
|
|
371
427
|
$unknown?: never;
|
|
372
428
|
}
|
|
373
429
|
interface CommentMember {
|
|
374
430
|
contact?: never;
|
|
375
431
|
comment: CommentFilter;
|
|
376
432
|
file?: never;
|
|
433
|
+
sla?: never;
|
|
377
434
|
$unknown?: never;
|
|
378
435
|
}
|
|
379
436
|
interface FileMember {
|
|
380
437
|
contact?: never;
|
|
381
438
|
comment?: never;
|
|
382
439
|
file: FileFilter;
|
|
440
|
+
sla?: never;
|
|
441
|
+
$unknown?: never;
|
|
442
|
+
}
|
|
443
|
+
interface SlaMember {
|
|
444
|
+
contact?: never;
|
|
445
|
+
comment?: never;
|
|
446
|
+
file?: never;
|
|
447
|
+
sla: SlaFilter;
|
|
383
448
|
$unknown?: never;
|
|
384
449
|
}
|
|
385
450
|
interface $UnknownMember {
|
|
386
451
|
contact?: never;
|
|
387
452
|
comment?: never;
|
|
388
453
|
file?: never;
|
|
454
|
+
sla?: never;
|
|
389
455
|
$unknown: [string, any];
|
|
390
456
|
}
|
|
391
457
|
interface Visitor<T> {
|
|
392
458
|
contact: (value: ContactFilter) => T;
|
|
393
459
|
comment: (value: CommentFilter) => T;
|
|
394
460
|
file: (value: FileFilter) => T;
|
|
461
|
+
sla: (value: SlaFilter) => T;
|
|
395
462
|
_: (name: string, value: any) => T;
|
|
396
463
|
}
|
|
397
464
|
const visit: <T>(value: RelatedItemTypeFilter, visitor: Visitor<T>) => T;
|
|
@@ -408,40 +475,65 @@ export interface ContactContent {
|
|
|
408
475
|
channel: string | undefined;
|
|
409
476
|
connectedToSystemTime: Date | undefined;
|
|
410
477
|
}
|
|
478
|
+
export interface SlaConfiguration {
|
|
479
|
+
name: string | undefined;
|
|
480
|
+
type: SlaType | undefined;
|
|
481
|
+
status: SlaStatus | undefined;
|
|
482
|
+
fieldId?: string | undefined;
|
|
483
|
+
targetFieldValues?: FieldValueUnion[] | undefined;
|
|
484
|
+
targetTime: Date | undefined;
|
|
485
|
+
completionTime?: Date | undefined;
|
|
486
|
+
}
|
|
487
|
+
export interface SlaContent {
|
|
488
|
+
slaConfiguration: SlaConfiguration | undefined;
|
|
489
|
+
}
|
|
411
490
|
export type RelatedItemContent =
|
|
412
491
|
| RelatedItemContent.CommentMember
|
|
413
492
|
| RelatedItemContent.ContactMember
|
|
414
493
|
| RelatedItemContent.FileMember
|
|
494
|
+
| RelatedItemContent.SlaMember
|
|
415
495
|
| RelatedItemContent.$UnknownMember;
|
|
416
496
|
export declare namespace RelatedItemContent {
|
|
417
497
|
interface ContactMember {
|
|
418
498
|
contact: ContactContent;
|
|
419
499
|
comment?: never;
|
|
420
500
|
file?: never;
|
|
501
|
+
sla?: never;
|
|
421
502
|
$unknown?: never;
|
|
422
503
|
}
|
|
423
504
|
interface CommentMember {
|
|
424
505
|
contact?: never;
|
|
425
506
|
comment: CommentContent;
|
|
426
507
|
file?: never;
|
|
508
|
+
sla?: never;
|
|
427
509
|
$unknown?: never;
|
|
428
510
|
}
|
|
429
511
|
interface FileMember {
|
|
430
512
|
contact?: never;
|
|
431
513
|
comment?: never;
|
|
432
514
|
file: FileContent;
|
|
515
|
+
sla?: never;
|
|
516
|
+
$unknown?: never;
|
|
517
|
+
}
|
|
518
|
+
interface SlaMember {
|
|
519
|
+
contact?: never;
|
|
520
|
+
comment?: never;
|
|
521
|
+
file?: never;
|
|
522
|
+
sla: SlaContent;
|
|
433
523
|
$unknown?: never;
|
|
434
524
|
}
|
|
435
525
|
interface $UnknownMember {
|
|
436
526
|
contact?: never;
|
|
437
527
|
comment?: never;
|
|
438
528
|
file?: never;
|
|
529
|
+
sla?: never;
|
|
439
530
|
$unknown: [string, any];
|
|
440
531
|
}
|
|
441
532
|
interface Visitor<T> {
|
|
442
533
|
contact: (value: ContactContent) => T;
|
|
443
534
|
comment: (value: CommentContent) => T;
|
|
444
535
|
file: (value: FileContent) => T;
|
|
536
|
+
sla: (value: SlaContent) => T;
|
|
445
537
|
_: (name: string, value: any) => T;
|
|
446
538
|
}
|
|
447
539
|
const visit: <T>(value: RelatedItemContent, visitor: Visitor<T>) => T;
|
|
@@ -1184,3 +1276,35 @@ export interface SearchCasesRequest {
|
|
|
1184
1276
|
sorts?: Sort[] | undefined;
|
|
1185
1277
|
fields?: FieldIdentifier[] | undefined;
|
|
1186
1278
|
}
|
|
1279
|
+
export declare const SlaInputConfigurationFilterSensitiveLog: (
|
|
1280
|
+
obj: SlaInputConfiguration
|
|
1281
|
+
) => any;
|
|
1282
|
+
export declare const SlaInputContentFilterSensitiveLog: (
|
|
1283
|
+
obj: SlaInputContent
|
|
1284
|
+
) => any;
|
|
1285
|
+
export declare const RelatedItemInputContentFilterSensitiveLog: (
|
|
1286
|
+
obj: RelatedItemInputContent
|
|
1287
|
+
) => any;
|
|
1288
|
+
export declare const CreateRelatedItemRequestFilterSensitiveLog: (
|
|
1289
|
+
obj: CreateRelatedItemRequest
|
|
1290
|
+
) => any;
|
|
1291
|
+
export declare const SlaFilterFilterSensitiveLog: (obj: SlaFilter) => any;
|
|
1292
|
+
export declare const RelatedItemTypeFilterFilterSensitiveLog: (
|
|
1293
|
+
obj: RelatedItemTypeFilter
|
|
1294
|
+
) => any;
|
|
1295
|
+
export declare const SearchRelatedItemsRequestFilterSensitiveLog: (
|
|
1296
|
+
obj: SearchRelatedItemsRequest
|
|
1297
|
+
) => any;
|
|
1298
|
+
export declare const SlaConfigurationFilterSensitiveLog: (
|
|
1299
|
+
obj: SlaConfiguration
|
|
1300
|
+
) => any;
|
|
1301
|
+
export declare const SlaContentFilterSensitiveLog: (obj: SlaContent) => any;
|
|
1302
|
+
export declare const RelatedItemContentFilterSensitiveLog: (
|
|
1303
|
+
obj: RelatedItemContent
|
|
1304
|
+
) => any;
|
|
1305
|
+
export declare const SearchRelatedItemsResponseItemFilterSensitiveLog: (
|
|
1306
|
+
obj: SearchRelatedItemsResponseItem
|
|
1307
|
+
) => any;
|
|
1308
|
+
export declare const SearchRelatedItemsResponseFilterSensitiveLog: (
|
|
1309
|
+
obj: SearchRelatedItemsResponse
|
|
1310
|
+
) => any;
|