@aws-sdk/client-connect 3.686.0 → 3.691.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-types/models/models_0.d.ts +366 -366
- package/dist-types/models/models_1.d.ts +638 -638
- package/dist-types/models/models_2.d.ts +585 -585
- package/dist-types/ts3.4/models/models_0.d.ts +368 -366
- package/dist-types/ts3.4/models/models_1.d.ts +646 -638
- package/dist-types/ts3.4/models/models_2.d.ts +589 -585
- package/package.json +7 -7
|
@@ -54,11 +54,11 @@ import {
|
|
|
54
54
|
VocabularyState,
|
|
55
55
|
} from "./models_0";
|
|
56
56
|
export interface AttributeCondition {
|
|
57
|
-
Name?: string;
|
|
58
|
-
Value?: string;
|
|
59
|
-
ProficiencyLevel?: number;
|
|
60
|
-
MatchCriteria?: MatchCriteria;
|
|
61
|
-
ComparisonOperator?: string;
|
|
57
|
+
Name?: string | undefined;
|
|
58
|
+
Value?: string | undefined;
|
|
59
|
+
ProficiencyLevel?: number | undefined;
|
|
60
|
+
MatchCriteria?: MatchCriteria | undefined;
|
|
61
|
+
ComparisonOperator?: string | undefined;
|
|
62
62
|
}
|
|
63
63
|
export declare const RoutingCriteriaStepStatus: {
|
|
64
64
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -69,10 +69,10 @@ export declare const RoutingCriteriaStepStatus: {
|
|
|
69
69
|
export type RoutingCriteriaStepStatus =
|
|
70
70
|
(typeof RoutingCriteriaStepStatus)[keyof typeof RoutingCriteriaStepStatus];
|
|
71
71
|
export interface SegmentAttributeValue {
|
|
72
|
-
ValueString?: string;
|
|
72
|
+
ValueString?: string | undefined;
|
|
73
73
|
}
|
|
74
74
|
export interface WisdomInfo {
|
|
75
|
-
SessionArn?: string;
|
|
75
|
+
SessionArn?: string | undefined;
|
|
76
76
|
}
|
|
77
77
|
export interface DescribeContactEvaluationRequest {
|
|
78
78
|
InstanceId: string | undefined;
|
|
@@ -117,22 +117,22 @@ export declare namespace EvaluationAnswerData {
|
|
|
117
117
|
const visit: <T>(value: EvaluationAnswerData, visitor: Visitor<T>) => T;
|
|
118
118
|
}
|
|
119
119
|
export interface EvaluationAnswerOutput {
|
|
120
|
-
Value?: EvaluationAnswerData;
|
|
121
|
-
SystemSuggestedValue?: EvaluationAnswerData;
|
|
120
|
+
Value?: EvaluationAnswerData | undefined;
|
|
121
|
+
SystemSuggestedValue?: EvaluationAnswerData | undefined;
|
|
122
122
|
}
|
|
123
123
|
export interface EvaluationScore {
|
|
124
|
-
Percentage?: number;
|
|
125
|
-
NotApplicable?: boolean;
|
|
126
|
-
AutomaticFail?: boolean;
|
|
124
|
+
Percentage?: number | undefined;
|
|
125
|
+
NotApplicable?: boolean | undefined;
|
|
126
|
+
AutomaticFail?: boolean | undefined;
|
|
127
127
|
}
|
|
128
128
|
export interface EvaluationMetadata {
|
|
129
129
|
ContactId: string | undefined;
|
|
130
130
|
EvaluatorArn: string | undefined;
|
|
131
|
-
ContactAgentId?: string;
|
|
132
|
-
Score?: EvaluationScore;
|
|
131
|
+
ContactAgentId?: string | undefined;
|
|
132
|
+
Score?: EvaluationScore | undefined;
|
|
133
133
|
}
|
|
134
134
|
export interface EvaluationNote {
|
|
135
|
-
Value?: string;
|
|
135
|
+
Value?: string | undefined;
|
|
136
136
|
}
|
|
137
137
|
export declare const EvaluationStatus: {
|
|
138
138
|
readonly DRAFT: "DRAFT";
|
|
@@ -147,15 +147,15 @@ export interface Evaluation {
|
|
|
147
147
|
Answers: Record<string, EvaluationAnswerOutput> | undefined;
|
|
148
148
|
Notes: Record<string, EvaluationNote> | undefined;
|
|
149
149
|
Status: EvaluationStatus | undefined;
|
|
150
|
-
Scores?: Record<string, EvaluationScore
|
|
150
|
+
Scores?: Record<string, EvaluationScore> | undefined;
|
|
151
151
|
CreatedTime: Date | undefined;
|
|
152
152
|
LastModifiedTime: Date | undefined;
|
|
153
|
-
Tags?: Record<string, string
|
|
153
|
+
Tags?: Record<string, string> | undefined;
|
|
154
154
|
}
|
|
155
155
|
export declare class ContactFlowNotPublishedException extends __BaseException {
|
|
156
156
|
readonly name: "ContactFlowNotPublishedException";
|
|
157
157
|
readonly $fault: "client";
|
|
158
|
-
Message?: string;
|
|
158
|
+
Message?: string | undefined;
|
|
159
159
|
constructor(
|
|
160
160
|
opts: __ExceptionOptionType<
|
|
161
161
|
ContactFlowNotPublishedException,
|
|
@@ -174,18 +174,18 @@ export declare const ContactFlowState: {
|
|
|
174
174
|
export type ContactFlowState =
|
|
175
175
|
(typeof ContactFlowState)[keyof typeof ContactFlowState];
|
|
176
176
|
export interface ContactFlow {
|
|
177
|
-
Arn?: string;
|
|
178
|
-
Id?: string;
|
|
179
|
-
Name?: string;
|
|
180
|
-
Type?: ContactFlowType;
|
|
181
|
-
State?: ContactFlowState;
|
|
182
|
-
Status?: ContactFlowStatus;
|
|
183
|
-
Description?: string;
|
|
184
|
-
Content?: string;
|
|
185
|
-
Tags?: Record<string, string
|
|
177
|
+
Arn?: string | undefined;
|
|
178
|
+
Id?: string | undefined;
|
|
179
|
+
Name?: string | undefined;
|
|
180
|
+
Type?: ContactFlowType | undefined;
|
|
181
|
+
State?: ContactFlowState | undefined;
|
|
182
|
+
Status?: ContactFlowStatus | undefined;
|
|
183
|
+
Description?: string | undefined;
|
|
184
|
+
Content?: string | undefined;
|
|
185
|
+
Tags?: Record<string, string> | undefined;
|
|
186
186
|
}
|
|
187
187
|
export interface DescribeContactFlowResponse {
|
|
188
|
-
ContactFlow?: ContactFlow;
|
|
188
|
+
ContactFlow?: ContactFlow | undefined;
|
|
189
189
|
}
|
|
190
190
|
export interface DescribeContactFlowModuleRequest {
|
|
191
191
|
InstanceId: string | undefined;
|
|
@@ -204,22 +204,22 @@ export declare const ContactFlowModuleStatus: {
|
|
|
204
204
|
export type ContactFlowModuleStatus =
|
|
205
205
|
(typeof ContactFlowModuleStatus)[keyof typeof ContactFlowModuleStatus];
|
|
206
206
|
export interface ContactFlowModule {
|
|
207
|
-
Arn?: string;
|
|
208
|
-
Id?: string;
|
|
209
|
-
Name?: string;
|
|
210
|
-
Content?: string;
|
|
211
|
-
Description?: string;
|
|
212
|
-
State?: ContactFlowModuleState;
|
|
213
|
-
Status?: ContactFlowModuleStatus;
|
|
214
|
-
Tags?: Record<string, string
|
|
207
|
+
Arn?: string | undefined;
|
|
208
|
+
Id?: string | undefined;
|
|
209
|
+
Name?: string | undefined;
|
|
210
|
+
Content?: string | undefined;
|
|
211
|
+
Description?: string | undefined;
|
|
212
|
+
State?: ContactFlowModuleState | undefined;
|
|
213
|
+
Status?: ContactFlowModuleStatus | undefined;
|
|
214
|
+
Tags?: Record<string, string> | undefined;
|
|
215
215
|
}
|
|
216
216
|
export interface DescribeContactFlowModuleResponse {
|
|
217
|
-
ContactFlowModule?: ContactFlowModule;
|
|
217
|
+
ContactFlowModule?: ContactFlowModule | undefined;
|
|
218
218
|
}
|
|
219
219
|
export interface DescribeEvaluationFormRequest {
|
|
220
220
|
InstanceId: string | undefined;
|
|
221
221
|
EvaluationFormId: string | undefined;
|
|
222
|
-
EvaluationFormVersion?: number;
|
|
222
|
+
EvaluationFormVersion?: number | undefined;
|
|
223
223
|
}
|
|
224
224
|
export declare const EvaluationFormVersionStatus: {
|
|
225
225
|
readonly ACTIVE: "ACTIVE";
|
|
@@ -232,18 +232,18 @@ export interface DescribeHoursOfOperationRequest {
|
|
|
232
232
|
HoursOfOperationId: string | undefined;
|
|
233
233
|
}
|
|
234
234
|
export interface HoursOfOperation {
|
|
235
|
-
HoursOfOperationId?: string;
|
|
236
|
-
HoursOfOperationArn?: string;
|
|
237
|
-
Name?: string;
|
|
238
|
-
Description?: string;
|
|
239
|
-
TimeZone?: string;
|
|
240
|
-
Config?: HoursOfOperationConfig[];
|
|
241
|
-
Tags?: Record<string, string
|
|
242
|
-
LastModifiedTime?: Date;
|
|
243
|
-
LastModifiedRegion?: string;
|
|
235
|
+
HoursOfOperationId?: string | undefined;
|
|
236
|
+
HoursOfOperationArn?: string | undefined;
|
|
237
|
+
Name?: string | undefined;
|
|
238
|
+
Description?: string | undefined;
|
|
239
|
+
TimeZone?: string | undefined;
|
|
240
|
+
Config?: HoursOfOperationConfig[] | undefined;
|
|
241
|
+
Tags?: Record<string, string> | undefined;
|
|
242
|
+
LastModifiedTime?: Date | undefined;
|
|
243
|
+
LastModifiedRegion?: string | undefined;
|
|
244
244
|
}
|
|
245
245
|
export interface DescribeHoursOfOperationResponse {
|
|
246
|
-
HoursOfOperation?: HoursOfOperation;
|
|
246
|
+
HoursOfOperation?: HoursOfOperation | undefined;
|
|
247
247
|
}
|
|
248
248
|
export interface DescribeInstanceRequest {
|
|
249
249
|
InstanceId: string | undefined;
|
|
@@ -256,21 +256,21 @@ export declare const InstanceStatus: {
|
|
|
256
256
|
export type InstanceStatus =
|
|
257
257
|
(typeof InstanceStatus)[keyof typeof InstanceStatus];
|
|
258
258
|
export interface InstanceStatusReason {
|
|
259
|
-
Message?: string;
|
|
259
|
+
Message?: string | undefined;
|
|
260
260
|
}
|
|
261
261
|
export interface Instance {
|
|
262
|
-
Id?: string;
|
|
263
|
-
Arn?: string;
|
|
264
|
-
IdentityManagementType?: DirectoryType;
|
|
265
|
-
InstanceAlias?: string;
|
|
266
|
-
CreatedTime?: Date;
|
|
267
|
-
ServiceRole?: string;
|
|
268
|
-
InstanceStatus?: InstanceStatus;
|
|
269
|
-
StatusReason?: InstanceStatusReason;
|
|
270
|
-
InboundCallsEnabled?: boolean;
|
|
271
|
-
OutboundCallsEnabled?: boolean;
|
|
272
|
-
InstanceAccessUrl?: string;
|
|
273
|
-
Tags?: Record<string, string
|
|
262
|
+
Id?: string | undefined;
|
|
263
|
+
Arn?: string | undefined;
|
|
264
|
+
IdentityManagementType?: DirectoryType | undefined;
|
|
265
|
+
InstanceAlias?: string | undefined;
|
|
266
|
+
CreatedTime?: Date | undefined;
|
|
267
|
+
ServiceRole?: string | undefined;
|
|
268
|
+
InstanceStatus?: InstanceStatus | undefined;
|
|
269
|
+
StatusReason?: InstanceStatusReason | undefined;
|
|
270
|
+
InboundCallsEnabled?: boolean | undefined;
|
|
271
|
+
OutboundCallsEnabled?: boolean | undefined;
|
|
272
|
+
InstanceAccessUrl?: string | undefined;
|
|
273
|
+
Tags?: Record<string, string> | undefined;
|
|
274
274
|
}
|
|
275
275
|
export declare const InstanceReplicationStatus: {
|
|
276
276
|
readonly INSTANCE_REPLICATION_COMPLETE: "INSTANCE_REPLICATION_COMPLETE";
|
|
@@ -283,18 +283,18 @@ export declare const InstanceReplicationStatus: {
|
|
|
283
283
|
export type InstanceReplicationStatus =
|
|
284
284
|
(typeof InstanceReplicationStatus)[keyof typeof InstanceReplicationStatus];
|
|
285
285
|
export interface ReplicationStatusSummary {
|
|
286
|
-
Region?: string;
|
|
287
|
-
ReplicationStatus?: InstanceReplicationStatus;
|
|
288
|
-
ReplicationStatusReason?: string;
|
|
286
|
+
Region?: string | undefined;
|
|
287
|
+
ReplicationStatus?: InstanceReplicationStatus | undefined;
|
|
288
|
+
ReplicationStatusReason?: string | undefined;
|
|
289
289
|
}
|
|
290
290
|
export interface ReplicationConfiguration {
|
|
291
|
-
ReplicationStatusSummaryList?: ReplicationStatusSummary[];
|
|
292
|
-
SourceRegion?: string;
|
|
293
|
-
GlobalSignInEndpoint?: string;
|
|
291
|
+
ReplicationStatusSummaryList?: ReplicationStatusSummary[] | undefined;
|
|
292
|
+
SourceRegion?: string | undefined;
|
|
293
|
+
GlobalSignInEndpoint?: string | undefined;
|
|
294
294
|
}
|
|
295
295
|
export interface DescribeInstanceResponse {
|
|
296
|
-
Instance?: Instance;
|
|
297
|
-
ReplicationConfiguration?: ReplicationConfiguration;
|
|
296
|
+
Instance?: Instance | undefined;
|
|
297
|
+
ReplicationConfiguration?: ReplicationConfiguration | undefined;
|
|
298
298
|
}
|
|
299
299
|
export declare const InstanceAttributeType: {
|
|
300
300
|
readonly AUTO_RESOLVE_BEST_VOICES: "AUTO_RESOLVE_BEST_VOICES";
|
|
@@ -316,11 +316,11 @@ export interface DescribeInstanceAttributeRequest {
|
|
|
316
316
|
AttributeType: InstanceAttributeType | undefined;
|
|
317
317
|
}
|
|
318
318
|
export interface Attribute {
|
|
319
|
-
AttributeType?: InstanceAttributeType;
|
|
320
|
-
Value?: string;
|
|
319
|
+
AttributeType?: InstanceAttributeType | undefined;
|
|
320
|
+
Value?: string | undefined;
|
|
321
321
|
}
|
|
322
322
|
export interface DescribeInstanceAttributeResponse {
|
|
323
|
-
Attribute?: Attribute;
|
|
323
|
+
Attribute?: Attribute | undefined;
|
|
324
324
|
}
|
|
325
325
|
export interface DescribeInstanceStorageConfigRequest {
|
|
326
326
|
InstanceId: string | undefined;
|
|
@@ -328,7 +328,7 @@ export interface DescribeInstanceStorageConfigRequest {
|
|
|
328
328
|
ResourceType: InstanceStorageResourceType | undefined;
|
|
329
329
|
}
|
|
330
330
|
export interface DescribeInstanceStorageConfigResponse {
|
|
331
|
-
StorageConfig?: InstanceStorageConfig;
|
|
331
|
+
StorageConfig?: InstanceStorageConfig | undefined;
|
|
332
332
|
}
|
|
333
333
|
export interface DescribePhoneNumberRequest {
|
|
334
334
|
PhoneNumberId: string | undefined;
|
|
@@ -582,8 +582,8 @@ export declare const PhoneNumberWorkflowStatus: {
|
|
|
582
582
|
export type PhoneNumberWorkflowStatus =
|
|
583
583
|
(typeof PhoneNumberWorkflowStatus)[keyof typeof PhoneNumberWorkflowStatus];
|
|
584
584
|
export interface PhoneNumberStatus {
|
|
585
|
-
Status?: PhoneNumberWorkflowStatus;
|
|
586
|
-
Message?: string;
|
|
585
|
+
Status?: PhoneNumberWorkflowStatus | undefined;
|
|
586
|
+
Message?: string | undefined;
|
|
587
587
|
}
|
|
588
588
|
export declare const PhoneNumberType: {
|
|
589
589
|
readonly DID: "DID";
|
|
@@ -597,49 +597,49 @@ export declare const PhoneNumberType: {
|
|
|
597
597
|
export type PhoneNumberType =
|
|
598
598
|
(typeof PhoneNumberType)[keyof typeof PhoneNumberType];
|
|
599
599
|
export interface ClaimedPhoneNumberSummary {
|
|
600
|
-
PhoneNumberId?: string;
|
|
601
|
-
PhoneNumberArn?: string;
|
|
602
|
-
PhoneNumber?: string;
|
|
603
|
-
PhoneNumberCountryCode?: PhoneNumberCountryCode;
|
|
604
|
-
PhoneNumberType?: PhoneNumberType;
|
|
605
|
-
PhoneNumberDescription?: string;
|
|
606
|
-
TargetArn?: string;
|
|
607
|
-
InstanceId?: string;
|
|
608
|
-
Tags?: Record<string, string
|
|
609
|
-
PhoneNumberStatus?: PhoneNumberStatus;
|
|
610
|
-
SourcePhoneNumberArn?: string;
|
|
600
|
+
PhoneNumberId?: string | undefined;
|
|
601
|
+
PhoneNumberArn?: string | undefined;
|
|
602
|
+
PhoneNumber?: string | undefined;
|
|
603
|
+
PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
|
|
604
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
605
|
+
PhoneNumberDescription?: string | undefined;
|
|
606
|
+
TargetArn?: string | undefined;
|
|
607
|
+
InstanceId?: string | undefined;
|
|
608
|
+
Tags?: Record<string, string> | undefined;
|
|
609
|
+
PhoneNumberStatus?: PhoneNumberStatus | undefined;
|
|
610
|
+
SourcePhoneNumberArn?: string | undefined;
|
|
611
611
|
}
|
|
612
612
|
export interface DescribePhoneNumberResponse {
|
|
613
|
-
ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary;
|
|
613
|
+
ClaimedPhoneNumberSummary?: ClaimedPhoneNumberSummary | undefined;
|
|
614
614
|
}
|
|
615
615
|
export interface DescribePredefinedAttributeRequest {
|
|
616
616
|
InstanceId: string | undefined;
|
|
617
617
|
Name: string | undefined;
|
|
618
618
|
}
|
|
619
619
|
export interface PredefinedAttribute {
|
|
620
|
-
Name?: string;
|
|
621
|
-
Values?: PredefinedAttributeValues;
|
|
622
|
-
LastModifiedTime?: Date;
|
|
623
|
-
LastModifiedRegion?: string;
|
|
620
|
+
Name?: string | undefined;
|
|
621
|
+
Values?: PredefinedAttributeValues | undefined;
|
|
622
|
+
LastModifiedTime?: Date | undefined;
|
|
623
|
+
LastModifiedRegion?: string | undefined;
|
|
624
624
|
}
|
|
625
625
|
export interface DescribePredefinedAttributeResponse {
|
|
626
|
-
PredefinedAttribute?: PredefinedAttribute;
|
|
626
|
+
PredefinedAttribute?: PredefinedAttribute | undefined;
|
|
627
627
|
}
|
|
628
628
|
export interface DescribePromptRequest {
|
|
629
629
|
InstanceId: string | undefined;
|
|
630
630
|
PromptId: string | undefined;
|
|
631
631
|
}
|
|
632
632
|
export interface Prompt {
|
|
633
|
-
PromptARN?: string;
|
|
634
|
-
PromptId?: string;
|
|
635
|
-
Name?: string;
|
|
636
|
-
Description?: string;
|
|
637
|
-
Tags?: Record<string, string
|
|
638
|
-
LastModifiedTime?: Date;
|
|
639
|
-
LastModifiedRegion?: string;
|
|
633
|
+
PromptARN?: string | undefined;
|
|
634
|
+
PromptId?: string | undefined;
|
|
635
|
+
Name?: string | undefined;
|
|
636
|
+
Description?: string | undefined;
|
|
637
|
+
Tags?: Record<string, string> | undefined;
|
|
638
|
+
LastModifiedTime?: Date | undefined;
|
|
639
|
+
LastModifiedRegion?: string | undefined;
|
|
640
640
|
}
|
|
641
641
|
export interface DescribePromptResponse {
|
|
642
|
-
Prompt?: Prompt;
|
|
642
|
+
Prompt?: Prompt | undefined;
|
|
643
643
|
}
|
|
644
644
|
export interface DescribeQueueRequest {
|
|
645
645
|
InstanceId: string | undefined;
|
|
@@ -651,61 +651,61 @@ export declare const QueueStatus: {
|
|
|
651
651
|
};
|
|
652
652
|
export type QueueStatus = (typeof QueueStatus)[keyof typeof QueueStatus];
|
|
653
653
|
export interface Queue {
|
|
654
|
-
Name?: string;
|
|
655
|
-
QueueArn?: string;
|
|
656
|
-
QueueId?: string;
|
|
657
|
-
Description?: string;
|
|
658
|
-
OutboundCallerConfig?: OutboundCallerConfig;
|
|
659
|
-
HoursOfOperationId?: string;
|
|
660
|
-
MaxContacts?: number;
|
|
661
|
-
Status?: QueueStatus;
|
|
662
|
-
Tags?: Record<string, string
|
|
663
|
-
LastModifiedTime?: Date;
|
|
664
|
-
LastModifiedRegion?: string;
|
|
654
|
+
Name?: string | undefined;
|
|
655
|
+
QueueArn?: string | undefined;
|
|
656
|
+
QueueId?: string | undefined;
|
|
657
|
+
Description?: string | undefined;
|
|
658
|
+
OutboundCallerConfig?: OutboundCallerConfig | undefined;
|
|
659
|
+
HoursOfOperationId?: string | undefined;
|
|
660
|
+
MaxContacts?: number | undefined;
|
|
661
|
+
Status?: QueueStatus | undefined;
|
|
662
|
+
Tags?: Record<string, string> | undefined;
|
|
663
|
+
LastModifiedTime?: Date | undefined;
|
|
664
|
+
LastModifiedRegion?: string | undefined;
|
|
665
665
|
}
|
|
666
666
|
export interface DescribeQueueResponse {
|
|
667
|
-
Queue?: Queue;
|
|
667
|
+
Queue?: Queue | undefined;
|
|
668
668
|
}
|
|
669
669
|
export interface DescribeQuickConnectRequest {
|
|
670
670
|
InstanceId: string | undefined;
|
|
671
671
|
QuickConnectId: string | undefined;
|
|
672
672
|
}
|
|
673
673
|
export interface QuickConnect {
|
|
674
|
-
QuickConnectARN?: string;
|
|
675
|
-
QuickConnectId?: string;
|
|
676
|
-
Name?: string;
|
|
677
|
-
Description?: string;
|
|
678
|
-
QuickConnectConfig?: QuickConnectConfig;
|
|
679
|
-
Tags?: Record<string, string
|
|
680
|
-
LastModifiedTime?: Date;
|
|
681
|
-
LastModifiedRegion?: string;
|
|
674
|
+
QuickConnectARN?: string | undefined;
|
|
675
|
+
QuickConnectId?: string | undefined;
|
|
676
|
+
Name?: string | undefined;
|
|
677
|
+
Description?: string | undefined;
|
|
678
|
+
QuickConnectConfig?: QuickConnectConfig | undefined;
|
|
679
|
+
Tags?: Record<string, string> | undefined;
|
|
680
|
+
LastModifiedTime?: Date | undefined;
|
|
681
|
+
LastModifiedRegion?: string | undefined;
|
|
682
682
|
}
|
|
683
683
|
export interface DescribeQuickConnectResponse {
|
|
684
|
-
QuickConnect?: QuickConnect;
|
|
684
|
+
QuickConnect?: QuickConnect | undefined;
|
|
685
685
|
}
|
|
686
686
|
export interface DescribeRoutingProfileRequest {
|
|
687
687
|
InstanceId: string | undefined;
|
|
688
688
|
RoutingProfileId: string | undefined;
|
|
689
689
|
}
|
|
690
690
|
export interface RoutingProfile {
|
|
691
|
-
InstanceId?: string;
|
|
692
|
-
Name?: string;
|
|
693
|
-
RoutingProfileArn?: string;
|
|
694
|
-
RoutingProfileId?: string;
|
|
695
|
-
Description?: string;
|
|
696
|
-
MediaConcurrencies?: MediaConcurrency[];
|
|
697
|
-
DefaultOutboundQueueId?: string;
|
|
698
|
-
Tags?: Record<string, string
|
|
699
|
-
NumberOfAssociatedQueues?: number;
|
|
700
|
-
NumberOfAssociatedUsers?: number;
|
|
701
|
-
AgentAvailabilityTimer?: AgentAvailabilityTimer;
|
|
702
|
-
LastModifiedTime?: Date;
|
|
703
|
-
LastModifiedRegion?: string;
|
|
704
|
-
IsDefault?: boolean;
|
|
705
|
-
AssociatedQueueIds?: string[];
|
|
691
|
+
InstanceId?: string | undefined;
|
|
692
|
+
Name?: string | undefined;
|
|
693
|
+
RoutingProfileArn?: string | undefined;
|
|
694
|
+
RoutingProfileId?: string | undefined;
|
|
695
|
+
Description?: string | undefined;
|
|
696
|
+
MediaConcurrencies?: MediaConcurrency[] | undefined;
|
|
697
|
+
DefaultOutboundQueueId?: string | undefined;
|
|
698
|
+
Tags?: Record<string, string> | undefined;
|
|
699
|
+
NumberOfAssociatedQueues?: number | undefined;
|
|
700
|
+
NumberOfAssociatedUsers?: number | undefined;
|
|
701
|
+
AgentAvailabilityTimer?: AgentAvailabilityTimer | undefined;
|
|
702
|
+
LastModifiedTime?: Date | undefined;
|
|
703
|
+
LastModifiedRegion?: string | undefined;
|
|
704
|
+
IsDefault?: boolean | undefined;
|
|
705
|
+
AssociatedQueueIds?: string[] | undefined;
|
|
706
706
|
}
|
|
707
707
|
export interface DescribeRoutingProfileResponse {
|
|
708
|
-
RoutingProfile?: RoutingProfile;
|
|
708
|
+
RoutingProfile?: RoutingProfile | undefined;
|
|
709
709
|
}
|
|
710
710
|
export interface DescribeRuleRequest {
|
|
711
711
|
InstanceId: string | undefined;
|
|
@@ -722,7 +722,7 @@ export interface Rule {
|
|
|
722
722
|
CreatedTime: Date | undefined;
|
|
723
723
|
LastUpdatedTime: Date | undefined;
|
|
724
724
|
LastUpdatedBy: string | undefined;
|
|
725
|
-
Tags?: Record<string, string
|
|
725
|
+
Tags?: Record<string, string> | undefined;
|
|
726
726
|
}
|
|
727
727
|
export interface DescribeRuleResponse {
|
|
728
728
|
Rule: Rule | undefined;
|
|
@@ -732,21 +732,21 @@ export interface DescribeSecurityProfileRequest {
|
|
|
732
732
|
InstanceId: string | undefined;
|
|
733
733
|
}
|
|
734
734
|
export interface SecurityProfile {
|
|
735
|
-
Id?: string;
|
|
736
|
-
OrganizationResourceId?: string;
|
|
737
|
-
Arn?: string;
|
|
738
|
-
SecurityProfileName?: string;
|
|
739
|
-
Description?: string;
|
|
740
|
-
Tags?: Record<string, string
|
|
741
|
-
AllowedAccessControlTags?: Record<string, string
|
|
742
|
-
TagRestrictedResources?: string[];
|
|
743
|
-
LastModifiedTime?: Date;
|
|
744
|
-
LastModifiedRegion?: string;
|
|
745
|
-
HierarchyRestrictedResources?: string[];
|
|
746
|
-
AllowedAccessControlHierarchyGroupId?: string;
|
|
735
|
+
Id?: string | undefined;
|
|
736
|
+
OrganizationResourceId?: string | undefined;
|
|
737
|
+
Arn?: string | undefined;
|
|
738
|
+
SecurityProfileName?: string | undefined;
|
|
739
|
+
Description?: string | undefined;
|
|
740
|
+
Tags?: Record<string, string> | undefined;
|
|
741
|
+
AllowedAccessControlTags?: Record<string, string> | undefined;
|
|
742
|
+
TagRestrictedResources?: string[] | undefined;
|
|
743
|
+
LastModifiedTime?: Date | undefined;
|
|
744
|
+
LastModifiedRegion?: string | undefined;
|
|
745
|
+
HierarchyRestrictedResources?: string[] | undefined;
|
|
746
|
+
AllowedAccessControlHierarchyGroupId?: string | undefined;
|
|
747
747
|
}
|
|
748
748
|
export interface DescribeSecurityProfileResponse {
|
|
749
|
-
SecurityProfile?: SecurityProfile;
|
|
749
|
+
SecurityProfile?: SecurityProfile | undefined;
|
|
750
750
|
}
|
|
751
751
|
export interface DescribeTrafficDistributionGroupRequest {
|
|
752
752
|
TrafficDistributionGroupId: string | undefined;
|
|
@@ -762,96 +762,96 @@ export declare const TrafficDistributionGroupStatus: {
|
|
|
762
762
|
export type TrafficDistributionGroupStatus =
|
|
763
763
|
(typeof TrafficDistributionGroupStatus)[keyof typeof TrafficDistributionGroupStatus];
|
|
764
764
|
export interface TrafficDistributionGroup {
|
|
765
|
-
Id?: string;
|
|
766
|
-
Arn?: string;
|
|
767
|
-
Name?: string;
|
|
768
|
-
Description?: string;
|
|
769
|
-
InstanceArn?: string;
|
|
770
|
-
Status?: TrafficDistributionGroupStatus;
|
|
771
|
-
Tags?: Record<string, string
|
|
772
|
-
IsDefault?: boolean;
|
|
765
|
+
Id?: string | undefined;
|
|
766
|
+
Arn?: string | undefined;
|
|
767
|
+
Name?: string | undefined;
|
|
768
|
+
Description?: string | undefined;
|
|
769
|
+
InstanceArn?: string | undefined;
|
|
770
|
+
Status?: TrafficDistributionGroupStatus | undefined;
|
|
771
|
+
Tags?: Record<string, string> | undefined;
|
|
772
|
+
IsDefault?: boolean | undefined;
|
|
773
773
|
}
|
|
774
774
|
export interface DescribeTrafficDistributionGroupResponse {
|
|
775
|
-
TrafficDistributionGroup?: TrafficDistributionGroup;
|
|
775
|
+
TrafficDistributionGroup?: TrafficDistributionGroup | undefined;
|
|
776
776
|
}
|
|
777
777
|
export interface DescribeUserRequest {
|
|
778
778
|
UserId: string | undefined;
|
|
779
779
|
InstanceId: string | undefined;
|
|
780
780
|
}
|
|
781
781
|
export interface User {
|
|
782
|
-
Id?: string;
|
|
783
|
-
Arn?: string;
|
|
784
|
-
Username?: string;
|
|
785
|
-
IdentityInfo?: UserIdentityInfo;
|
|
786
|
-
PhoneConfig?: UserPhoneConfig;
|
|
787
|
-
DirectoryUserId?: string;
|
|
788
|
-
SecurityProfileIds?: string[];
|
|
789
|
-
RoutingProfileId?: string;
|
|
790
|
-
HierarchyGroupId?: string;
|
|
791
|
-
Tags?: Record<string, string
|
|
792
|
-
LastModifiedTime?: Date;
|
|
793
|
-
LastModifiedRegion?: string;
|
|
782
|
+
Id?: string | undefined;
|
|
783
|
+
Arn?: string | undefined;
|
|
784
|
+
Username?: string | undefined;
|
|
785
|
+
IdentityInfo?: UserIdentityInfo | undefined;
|
|
786
|
+
PhoneConfig?: UserPhoneConfig | undefined;
|
|
787
|
+
DirectoryUserId?: string | undefined;
|
|
788
|
+
SecurityProfileIds?: string[] | undefined;
|
|
789
|
+
RoutingProfileId?: string | undefined;
|
|
790
|
+
HierarchyGroupId?: string | undefined;
|
|
791
|
+
Tags?: Record<string, string> | undefined;
|
|
792
|
+
LastModifiedTime?: Date | undefined;
|
|
793
|
+
LastModifiedRegion?: string | undefined;
|
|
794
794
|
}
|
|
795
795
|
export interface DescribeUserResponse {
|
|
796
|
-
User?: User;
|
|
796
|
+
User?: User | undefined;
|
|
797
797
|
}
|
|
798
798
|
export interface DescribeUserHierarchyGroupRequest {
|
|
799
799
|
HierarchyGroupId: string | undefined;
|
|
800
800
|
InstanceId: string | undefined;
|
|
801
801
|
}
|
|
802
802
|
export interface HierarchyGroupSummary {
|
|
803
|
-
Id?: string;
|
|
804
|
-
Arn?: string;
|
|
805
|
-
Name?: string;
|
|
806
|
-
LastModifiedTime?: Date;
|
|
807
|
-
LastModifiedRegion?: string;
|
|
803
|
+
Id?: string | undefined;
|
|
804
|
+
Arn?: string | undefined;
|
|
805
|
+
Name?: string | undefined;
|
|
806
|
+
LastModifiedTime?: Date | undefined;
|
|
807
|
+
LastModifiedRegion?: string | undefined;
|
|
808
808
|
}
|
|
809
809
|
export interface HierarchyPath {
|
|
810
|
-
LevelOne?: HierarchyGroupSummary;
|
|
811
|
-
LevelTwo?: HierarchyGroupSummary;
|
|
812
|
-
LevelThree?: HierarchyGroupSummary;
|
|
813
|
-
LevelFour?: HierarchyGroupSummary;
|
|
814
|
-
LevelFive?: HierarchyGroupSummary;
|
|
810
|
+
LevelOne?: HierarchyGroupSummary | undefined;
|
|
811
|
+
LevelTwo?: HierarchyGroupSummary | undefined;
|
|
812
|
+
LevelThree?: HierarchyGroupSummary | undefined;
|
|
813
|
+
LevelFour?: HierarchyGroupSummary | undefined;
|
|
814
|
+
LevelFive?: HierarchyGroupSummary | undefined;
|
|
815
815
|
}
|
|
816
816
|
export interface HierarchyGroup {
|
|
817
|
-
Id?: string;
|
|
818
|
-
Arn?: string;
|
|
819
|
-
Name?: string;
|
|
820
|
-
LevelId?: string;
|
|
821
|
-
HierarchyPath?: HierarchyPath;
|
|
822
|
-
Tags?: Record<string, string
|
|
823
|
-
LastModifiedTime?: Date;
|
|
824
|
-
LastModifiedRegion?: string;
|
|
817
|
+
Id?: string | undefined;
|
|
818
|
+
Arn?: string | undefined;
|
|
819
|
+
Name?: string | undefined;
|
|
820
|
+
LevelId?: string | undefined;
|
|
821
|
+
HierarchyPath?: HierarchyPath | undefined;
|
|
822
|
+
Tags?: Record<string, string> | undefined;
|
|
823
|
+
LastModifiedTime?: Date | undefined;
|
|
824
|
+
LastModifiedRegion?: string | undefined;
|
|
825
825
|
}
|
|
826
826
|
export interface DescribeUserHierarchyGroupResponse {
|
|
827
|
-
HierarchyGroup?: HierarchyGroup;
|
|
827
|
+
HierarchyGroup?: HierarchyGroup | undefined;
|
|
828
828
|
}
|
|
829
829
|
export interface DescribeUserHierarchyStructureRequest {
|
|
830
830
|
InstanceId: string | undefined;
|
|
831
831
|
}
|
|
832
832
|
export interface HierarchyLevel {
|
|
833
|
-
Id?: string;
|
|
834
|
-
Arn?: string;
|
|
835
|
-
Name?: string;
|
|
836
|
-
LastModifiedTime?: Date;
|
|
837
|
-
LastModifiedRegion?: string;
|
|
833
|
+
Id?: string | undefined;
|
|
834
|
+
Arn?: string | undefined;
|
|
835
|
+
Name?: string | undefined;
|
|
836
|
+
LastModifiedTime?: Date | undefined;
|
|
837
|
+
LastModifiedRegion?: string | undefined;
|
|
838
838
|
}
|
|
839
839
|
export interface HierarchyStructure {
|
|
840
|
-
LevelOne?: HierarchyLevel;
|
|
841
|
-
LevelTwo?: HierarchyLevel;
|
|
842
|
-
LevelThree?: HierarchyLevel;
|
|
843
|
-
LevelFour?: HierarchyLevel;
|
|
844
|
-
LevelFive?: HierarchyLevel;
|
|
840
|
+
LevelOne?: HierarchyLevel | undefined;
|
|
841
|
+
LevelTwo?: HierarchyLevel | undefined;
|
|
842
|
+
LevelThree?: HierarchyLevel | undefined;
|
|
843
|
+
LevelFour?: HierarchyLevel | undefined;
|
|
844
|
+
LevelFive?: HierarchyLevel | undefined;
|
|
845
845
|
}
|
|
846
846
|
export interface DescribeUserHierarchyStructureResponse {
|
|
847
|
-
HierarchyStructure?: HierarchyStructure;
|
|
847
|
+
HierarchyStructure?: HierarchyStructure | undefined;
|
|
848
848
|
}
|
|
849
849
|
export interface DescribeViewRequest {
|
|
850
850
|
InstanceId: string | undefined;
|
|
851
851
|
ViewId: string | undefined;
|
|
852
852
|
}
|
|
853
853
|
export interface DescribeViewResponse {
|
|
854
|
-
View?: View;
|
|
854
|
+
View?: View | undefined;
|
|
855
855
|
}
|
|
856
856
|
export interface DescribeVocabularyRequest {
|
|
857
857
|
InstanceId: string | undefined;
|
|
@@ -864,9 +864,9 @@ export interface Vocabulary {
|
|
|
864
864
|
LanguageCode: VocabularyLanguageCode | undefined;
|
|
865
865
|
State: VocabularyState | undefined;
|
|
866
866
|
LastModifiedTime: Date | undefined;
|
|
867
|
-
FailureReason?: string;
|
|
868
|
-
Content?: string;
|
|
869
|
-
Tags?: Record<string, string
|
|
867
|
+
FailureReason?: string | undefined;
|
|
868
|
+
Content?: string | undefined;
|
|
869
|
+
Tags?: Record<string, string> | undefined;
|
|
870
870
|
}
|
|
871
871
|
export interface DescribeVocabularyResponse {
|
|
872
872
|
Vocabulary: Vocabulary | undefined;
|
|
@@ -874,7 +874,7 @@ export interface DescribeVocabularyResponse {
|
|
|
874
874
|
export interface DisassociateAnalyticsDataSetRequest {
|
|
875
875
|
InstanceId: string | undefined;
|
|
876
876
|
DataSetId: string | undefined;
|
|
877
|
-
TargetAccountId?: string;
|
|
877
|
+
TargetAccountId?: string | undefined;
|
|
878
878
|
}
|
|
879
879
|
export interface DisassociateApprovedOriginRequest {
|
|
880
880
|
InstanceId: string | undefined;
|
|
@@ -882,8 +882,8 @@ export interface DisassociateApprovedOriginRequest {
|
|
|
882
882
|
}
|
|
883
883
|
export interface DisassociateBotRequest {
|
|
884
884
|
InstanceId: string | undefined;
|
|
885
|
-
LexBot?: LexBot;
|
|
886
|
-
LexV2Bot?: LexV2Bot;
|
|
885
|
+
LexBot?: LexBot | undefined;
|
|
886
|
+
LexV2Bot?: LexV2Bot | undefined;
|
|
887
887
|
}
|
|
888
888
|
export interface DisassociateFlowRequest {
|
|
889
889
|
InstanceId: string | undefined;
|
|
@@ -947,32 +947,32 @@ export interface DismissUserContactResponse {}
|
|
|
947
947
|
export interface GetAttachedFileRequest {
|
|
948
948
|
InstanceId: string | undefined;
|
|
949
949
|
FileId: string | undefined;
|
|
950
|
-
UrlExpiryInSeconds?: number;
|
|
950
|
+
UrlExpiryInSeconds?: number | undefined;
|
|
951
951
|
AssociatedResourceArn: string | undefined;
|
|
952
952
|
}
|
|
953
953
|
export interface DownloadUrlMetadata {
|
|
954
|
-
Url?: string;
|
|
955
|
-
UrlExpiry?: string;
|
|
954
|
+
Url?: string | undefined;
|
|
955
|
+
UrlExpiry?: string | undefined;
|
|
956
956
|
}
|
|
957
957
|
export interface GetAttachedFileResponse {
|
|
958
|
-
FileArn?: string;
|
|
959
|
-
FileId?: string;
|
|
960
|
-
CreationTime?: string;
|
|
961
|
-
FileStatus?: FileStatusType;
|
|
962
|
-
FileName?: string;
|
|
958
|
+
FileArn?: string | undefined;
|
|
959
|
+
FileId?: string | undefined;
|
|
960
|
+
CreationTime?: string | undefined;
|
|
961
|
+
FileStatus?: FileStatusType | undefined;
|
|
962
|
+
FileName?: string | undefined;
|
|
963
963
|
FileSizeInBytes: number | undefined;
|
|
964
|
-
AssociatedResourceArn?: string;
|
|
965
|
-
FileUseCaseType?: FileUseCaseType;
|
|
966
|
-
CreatedBy?: CreatedByInfo;
|
|
967
|
-
DownloadUrlMetadata?: DownloadUrlMetadata;
|
|
968
|
-
Tags?: Record<string, string
|
|
964
|
+
AssociatedResourceArn?: string | undefined;
|
|
965
|
+
FileUseCaseType?: FileUseCaseType | undefined;
|
|
966
|
+
CreatedBy?: CreatedByInfo | undefined;
|
|
967
|
+
DownloadUrlMetadata?: DownloadUrlMetadata | undefined;
|
|
968
|
+
Tags?: Record<string, string> | undefined;
|
|
969
969
|
}
|
|
970
970
|
export interface GetContactAttributesRequest {
|
|
971
971
|
InstanceId: string | undefined;
|
|
972
972
|
InitialContactId: string | undefined;
|
|
973
973
|
}
|
|
974
974
|
export interface GetContactAttributesResponse {
|
|
975
|
-
Attributes?: Record<string, string
|
|
975
|
+
Attributes?: Record<string, string> | undefined;
|
|
976
976
|
}
|
|
977
977
|
export declare const CurrentMetricName: {
|
|
978
978
|
readonly AGENTS_AFTER_CONTACT_WORK: "AGENTS_AFTER_CONTACT_WORK";
|
|
@@ -998,14 +998,14 @@ export declare const Unit: {
|
|
|
998
998
|
};
|
|
999
999
|
export type Unit = (typeof Unit)[keyof typeof Unit];
|
|
1000
1000
|
export interface CurrentMetric {
|
|
1001
|
-
Name?: CurrentMetricName;
|
|
1002
|
-
Unit?: Unit;
|
|
1001
|
+
Name?: CurrentMetricName | undefined;
|
|
1002
|
+
Unit?: Unit | undefined;
|
|
1003
1003
|
}
|
|
1004
1004
|
export interface Filters {
|
|
1005
|
-
Queues?: string[];
|
|
1006
|
-
Channels?: Channel[];
|
|
1007
|
-
RoutingProfiles?: string[];
|
|
1008
|
-
RoutingStepExpressions?: string[];
|
|
1005
|
+
Queues?: string[] | undefined;
|
|
1006
|
+
Channels?: Channel[] | undefined;
|
|
1007
|
+
RoutingProfiles?: string[] | undefined;
|
|
1008
|
+
RoutingStepExpressions?: string[] | undefined;
|
|
1009
1009
|
}
|
|
1010
1010
|
export declare const Grouping: {
|
|
1011
1011
|
readonly CHANNEL: "CHANNEL";
|
|
@@ -1020,108 +1020,108 @@ export declare const SortOrder: {
|
|
|
1020
1020
|
};
|
|
1021
1021
|
export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder];
|
|
1022
1022
|
export interface CurrentMetricSortCriteria {
|
|
1023
|
-
SortByMetric?: CurrentMetricName;
|
|
1024
|
-
SortOrder?: SortOrder;
|
|
1023
|
+
SortByMetric?: CurrentMetricName | undefined;
|
|
1024
|
+
SortOrder?: SortOrder | undefined;
|
|
1025
1025
|
}
|
|
1026
1026
|
export interface GetCurrentMetricDataRequest {
|
|
1027
1027
|
InstanceId: string | undefined;
|
|
1028
1028
|
Filters: Filters | undefined;
|
|
1029
|
-
Groupings?: Grouping[];
|
|
1029
|
+
Groupings?: Grouping[] | undefined;
|
|
1030
1030
|
CurrentMetrics: CurrentMetric[] | undefined;
|
|
1031
|
-
NextToken?: string;
|
|
1032
|
-
MaxResults?: number;
|
|
1033
|
-
SortCriteria?: CurrentMetricSortCriteria[];
|
|
1031
|
+
NextToken?: string | undefined;
|
|
1032
|
+
MaxResults?: number | undefined;
|
|
1033
|
+
SortCriteria?: CurrentMetricSortCriteria[] | undefined;
|
|
1034
1034
|
}
|
|
1035
1035
|
export interface CurrentMetricData {
|
|
1036
|
-
Metric?: CurrentMetric;
|
|
1037
|
-
Value?: number;
|
|
1036
|
+
Metric?: CurrentMetric | undefined;
|
|
1037
|
+
Value?: number | undefined;
|
|
1038
1038
|
}
|
|
1039
1039
|
export interface RoutingProfileReference {
|
|
1040
|
-
Id?: string;
|
|
1041
|
-
Arn?: string;
|
|
1040
|
+
Id?: string | undefined;
|
|
1041
|
+
Arn?: string | undefined;
|
|
1042
1042
|
}
|
|
1043
1043
|
export interface Dimensions {
|
|
1044
|
-
Queue?: QueueReference;
|
|
1045
|
-
Channel?: Channel;
|
|
1046
|
-
RoutingProfile?: RoutingProfileReference;
|
|
1047
|
-
RoutingStepExpression?: string;
|
|
1044
|
+
Queue?: QueueReference | undefined;
|
|
1045
|
+
Channel?: Channel | undefined;
|
|
1046
|
+
RoutingProfile?: RoutingProfileReference | undefined;
|
|
1047
|
+
RoutingStepExpression?: string | undefined;
|
|
1048
1048
|
}
|
|
1049
1049
|
export interface CurrentMetricResult {
|
|
1050
|
-
Dimensions?: Dimensions;
|
|
1051
|
-
Collections?: CurrentMetricData[];
|
|
1050
|
+
Dimensions?: Dimensions | undefined;
|
|
1051
|
+
Collections?: CurrentMetricData[] | undefined;
|
|
1052
1052
|
}
|
|
1053
1053
|
export interface GetCurrentMetricDataResponse {
|
|
1054
|
-
NextToken?: string;
|
|
1055
|
-
MetricResults?: CurrentMetricResult[];
|
|
1056
|
-
DataSnapshotTime?: Date;
|
|
1057
|
-
ApproximateTotalCount?: number;
|
|
1054
|
+
NextToken?: string | undefined;
|
|
1055
|
+
MetricResults?: CurrentMetricResult[] | undefined;
|
|
1056
|
+
DataSnapshotTime?: Date | undefined;
|
|
1057
|
+
ApproximateTotalCount?: number | undefined;
|
|
1058
1058
|
}
|
|
1059
1059
|
export interface ContactFilter {
|
|
1060
|
-
ContactStates?: ContactState[];
|
|
1060
|
+
ContactStates?: ContactState[] | undefined;
|
|
1061
1061
|
}
|
|
1062
1062
|
export interface UserDataFilters {
|
|
1063
|
-
Queues?: string[];
|
|
1064
|
-
ContactFilter?: ContactFilter;
|
|
1065
|
-
RoutingProfiles?: string[];
|
|
1066
|
-
Agents?: string[];
|
|
1067
|
-
UserHierarchyGroups?: string[];
|
|
1063
|
+
Queues?: string[] | undefined;
|
|
1064
|
+
ContactFilter?: ContactFilter | undefined;
|
|
1065
|
+
RoutingProfiles?: string[] | undefined;
|
|
1066
|
+
Agents?: string[] | undefined;
|
|
1067
|
+
UserHierarchyGroups?: string[] | undefined;
|
|
1068
1068
|
}
|
|
1069
1069
|
export interface GetCurrentUserDataRequest {
|
|
1070
1070
|
InstanceId: string | undefined;
|
|
1071
1071
|
Filters: UserDataFilters | undefined;
|
|
1072
|
-
NextToken?: string;
|
|
1073
|
-
MaxResults?: number;
|
|
1072
|
+
NextToken?: string | undefined;
|
|
1073
|
+
MaxResults?: number | undefined;
|
|
1074
1074
|
}
|
|
1075
1075
|
export interface HierarchyGroupSummaryReference {
|
|
1076
|
-
Id?: string;
|
|
1077
|
-
Arn?: string;
|
|
1076
|
+
Id?: string | undefined;
|
|
1077
|
+
Arn?: string | undefined;
|
|
1078
1078
|
}
|
|
1079
1079
|
export interface HierarchyPathReference {
|
|
1080
|
-
LevelOne?: HierarchyGroupSummaryReference;
|
|
1081
|
-
LevelTwo?: HierarchyGroupSummaryReference;
|
|
1082
|
-
LevelThree?: HierarchyGroupSummaryReference;
|
|
1083
|
-
LevelFour?: HierarchyGroupSummaryReference;
|
|
1084
|
-
LevelFive?: HierarchyGroupSummaryReference;
|
|
1080
|
+
LevelOne?: HierarchyGroupSummaryReference | undefined;
|
|
1081
|
+
LevelTwo?: HierarchyGroupSummaryReference | undefined;
|
|
1082
|
+
LevelThree?: HierarchyGroupSummaryReference | undefined;
|
|
1083
|
+
LevelFour?: HierarchyGroupSummaryReference | undefined;
|
|
1084
|
+
LevelFive?: HierarchyGroupSummaryReference | undefined;
|
|
1085
1085
|
}
|
|
1086
1086
|
export interface UserReference {
|
|
1087
|
-
Id?: string;
|
|
1088
|
-
Arn?: string;
|
|
1087
|
+
Id?: string | undefined;
|
|
1088
|
+
Arn?: string | undefined;
|
|
1089
1089
|
}
|
|
1090
1090
|
export interface UserData {
|
|
1091
|
-
User?: UserReference;
|
|
1092
|
-
RoutingProfile?: RoutingProfileReference;
|
|
1093
|
-
HierarchyPath?: HierarchyPathReference;
|
|
1094
|
-
Status?: AgentStatusReference;
|
|
1095
|
-
AvailableSlotsByChannel?: Partial<Record<Channel, number
|
|
1096
|
-
MaxSlotsByChannel?: Partial<Record<Channel, number
|
|
1097
|
-
ActiveSlotsByChannel?: Partial<Record<Channel, number
|
|
1098
|
-
Contacts?: AgentContactReference[];
|
|
1099
|
-
NextStatus?: string;
|
|
1091
|
+
User?: UserReference | undefined;
|
|
1092
|
+
RoutingProfile?: RoutingProfileReference | undefined;
|
|
1093
|
+
HierarchyPath?: HierarchyPathReference | undefined;
|
|
1094
|
+
Status?: AgentStatusReference | undefined;
|
|
1095
|
+
AvailableSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
|
|
1096
|
+
MaxSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
|
|
1097
|
+
ActiveSlotsByChannel?: Partial<Record<Channel, number>> | undefined;
|
|
1098
|
+
Contacts?: AgentContactReference[] | undefined;
|
|
1099
|
+
NextStatus?: string | undefined;
|
|
1100
1100
|
}
|
|
1101
1101
|
export interface GetCurrentUserDataResponse {
|
|
1102
|
-
NextToken?: string;
|
|
1103
|
-
UserDataList?: UserData[];
|
|
1104
|
-
ApproximateTotalCount?: number;
|
|
1102
|
+
NextToken?: string | undefined;
|
|
1103
|
+
UserDataList?: UserData[] | undefined;
|
|
1104
|
+
ApproximateTotalCount?: number | undefined;
|
|
1105
1105
|
}
|
|
1106
1106
|
export interface GetFederationTokenRequest {
|
|
1107
1107
|
InstanceId: string | undefined;
|
|
1108
1108
|
}
|
|
1109
1109
|
export interface Credentials {
|
|
1110
|
-
AccessToken?: string;
|
|
1111
|
-
AccessTokenExpiration?: Date;
|
|
1112
|
-
RefreshToken?: string;
|
|
1113
|
-
RefreshTokenExpiration?: Date;
|
|
1110
|
+
AccessToken?: string | undefined;
|
|
1111
|
+
AccessTokenExpiration?: Date | undefined;
|
|
1112
|
+
RefreshToken?: string | undefined;
|
|
1113
|
+
RefreshTokenExpiration?: Date | undefined;
|
|
1114
1114
|
}
|
|
1115
1115
|
export interface GetFederationTokenResponse {
|
|
1116
|
-
Credentials?: Credentials;
|
|
1117
|
-
SignInUrl?: string;
|
|
1118
|
-
UserArn?: string;
|
|
1119
|
-
UserId?: string;
|
|
1116
|
+
Credentials?: Credentials | undefined;
|
|
1117
|
+
SignInUrl?: string | undefined;
|
|
1118
|
+
UserArn?: string | undefined;
|
|
1119
|
+
UserId?: string | undefined;
|
|
1120
1120
|
}
|
|
1121
1121
|
export declare class UserNotFoundException extends __BaseException {
|
|
1122
1122
|
readonly name: "UserNotFoundException";
|
|
1123
1123
|
readonly $fault: "client";
|
|
1124
|
-
Message?: string;
|
|
1124
|
+
Message?: string | undefined;
|
|
1125
1125
|
constructor(
|
|
1126
1126
|
opts: __ExceptionOptionType<UserNotFoundException, __BaseException>
|
|
1127
1127
|
);
|
|
@@ -1132,9 +1132,9 @@ export interface GetFlowAssociationRequest {
|
|
|
1132
1132
|
ResourceType: FlowAssociationResourceType | undefined;
|
|
1133
1133
|
}
|
|
1134
1134
|
export interface GetFlowAssociationResponse {
|
|
1135
|
-
ResourceId?: string;
|
|
1136
|
-
FlowId?: string;
|
|
1137
|
-
ResourceType?: FlowAssociationResourceType;
|
|
1135
|
+
ResourceId?: string | undefined;
|
|
1136
|
+
FlowId?: string | undefined;
|
|
1137
|
+
ResourceType?: FlowAssociationResourceType | undefined;
|
|
1138
1138
|
}
|
|
1139
1139
|
export declare const HistoricalMetricName: {
|
|
1140
1140
|
readonly ABANDON_TIME: "ABANDON_TIME";
|
|
@@ -1176,40 +1176,40 @@ export declare const Comparison: {
|
|
|
1176
1176
|
};
|
|
1177
1177
|
export type Comparison = (typeof Comparison)[keyof typeof Comparison];
|
|
1178
1178
|
export interface Threshold {
|
|
1179
|
-
Comparison?: Comparison;
|
|
1180
|
-
ThresholdValue?: number;
|
|
1179
|
+
Comparison?: Comparison | undefined;
|
|
1180
|
+
ThresholdValue?: number | undefined;
|
|
1181
1181
|
}
|
|
1182
1182
|
export interface HistoricalMetric {
|
|
1183
|
-
Name?: HistoricalMetricName;
|
|
1184
|
-
Threshold?: Threshold;
|
|
1185
|
-
Statistic?: Statistic;
|
|
1186
|
-
Unit?: Unit;
|
|
1183
|
+
Name?: HistoricalMetricName | undefined;
|
|
1184
|
+
Threshold?: Threshold | undefined;
|
|
1185
|
+
Statistic?: Statistic | undefined;
|
|
1186
|
+
Unit?: Unit | undefined;
|
|
1187
1187
|
}
|
|
1188
1188
|
export interface GetMetricDataRequest {
|
|
1189
1189
|
InstanceId: string | undefined;
|
|
1190
1190
|
StartTime: Date | undefined;
|
|
1191
1191
|
EndTime: Date | undefined;
|
|
1192
1192
|
Filters: Filters | undefined;
|
|
1193
|
-
Groupings?: Grouping[];
|
|
1193
|
+
Groupings?: Grouping[] | undefined;
|
|
1194
1194
|
HistoricalMetrics: HistoricalMetric[] | undefined;
|
|
1195
|
-
NextToken?: string;
|
|
1196
|
-
MaxResults?: number;
|
|
1195
|
+
NextToken?: string | undefined;
|
|
1196
|
+
MaxResults?: number | undefined;
|
|
1197
1197
|
}
|
|
1198
1198
|
export interface HistoricalMetricData {
|
|
1199
|
-
Metric?: HistoricalMetric;
|
|
1200
|
-
Value?: number;
|
|
1199
|
+
Metric?: HistoricalMetric | undefined;
|
|
1200
|
+
Value?: number | undefined;
|
|
1201
1201
|
}
|
|
1202
1202
|
export interface HistoricalMetricResult {
|
|
1203
|
-
Dimensions?: Dimensions;
|
|
1204
|
-
Collections?: HistoricalMetricData[];
|
|
1203
|
+
Dimensions?: Dimensions | undefined;
|
|
1204
|
+
Collections?: HistoricalMetricData[] | undefined;
|
|
1205
1205
|
}
|
|
1206
1206
|
export interface GetMetricDataResponse {
|
|
1207
|
-
NextToken?: string;
|
|
1208
|
-
MetricResults?: HistoricalMetricResult[];
|
|
1207
|
+
NextToken?: string | undefined;
|
|
1208
|
+
MetricResults?: HistoricalMetricResult[] | undefined;
|
|
1209
1209
|
}
|
|
1210
1210
|
export interface FilterV2 {
|
|
1211
|
-
FilterKey?: string;
|
|
1212
|
-
FilterValues?: string[];
|
|
1211
|
+
FilterKey?: string | undefined;
|
|
1212
|
+
FilterValues?: string[] | undefined;
|
|
1213
1213
|
}
|
|
1214
1214
|
export declare const IntervalPeriod: {
|
|
1215
1215
|
readonly DAY: "DAY";
|
|
@@ -1222,80 +1222,80 @@ export declare const IntervalPeriod: {
|
|
|
1222
1222
|
export type IntervalPeriod =
|
|
1223
1223
|
(typeof IntervalPeriod)[keyof typeof IntervalPeriod];
|
|
1224
1224
|
export interface IntervalDetails {
|
|
1225
|
-
TimeZone?: string;
|
|
1226
|
-
IntervalPeriod?: IntervalPeriod;
|
|
1225
|
+
TimeZone?: string | undefined;
|
|
1226
|
+
IntervalPeriod?: IntervalPeriod | undefined;
|
|
1227
1227
|
}
|
|
1228
1228
|
export interface MetricFilterV2 {
|
|
1229
|
-
MetricFilterKey?: string;
|
|
1230
|
-
MetricFilterValues?: string[];
|
|
1231
|
-
Negate?: boolean;
|
|
1229
|
+
MetricFilterKey?: string | undefined;
|
|
1230
|
+
MetricFilterValues?: string[] | undefined;
|
|
1231
|
+
Negate?: boolean | undefined;
|
|
1232
1232
|
}
|
|
1233
1233
|
export interface ThresholdV2 {
|
|
1234
|
-
Comparison?: string;
|
|
1235
|
-
ThresholdValue?: number;
|
|
1234
|
+
Comparison?: string | undefined;
|
|
1235
|
+
ThresholdValue?: number | undefined;
|
|
1236
1236
|
}
|
|
1237
1237
|
export interface MetricV2 {
|
|
1238
|
-
Name?: string;
|
|
1239
|
-
Threshold?: ThresholdV2[];
|
|
1240
|
-
MetricFilters?: MetricFilterV2[];
|
|
1238
|
+
Name?: string | undefined;
|
|
1239
|
+
Threshold?: ThresholdV2[] | undefined;
|
|
1240
|
+
MetricFilters?: MetricFilterV2[] | undefined;
|
|
1241
1241
|
}
|
|
1242
1242
|
export interface GetMetricDataV2Request {
|
|
1243
1243
|
ResourceArn: string | undefined;
|
|
1244
1244
|
StartTime: Date | undefined;
|
|
1245
1245
|
EndTime: Date | undefined;
|
|
1246
|
-
Interval?: IntervalDetails;
|
|
1246
|
+
Interval?: IntervalDetails | undefined;
|
|
1247
1247
|
Filters: FilterV2[] | undefined;
|
|
1248
|
-
Groupings?: string[];
|
|
1248
|
+
Groupings?: string[] | undefined;
|
|
1249
1249
|
Metrics: MetricV2[] | undefined;
|
|
1250
|
-
NextToken?: string;
|
|
1251
|
-
MaxResults?: number;
|
|
1250
|
+
NextToken?: string | undefined;
|
|
1251
|
+
MaxResults?: number | undefined;
|
|
1252
1252
|
}
|
|
1253
1253
|
export interface MetricDataV2 {
|
|
1254
|
-
Metric?: MetricV2;
|
|
1255
|
-
Value?: number;
|
|
1254
|
+
Metric?: MetricV2 | undefined;
|
|
1255
|
+
Value?: number | undefined;
|
|
1256
1256
|
}
|
|
1257
1257
|
export interface MetricInterval {
|
|
1258
|
-
Interval?: IntervalPeriod;
|
|
1259
|
-
StartTime?: Date;
|
|
1260
|
-
EndTime?: Date;
|
|
1258
|
+
Interval?: IntervalPeriod | undefined;
|
|
1259
|
+
StartTime?: Date | undefined;
|
|
1260
|
+
EndTime?: Date | undefined;
|
|
1261
1261
|
}
|
|
1262
1262
|
export interface MetricResultV2 {
|
|
1263
|
-
Dimensions?: Record<string, string
|
|
1264
|
-
MetricInterval?: MetricInterval;
|
|
1265
|
-
Collections?: MetricDataV2[];
|
|
1263
|
+
Dimensions?: Record<string, string> | undefined;
|
|
1264
|
+
MetricInterval?: MetricInterval | undefined;
|
|
1265
|
+
Collections?: MetricDataV2[] | undefined;
|
|
1266
1266
|
}
|
|
1267
1267
|
export interface GetMetricDataV2Response {
|
|
1268
|
-
NextToken?: string;
|
|
1269
|
-
MetricResults?: MetricResultV2[];
|
|
1268
|
+
NextToken?: string | undefined;
|
|
1269
|
+
MetricResults?: MetricResultV2[] | undefined;
|
|
1270
1270
|
}
|
|
1271
1271
|
export interface GetPromptFileRequest {
|
|
1272
1272
|
InstanceId: string | undefined;
|
|
1273
1273
|
PromptId: string | undefined;
|
|
1274
1274
|
}
|
|
1275
1275
|
export interface GetPromptFileResponse {
|
|
1276
|
-
PromptPresignedUrl?: string;
|
|
1277
|
-
LastModifiedTime?: Date;
|
|
1278
|
-
LastModifiedRegion?: string;
|
|
1276
|
+
PromptPresignedUrl?: string | undefined;
|
|
1277
|
+
LastModifiedTime?: Date | undefined;
|
|
1278
|
+
LastModifiedRegion?: string | undefined;
|
|
1279
1279
|
}
|
|
1280
1280
|
export interface GetTaskTemplateRequest {
|
|
1281
1281
|
InstanceId: string | undefined;
|
|
1282
1282
|
TaskTemplateId: string | undefined;
|
|
1283
|
-
SnapshotVersion?: string;
|
|
1283
|
+
SnapshotVersion?: string | undefined;
|
|
1284
1284
|
}
|
|
1285
1285
|
export interface GetTaskTemplateResponse {
|
|
1286
|
-
InstanceId?: string;
|
|
1286
|
+
InstanceId?: string | undefined;
|
|
1287
1287
|
Id: string | undefined;
|
|
1288
1288
|
Arn: string | undefined;
|
|
1289
1289
|
Name: string | undefined;
|
|
1290
|
-
Description?: string;
|
|
1291
|
-
ContactFlowId?: string;
|
|
1292
|
-
Constraints?: TaskTemplateConstraints;
|
|
1293
|
-
Defaults?: TaskTemplateDefaults;
|
|
1294
|
-
Fields?: TaskTemplateField[];
|
|
1295
|
-
Status?: TaskTemplateStatus;
|
|
1296
|
-
LastModifiedTime?: Date;
|
|
1297
|
-
CreatedTime?: Date;
|
|
1298
|
-
Tags?: Record<string, string
|
|
1290
|
+
Description?: string | undefined;
|
|
1291
|
+
ContactFlowId?: string | undefined;
|
|
1292
|
+
Constraints?: TaskTemplateConstraints | undefined;
|
|
1293
|
+
Defaults?: TaskTemplateDefaults | undefined;
|
|
1294
|
+
Fields?: TaskTemplateField[] | undefined;
|
|
1295
|
+
Status?: TaskTemplateStatus | undefined;
|
|
1296
|
+
LastModifiedTime?: Date | undefined;
|
|
1297
|
+
CreatedTime?: Date | undefined;
|
|
1298
|
+
Tags?: Record<string, string> | undefined;
|
|
1299
1299
|
}
|
|
1300
1300
|
export interface GetTrafficDistributionRequest {
|
|
1301
1301
|
Id: string | undefined;
|
|
@@ -1311,68 +1311,68 @@ export interface TelephonyConfig {
|
|
|
1311
1311
|
Distributions: Distribution[] | undefined;
|
|
1312
1312
|
}
|
|
1313
1313
|
export interface GetTrafficDistributionResponse {
|
|
1314
|
-
TelephonyConfig?: TelephonyConfig;
|
|
1315
|
-
Id?: string;
|
|
1316
|
-
Arn?: string;
|
|
1317
|
-
SignInConfig?: SignInConfig;
|
|
1318
|
-
AgentConfig?: AgentConfig;
|
|
1314
|
+
TelephonyConfig?: TelephonyConfig | undefined;
|
|
1315
|
+
Id?: string | undefined;
|
|
1316
|
+
Arn?: string | undefined;
|
|
1317
|
+
SignInConfig?: SignInConfig | undefined;
|
|
1318
|
+
AgentConfig?: AgentConfig | undefined;
|
|
1319
1319
|
}
|
|
1320
1320
|
export interface ImportPhoneNumberRequest {
|
|
1321
1321
|
InstanceId: string | undefined;
|
|
1322
1322
|
SourcePhoneNumberArn: string | undefined;
|
|
1323
|
-
PhoneNumberDescription?: string;
|
|
1324
|
-
Tags?: Record<string, string
|
|
1325
|
-
ClientToken?: string;
|
|
1323
|
+
PhoneNumberDescription?: string | undefined;
|
|
1324
|
+
Tags?: Record<string, string> | undefined;
|
|
1325
|
+
ClientToken?: string | undefined;
|
|
1326
1326
|
}
|
|
1327
1327
|
export interface ImportPhoneNumberResponse {
|
|
1328
|
-
PhoneNumberId?: string;
|
|
1329
|
-
PhoneNumberArn?: string;
|
|
1328
|
+
PhoneNumberId?: string | undefined;
|
|
1329
|
+
PhoneNumberArn?: string | undefined;
|
|
1330
1330
|
}
|
|
1331
1331
|
export interface ListAgentStatusRequest {
|
|
1332
1332
|
InstanceId: string | undefined;
|
|
1333
|
-
NextToken?: string;
|
|
1334
|
-
MaxResults?: number;
|
|
1335
|
-
AgentStatusTypes?: AgentStatusType[];
|
|
1333
|
+
NextToken?: string | undefined;
|
|
1334
|
+
MaxResults?: number | undefined;
|
|
1335
|
+
AgentStatusTypes?: AgentStatusType[] | undefined;
|
|
1336
1336
|
}
|
|
1337
1337
|
export interface ListAgentStatusResponse {
|
|
1338
|
-
NextToken?: string;
|
|
1339
|
-
AgentStatusSummaryList?: AgentStatusSummary[];
|
|
1338
|
+
NextToken?: string | undefined;
|
|
1339
|
+
AgentStatusSummaryList?: AgentStatusSummary[] | undefined;
|
|
1340
1340
|
}
|
|
1341
1341
|
export interface ListAnalyticsDataAssociationsRequest {
|
|
1342
1342
|
InstanceId: string | undefined;
|
|
1343
|
-
DataSetId?: string;
|
|
1344
|
-
NextToken?: string;
|
|
1345
|
-
MaxResults?: number;
|
|
1343
|
+
DataSetId?: string | undefined;
|
|
1344
|
+
NextToken?: string | undefined;
|
|
1345
|
+
MaxResults?: number | undefined;
|
|
1346
1346
|
}
|
|
1347
1347
|
export interface ListAnalyticsDataAssociationsResponse {
|
|
1348
|
-
Results?: AnalyticsDataAssociationResult[];
|
|
1349
|
-
NextToken?: string;
|
|
1348
|
+
Results?: AnalyticsDataAssociationResult[] | undefined;
|
|
1349
|
+
NextToken?: string | undefined;
|
|
1350
1350
|
}
|
|
1351
1351
|
export interface ListApprovedOriginsRequest {
|
|
1352
1352
|
InstanceId: string | undefined;
|
|
1353
|
-
NextToken?: string;
|
|
1354
|
-
MaxResults?: number;
|
|
1353
|
+
NextToken?: string | undefined;
|
|
1354
|
+
MaxResults?: number | undefined;
|
|
1355
1355
|
}
|
|
1356
1356
|
export interface ListApprovedOriginsResponse {
|
|
1357
|
-
Origins?: string[];
|
|
1358
|
-
NextToken?: string;
|
|
1357
|
+
Origins?: string[] | undefined;
|
|
1358
|
+
NextToken?: string | undefined;
|
|
1359
1359
|
}
|
|
1360
1360
|
export interface ListAuthenticationProfilesRequest {
|
|
1361
1361
|
InstanceId: string | undefined;
|
|
1362
|
-
MaxResults?: number;
|
|
1363
|
-
NextToken?: string;
|
|
1362
|
+
MaxResults?: number | undefined;
|
|
1363
|
+
NextToken?: string | undefined;
|
|
1364
1364
|
}
|
|
1365
1365
|
export interface AuthenticationProfileSummary {
|
|
1366
|
-
Id?: string;
|
|
1367
|
-
Arn?: string;
|
|
1368
|
-
Name?: string;
|
|
1369
|
-
IsDefault?: boolean;
|
|
1370
|
-
LastModifiedTime?: Date;
|
|
1371
|
-
LastModifiedRegion?: string;
|
|
1366
|
+
Id?: string | undefined;
|
|
1367
|
+
Arn?: string | undefined;
|
|
1368
|
+
Name?: string | undefined;
|
|
1369
|
+
IsDefault?: boolean | undefined;
|
|
1370
|
+
LastModifiedTime?: Date | undefined;
|
|
1371
|
+
LastModifiedRegion?: string | undefined;
|
|
1372
1372
|
}
|
|
1373
1373
|
export interface ListAuthenticationProfilesResponse {
|
|
1374
|
-
AuthenticationProfileSummaryList?: AuthenticationProfileSummary[];
|
|
1375
|
-
NextToken?: string;
|
|
1374
|
+
AuthenticationProfileSummaryList?: AuthenticationProfileSummary[] | undefined;
|
|
1375
|
+
NextToken?: string | undefined;
|
|
1376
1376
|
}
|
|
1377
1377
|
export declare const LexVersion: {
|
|
1378
1378
|
readonly V1: "V1";
|
|
@@ -1381,22 +1381,22 @@ export declare const LexVersion: {
|
|
|
1381
1381
|
export type LexVersion = (typeof LexVersion)[keyof typeof LexVersion];
|
|
1382
1382
|
export interface ListBotsRequest {
|
|
1383
1383
|
InstanceId: string | undefined;
|
|
1384
|
-
NextToken?: string;
|
|
1385
|
-
MaxResults?: number;
|
|
1384
|
+
NextToken?: string | undefined;
|
|
1385
|
+
MaxResults?: number | undefined;
|
|
1386
1386
|
LexVersion: LexVersion | undefined;
|
|
1387
1387
|
}
|
|
1388
1388
|
export interface LexBotConfig {
|
|
1389
|
-
LexBot?: LexBot;
|
|
1390
|
-
LexV2Bot?: LexV2Bot;
|
|
1389
|
+
LexBot?: LexBot | undefined;
|
|
1390
|
+
LexV2Bot?: LexV2Bot | undefined;
|
|
1391
1391
|
}
|
|
1392
1392
|
export interface ListBotsResponse {
|
|
1393
|
-
LexBots?: LexBotConfig[];
|
|
1394
|
-
NextToken?: string;
|
|
1393
|
+
LexBots?: LexBotConfig[] | undefined;
|
|
1394
|
+
NextToken?: string | undefined;
|
|
1395
1395
|
}
|
|
1396
1396
|
export interface ListContactEvaluationsRequest {
|
|
1397
1397
|
InstanceId: string | undefined;
|
|
1398
1398
|
ContactId: string | undefined;
|
|
1399
|
-
NextToken?: string;
|
|
1399
|
+
NextToken?: string | undefined;
|
|
1400
1400
|
}
|
|
1401
1401
|
export interface EvaluationSummary {
|
|
1402
1402
|
EvaluationId: string | undefined;
|
|
@@ -1405,53 +1405,53 @@ export interface EvaluationSummary {
|
|
|
1405
1405
|
EvaluationFormId: string | undefined;
|
|
1406
1406
|
Status: EvaluationStatus | undefined;
|
|
1407
1407
|
EvaluatorArn: string | undefined;
|
|
1408
|
-
Score?: EvaluationScore;
|
|
1408
|
+
Score?: EvaluationScore | undefined;
|
|
1409
1409
|
CreatedTime: Date | undefined;
|
|
1410
1410
|
LastModifiedTime: Date | undefined;
|
|
1411
1411
|
}
|
|
1412
1412
|
export interface ListContactEvaluationsResponse {
|
|
1413
1413
|
EvaluationSummaryList: EvaluationSummary[] | undefined;
|
|
1414
|
-
NextToken?: string;
|
|
1414
|
+
NextToken?: string | undefined;
|
|
1415
1415
|
}
|
|
1416
1416
|
export interface ListContactFlowModulesRequest {
|
|
1417
1417
|
InstanceId: string | undefined;
|
|
1418
|
-
NextToken?: string;
|
|
1419
|
-
MaxResults?: number;
|
|
1420
|
-
ContactFlowModuleState?: ContactFlowModuleState;
|
|
1418
|
+
NextToken?: string | undefined;
|
|
1419
|
+
MaxResults?: number | undefined;
|
|
1420
|
+
ContactFlowModuleState?: ContactFlowModuleState | undefined;
|
|
1421
1421
|
}
|
|
1422
1422
|
export interface ContactFlowModuleSummary {
|
|
1423
|
-
Id?: string;
|
|
1424
|
-
Arn?: string;
|
|
1425
|
-
Name?: string;
|
|
1426
|
-
State?: ContactFlowModuleState;
|
|
1423
|
+
Id?: string | undefined;
|
|
1424
|
+
Arn?: string | undefined;
|
|
1425
|
+
Name?: string | undefined;
|
|
1426
|
+
State?: ContactFlowModuleState | undefined;
|
|
1427
1427
|
}
|
|
1428
1428
|
export interface ListContactFlowModulesResponse {
|
|
1429
|
-
ContactFlowModulesSummaryList?: ContactFlowModuleSummary[];
|
|
1430
|
-
NextToken?: string;
|
|
1429
|
+
ContactFlowModulesSummaryList?: ContactFlowModuleSummary[] | undefined;
|
|
1430
|
+
NextToken?: string | undefined;
|
|
1431
1431
|
}
|
|
1432
1432
|
export interface ListContactFlowsRequest {
|
|
1433
1433
|
InstanceId: string | undefined;
|
|
1434
|
-
ContactFlowTypes?: ContactFlowType[];
|
|
1435
|
-
NextToken?: string;
|
|
1436
|
-
MaxResults?: number;
|
|
1434
|
+
ContactFlowTypes?: ContactFlowType[] | undefined;
|
|
1435
|
+
NextToken?: string | undefined;
|
|
1436
|
+
MaxResults?: number | undefined;
|
|
1437
1437
|
}
|
|
1438
1438
|
export interface ContactFlowSummary {
|
|
1439
|
-
Id?: string;
|
|
1440
|
-
Arn?: string;
|
|
1441
|
-
Name?: string;
|
|
1442
|
-
ContactFlowType?: ContactFlowType;
|
|
1443
|
-
ContactFlowState?: ContactFlowState;
|
|
1444
|
-
ContactFlowStatus?: ContactFlowStatus;
|
|
1439
|
+
Id?: string | undefined;
|
|
1440
|
+
Arn?: string | undefined;
|
|
1441
|
+
Name?: string | undefined;
|
|
1442
|
+
ContactFlowType?: ContactFlowType | undefined;
|
|
1443
|
+
ContactFlowState?: ContactFlowState | undefined;
|
|
1444
|
+
ContactFlowStatus?: ContactFlowStatus | undefined;
|
|
1445
1445
|
}
|
|
1446
1446
|
export interface ListContactFlowsResponse {
|
|
1447
|
-
ContactFlowSummaryList?: ContactFlowSummary[];
|
|
1448
|
-
NextToken?: string;
|
|
1447
|
+
ContactFlowSummaryList?: ContactFlowSummary[] | undefined;
|
|
1448
|
+
NextToken?: string | undefined;
|
|
1449
1449
|
}
|
|
1450
1450
|
export interface ListContactReferencesRequest {
|
|
1451
1451
|
InstanceId: string | undefined;
|
|
1452
1452
|
ContactId: string | undefined;
|
|
1453
1453
|
ReferenceTypes: ReferenceType[] | undefined;
|
|
1454
|
-
NextToken?: string;
|
|
1454
|
+
NextToken?: string | undefined;
|
|
1455
1455
|
}
|
|
1456
1456
|
export declare const ReferenceStatus: {
|
|
1457
1457
|
readonly APPROVED: "APPROVED";
|
|
@@ -1460,29 +1460,29 @@ export declare const ReferenceStatus: {
|
|
|
1460
1460
|
export type ReferenceStatus =
|
|
1461
1461
|
(typeof ReferenceStatus)[keyof typeof ReferenceStatus];
|
|
1462
1462
|
export interface AttachmentReference {
|
|
1463
|
-
Name?: string;
|
|
1464
|
-
Value?: string;
|
|
1465
|
-
Status?: ReferenceStatus;
|
|
1463
|
+
Name?: string | undefined;
|
|
1464
|
+
Value?: string | undefined;
|
|
1465
|
+
Status?: ReferenceStatus | undefined;
|
|
1466
1466
|
}
|
|
1467
1467
|
export interface DateReference {
|
|
1468
|
-
Name?: string;
|
|
1469
|
-
Value?: string;
|
|
1468
|
+
Name?: string | undefined;
|
|
1469
|
+
Value?: string | undefined;
|
|
1470
1470
|
}
|
|
1471
1471
|
export interface EmailReference {
|
|
1472
|
-
Name?: string;
|
|
1473
|
-
Value?: string;
|
|
1472
|
+
Name?: string | undefined;
|
|
1473
|
+
Value?: string | undefined;
|
|
1474
1474
|
}
|
|
1475
1475
|
export interface NumberReference {
|
|
1476
|
-
Name?: string;
|
|
1477
|
-
Value?: string;
|
|
1476
|
+
Name?: string | undefined;
|
|
1477
|
+
Value?: string | undefined;
|
|
1478
1478
|
}
|
|
1479
1479
|
export interface StringReference {
|
|
1480
|
-
Name?: string;
|
|
1481
|
-
Value?: string;
|
|
1480
|
+
Name?: string | undefined;
|
|
1481
|
+
Value?: string | undefined;
|
|
1482
1482
|
}
|
|
1483
1483
|
export interface UrlReference {
|
|
1484
|
-
Name?: string;
|
|
1485
|
-
Value?: string;
|
|
1484
|
+
Name?: string | undefined;
|
|
1485
|
+
Value?: string | undefined;
|
|
1486
1486
|
}
|
|
1487
1487
|
export type ReferenceSummary =
|
|
1488
1488
|
| ReferenceSummary.AttachmentMember
|
|
@@ -1568,14 +1568,14 @@ export declare namespace ReferenceSummary {
|
|
|
1568
1568
|
const visit: <T>(value: ReferenceSummary, visitor: Visitor<T>) => T;
|
|
1569
1569
|
}
|
|
1570
1570
|
export interface ListContactReferencesResponse {
|
|
1571
|
-
ReferenceSummaryList?: ReferenceSummary[];
|
|
1572
|
-
NextToken?: string;
|
|
1571
|
+
ReferenceSummaryList?: ReferenceSummary[] | undefined;
|
|
1572
|
+
NextToken?: string | undefined;
|
|
1573
1573
|
}
|
|
1574
1574
|
export interface ListDefaultVocabulariesRequest {
|
|
1575
1575
|
InstanceId: string | undefined;
|
|
1576
|
-
LanguageCode?: VocabularyLanguageCode;
|
|
1577
|
-
MaxResults?: number;
|
|
1578
|
-
NextToken?: string;
|
|
1576
|
+
LanguageCode?: VocabularyLanguageCode | undefined;
|
|
1577
|
+
MaxResults?: number | undefined;
|
|
1578
|
+
NextToken?: string | undefined;
|
|
1579
1579
|
}
|
|
1580
1580
|
export interface DefaultVocabulary {
|
|
1581
1581
|
InstanceId: string | undefined;
|
|
@@ -1585,12 +1585,12 @@ export interface DefaultVocabulary {
|
|
|
1585
1585
|
}
|
|
1586
1586
|
export interface ListDefaultVocabulariesResponse {
|
|
1587
1587
|
DefaultVocabularyList: DefaultVocabulary[] | undefined;
|
|
1588
|
-
NextToken?: string;
|
|
1588
|
+
NextToken?: string | undefined;
|
|
1589
1589
|
}
|
|
1590
1590
|
export interface ListEvaluationFormsRequest {
|
|
1591
1591
|
InstanceId: string | undefined;
|
|
1592
|
-
MaxResults?: number;
|
|
1593
|
-
NextToken?: string;
|
|
1592
|
+
MaxResults?: number | undefined;
|
|
1593
|
+
NextToken?: string | undefined;
|
|
1594
1594
|
}
|
|
1595
1595
|
export interface EvaluationFormSummary {
|
|
1596
1596
|
EvaluationFormId: string | undefined;
|
|
@@ -1600,20 +1600,20 @@ export interface EvaluationFormSummary {
|
|
|
1600
1600
|
CreatedBy: string | undefined;
|
|
1601
1601
|
LastModifiedTime: Date | undefined;
|
|
1602
1602
|
LastModifiedBy: string | undefined;
|
|
1603
|
-
LastActivatedTime?: Date;
|
|
1604
|
-
LastActivatedBy?: string;
|
|
1603
|
+
LastActivatedTime?: Date | undefined;
|
|
1604
|
+
LastActivatedBy?: string | undefined;
|
|
1605
1605
|
LatestVersion: number | undefined;
|
|
1606
|
-
ActiveVersion?: number;
|
|
1606
|
+
ActiveVersion?: number | undefined;
|
|
1607
1607
|
}
|
|
1608
1608
|
export interface ListEvaluationFormsResponse {
|
|
1609
1609
|
EvaluationFormSummaryList: EvaluationFormSummary[] | undefined;
|
|
1610
|
-
NextToken?: string;
|
|
1610
|
+
NextToken?: string | undefined;
|
|
1611
1611
|
}
|
|
1612
1612
|
export interface ListEvaluationFormVersionsRequest {
|
|
1613
1613
|
InstanceId: string | undefined;
|
|
1614
1614
|
EvaluationFormId: string | undefined;
|
|
1615
|
-
MaxResults?: number;
|
|
1616
|
-
NextToken?: string;
|
|
1615
|
+
MaxResults?: number | undefined;
|
|
1616
|
+
NextToken?: string | undefined;
|
|
1617
1617
|
}
|
|
1618
1618
|
export interface EvaluationFormVersionSummary {
|
|
1619
1619
|
EvaluationFormArn: string | undefined;
|
|
@@ -1628,203 +1628,205 @@ export interface EvaluationFormVersionSummary {
|
|
|
1628
1628
|
}
|
|
1629
1629
|
export interface ListEvaluationFormVersionsResponse {
|
|
1630
1630
|
EvaluationFormVersionSummaryList: EvaluationFormVersionSummary[] | undefined;
|
|
1631
|
-
NextToken?: string;
|
|
1631
|
+
NextToken?: string | undefined;
|
|
1632
1632
|
}
|
|
1633
1633
|
export interface ListFlowAssociationsRequest {
|
|
1634
1634
|
InstanceId: string | undefined;
|
|
1635
|
-
ResourceType?: ListFlowAssociationResourceType;
|
|
1636
|
-
NextToken?: string;
|
|
1637
|
-
MaxResults?: number;
|
|
1635
|
+
ResourceType?: ListFlowAssociationResourceType | undefined;
|
|
1636
|
+
NextToken?: string | undefined;
|
|
1637
|
+
MaxResults?: number | undefined;
|
|
1638
1638
|
}
|
|
1639
1639
|
export interface ListFlowAssociationsResponse {
|
|
1640
|
-
FlowAssociationSummaryList?: FlowAssociationSummary[];
|
|
1641
|
-
NextToken?: string;
|
|
1640
|
+
FlowAssociationSummaryList?: FlowAssociationSummary[] | undefined;
|
|
1641
|
+
NextToken?: string | undefined;
|
|
1642
1642
|
}
|
|
1643
1643
|
export interface ListHoursOfOperationsRequest {
|
|
1644
1644
|
InstanceId: string | undefined;
|
|
1645
|
-
NextToken?: string;
|
|
1646
|
-
MaxResults?: number;
|
|
1645
|
+
NextToken?: string | undefined;
|
|
1646
|
+
MaxResults?: number | undefined;
|
|
1647
1647
|
}
|
|
1648
1648
|
export interface HoursOfOperationSummary {
|
|
1649
|
-
Id?: string;
|
|
1650
|
-
Arn?: string;
|
|
1651
|
-
Name?: string;
|
|
1652
|
-
LastModifiedTime?: Date;
|
|
1653
|
-
LastModifiedRegion?: string;
|
|
1649
|
+
Id?: string | undefined;
|
|
1650
|
+
Arn?: string | undefined;
|
|
1651
|
+
Name?: string | undefined;
|
|
1652
|
+
LastModifiedTime?: Date | undefined;
|
|
1653
|
+
LastModifiedRegion?: string | undefined;
|
|
1654
1654
|
}
|
|
1655
1655
|
export interface ListHoursOfOperationsResponse {
|
|
1656
|
-
HoursOfOperationSummaryList?: HoursOfOperationSummary[];
|
|
1657
|
-
NextToken?: string;
|
|
1656
|
+
HoursOfOperationSummaryList?: HoursOfOperationSummary[] | undefined;
|
|
1657
|
+
NextToken?: string | undefined;
|
|
1658
1658
|
}
|
|
1659
1659
|
export interface ListInstanceAttributesRequest {
|
|
1660
1660
|
InstanceId: string | undefined;
|
|
1661
|
-
NextToken?: string;
|
|
1662
|
-
MaxResults?: number;
|
|
1661
|
+
NextToken?: string | undefined;
|
|
1662
|
+
MaxResults?: number | undefined;
|
|
1663
1663
|
}
|
|
1664
1664
|
export interface ListInstanceAttributesResponse {
|
|
1665
|
-
Attributes?: Attribute[];
|
|
1666
|
-
NextToken?: string;
|
|
1665
|
+
Attributes?: Attribute[] | undefined;
|
|
1666
|
+
NextToken?: string | undefined;
|
|
1667
1667
|
}
|
|
1668
1668
|
export interface ListInstancesRequest {
|
|
1669
|
-
NextToken?: string;
|
|
1670
|
-
MaxResults?: number;
|
|
1669
|
+
NextToken?: string | undefined;
|
|
1670
|
+
MaxResults?: number | undefined;
|
|
1671
1671
|
}
|
|
1672
1672
|
export interface InstanceSummary {
|
|
1673
|
-
Id?: string;
|
|
1674
|
-
Arn?: string;
|
|
1675
|
-
IdentityManagementType?: DirectoryType;
|
|
1676
|
-
InstanceAlias?: string;
|
|
1677
|
-
CreatedTime?: Date;
|
|
1678
|
-
ServiceRole?: string;
|
|
1679
|
-
InstanceStatus?: InstanceStatus;
|
|
1680
|
-
InboundCallsEnabled?: boolean;
|
|
1681
|
-
OutboundCallsEnabled?: boolean;
|
|
1682
|
-
InstanceAccessUrl?: string;
|
|
1673
|
+
Id?: string | undefined;
|
|
1674
|
+
Arn?: string | undefined;
|
|
1675
|
+
IdentityManagementType?: DirectoryType | undefined;
|
|
1676
|
+
InstanceAlias?: string | undefined;
|
|
1677
|
+
CreatedTime?: Date | undefined;
|
|
1678
|
+
ServiceRole?: string | undefined;
|
|
1679
|
+
InstanceStatus?: InstanceStatus | undefined;
|
|
1680
|
+
InboundCallsEnabled?: boolean | undefined;
|
|
1681
|
+
OutboundCallsEnabled?: boolean | undefined;
|
|
1682
|
+
InstanceAccessUrl?: string | undefined;
|
|
1683
1683
|
}
|
|
1684
1684
|
export interface ListInstancesResponse {
|
|
1685
|
-
InstanceSummaryList?: InstanceSummary[];
|
|
1686
|
-
NextToken?: string;
|
|
1685
|
+
InstanceSummaryList?: InstanceSummary[] | undefined;
|
|
1686
|
+
NextToken?: string | undefined;
|
|
1687
1687
|
}
|
|
1688
1688
|
export interface ListInstanceStorageConfigsRequest {
|
|
1689
1689
|
InstanceId: string | undefined;
|
|
1690
1690
|
ResourceType: InstanceStorageResourceType | undefined;
|
|
1691
|
-
NextToken?: string;
|
|
1692
|
-
MaxResults?: number;
|
|
1691
|
+
NextToken?: string | undefined;
|
|
1692
|
+
MaxResults?: number | undefined;
|
|
1693
1693
|
}
|
|
1694
1694
|
export interface ListInstanceStorageConfigsResponse {
|
|
1695
|
-
StorageConfigs?: InstanceStorageConfig[];
|
|
1696
|
-
NextToken?: string;
|
|
1695
|
+
StorageConfigs?: InstanceStorageConfig[] | undefined;
|
|
1696
|
+
NextToken?: string | undefined;
|
|
1697
1697
|
}
|
|
1698
1698
|
export interface ListIntegrationAssociationsRequest {
|
|
1699
1699
|
InstanceId: string | undefined;
|
|
1700
|
-
IntegrationType?: IntegrationType;
|
|
1701
|
-
NextToken?: string;
|
|
1702
|
-
MaxResults?: number;
|
|
1703
|
-
IntegrationArn?: string;
|
|
1700
|
+
IntegrationType?: IntegrationType | undefined;
|
|
1701
|
+
NextToken?: string | undefined;
|
|
1702
|
+
MaxResults?: number | undefined;
|
|
1703
|
+
IntegrationArn?: string | undefined;
|
|
1704
1704
|
}
|
|
1705
1705
|
export interface IntegrationAssociationSummary {
|
|
1706
|
-
IntegrationAssociationId?: string;
|
|
1707
|
-
IntegrationAssociationArn?: string;
|
|
1708
|
-
InstanceId?: string;
|
|
1709
|
-
IntegrationType?: IntegrationType;
|
|
1710
|
-
IntegrationArn?: string;
|
|
1711
|
-
SourceApplicationUrl?: string;
|
|
1712
|
-
SourceApplicationName?: string;
|
|
1713
|
-
SourceType?: SourceType;
|
|
1706
|
+
IntegrationAssociationId?: string | undefined;
|
|
1707
|
+
IntegrationAssociationArn?: string | undefined;
|
|
1708
|
+
InstanceId?: string | undefined;
|
|
1709
|
+
IntegrationType?: IntegrationType | undefined;
|
|
1710
|
+
IntegrationArn?: string | undefined;
|
|
1711
|
+
SourceApplicationUrl?: string | undefined;
|
|
1712
|
+
SourceApplicationName?: string | undefined;
|
|
1713
|
+
SourceType?: SourceType | undefined;
|
|
1714
1714
|
}
|
|
1715
1715
|
export interface ListIntegrationAssociationsResponse {
|
|
1716
|
-
IntegrationAssociationSummaryList?:
|
|
1717
|
-
|
|
1716
|
+
IntegrationAssociationSummaryList?:
|
|
1717
|
+
| IntegrationAssociationSummary[]
|
|
1718
|
+
| undefined;
|
|
1719
|
+
NextToken?: string | undefined;
|
|
1718
1720
|
}
|
|
1719
1721
|
export interface ListLambdaFunctionsRequest {
|
|
1720
1722
|
InstanceId: string | undefined;
|
|
1721
|
-
NextToken?: string;
|
|
1722
|
-
MaxResults?: number;
|
|
1723
|
+
NextToken?: string | undefined;
|
|
1724
|
+
MaxResults?: number | undefined;
|
|
1723
1725
|
}
|
|
1724
1726
|
export interface ListLambdaFunctionsResponse {
|
|
1725
|
-
LambdaFunctions?: string[];
|
|
1726
|
-
NextToken?: string;
|
|
1727
|
+
LambdaFunctions?: string[] | undefined;
|
|
1728
|
+
NextToken?: string | undefined;
|
|
1727
1729
|
}
|
|
1728
1730
|
export interface ListLexBotsRequest {
|
|
1729
1731
|
InstanceId: string | undefined;
|
|
1730
|
-
NextToken?: string;
|
|
1731
|
-
MaxResults?: number;
|
|
1732
|
+
NextToken?: string | undefined;
|
|
1733
|
+
MaxResults?: number | undefined;
|
|
1732
1734
|
}
|
|
1733
1735
|
export interface ListLexBotsResponse {
|
|
1734
|
-
LexBots?: LexBot[];
|
|
1735
|
-
NextToken?: string;
|
|
1736
|
+
LexBots?: LexBot[] | undefined;
|
|
1737
|
+
NextToken?: string | undefined;
|
|
1736
1738
|
}
|
|
1737
1739
|
export interface ListPhoneNumbersRequest {
|
|
1738
1740
|
InstanceId: string | undefined;
|
|
1739
|
-
PhoneNumberTypes?: PhoneNumberType[];
|
|
1740
|
-
PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
|
|
1741
|
-
NextToken?: string;
|
|
1742
|
-
MaxResults?: number;
|
|
1741
|
+
PhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
1742
|
+
PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
|
|
1743
|
+
NextToken?: string | undefined;
|
|
1744
|
+
MaxResults?: number | undefined;
|
|
1743
1745
|
}
|
|
1744
1746
|
export interface PhoneNumberSummary {
|
|
1745
|
-
Id?: string;
|
|
1746
|
-
Arn?: string;
|
|
1747
|
-
PhoneNumber?: string;
|
|
1748
|
-
PhoneNumberType?: PhoneNumberType;
|
|
1749
|
-
PhoneNumberCountryCode?: PhoneNumberCountryCode;
|
|
1747
|
+
Id?: string | undefined;
|
|
1748
|
+
Arn?: string | undefined;
|
|
1749
|
+
PhoneNumber?: string | undefined;
|
|
1750
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
1751
|
+
PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
|
|
1750
1752
|
}
|
|
1751
1753
|
export interface ListPhoneNumbersResponse {
|
|
1752
|
-
PhoneNumberSummaryList?: PhoneNumberSummary[];
|
|
1753
|
-
NextToken?: string;
|
|
1754
|
+
PhoneNumberSummaryList?: PhoneNumberSummary[] | undefined;
|
|
1755
|
+
NextToken?: string | undefined;
|
|
1754
1756
|
}
|
|
1755
1757
|
export interface ListPhoneNumbersV2Request {
|
|
1756
|
-
TargetArn?: string;
|
|
1757
|
-
InstanceId?: string;
|
|
1758
|
-
MaxResults?: number;
|
|
1759
|
-
NextToken?: string;
|
|
1760
|
-
PhoneNumberCountryCodes?: PhoneNumberCountryCode[];
|
|
1761
|
-
PhoneNumberTypes?: PhoneNumberType[];
|
|
1762
|
-
PhoneNumberPrefix?: string;
|
|
1758
|
+
TargetArn?: string | undefined;
|
|
1759
|
+
InstanceId?: string | undefined;
|
|
1760
|
+
MaxResults?: number | undefined;
|
|
1761
|
+
NextToken?: string | undefined;
|
|
1762
|
+
PhoneNumberCountryCodes?: PhoneNumberCountryCode[] | undefined;
|
|
1763
|
+
PhoneNumberTypes?: PhoneNumberType[] | undefined;
|
|
1764
|
+
PhoneNumberPrefix?: string | undefined;
|
|
1763
1765
|
}
|
|
1764
1766
|
export interface ListPhoneNumbersSummary {
|
|
1765
|
-
PhoneNumberId?: string;
|
|
1766
|
-
PhoneNumberArn?: string;
|
|
1767
|
-
PhoneNumber?: string;
|
|
1768
|
-
PhoneNumberCountryCode?: PhoneNumberCountryCode;
|
|
1769
|
-
PhoneNumberType?: PhoneNumberType;
|
|
1770
|
-
TargetArn?: string;
|
|
1771
|
-
InstanceId?: string;
|
|
1772
|
-
PhoneNumberDescription?: string;
|
|
1773
|
-
SourcePhoneNumberArn?: string;
|
|
1767
|
+
PhoneNumberId?: string | undefined;
|
|
1768
|
+
PhoneNumberArn?: string | undefined;
|
|
1769
|
+
PhoneNumber?: string | undefined;
|
|
1770
|
+
PhoneNumberCountryCode?: PhoneNumberCountryCode | undefined;
|
|
1771
|
+
PhoneNumberType?: PhoneNumberType | undefined;
|
|
1772
|
+
TargetArn?: string | undefined;
|
|
1773
|
+
InstanceId?: string | undefined;
|
|
1774
|
+
PhoneNumberDescription?: string | undefined;
|
|
1775
|
+
SourcePhoneNumberArn?: string | undefined;
|
|
1774
1776
|
}
|
|
1775
1777
|
export interface ListPhoneNumbersV2Response {
|
|
1776
|
-
NextToken?: string;
|
|
1777
|
-
ListPhoneNumbersSummaryList?: ListPhoneNumbersSummary[];
|
|
1778
|
+
NextToken?: string | undefined;
|
|
1779
|
+
ListPhoneNumbersSummaryList?: ListPhoneNumbersSummary[] | undefined;
|
|
1778
1780
|
}
|
|
1779
1781
|
export interface ListPredefinedAttributesRequest {
|
|
1780
1782
|
InstanceId: string | undefined;
|
|
1781
|
-
NextToken?: string;
|
|
1782
|
-
MaxResults?: number;
|
|
1783
|
+
NextToken?: string | undefined;
|
|
1784
|
+
MaxResults?: number | undefined;
|
|
1783
1785
|
}
|
|
1784
1786
|
export interface PredefinedAttributeSummary {
|
|
1785
|
-
Name?: string;
|
|
1786
|
-
LastModifiedTime?: Date;
|
|
1787
|
-
LastModifiedRegion?: string;
|
|
1787
|
+
Name?: string | undefined;
|
|
1788
|
+
LastModifiedTime?: Date | undefined;
|
|
1789
|
+
LastModifiedRegion?: string | undefined;
|
|
1788
1790
|
}
|
|
1789
1791
|
export interface ListPredefinedAttributesResponse {
|
|
1790
|
-
NextToken?: string;
|
|
1791
|
-
PredefinedAttributeSummaryList?: PredefinedAttributeSummary[];
|
|
1792
|
+
NextToken?: string | undefined;
|
|
1793
|
+
PredefinedAttributeSummaryList?: PredefinedAttributeSummary[] | undefined;
|
|
1792
1794
|
}
|
|
1793
1795
|
export interface ListPromptsRequest {
|
|
1794
1796
|
InstanceId: string | undefined;
|
|
1795
|
-
NextToken?: string;
|
|
1796
|
-
MaxResults?: number;
|
|
1797
|
+
NextToken?: string | undefined;
|
|
1798
|
+
MaxResults?: number | undefined;
|
|
1797
1799
|
}
|
|
1798
1800
|
export interface PromptSummary {
|
|
1799
|
-
Id?: string;
|
|
1800
|
-
Arn?: string;
|
|
1801
|
-
Name?: string;
|
|
1802
|
-
LastModifiedTime?: Date;
|
|
1803
|
-
LastModifiedRegion?: string;
|
|
1801
|
+
Id?: string | undefined;
|
|
1802
|
+
Arn?: string | undefined;
|
|
1803
|
+
Name?: string | undefined;
|
|
1804
|
+
LastModifiedTime?: Date | undefined;
|
|
1805
|
+
LastModifiedRegion?: string | undefined;
|
|
1804
1806
|
}
|
|
1805
1807
|
export interface ListPromptsResponse {
|
|
1806
|
-
PromptSummaryList?: PromptSummary[];
|
|
1807
|
-
NextToken?: string;
|
|
1808
|
+
PromptSummaryList?: PromptSummary[] | undefined;
|
|
1809
|
+
NextToken?: string | undefined;
|
|
1808
1810
|
}
|
|
1809
1811
|
export interface ListQueueQuickConnectsRequest {
|
|
1810
1812
|
InstanceId: string | undefined;
|
|
1811
1813
|
QueueId: string | undefined;
|
|
1812
|
-
NextToken?: string;
|
|
1813
|
-
MaxResults?: number;
|
|
1814
|
+
NextToken?: string | undefined;
|
|
1815
|
+
MaxResults?: number | undefined;
|
|
1814
1816
|
}
|
|
1815
1817
|
export interface QuickConnectSummary {
|
|
1816
|
-
Id?: string;
|
|
1817
|
-
Arn?: string;
|
|
1818
|
-
Name?: string;
|
|
1819
|
-
QuickConnectType?: QuickConnectType;
|
|
1820
|
-
LastModifiedTime?: Date;
|
|
1821
|
-
LastModifiedRegion?: string;
|
|
1818
|
+
Id?: string | undefined;
|
|
1819
|
+
Arn?: string | undefined;
|
|
1820
|
+
Name?: string | undefined;
|
|
1821
|
+
QuickConnectType?: QuickConnectType | undefined;
|
|
1822
|
+
LastModifiedTime?: Date | undefined;
|
|
1823
|
+
LastModifiedRegion?: string | undefined;
|
|
1822
1824
|
}
|
|
1823
1825
|
export interface ListQueueQuickConnectsResponse {
|
|
1824
|
-
NextToken?: string;
|
|
1825
|
-
QuickConnectSummaryList?: QuickConnectSummary[];
|
|
1826
|
-
LastModifiedTime?: Date;
|
|
1827
|
-
LastModifiedRegion?: string;
|
|
1826
|
+
NextToken?: string | undefined;
|
|
1827
|
+
QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
|
|
1828
|
+
LastModifiedTime?: Date | undefined;
|
|
1829
|
+
LastModifiedRegion?: string | undefined;
|
|
1828
1830
|
}
|
|
1829
1831
|
export declare const QueueType: {
|
|
1830
1832
|
readonly AGENT: "AGENT";
|
|
@@ -1833,31 +1835,31 @@ export declare const QueueType: {
|
|
|
1833
1835
|
export type QueueType = (typeof QueueType)[keyof typeof QueueType];
|
|
1834
1836
|
export interface ListQueuesRequest {
|
|
1835
1837
|
InstanceId: string | undefined;
|
|
1836
|
-
QueueTypes?: QueueType[];
|
|
1837
|
-
NextToken?: string;
|
|
1838
|
-
MaxResults?: number;
|
|
1838
|
+
QueueTypes?: QueueType[] | undefined;
|
|
1839
|
+
NextToken?: string | undefined;
|
|
1840
|
+
MaxResults?: number | undefined;
|
|
1839
1841
|
}
|
|
1840
1842
|
export interface QueueSummary {
|
|
1841
|
-
Id?: string;
|
|
1842
|
-
Arn?: string;
|
|
1843
|
-
Name?: string;
|
|
1844
|
-
QueueType?: QueueType;
|
|
1845
|
-
LastModifiedTime?: Date;
|
|
1846
|
-
LastModifiedRegion?: string;
|
|
1843
|
+
Id?: string | undefined;
|
|
1844
|
+
Arn?: string | undefined;
|
|
1845
|
+
Name?: string | undefined;
|
|
1846
|
+
QueueType?: QueueType | undefined;
|
|
1847
|
+
LastModifiedTime?: Date | undefined;
|
|
1848
|
+
LastModifiedRegion?: string | undefined;
|
|
1847
1849
|
}
|
|
1848
1850
|
export interface ListQueuesResponse {
|
|
1849
|
-
QueueSummaryList?: QueueSummary[];
|
|
1850
|
-
NextToken?: string;
|
|
1851
|
+
QueueSummaryList?: QueueSummary[] | undefined;
|
|
1852
|
+
NextToken?: string | undefined;
|
|
1851
1853
|
}
|
|
1852
1854
|
export interface ListQuickConnectsRequest {
|
|
1853
1855
|
InstanceId: string | undefined;
|
|
1854
|
-
NextToken?: string;
|
|
1855
|
-
MaxResults?: number;
|
|
1856
|
-
QuickConnectTypes?: QuickConnectType[];
|
|
1856
|
+
NextToken?: string | undefined;
|
|
1857
|
+
MaxResults?: number | undefined;
|
|
1858
|
+
QuickConnectTypes?: QuickConnectType[] | undefined;
|
|
1857
1859
|
}
|
|
1858
1860
|
export interface ListQuickConnectsResponse {
|
|
1859
|
-
QuickConnectSummaryList?: QuickConnectSummary[];
|
|
1860
|
-
NextToken?: string;
|
|
1861
|
+
QuickConnectSummaryList?: QuickConnectSummary[] | undefined;
|
|
1862
|
+
NextToken?: string | undefined;
|
|
1861
1863
|
}
|
|
1862
1864
|
export declare const RealTimeContactAnalysisOutputType: {
|
|
1863
1865
|
readonly Raw: "Raw";
|
|
@@ -1878,8 +1880,8 @@ export type RealTimeContactAnalysisSegmentType =
|
|
|
1878
1880
|
export interface ListRealtimeContactAnalysisSegmentsV2Request {
|
|
1879
1881
|
InstanceId: string | undefined;
|
|
1880
1882
|
ContactId: string | undefined;
|
|
1881
|
-
MaxResults?: number;
|
|
1882
|
-
NextToken?: string;
|
|
1883
|
+
MaxResults?: number | undefined;
|
|
1884
|
+
NextToken?: string | undefined;
|
|
1883
1885
|
OutputType: RealTimeContactAnalysisOutputType | undefined;
|
|
1884
1886
|
SegmentTypes: RealTimeContactAnalysisSegmentType[] | undefined;
|
|
1885
1887
|
}
|
|
@@ -1898,9 +1900,9 @@ export type ArtifactStatus =
|
|
|
1898
1900
|
(typeof ArtifactStatus)[keyof typeof ArtifactStatus];
|
|
1899
1901
|
export interface RealTimeContactAnalysisAttachment {
|
|
1900
1902
|
AttachmentName: string | undefined;
|
|
1901
|
-
ContentType?: string;
|
|
1903
|
+
ContentType?: string | undefined;
|
|
1902
1904
|
AttachmentId: string | undefined;
|
|
1903
|
-
Status?: ArtifactStatus;
|
|
1905
|
+
Status?: ArtifactStatus | undefined;
|
|
1904
1906
|
}
|
|
1905
1907
|
export type RealTimeContactAnalysisTimeData =
|
|
1906
1908
|
| RealTimeContactAnalysisTimeData.AbsoluteTimeMember
|
|
@@ -1927,7 +1929,7 @@ export interface RealTimeContactAnalysisSegmentAttachments {
|
|
|
1927
1929
|
Id: string | undefined;
|
|
1928
1930
|
ParticipantId: string | undefined;
|
|
1929
1931
|
ParticipantRole: ParticipantRole | undefined;
|
|
1930
|
-
DisplayName?: string;
|
|
1932
|
+
DisplayName?: string | undefined;
|
|
1931
1933
|
Attachments: RealTimeContactAnalysisAttachment[] | undefined;
|
|
1932
1934
|
Time: RealTimeContactAnalysisTimeData | undefined;
|
|
1933
1935
|
}
|
|
@@ -1937,10 +1939,12 @@ export interface RealTimeContactAnalysisCharacterInterval {
|
|
|
1937
1939
|
}
|
|
1938
1940
|
export interface RealTimeContactAnalysisTranscriptItemWithCharacterOffsets {
|
|
1939
1941
|
Id: string | undefined;
|
|
1940
|
-
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval;
|
|
1942
|
+
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval | undefined;
|
|
1941
1943
|
}
|
|
1942
1944
|
export interface RealTimeContactAnalysisPointOfInterest {
|
|
1943
|
-
TranscriptItems?:
|
|
1945
|
+
TranscriptItems?:
|
|
1946
|
+
| RealTimeContactAnalysisTranscriptItemWithCharacterOffsets[]
|
|
1947
|
+
| undefined;
|
|
1944
1948
|
}
|
|
1945
1949
|
export interface RealTimeContactAnalysisCategoryDetails {
|
|
1946
1950
|
PointsOfInterest: RealTimeContactAnalysisPointOfInterest[] | undefined;
|
|
@@ -1952,16 +1956,16 @@ export interface RealTimeContactAnalysisSegmentCategories {
|
|
|
1952
1956
|
}
|
|
1953
1957
|
export interface RealTimeContactAnalysisSegmentEvent {
|
|
1954
1958
|
Id: string | undefined;
|
|
1955
|
-
ParticipantId?: string;
|
|
1956
|
-
ParticipantRole?: ParticipantRole;
|
|
1957
|
-
DisplayName?: string;
|
|
1959
|
+
ParticipantId?: string | undefined;
|
|
1960
|
+
ParticipantRole?: ParticipantRole | undefined;
|
|
1961
|
+
DisplayName?: string | undefined;
|
|
1958
1962
|
EventType: string | undefined;
|
|
1959
1963
|
Time: RealTimeContactAnalysisTimeData | undefined;
|
|
1960
1964
|
}
|
|
1961
1965
|
export interface RealTimeContactAnalysisTranscriptItemWithContent {
|
|
1962
|
-
Content?: string;
|
|
1966
|
+
Content?: string | undefined;
|
|
1963
1967
|
Id: string | undefined;
|
|
1964
|
-
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval;
|
|
1968
|
+
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval | undefined;
|
|
1965
1969
|
}
|
|
1966
1970
|
export interface RealTimeContactAnalysisIssueDetected {
|
|
1967
1971
|
TranscriptItems:
|
|
@@ -1987,12 +1991,14 @@ export declare const RealTimeContactAnalysisPostContactSummaryStatus: {
|
|
|
1987
1991
|
export type RealTimeContactAnalysisPostContactSummaryStatus =
|
|
1988
1992
|
(typeof RealTimeContactAnalysisPostContactSummaryStatus)[keyof typeof RealTimeContactAnalysisPostContactSummaryStatus];
|
|
1989
1993
|
export interface RealTimeContactAnalysisSegmentPostContactSummary {
|
|
1990
|
-
Content?: string;
|
|
1994
|
+
Content?: string | undefined;
|
|
1991
1995
|
Status: RealTimeContactAnalysisPostContactSummaryStatus | undefined;
|
|
1992
|
-
FailureCode?:
|
|
1996
|
+
FailureCode?:
|
|
1997
|
+
| RealTimeContactAnalysisPostContactSummaryFailureCode
|
|
1998
|
+
| undefined;
|
|
1993
1999
|
}
|
|
1994
2000
|
export interface RealTimeContactAnalysisTranscriptItemRedaction {
|
|
1995
|
-
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval[];
|
|
2001
|
+
CharacterOffsets?: RealTimeContactAnalysisCharacterInterval[] | undefined;
|
|
1996
2002
|
}
|
|
1997
2003
|
export declare const RealTimeContactAnalysisSentimentLabel: {
|
|
1998
2004
|
readonly NEGATIVE: "NEGATIVE";
|
|
@@ -2005,12 +2011,12 @@ export interface RealTimeContactAnalysisSegmentTranscript {
|
|
|
2005
2011
|
Id: string | undefined;
|
|
2006
2012
|
ParticipantId: string | undefined;
|
|
2007
2013
|
ParticipantRole: ParticipantRole | undefined;
|
|
2008
|
-
DisplayName?: string;
|
|
2014
|
+
DisplayName?: string | undefined;
|
|
2009
2015
|
Content: string | undefined;
|
|
2010
|
-
ContentType?: string;
|
|
2016
|
+
ContentType?: string | undefined;
|
|
2011
2017
|
Time: RealTimeContactAnalysisTimeData | undefined;
|
|
2012
|
-
Redaction?: RealTimeContactAnalysisTranscriptItemRedaction;
|
|
2013
|
-
Sentiment?: RealTimeContactAnalysisSentimentLabel;
|
|
2018
|
+
Redaction?: RealTimeContactAnalysisTranscriptItemRedaction | undefined;
|
|
2019
|
+
Sentiment?: RealTimeContactAnalysisSentimentLabel | undefined;
|
|
2014
2020
|
}
|
|
2015
2021
|
export type RealtimeContactAnalysisSegment =
|
|
2016
2022
|
| RealtimeContactAnalysisSegment.AttachmentsMember
|
|
@@ -2111,12 +2117,12 @@ export interface ListRealtimeContactAnalysisSegmentsV2Response {
|
|
|
2111
2117
|
Channel: RealTimeContactAnalysisSupportedChannel | undefined;
|
|
2112
2118
|
Status: RealTimeContactAnalysisStatus | undefined;
|
|
2113
2119
|
Segments: RealtimeContactAnalysisSegment[] | undefined;
|
|
2114
|
-
NextToken?: string;
|
|
2120
|
+
NextToken?: string | undefined;
|
|
2115
2121
|
}
|
|
2116
2122
|
export declare class OutputTypeNotFoundException extends __BaseException {
|
|
2117
2123
|
readonly name: "OutputTypeNotFoundException";
|
|
2118
2124
|
readonly $fault: "client";
|
|
2119
|
-
Message?: string;
|
|
2125
|
+
Message?: string | undefined;
|
|
2120
2126
|
constructor(
|
|
2121
2127
|
opts: __ExceptionOptionType<OutputTypeNotFoundException, __BaseException>
|
|
2122
2128
|
);
|
|
@@ -2124,8 +2130,8 @@ export declare class OutputTypeNotFoundException extends __BaseException {
|
|
|
2124
2130
|
export interface ListRoutingProfileQueuesRequest {
|
|
2125
2131
|
InstanceId: string | undefined;
|
|
2126
2132
|
RoutingProfileId: string | undefined;
|
|
2127
|
-
NextToken?: string;
|
|
2128
|
-
MaxResults?: number;
|
|
2133
|
+
NextToken?: string | undefined;
|
|
2134
|
+
MaxResults?: number | undefined;
|
|
2129
2135
|
}
|
|
2130
2136
|
export interface RoutingProfileQueueConfigSummary {
|
|
2131
2137
|
QueueId: string | undefined;
|
|
@@ -2136,33 +2142,35 @@ export interface RoutingProfileQueueConfigSummary {
|
|
|
2136
2142
|
Channel: Channel | undefined;
|
|
2137
2143
|
}
|
|
2138
2144
|
export interface ListRoutingProfileQueuesResponse {
|
|
2139
|
-
NextToken?: string;
|
|
2140
|
-
RoutingProfileQueueConfigSummaryList?:
|
|
2141
|
-
|
|
2142
|
-
|
|
2145
|
+
NextToken?: string | undefined;
|
|
2146
|
+
RoutingProfileQueueConfigSummaryList?:
|
|
2147
|
+
| RoutingProfileQueueConfigSummary[]
|
|
2148
|
+
| undefined;
|
|
2149
|
+
LastModifiedTime?: Date | undefined;
|
|
2150
|
+
LastModifiedRegion?: string | undefined;
|
|
2143
2151
|
}
|
|
2144
2152
|
export interface ListRoutingProfilesRequest {
|
|
2145
2153
|
InstanceId: string | undefined;
|
|
2146
|
-
NextToken?: string;
|
|
2147
|
-
MaxResults?: number;
|
|
2154
|
+
NextToken?: string | undefined;
|
|
2155
|
+
MaxResults?: number | undefined;
|
|
2148
2156
|
}
|
|
2149
2157
|
export interface RoutingProfileSummary {
|
|
2150
|
-
Id?: string;
|
|
2151
|
-
Arn?: string;
|
|
2152
|
-
Name?: string;
|
|
2153
|
-
LastModifiedTime?: Date;
|
|
2154
|
-
LastModifiedRegion?: string;
|
|
2158
|
+
Id?: string | undefined;
|
|
2159
|
+
Arn?: string | undefined;
|
|
2160
|
+
Name?: string | undefined;
|
|
2161
|
+
LastModifiedTime?: Date | undefined;
|
|
2162
|
+
LastModifiedRegion?: string | undefined;
|
|
2155
2163
|
}
|
|
2156
2164
|
export interface ListRoutingProfilesResponse {
|
|
2157
|
-
RoutingProfileSummaryList?: RoutingProfileSummary[];
|
|
2158
|
-
NextToken?: string;
|
|
2165
|
+
RoutingProfileSummaryList?: RoutingProfileSummary[] | undefined;
|
|
2166
|
+
NextToken?: string | undefined;
|
|
2159
2167
|
}
|
|
2160
2168
|
export interface ListRulesRequest {
|
|
2161
2169
|
InstanceId: string | undefined;
|
|
2162
|
-
PublishStatus?: RulePublishStatus;
|
|
2163
|
-
EventSourceName?: EventSourceName;
|
|
2164
|
-
MaxResults?: number;
|
|
2165
|
-
NextToken?: string;
|
|
2170
|
+
PublishStatus?: RulePublishStatus | undefined;
|
|
2171
|
+
EventSourceName?: EventSourceName | undefined;
|
|
2172
|
+
MaxResults?: number | undefined;
|
|
2173
|
+
NextToken?: string | undefined;
|
|
2166
2174
|
}
|
|
2167
2175
|
export interface RuleSummary {
|
|
2168
2176
|
Name: string | undefined;
|
|
@@ -2176,61 +2184,61 @@ export interface RuleSummary {
|
|
|
2176
2184
|
}
|
|
2177
2185
|
export interface ListRulesResponse {
|
|
2178
2186
|
RuleSummaryList: RuleSummary[] | undefined;
|
|
2179
|
-
NextToken?: string;
|
|
2187
|
+
NextToken?: string | undefined;
|
|
2180
2188
|
}
|
|
2181
2189
|
export interface ListSecurityKeysRequest {
|
|
2182
2190
|
InstanceId: string | undefined;
|
|
2183
|
-
NextToken?: string;
|
|
2184
|
-
MaxResults?: number;
|
|
2191
|
+
NextToken?: string | undefined;
|
|
2192
|
+
MaxResults?: number | undefined;
|
|
2185
2193
|
}
|
|
2186
2194
|
export interface SecurityKey {
|
|
2187
|
-
AssociationId?: string;
|
|
2188
|
-
Key?: string;
|
|
2189
|
-
CreationTime?: Date;
|
|
2195
|
+
AssociationId?: string | undefined;
|
|
2196
|
+
Key?: string | undefined;
|
|
2197
|
+
CreationTime?: Date | undefined;
|
|
2190
2198
|
}
|
|
2191
2199
|
export interface ListSecurityKeysResponse {
|
|
2192
|
-
SecurityKeys?: SecurityKey[];
|
|
2193
|
-
NextToken?: string;
|
|
2200
|
+
SecurityKeys?: SecurityKey[] | undefined;
|
|
2201
|
+
NextToken?: string | undefined;
|
|
2194
2202
|
}
|
|
2195
2203
|
export interface ListSecurityProfileApplicationsRequest {
|
|
2196
2204
|
SecurityProfileId: string | undefined;
|
|
2197
2205
|
InstanceId: string | undefined;
|
|
2198
|
-
NextToken?: string;
|
|
2199
|
-
MaxResults?: number;
|
|
2206
|
+
NextToken?: string | undefined;
|
|
2207
|
+
MaxResults?: number | undefined;
|
|
2200
2208
|
}
|
|
2201
2209
|
export interface ListSecurityProfileApplicationsResponse {
|
|
2202
|
-
Applications?: Application[];
|
|
2203
|
-
NextToken?: string;
|
|
2204
|
-
LastModifiedTime?: Date;
|
|
2205
|
-
LastModifiedRegion?: string;
|
|
2210
|
+
Applications?: Application[] | undefined;
|
|
2211
|
+
NextToken?: string | undefined;
|
|
2212
|
+
LastModifiedTime?: Date | undefined;
|
|
2213
|
+
LastModifiedRegion?: string | undefined;
|
|
2206
2214
|
}
|
|
2207
2215
|
export interface ListSecurityProfilePermissionsRequest {
|
|
2208
2216
|
SecurityProfileId: string | undefined;
|
|
2209
2217
|
InstanceId: string | undefined;
|
|
2210
|
-
NextToken?: string;
|
|
2211
|
-
MaxResults?: number;
|
|
2218
|
+
NextToken?: string | undefined;
|
|
2219
|
+
MaxResults?: number | undefined;
|
|
2212
2220
|
}
|
|
2213
2221
|
export interface ListSecurityProfilePermissionsResponse {
|
|
2214
|
-
Permissions?: string[];
|
|
2215
|
-
NextToken?: string;
|
|
2216
|
-
LastModifiedTime?: Date;
|
|
2217
|
-
LastModifiedRegion?: string;
|
|
2222
|
+
Permissions?: string[] | undefined;
|
|
2223
|
+
NextToken?: string | undefined;
|
|
2224
|
+
LastModifiedTime?: Date | undefined;
|
|
2225
|
+
LastModifiedRegion?: string | undefined;
|
|
2218
2226
|
}
|
|
2219
2227
|
export interface ListSecurityProfilesRequest {
|
|
2220
2228
|
InstanceId: string | undefined;
|
|
2221
|
-
NextToken?: string;
|
|
2222
|
-
MaxResults?: number;
|
|
2229
|
+
NextToken?: string | undefined;
|
|
2230
|
+
MaxResults?: number | undefined;
|
|
2223
2231
|
}
|
|
2224
2232
|
export interface SecurityProfileSummary {
|
|
2225
|
-
Id?: string;
|
|
2226
|
-
Arn?: string;
|
|
2227
|
-
Name?: string;
|
|
2228
|
-
LastModifiedTime?: Date;
|
|
2229
|
-
LastModifiedRegion?: string;
|
|
2233
|
+
Id?: string | undefined;
|
|
2234
|
+
Arn?: string | undefined;
|
|
2235
|
+
Name?: string | undefined;
|
|
2236
|
+
LastModifiedTime?: Date | undefined;
|
|
2237
|
+
LastModifiedRegion?: string | undefined;
|
|
2230
2238
|
}
|
|
2231
2239
|
export interface ListSecurityProfilesResponse {
|
|
2232
|
-
SecurityProfileSummaryList?: SecurityProfileSummary[];
|
|
2233
|
-
NextToken?: string;
|
|
2240
|
+
SecurityProfileSummaryList?: SecurityProfileSummary[] | undefined;
|
|
2241
|
+
NextToken?: string | undefined;
|
|
2234
2242
|
}
|
|
2235
2243
|
export interface ListTagsForResourceRequest {
|
|
2236
2244
|
resourceArn: string | undefined;
|