@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.
@@ -3,7 +3,7 @@ import { ConnectServiceException as __BaseException } from "./ConnectServiceExce
3
3
  export declare class AccessDeniedException extends __BaseException {
4
4
  readonly name: "AccessDeniedException";
5
5
  readonly $fault: "client";
6
- Message?: string;
6
+ Message?: string | undefined;
7
7
  constructor(
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
@@ -35,7 +35,7 @@ export interface ActivateEvaluationFormResponse {
35
35
  export declare class InternalServiceException extends __BaseException {
36
36
  readonly name: "InternalServiceException";
37
37
  readonly $fault: "server";
38
- Message?: string;
38
+ Message?: string | undefined;
39
39
  constructor(
40
40
  opts: __ExceptionOptionType<InternalServiceException, __BaseException>
41
41
  );
@@ -43,7 +43,7 @@ export declare class InternalServiceException extends __BaseException {
43
43
  export declare class InvalidParameterException extends __BaseException {
44
44
  readonly name: "InvalidParameterException";
45
45
  readonly $fault: "client";
46
- Message?: string;
46
+ Message?: string | undefined;
47
47
  constructor(
48
48
  opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
49
49
  );
@@ -51,7 +51,7 @@ export declare class InvalidParameterException extends __BaseException {
51
51
  export declare class ResourceConflictException extends __BaseException {
52
52
  readonly name: "ResourceConflictException";
53
53
  readonly $fault: "client";
54
- Message?: string;
54
+ Message?: string | undefined;
55
55
  constructor(
56
56
  opts: __ExceptionOptionType<ResourceConflictException, __BaseException>
57
57
  );
@@ -59,7 +59,7 @@ export declare class ResourceConflictException extends __BaseException {
59
59
  export declare class ResourceNotFoundException extends __BaseException {
60
60
  readonly name: "ResourceNotFoundException";
61
61
  readonly $fault: "client";
62
- Message?: string;
62
+ Message?: string | undefined;
63
63
  constructor(
64
64
  opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
65
65
  );
@@ -67,7 +67,7 @@ export declare class ResourceNotFoundException extends __BaseException {
67
67
  export declare class ThrottlingException extends __BaseException {
68
68
  readonly name: "ThrottlingException";
69
69
  readonly $fault: "client";
70
- Message?: string;
70
+ Message?: string | undefined;
71
71
  constructor(
72
72
  opts: __ExceptionOptionType<ThrottlingException, __BaseException>
73
73
  );
@@ -117,27 +117,27 @@ export declare const ContactInitiationMethod: {
117
117
  export type ContactInitiationMethod =
118
118
  (typeof ContactInitiationMethod)[keyof typeof ContactInitiationMethod];
119
119
  export interface QueueReference {
120
- Id?: string;
121
- Arn?: string;
120
+ Id?: string | undefined;
121
+ Arn?: string | undefined;
122
122
  }
123
123
  export interface AgentContactReference {
124
- ContactId?: string;
125
- Channel?: Channel;
126
- InitiationMethod?: ContactInitiationMethod;
127
- AgentContactState?: ContactState;
128
- StateStartTimestamp?: Date;
129
- ConnectedToAgentTimestamp?: Date;
130
- Queue?: QueueReference;
124
+ ContactId?: string | undefined;
125
+ Channel?: Channel | undefined;
126
+ InitiationMethod?: ContactInitiationMethod | undefined;
127
+ AgentContactState?: ContactState | undefined;
128
+ StateStartTimestamp?: Date | undefined;
129
+ ConnectedToAgentTimestamp?: Date | undefined;
130
+ Queue?: QueueReference | undefined;
131
131
  }
132
132
  export interface AgentHierarchyGroup {
133
- Arn?: string;
133
+ Arn?: string | undefined;
134
134
  }
135
135
  export interface AgentHierarchyGroups {
136
- L1Ids?: string[];
137
- L2Ids?: string[];
138
- L3Ids?: string[];
139
- L4Ids?: string[];
140
- L5Ids?: string[];
136
+ L1Ids?: string[] | undefined;
137
+ L2Ids?: string[] | undefined;
138
+ L3Ids?: string[] | undefined;
139
+ L4Ids?: string[] | undefined;
140
+ L5Ids?: string[] | undefined;
141
141
  }
142
142
  export declare const ScreenShareCapability: {
143
143
  readonly SEND: "SEND";
@@ -150,38 +150,38 @@ export declare const VideoCapability: {
150
150
  export type VideoCapability =
151
151
  (typeof VideoCapability)[keyof typeof VideoCapability];
152
152
  export interface ParticipantCapabilities {
153
- Video?: VideoCapability;
154
- ScreenShare?: ScreenShareCapability;
153
+ Video?: VideoCapability | undefined;
154
+ ScreenShare?: ScreenShareCapability | undefined;
155
155
  }
156
156
  export interface DeviceInfo {
157
- PlatformName?: string;
158
- PlatformVersion?: string;
159
- OperatingSystem?: string;
157
+ PlatformName?: string | undefined;
158
+ PlatformVersion?: string | undefined;
159
+ OperatingSystem?: string | undefined;
160
160
  }
161
161
  export interface HierarchyGroups {
162
- Level1?: AgentHierarchyGroup;
163
- Level2?: AgentHierarchyGroup;
164
- Level3?: AgentHierarchyGroup;
165
- Level4?: AgentHierarchyGroup;
166
- Level5?: AgentHierarchyGroup;
162
+ Level1?: AgentHierarchyGroup | undefined;
163
+ Level2?: AgentHierarchyGroup | undefined;
164
+ Level3?: AgentHierarchyGroup | undefined;
165
+ Level4?: AgentHierarchyGroup | undefined;
166
+ Level5?: AgentHierarchyGroup | undefined;
167
167
  }
168
168
  export interface AgentInfo {
169
- Id?: string;
170
- ConnectedToAgentTimestamp?: Date;
171
- AgentPauseDurationInSeconds?: number;
172
- HierarchyGroups?: HierarchyGroups;
173
- DeviceInfo?: DeviceInfo;
174
- Capabilities?: ParticipantCapabilities;
169
+ Id?: string | undefined;
170
+ ConnectedToAgentTimestamp?: Date | undefined;
171
+ AgentPauseDurationInSeconds?: number | undefined;
172
+ HierarchyGroups?: HierarchyGroups | undefined;
173
+ DeviceInfo?: DeviceInfo | undefined;
174
+ Capabilities?: ParticipantCapabilities | undefined;
175
175
  }
176
176
  export interface AudioQualityMetricsInfo {
177
- QualityScore?: number;
178
- PotentialQualityIssues?: string[];
177
+ QualityScore?: number | undefined;
178
+ PotentialQualityIssues?: string[] | undefined;
179
179
  }
180
180
  export interface AgentQualityMetrics {
181
- Audio?: AudioQualityMetricsInfo;
181
+ Audio?: AudioQualityMetricsInfo | undefined;
182
182
  }
183
183
  export interface AgentsCriteria {
184
- AgentIds?: string[];
184
+ AgentIds?: string[] | undefined;
185
185
  }
186
186
  export declare const AgentStatusState: {
187
187
  readonly DISABLED: "DISABLED";
@@ -197,21 +197,21 @@ export declare const AgentStatusType: {
197
197
  export type AgentStatusType =
198
198
  (typeof AgentStatusType)[keyof typeof AgentStatusType];
199
199
  export interface AgentStatus {
200
- AgentStatusARN?: string;
201
- AgentStatusId?: string;
202
- Name?: string;
203
- Description?: string;
204
- Type?: AgentStatusType;
205
- DisplayOrder?: number;
206
- State?: AgentStatusState;
207
- Tags?: Record<string, string>;
208
- LastModifiedTime?: Date;
209
- LastModifiedRegion?: string;
200
+ AgentStatusARN?: string | undefined;
201
+ AgentStatusId?: string | undefined;
202
+ Name?: string | undefined;
203
+ Description?: string | undefined;
204
+ Type?: AgentStatusType | undefined;
205
+ DisplayOrder?: number | undefined;
206
+ State?: AgentStatusState | undefined;
207
+ Tags?: Record<string, string> | undefined;
208
+ LastModifiedTime?: Date | undefined;
209
+ LastModifiedRegion?: string | undefined;
210
210
  }
211
211
  export interface AgentStatusReference {
212
- StatusStartTimestamp?: Date;
213
- StatusArn?: string;
214
- StatusName?: string;
212
+ StatusStartTimestamp?: Date | undefined;
213
+ StatusArn?: string | undefined;
214
+ StatusName?: string | undefined;
215
215
  }
216
216
  export declare const StringComparisonType: {
217
217
  readonly CONTAINS: "CONTAINS";
@@ -221,36 +221,36 @@ export declare const StringComparisonType: {
221
221
  export type StringComparisonType =
222
222
  (typeof StringComparisonType)[keyof typeof StringComparisonType];
223
223
  export interface StringCondition {
224
- FieldName?: string;
225
- Value?: string;
226
- ComparisonType?: StringComparisonType;
224
+ FieldName?: string | undefined;
225
+ Value?: string | undefined;
226
+ ComparisonType?: StringComparisonType | undefined;
227
227
  }
228
228
  export interface TagCondition {
229
- TagKey?: string;
230
- TagValue?: string;
229
+ TagKey?: string | undefined;
230
+ TagValue?: string | undefined;
231
231
  }
232
232
  export interface CommonAttributeAndCondition {
233
- TagConditions?: TagCondition[];
233
+ TagConditions?: TagCondition[] | undefined;
234
234
  }
235
235
  export interface ControlPlaneAttributeFilter {
236
- OrConditions?: CommonAttributeAndCondition[];
237
- AndCondition?: CommonAttributeAndCondition;
238
- TagCondition?: TagCondition;
236
+ OrConditions?: CommonAttributeAndCondition[] | undefined;
237
+ AndCondition?: CommonAttributeAndCondition | undefined;
238
+ TagCondition?: TagCondition | undefined;
239
239
  }
240
240
  export interface AgentStatusSearchFilter {
241
- AttributeFilter?: ControlPlaneAttributeFilter;
241
+ AttributeFilter?: ControlPlaneAttributeFilter | undefined;
242
242
  }
243
243
  export interface AgentStatusSummary {
244
- Id?: string;
245
- Arn?: string;
246
- Name?: string;
247
- Type?: AgentStatusType;
248
- LastModifiedTime?: Date;
249
- LastModifiedRegion?: string;
244
+ Id?: string | undefined;
245
+ Arn?: string | undefined;
246
+ Name?: string | undefined;
247
+ Type?: AgentStatusType | undefined;
248
+ LastModifiedTime?: Date | undefined;
249
+ LastModifiedRegion?: string | undefined;
250
250
  }
251
251
  export interface AllowedCapabilities {
252
- Customer?: ParticipantCapabilities;
253
- Agent?: ParticipantCapabilities;
252
+ Customer?: ParticipantCapabilities | undefined;
253
+ Agent?: ParticipantCapabilities | undefined;
254
254
  }
255
255
  export declare const MonitorCapability: {
256
256
  readonly BARGE: "BARGE";
@@ -261,13 +261,13 @@ export type MonitorCapability =
261
261
  export interface AssociateAnalyticsDataSetRequest {
262
262
  InstanceId: string | undefined;
263
263
  DataSetId: string | undefined;
264
- TargetAccountId?: string;
264
+ TargetAccountId?: string | undefined;
265
265
  }
266
266
  export interface AssociateAnalyticsDataSetResponse {
267
- DataSetId?: string;
268
- TargetAccountId?: string;
269
- ResourceShareId?: string;
270
- ResourceShareArn?: string;
267
+ DataSetId?: string | undefined;
268
+ TargetAccountId?: string | undefined;
269
+ ResourceShareId?: string | undefined;
270
+ ResourceShareArn?: string | undefined;
271
271
  }
272
272
  export declare const AttachedFileInvalidRequestExceptionReason: {
273
273
  readonly INVALID_FILE_NAME: "INVALID_FILE_NAME";
@@ -302,8 +302,8 @@ export declare namespace InvalidRequestExceptionReason {
302
302
  export declare class InvalidRequestException extends __BaseException {
303
303
  readonly name: "InvalidRequestException";
304
304
  readonly $fault: "client";
305
- Message?: string;
306
- Reason?: InvalidRequestExceptionReason;
305
+ Message?: string | undefined;
306
+ Reason?: InvalidRequestExceptionReason | undefined;
307
307
  constructor(
308
308
  opts: __ExceptionOptionType<InvalidRequestException, __BaseException>
309
309
  );
@@ -315,7 +315,7 @@ export interface AssociateApprovedOriginRequest {
315
315
  export declare class ServiceQuotaExceededException extends __BaseException {
316
316
  readonly name: "ServiceQuotaExceededException";
317
317
  readonly $fault: "client";
318
- Message?: string;
318
+ Message?: string | undefined;
319
319
  constructor(
320
320
  opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
321
321
  );
@@ -325,17 +325,17 @@ export interface LexBot {
325
325
  LexRegion: string | undefined;
326
326
  }
327
327
  export interface LexV2Bot {
328
- AliasArn?: string;
328
+ AliasArn?: string | undefined;
329
329
  }
330
330
  export interface AssociateBotRequest {
331
331
  InstanceId: string | undefined;
332
- LexBot?: LexBot;
333
- LexV2Bot?: LexV2Bot;
332
+ LexBot?: LexBot | undefined;
333
+ LexV2Bot?: LexV2Bot | undefined;
334
334
  }
335
335
  export declare class LimitExceededException extends __BaseException {
336
336
  readonly name: "LimitExceededException";
337
337
  readonly $fault: "client";
338
- Message?: string;
338
+ Message?: string | undefined;
339
339
  constructor(
340
340
  opts: __ExceptionOptionType<LimitExceededException, __BaseException>
341
341
  );
@@ -380,7 +380,7 @@ export type VocabularyLanguageCode =
380
380
  export interface AssociateDefaultVocabularyRequest {
381
381
  InstanceId: string | undefined;
382
382
  LanguageCode: VocabularyLanguageCode | undefined;
383
- VocabularyId?: string;
383
+ VocabularyId?: string | undefined;
384
384
  }
385
385
  export interface AssociateDefaultVocabularyResponse {}
386
386
  export declare const FlowAssociationResourceType: {
@@ -434,7 +434,7 @@ export interface KinesisVideoStreamConfig {
434
434
  export interface S3Config {
435
435
  BucketName: string | undefined;
436
436
  BucketPrefix: string | undefined;
437
- EncryptionConfig?: EncryptionConfig;
437
+ EncryptionConfig?: EncryptionConfig | undefined;
438
438
  }
439
439
  export declare const StorageType: {
440
440
  readonly KINESIS_FIREHOSE: "KINESIS_FIREHOSE";
@@ -444,12 +444,12 @@ export declare const StorageType: {
444
444
  };
445
445
  export type StorageType = (typeof StorageType)[keyof typeof StorageType];
446
446
  export interface InstanceStorageConfig {
447
- AssociationId?: string;
447
+ AssociationId?: string | undefined;
448
448
  StorageType: StorageType | undefined;
449
- S3Config?: S3Config;
450
- KinesisVideoStreamConfig?: KinesisVideoStreamConfig;
451
- KinesisStreamConfig?: KinesisStreamConfig;
452
- KinesisFirehoseConfig?: KinesisFirehoseConfig;
449
+ S3Config?: S3Config | undefined;
450
+ KinesisVideoStreamConfig?: KinesisVideoStreamConfig | undefined;
451
+ KinesisStreamConfig?: KinesisStreamConfig | undefined;
452
+ KinesisFirehoseConfig?: KinesisFirehoseConfig | undefined;
453
453
  }
454
454
  export interface AssociateInstanceStorageConfigRequest {
455
455
  InstanceId: string | undefined;
@@ -457,7 +457,7 @@ export interface AssociateInstanceStorageConfigRequest {
457
457
  StorageConfig: InstanceStorageConfig | undefined;
458
458
  }
459
459
  export interface AssociateInstanceStorageConfigResponse {
460
- AssociationId?: string;
460
+ AssociationId?: string | undefined;
461
461
  }
462
462
  export interface AssociateLambdaFunctionRequest {
463
463
  InstanceId: string | undefined;
@@ -496,7 +496,7 @@ export interface AssociateSecurityKeyRequest {
496
496
  Key: string | undefined;
497
497
  }
498
498
  export interface AssociateSecurityKeyResponse {
499
- AssociationId?: string;
499
+ AssociationId?: string | undefined;
500
500
  }
501
501
  export interface AssociateTrafficDistributionGroupUserRequest {
502
502
  TrafficDistributionGroupId: string | undefined;
@@ -517,30 +517,30 @@ export interface AssociateUserProficienciesRequest {
517
517
  export interface BatchAssociateAnalyticsDataSetRequest {
518
518
  InstanceId: string | undefined;
519
519
  DataSetIds: string[] | undefined;
520
- TargetAccountId?: string;
520
+ TargetAccountId?: string | undefined;
521
521
  }
522
522
  export interface AnalyticsDataAssociationResult {
523
- DataSetId?: string;
524
- TargetAccountId?: string;
525
- ResourceShareId?: string;
526
- ResourceShareArn?: string;
523
+ DataSetId?: string | undefined;
524
+ TargetAccountId?: string | undefined;
525
+ ResourceShareId?: string | undefined;
526
+ ResourceShareArn?: string | undefined;
527
527
  }
528
528
  export interface ErrorResult {
529
- ErrorCode?: string;
530
- ErrorMessage?: string;
529
+ ErrorCode?: string | undefined;
530
+ ErrorMessage?: string | undefined;
531
531
  }
532
532
  export interface BatchAssociateAnalyticsDataSetResponse {
533
- Created?: AnalyticsDataAssociationResult[];
534
- Errors?: ErrorResult[];
533
+ Created?: AnalyticsDataAssociationResult[] | undefined;
534
+ Errors?: ErrorResult[] | undefined;
535
535
  }
536
536
  export interface BatchDisassociateAnalyticsDataSetRequest {
537
537
  InstanceId: string | undefined;
538
538
  DataSetIds: string[] | undefined;
539
- TargetAccountId?: string;
539
+ TargetAccountId?: string | undefined;
540
540
  }
541
541
  export interface BatchDisassociateAnalyticsDataSetResponse {
542
- Deleted?: string[];
543
- Errors?: ErrorResult[];
542
+ Deleted?: string[] | undefined;
543
+ Errors?: ErrorResult[] | undefined;
544
544
  }
545
545
  export interface BatchGetAttachedFileMetadataRequest {
546
546
  FileIds: string[] | undefined;
@@ -548,9 +548,9 @@ export interface BatchGetAttachedFileMetadataRequest {
548
548
  AssociatedResourceArn: string | undefined;
549
549
  }
550
550
  export interface AttachedFileError {
551
- ErrorCode?: string;
552
- ErrorMessage?: string;
553
- FileId?: string;
551
+ ErrorCode?: string | undefined;
552
+ ErrorMessage?: string | undefined;
553
+ FileId?: string | undefined;
554
554
  }
555
555
  export type CreatedByInfo =
556
556
  | CreatedByInfo.AWSIdentityArnMember
@@ -599,14 +599,14 @@ export interface AttachedFile {
599
599
  FileName: string | undefined;
600
600
  FileSizeInBytes: number | undefined;
601
601
  FileStatus: FileStatusType | undefined;
602
- CreatedBy?: CreatedByInfo;
603
- FileUseCaseType?: FileUseCaseType;
604
- AssociatedResourceArn?: string;
605
- Tags?: Record<string, string>;
602
+ CreatedBy?: CreatedByInfo | undefined;
603
+ FileUseCaseType?: FileUseCaseType | undefined;
604
+ AssociatedResourceArn?: string | undefined;
605
+ Tags?: Record<string, string> | undefined;
606
606
  }
607
607
  export interface BatchGetAttachedFileMetadataResponse {
608
- Files?: AttachedFile[];
609
- Errors?: AttachedFileError[];
608
+ Files?: AttachedFile[] | undefined;
609
+ Errors?: AttachedFileError[] | undefined;
610
610
  }
611
611
  export declare const ListFlowAssociationResourceType: {
612
612
  readonly VOICE_PHONE_NUMBER: "VOICE_PHONE_NUMBER";
@@ -616,18 +616,18 @@ export type ListFlowAssociationResourceType =
616
616
  export interface BatchGetFlowAssociationRequest {
617
617
  InstanceId: string | undefined;
618
618
  ResourceIds: string[] | undefined;
619
- ResourceType?: ListFlowAssociationResourceType;
619
+ ResourceType?: ListFlowAssociationResourceType | undefined;
620
620
  }
621
621
  export interface FlowAssociationSummary {
622
- ResourceId?: string;
623
- FlowId?: string;
624
- ResourceType?: ListFlowAssociationResourceType;
622
+ ResourceId?: string | undefined;
623
+ FlowId?: string | undefined;
624
+ ResourceType?: ListFlowAssociationResourceType | undefined;
625
625
  }
626
626
  export interface BatchGetFlowAssociationResponse {
627
- FlowAssociationSummaryList?: FlowAssociationSummary[];
627
+ FlowAssociationSummaryList?: FlowAssociationSummary[] | undefined;
628
628
  }
629
629
  export interface Campaign {
630
- CampaignId?: string;
630
+ CampaignId?: string | undefined;
631
631
  }
632
632
  export declare const EndpointType: {
633
633
  readonly CONNECT_PHONENUMBER_ARN: "CONNECT_PHONENUMBER_ARN";
@@ -637,19 +637,19 @@ export declare const EndpointType: {
637
637
  };
638
638
  export type EndpointType = (typeof EndpointType)[keyof typeof EndpointType];
639
639
  export interface Endpoint {
640
- Type?: EndpointType;
641
- Address?: string;
640
+ Type?: EndpointType | undefined;
641
+ Address?: string | undefined;
642
642
  }
643
643
  export interface ContactDataRequest {
644
- SystemEndpoint?: Endpoint;
645
- CustomerEndpoint?: Endpoint;
646
- RequestIdentifier?: string;
647
- QueueId?: string;
648
- Attributes?: Record<string, string>;
649
- Campaign?: Campaign;
644
+ SystemEndpoint?: Endpoint | undefined;
645
+ CustomerEndpoint?: Endpoint | undefined;
646
+ RequestIdentifier?: string | undefined;
647
+ QueueId?: string | undefined;
648
+ Attributes?: Record<string, string> | undefined;
649
+ Campaign?: Campaign | undefined;
650
650
  }
651
651
  export interface BatchPutContactRequest {
652
- ClientToken?: string;
652
+ ClientToken?: string | undefined;
653
653
  InstanceId: string | undefined;
654
654
  ContactDataRequestList: ContactDataRequest[] | undefined;
655
655
  }
@@ -668,37 +668,37 @@ export declare const FailureReasonCode: {
668
668
  export type FailureReasonCode =
669
669
  (typeof FailureReasonCode)[keyof typeof FailureReasonCode];
670
670
  export interface FailedRequest {
671
- RequestIdentifier?: string;
672
- FailureReasonCode?: FailureReasonCode;
673
- FailureReasonMessage?: string;
671
+ RequestIdentifier?: string | undefined;
672
+ FailureReasonCode?: FailureReasonCode | undefined;
673
+ FailureReasonMessage?: string | undefined;
674
674
  }
675
675
  export interface SuccessfulRequest {
676
- RequestIdentifier?: string;
677
- ContactId?: string;
676
+ RequestIdentifier?: string | undefined;
677
+ ContactId?: string | undefined;
678
678
  }
679
679
  export interface BatchPutContactResponse {
680
- SuccessfulRequestList?: SuccessfulRequest[];
681
- FailedRequestList?: FailedRequest[];
680
+ SuccessfulRequestList?: SuccessfulRequest[] | undefined;
681
+ FailedRequestList?: FailedRequest[] | undefined;
682
682
  }
683
683
  export declare class IdempotencyException extends __BaseException {
684
684
  readonly name: "IdempotencyException";
685
685
  readonly $fault: "client";
686
- Message?: string;
686
+ Message?: string | undefined;
687
687
  constructor(
688
688
  opts: __ExceptionOptionType<IdempotencyException, __BaseException>
689
689
  );
690
690
  }
691
691
  export interface ClaimPhoneNumberRequest {
692
- TargetArn?: string;
693
- InstanceId?: string;
692
+ TargetArn?: string | undefined;
693
+ InstanceId?: string | undefined;
694
694
  PhoneNumber: string | undefined;
695
- PhoneNumberDescription?: string;
696
- Tags?: Record<string, string>;
697
- ClientToken?: string;
695
+ PhoneNumberDescription?: string | undefined;
696
+ Tags?: Record<string, string> | undefined;
697
+ ClientToken?: string | undefined;
698
698
  }
699
699
  export interface ClaimPhoneNumberResponse {
700
- PhoneNumberId?: string;
701
- PhoneNumberArn?: string;
700
+ PhoneNumberId?: string | undefined;
701
+ PhoneNumberArn?: string | undefined;
702
702
  }
703
703
  export interface CompleteAttachedFileUploadRequest {
704
704
  InstanceId: string | undefined;
@@ -709,19 +709,19 @@ export interface CompleteAttachedFileUploadResponse {}
709
709
  export interface CreateAgentStatusRequest {
710
710
  InstanceId: string | undefined;
711
711
  Name: string | undefined;
712
- Description?: string;
712
+ Description?: string | undefined;
713
713
  State: AgentStatusState | undefined;
714
- DisplayOrder?: number;
715
- Tags?: Record<string, string>;
714
+ DisplayOrder?: number | undefined;
715
+ Tags?: Record<string, string> | undefined;
716
716
  }
717
717
  export interface CreateAgentStatusResponse {
718
- AgentStatusARN?: string;
719
- AgentStatusId?: string;
718
+ AgentStatusARN?: string | undefined;
719
+ AgentStatusId?: string | undefined;
720
720
  }
721
721
  export declare class DuplicateResourceException extends __BaseException {
722
722
  readonly name: "DuplicateResourceException";
723
723
  readonly $fault: "client";
724
- Message?: string;
724
+ Message?: string | undefined;
725
725
  constructor(
726
726
  opts: __ExceptionOptionType<DuplicateResourceException, __BaseException>
727
727
  );
@@ -749,22 +749,22 @@ export interface CreateContactFlowRequest {
749
749
  InstanceId: string | undefined;
750
750
  Name: string | undefined;
751
751
  Type: ContactFlowType | undefined;
752
- Description?: string;
752
+ Description?: string | undefined;
753
753
  Content: string | undefined;
754
- Status?: ContactFlowStatus;
755
- Tags?: Record<string, string>;
754
+ Status?: ContactFlowStatus | undefined;
755
+ Tags?: Record<string, string> | undefined;
756
756
  }
757
757
  export interface CreateContactFlowResponse {
758
- ContactFlowId?: string;
759
- ContactFlowArn?: string;
758
+ ContactFlowId?: string | undefined;
759
+ ContactFlowArn?: string | undefined;
760
760
  }
761
761
  export interface ProblemDetail {
762
- message?: string;
762
+ message?: string | undefined;
763
763
  }
764
764
  export declare class InvalidContactFlowException extends __BaseException {
765
765
  readonly name: "InvalidContactFlowException";
766
766
  readonly $fault: "client";
767
- problems?: ProblemDetail[];
767
+ problems?: ProblemDetail[] | undefined;
768
768
  constructor(
769
769
  opts: __ExceptionOptionType<InvalidContactFlowException, __BaseException>
770
770
  );
@@ -772,19 +772,19 @@ export declare class InvalidContactFlowException extends __BaseException {
772
772
  export interface CreateContactFlowModuleRequest {
773
773
  InstanceId: string | undefined;
774
774
  Name: string | undefined;
775
- Description?: string;
775
+ Description?: string | undefined;
776
776
  Content: string | undefined;
777
- Tags?: Record<string, string>;
778
- ClientToken?: string;
777
+ Tags?: Record<string, string> | undefined;
778
+ ClientToken?: string | undefined;
779
779
  }
780
780
  export interface CreateContactFlowModuleResponse {
781
- Id?: string;
782
- Arn?: string;
781
+ Id?: string | undefined;
782
+ Arn?: string | undefined;
783
783
  }
784
784
  export declare class InvalidContactFlowModuleException extends __BaseException {
785
785
  readonly name: "InvalidContactFlowModuleException";
786
786
  readonly $fault: "client";
787
- Problems?: ProblemDetail[];
787
+ Problems?: ProblemDetail[] | undefined;
788
788
  constructor(
789
789
  opts: __ExceptionOptionType<
790
790
  InvalidContactFlowModuleException,
@@ -838,14 +838,14 @@ export declare namespace EvaluationFormNumericQuestionAutomation {
838
838
  export interface EvaluationFormNumericQuestionOption {
839
839
  MinValue: number | undefined;
840
840
  MaxValue: number | undefined;
841
- Score?: number;
842
- AutomaticFail?: boolean;
841
+ Score?: number | undefined;
842
+ AutomaticFail?: boolean | undefined;
843
843
  }
844
844
  export interface EvaluationFormNumericQuestionProperties {
845
845
  MinValue: number | undefined;
846
846
  MaxValue: number | undefined;
847
- Options?: EvaluationFormNumericQuestionOption[];
848
- Automation?: EvaluationFormNumericQuestionAutomation;
847
+ Options?: EvaluationFormNumericQuestionOption[] | undefined;
848
+ Automation?: EvaluationFormNumericQuestionAutomation | undefined;
849
849
  }
850
850
  export declare const SingleSelectQuestionRuleCategoryAutomationCondition: {
851
851
  readonly NOT_PRESENT: "NOT_PRESENT";
@@ -881,7 +881,7 @@ export declare namespace EvaluationFormSingleSelectQuestionAutomationOption {
881
881
  }
882
882
  export interface EvaluationFormSingleSelectQuestionAutomation {
883
883
  Options: EvaluationFormSingleSelectQuestionAutomationOption[] | undefined;
884
- DefaultOptionRefId?: string;
884
+ DefaultOptionRefId?: string | undefined;
885
885
  }
886
886
  export declare const EvaluationFormSingleSelectQuestionDisplayMode: {
887
887
  readonly DROPDOWN: "DROPDOWN";
@@ -892,13 +892,13 @@ export type EvaluationFormSingleSelectQuestionDisplayMode =
892
892
  export interface EvaluationFormSingleSelectQuestionOption {
893
893
  RefId: string | undefined;
894
894
  Text: string | undefined;
895
- Score?: number;
896
- AutomaticFail?: boolean;
895
+ Score?: number | undefined;
896
+ AutomaticFail?: boolean | undefined;
897
897
  }
898
898
  export interface EvaluationFormSingleSelectQuestionProperties {
899
899
  Options: EvaluationFormSingleSelectQuestionOption[] | undefined;
900
- DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode;
901
- Automation?: EvaluationFormSingleSelectQuestionAutomation;
900
+ DisplayAs?: EvaluationFormSingleSelectQuestionDisplayMode | undefined;
901
+ Automation?: EvaluationFormSingleSelectQuestionAutomation | undefined;
902
902
  }
903
903
  export type EvaluationFormQuestionTypeProperties =
904
904
  | EvaluationFormQuestionTypeProperties.NumericMember
@@ -932,12 +932,12 @@ export declare namespace EvaluationFormQuestionTypeProperties {
932
932
  }
933
933
  export interface EvaluationFormQuestion {
934
934
  Title: string | undefined;
935
- Instructions?: string;
935
+ Instructions?: string | undefined;
936
936
  RefId: string | undefined;
937
- NotApplicableEnabled?: boolean;
937
+ NotApplicableEnabled?: boolean | undefined;
938
938
  QuestionType: EvaluationFormQuestionType | undefined;
939
- QuestionTypeProperties?: EvaluationFormQuestionTypeProperties;
940
- Weight?: number;
939
+ QuestionTypeProperties?: EvaluationFormQuestionTypeProperties | undefined;
940
+ Weight?: number | undefined;
941
941
  }
942
942
  export declare const EvaluationFormScoringMode: {
943
943
  readonly QUESTION_ONLY: "QUESTION_ONLY";
@@ -982,14 +982,14 @@ export interface HoursOfOperationConfig {
982
982
  export interface CreateHoursOfOperationRequest {
983
983
  InstanceId: string | undefined;
984
984
  Name: string | undefined;
985
- Description?: string;
985
+ Description?: string | undefined;
986
986
  TimeZone: string | undefined;
987
987
  Config: HoursOfOperationConfig[] | undefined;
988
- Tags?: Record<string, string>;
988
+ Tags?: Record<string, string> | undefined;
989
989
  }
990
990
  export interface CreateHoursOfOperationResponse {
991
- HoursOfOperationId?: string;
992
- HoursOfOperationArn?: string;
991
+ HoursOfOperationId?: string | undefined;
992
+ HoursOfOperationArn?: string | undefined;
993
993
  }
994
994
  export declare const DirectoryType: {
995
995
  readonly CONNECT_MANAGED: "CONNECT_MANAGED";
@@ -998,17 +998,17 @@ export declare const DirectoryType: {
998
998
  };
999
999
  export type DirectoryType = (typeof DirectoryType)[keyof typeof DirectoryType];
1000
1000
  export interface CreateInstanceRequest {
1001
- ClientToken?: string;
1001
+ ClientToken?: string | undefined;
1002
1002
  IdentityManagementType: DirectoryType | undefined;
1003
- InstanceAlias?: string;
1004
- DirectoryId?: string;
1003
+ InstanceAlias?: string | undefined;
1004
+ DirectoryId?: string | undefined;
1005
1005
  InboundCallsEnabled: boolean | undefined;
1006
1006
  OutboundCallsEnabled: boolean | undefined;
1007
- Tags?: Record<string, string>;
1007
+ Tags?: Record<string, string> | undefined;
1008
1008
  }
1009
1009
  export interface CreateInstanceResponse {
1010
- Id?: string;
1011
- Arn?: string;
1010
+ Id?: string | undefined;
1011
+ Arn?: string | undefined;
1012
1012
  }
1013
1013
  export declare const IntegrationType: {
1014
1014
  readonly APPLICATION: "APPLICATION";
@@ -1033,14 +1033,14 @@ export interface CreateIntegrationAssociationRequest {
1033
1033
  InstanceId: string | undefined;
1034
1034
  IntegrationType: IntegrationType | undefined;
1035
1035
  IntegrationArn: string | undefined;
1036
- SourceApplicationUrl?: string;
1037
- SourceApplicationName?: string;
1038
- SourceType?: SourceType;
1039
- Tags?: Record<string, string>;
1036
+ SourceApplicationUrl?: string | undefined;
1037
+ SourceApplicationName?: string | undefined;
1038
+ SourceType?: SourceType | undefined;
1039
+ Tags?: Record<string, string> | undefined;
1040
1040
  }
1041
1041
  export interface CreateIntegrationAssociationResponse {
1042
- IntegrationAssociationId?: string;
1043
- IntegrationAssociationArn?: string;
1042
+ IntegrationAssociationId?: string | undefined;
1043
+ IntegrationAssociationArn?: string | undefined;
1044
1044
  }
1045
1045
  export declare const ParticipantRole: {
1046
1046
  readonly AGENT: "AGENT";
@@ -1052,22 +1052,22 @@ export declare const ParticipantRole: {
1052
1052
  export type ParticipantRole =
1053
1053
  (typeof ParticipantRole)[keyof typeof ParticipantRole];
1054
1054
  export interface ParticipantDetailsToAdd {
1055
- ParticipantRole?: ParticipantRole;
1056
- DisplayName?: string;
1055
+ ParticipantRole?: ParticipantRole | undefined;
1056
+ DisplayName?: string | undefined;
1057
1057
  }
1058
1058
  export interface CreateParticipantRequest {
1059
1059
  InstanceId: string | undefined;
1060
1060
  ContactId: string | undefined;
1061
- ClientToken?: string;
1061
+ ClientToken?: string | undefined;
1062
1062
  ParticipantDetails: ParticipantDetailsToAdd | undefined;
1063
1063
  }
1064
1064
  export interface ParticipantTokenCredentials {
1065
- ParticipantToken?: string;
1066
- Expiry?: string;
1065
+ ParticipantToken?: string | undefined;
1066
+ Expiry?: string | undefined;
1067
1067
  }
1068
1068
  export interface CreateParticipantResponse {
1069
- ParticipantCredentials?: ParticipantTokenCredentials;
1070
- ParticipantId?: string;
1069
+ ParticipantCredentials?: ParticipantTokenCredentials | undefined;
1070
+ ParticipantId?: string | undefined;
1071
1071
  }
1072
1072
  export declare const RehydrationType: {
1073
1073
  readonly ENTIRE_PAST_SESSION: "ENTIRE_PAST_SESSION";
@@ -1080,10 +1080,10 @@ export interface CreatePersistentContactAssociationRequest {
1080
1080
  InitialContactId: string | undefined;
1081
1081
  RehydrationType: RehydrationType | undefined;
1082
1082
  SourceContactId: string | undefined;
1083
- ClientToken?: string;
1083
+ ClientToken?: string | undefined;
1084
1084
  }
1085
1085
  export interface CreatePersistentContactAssociationResponse {
1086
- ContinuedFromContactId?: string;
1086
+ ContinuedFromContactId?: string | undefined;
1087
1087
  }
1088
1088
  export type PredefinedAttributeValues =
1089
1089
  | PredefinedAttributeValues.StringListMember
@@ -1111,32 +1111,32 @@ export interface CreatePredefinedAttributeRequest {
1111
1111
  export interface CreatePromptRequest {
1112
1112
  InstanceId: string | undefined;
1113
1113
  Name: string | undefined;
1114
- Description?: string;
1114
+ Description?: string | undefined;
1115
1115
  S3Uri: string | undefined;
1116
- Tags?: Record<string, string>;
1116
+ Tags?: Record<string, string> | undefined;
1117
1117
  }
1118
1118
  export interface CreatePromptResponse {
1119
- PromptARN?: string;
1120
- PromptId?: string;
1119
+ PromptARN?: string | undefined;
1120
+ PromptId?: string | undefined;
1121
1121
  }
1122
1122
  export interface OutboundCallerConfig {
1123
- OutboundCallerIdName?: string;
1124
- OutboundCallerIdNumberId?: string;
1125
- OutboundFlowId?: string;
1123
+ OutboundCallerIdName?: string | undefined;
1124
+ OutboundCallerIdNumberId?: string | undefined;
1125
+ OutboundFlowId?: string | undefined;
1126
1126
  }
1127
1127
  export interface CreateQueueRequest {
1128
1128
  InstanceId: string | undefined;
1129
1129
  Name: string | undefined;
1130
- Description?: string;
1131
- OutboundCallerConfig?: OutboundCallerConfig;
1130
+ Description?: string | undefined;
1131
+ OutboundCallerConfig?: OutboundCallerConfig | undefined;
1132
1132
  HoursOfOperationId: string | undefined;
1133
- MaxContacts?: number;
1134
- QuickConnectIds?: string[];
1135
- Tags?: Record<string, string>;
1133
+ MaxContacts?: number | undefined;
1134
+ QuickConnectIds?: string[] | undefined;
1135
+ Tags?: Record<string, string> | undefined;
1136
1136
  }
1137
1137
  export interface CreateQueueResponse {
1138
- QueueArn?: string;
1139
- QueueId?: string;
1138
+ QueueArn?: string | undefined;
1139
+ QueueId?: string | undefined;
1140
1140
  }
1141
1141
  export interface PhoneNumberQuickConnectConfig {
1142
1142
  PhoneNumber: string | undefined;
@@ -1158,20 +1158,20 @@ export interface UserQuickConnectConfig {
1158
1158
  }
1159
1159
  export interface QuickConnectConfig {
1160
1160
  QuickConnectType: QuickConnectType | undefined;
1161
- UserConfig?: UserQuickConnectConfig;
1162
- QueueConfig?: QueueQuickConnectConfig;
1163
- PhoneConfig?: PhoneNumberQuickConnectConfig;
1161
+ UserConfig?: UserQuickConnectConfig | undefined;
1162
+ QueueConfig?: QueueQuickConnectConfig | undefined;
1163
+ PhoneConfig?: PhoneNumberQuickConnectConfig | undefined;
1164
1164
  }
1165
1165
  export interface CreateQuickConnectRequest {
1166
1166
  InstanceId: string | undefined;
1167
1167
  Name: string | undefined;
1168
- Description?: string;
1168
+ Description?: string | undefined;
1169
1169
  QuickConnectConfig: QuickConnectConfig | undefined;
1170
- Tags?: Record<string, string>;
1170
+ Tags?: Record<string, string> | undefined;
1171
1171
  }
1172
1172
  export interface CreateQuickConnectResponse {
1173
- QuickConnectARN?: string;
1174
- QuickConnectId?: string;
1173
+ QuickConnectARN?: string | undefined;
1174
+ QuickConnectId?: string | undefined;
1175
1175
  }
1176
1176
  export declare const BehaviorType: {
1177
1177
  readonly ROUTE_ANY_CHANNEL: "ROUTE_ANY_CHANNEL";
@@ -1184,29 +1184,29 @@ export interface CrossChannelBehavior {
1184
1184
  export interface MediaConcurrency {
1185
1185
  Channel: Channel | undefined;
1186
1186
  Concurrency: number | undefined;
1187
- CrossChannelBehavior?: CrossChannelBehavior;
1187
+ CrossChannelBehavior?: CrossChannelBehavior | undefined;
1188
1188
  }
1189
1189
  export interface CreateRoutingProfileRequest {
1190
1190
  InstanceId: string | undefined;
1191
1191
  Name: string | undefined;
1192
1192
  Description: string | undefined;
1193
1193
  DefaultOutboundQueueId: string | undefined;
1194
- QueueConfigs?: RoutingProfileQueueConfig[];
1194
+ QueueConfigs?: RoutingProfileQueueConfig[] | undefined;
1195
1195
  MediaConcurrencies: MediaConcurrency[] | undefined;
1196
- Tags?: Record<string, string>;
1197
- AgentAvailabilityTimer?: AgentAvailabilityTimer;
1196
+ Tags?: Record<string, string> | undefined;
1197
+ AgentAvailabilityTimer?: AgentAvailabilityTimer | undefined;
1198
1198
  }
1199
1199
  export interface CreateRoutingProfileResponse {
1200
- RoutingProfileArn?: string;
1201
- RoutingProfileId?: string;
1200
+ RoutingProfileArn?: string | undefined;
1201
+ RoutingProfileId?: string | undefined;
1202
1202
  }
1203
1203
  export interface AssignContactCategoryActionDefinition {}
1204
1204
  export interface EmptyFieldValue {}
1205
1205
  export interface FieldValueUnion {
1206
- BooleanValue?: boolean;
1207
- DoubleValue?: number;
1208
- EmptyValue?: EmptyFieldValue;
1209
- StringValue?: string;
1206
+ BooleanValue?: boolean | undefined;
1207
+ DoubleValue?: number | undefined;
1208
+ EmptyValue?: EmptyFieldValue | undefined;
1209
+ StringValue?: string | undefined;
1210
1210
  }
1211
1211
  export interface FieldValue {
1212
1212
  Id: string | undefined;
@@ -1231,12 +1231,12 @@ export declare const NotificationDeliveryType: {
1231
1231
  export type NotificationDeliveryType =
1232
1232
  (typeof NotificationDeliveryType)[keyof typeof NotificationDeliveryType];
1233
1233
  export interface NotificationRecipientType {
1234
- UserTags?: Record<string, string>;
1235
- UserIds?: string[];
1234
+ UserTags?: Record<string, string> | undefined;
1235
+ UserIds?: string[] | undefined;
1236
1236
  }
1237
1237
  export interface SendNotificationActionDefinition {
1238
1238
  DeliveryMethod: NotificationDeliveryType | undefined;
1239
- Subject?: string;
1239
+ Subject?: string | undefined;
1240
1240
  Content: string | undefined;
1241
1241
  ContentType: NotificationContentType | undefined;
1242
1242
  Recipient: NotificationRecipientType | undefined;
@@ -1259,23 +1259,25 @@ export interface Reference {
1259
1259
  }
1260
1260
  export interface TaskActionDefinition {
1261
1261
  Name: string | undefined;
1262
- Description?: string;
1262
+ Description?: string | undefined;
1263
1263
  ContactFlowId: string | undefined;
1264
- References?: Record<string, Reference>;
1264
+ References?: Record<string, Reference> | undefined;
1265
1265
  }
1266
1266
  export interface UpdateCaseActionDefinition {
1267
1267
  Fields: FieldValue[] | undefined;
1268
1268
  }
1269
1269
  export interface RuleAction {
1270
1270
  ActionType: ActionType | undefined;
1271
- TaskAction?: TaskActionDefinition;
1272
- EventBridgeAction?: EventBridgeActionDefinition;
1273
- AssignContactCategoryAction?: AssignContactCategoryActionDefinition;
1274
- SendNotificationAction?: SendNotificationActionDefinition;
1275
- CreateCaseAction?: CreateCaseActionDefinition;
1276
- UpdateCaseAction?: UpdateCaseActionDefinition;
1277
- EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition;
1278
- SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition;
1271
+ TaskAction?: TaskActionDefinition | undefined;
1272
+ EventBridgeAction?: EventBridgeActionDefinition | undefined;
1273
+ AssignContactCategoryAction?:
1274
+ | AssignContactCategoryActionDefinition
1275
+ | undefined;
1276
+ SendNotificationAction?: SendNotificationActionDefinition | undefined;
1277
+ CreateCaseAction?: CreateCaseActionDefinition | undefined;
1278
+ UpdateCaseAction?: UpdateCaseActionDefinition | undefined;
1279
+ EndAssociatedTasksAction?: EndAssociatedTasksActionDefinition | undefined;
1280
+ SubmitAutoEvaluationAction?: SubmitAutoEvaluationActionDefinition | undefined;
1279
1281
  }
1280
1282
  export declare const RulePublishStatus: {
1281
1283
  readonly DRAFT: "DRAFT";
@@ -1300,7 +1302,7 @@ export type EventSourceName =
1300
1302
  (typeof EventSourceName)[keyof typeof EventSourceName];
1301
1303
  export interface RuleTriggerEventSource {
1302
1304
  EventSourceName: EventSourceName | undefined;
1303
- IntegrationAssociationId?: string;
1305
+ IntegrationAssociationId?: string | undefined;
1304
1306
  }
1305
1307
  export interface CreateRuleRequest {
1306
1308
  InstanceId: string | undefined;
@@ -1309,55 +1311,55 @@ export interface CreateRuleRequest {
1309
1311
  Function: string | undefined;
1310
1312
  Actions: RuleAction[] | undefined;
1311
1313
  PublishStatus: RulePublishStatus | undefined;
1312
- ClientToken?: string;
1314
+ ClientToken?: string | undefined;
1313
1315
  }
1314
1316
  export interface CreateRuleResponse {
1315
1317
  RuleArn: string | undefined;
1316
1318
  RuleId: string | undefined;
1317
1319
  }
1318
1320
  export interface Application {
1319
- Namespace?: string;
1320
- ApplicationPermissions?: string[];
1321
+ Namespace?: string | undefined;
1322
+ ApplicationPermissions?: string[] | undefined;
1321
1323
  }
1322
1324
  export interface CreateSecurityProfileRequest {
1323
1325
  SecurityProfileName: string | undefined;
1324
- Description?: string;
1325
- Permissions?: string[];
1326
+ Description?: string | undefined;
1327
+ Permissions?: string[] | undefined;
1326
1328
  InstanceId: string | undefined;
1327
- Tags?: Record<string, string>;
1328
- AllowedAccessControlTags?: Record<string, string>;
1329
- TagRestrictedResources?: string[];
1330
- Applications?: Application[];
1331
- HierarchyRestrictedResources?: string[];
1332
- AllowedAccessControlHierarchyGroupId?: string;
1329
+ Tags?: Record<string, string> | undefined;
1330
+ AllowedAccessControlTags?: Record<string, string> | undefined;
1331
+ TagRestrictedResources?: string[] | undefined;
1332
+ Applications?: Application[] | undefined;
1333
+ HierarchyRestrictedResources?: string[] | undefined;
1334
+ AllowedAccessControlHierarchyGroupId?: string | undefined;
1333
1335
  }
1334
1336
  export interface CreateSecurityProfileResponse {
1335
- SecurityProfileId?: string;
1336
- SecurityProfileArn?: string;
1337
+ SecurityProfileId?: string | undefined;
1338
+ SecurityProfileArn?: string | undefined;
1337
1339
  }
1338
1340
  export interface TaskTemplateFieldIdentifier {
1339
- Name?: string;
1341
+ Name?: string | undefined;
1340
1342
  }
1341
1343
  export interface InvisibleFieldInfo {
1342
- Id?: TaskTemplateFieldIdentifier;
1344
+ Id?: TaskTemplateFieldIdentifier | undefined;
1343
1345
  }
1344
1346
  export interface ReadOnlyFieldInfo {
1345
- Id?: TaskTemplateFieldIdentifier;
1347
+ Id?: TaskTemplateFieldIdentifier | undefined;
1346
1348
  }
1347
1349
  export interface RequiredFieldInfo {
1348
- Id?: TaskTemplateFieldIdentifier;
1350
+ Id?: TaskTemplateFieldIdentifier | undefined;
1349
1351
  }
1350
1352
  export interface TaskTemplateConstraints {
1351
- RequiredFields?: RequiredFieldInfo[];
1352
- ReadOnlyFields?: ReadOnlyFieldInfo[];
1353
- InvisibleFields?: InvisibleFieldInfo[];
1353
+ RequiredFields?: RequiredFieldInfo[] | undefined;
1354
+ ReadOnlyFields?: ReadOnlyFieldInfo[] | undefined;
1355
+ InvisibleFields?: InvisibleFieldInfo[] | undefined;
1354
1356
  }
1355
1357
  export interface TaskTemplateDefaultFieldValue {
1356
- Id?: TaskTemplateFieldIdentifier;
1357
- DefaultValue?: string;
1358
+ Id?: TaskTemplateFieldIdentifier | undefined;
1359
+ DefaultValue?: string | undefined;
1358
1360
  }
1359
1361
  export interface TaskTemplateDefaults {
1360
- DefaultFieldValues?: TaskTemplateDefaultFieldValue[];
1362
+ DefaultFieldValues?: TaskTemplateDefaultFieldValue[] | undefined;
1361
1363
  }
1362
1364
  export declare const TaskTemplateFieldType: {
1363
1365
  readonly BOOLEAN: "BOOLEAN";
@@ -1377,9 +1379,9 @@ export type TaskTemplateFieldType =
1377
1379
  (typeof TaskTemplateFieldType)[keyof typeof TaskTemplateFieldType];
1378
1380
  export interface TaskTemplateField {
1379
1381
  Id: TaskTemplateFieldIdentifier | undefined;
1380
- Description?: string;
1381
- Type?: TaskTemplateFieldType;
1382
- SingleSelectOptions?: string[];
1382
+ Description?: string | undefined;
1383
+ Type?: TaskTemplateFieldType | undefined;
1384
+ SingleSelectOptions?: string[] | undefined;
1383
1385
  }
1384
1386
  export declare const TaskTemplateStatus: {
1385
1387
  readonly ACTIVE: "ACTIVE";
@@ -1390,13 +1392,13 @@ export type TaskTemplateStatus =
1390
1392
  export interface CreateTaskTemplateRequest {
1391
1393
  InstanceId: string | undefined;
1392
1394
  Name: string | undefined;
1393
- Description?: string;
1394
- ContactFlowId?: string;
1395
- Constraints?: TaskTemplateConstraints;
1396
- Defaults?: TaskTemplateDefaults;
1397
- Status?: TaskTemplateStatus;
1395
+ Description?: string | undefined;
1396
+ ContactFlowId?: string | undefined;
1397
+ Constraints?: TaskTemplateConstraints | undefined;
1398
+ Defaults?: TaskTemplateDefaults | undefined;
1399
+ Status?: TaskTemplateStatus | undefined;
1398
1400
  Fields: TaskTemplateField[] | undefined;
1399
- ClientToken?: string;
1401
+ ClientToken?: string | undefined;
1400
1402
  }
1401
1403
  export interface CreateTaskTemplateResponse {
1402
1404
  Id: string | undefined;
@@ -1421,26 +1423,26 @@ export declare class PropertyValidationException extends __BaseException {
1421
1423
  readonly name: "PropertyValidationException";
1422
1424
  readonly $fault: "client";
1423
1425
  Message: string | undefined;
1424
- PropertyList?: PropertyValidationExceptionProperty[];
1426
+ PropertyList?: PropertyValidationExceptionProperty[] | undefined;
1425
1427
  constructor(
1426
1428
  opts: __ExceptionOptionType<PropertyValidationException, __BaseException>
1427
1429
  );
1428
1430
  }
1429
1431
  export interface CreateTrafficDistributionGroupRequest {
1430
1432
  Name: string | undefined;
1431
- Description?: string;
1433
+ Description?: string | undefined;
1432
1434
  InstanceId: string | undefined;
1433
- ClientToken?: string;
1434
- Tags?: Record<string, string>;
1435
+ ClientToken?: string | undefined;
1436
+ Tags?: Record<string, string> | undefined;
1435
1437
  }
1436
1438
  export interface CreateTrafficDistributionGroupResponse {
1437
- Id?: string;
1438
- Arn?: string;
1439
+ Id?: string | undefined;
1440
+ Arn?: string | undefined;
1439
1441
  }
1440
1442
  export declare class ResourceNotReadyException extends __BaseException {
1441
1443
  readonly name: "ResourceNotReadyException";
1442
1444
  readonly $fault: "client";
1443
- Message?: string;
1445
+ Message?: string | undefined;
1444
1446
  constructor(
1445
1447
  opts: __ExceptionOptionType<ResourceNotReadyException, __BaseException>
1446
1448
  );
@@ -1454,18 +1456,18 @@ export interface CreateUseCaseRequest {
1454
1456
  InstanceId: string | undefined;
1455
1457
  IntegrationAssociationId: string | undefined;
1456
1458
  UseCaseType: UseCaseType | undefined;
1457
- Tags?: Record<string, string>;
1459
+ Tags?: Record<string, string> | undefined;
1458
1460
  }
1459
1461
  export interface CreateUseCaseResponse {
1460
- UseCaseId?: string;
1461
- UseCaseArn?: string;
1462
+ UseCaseId?: string | undefined;
1463
+ UseCaseArn?: string | undefined;
1462
1464
  }
1463
1465
  export interface UserIdentityInfo {
1464
- FirstName?: string;
1465
- LastName?: string;
1466
- Email?: string;
1467
- SecondaryEmail?: string;
1468
- Mobile?: string;
1466
+ FirstName?: string | undefined;
1467
+ LastName?: string | undefined;
1468
+ Email?: string | undefined;
1469
+ SecondaryEmail?: string | undefined;
1470
+ Mobile?: string | undefined;
1469
1471
  }
1470
1472
  export declare const PhoneType: {
1471
1473
  readonly DESK_PHONE: "DESK_PHONE";
@@ -1474,39 +1476,39 @@ export declare const PhoneType: {
1474
1476
  export type PhoneType = (typeof PhoneType)[keyof typeof PhoneType];
1475
1477
  export interface UserPhoneConfig {
1476
1478
  PhoneType: PhoneType | undefined;
1477
- AutoAccept?: boolean;
1478
- AfterContactWorkTimeLimit?: number;
1479
- DeskPhoneNumber?: string;
1479
+ AutoAccept?: boolean | undefined;
1480
+ AfterContactWorkTimeLimit?: number | undefined;
1481
+ DeskPhoneNumber?: string | undefined;
1480
1482
  }
1481
1483
  export interface CreateUserRequest {
1482
1484
  Username: string | undefined;
1483
- Password?: string;
1484
- IdentityInfo?: UserIdentityInfo;
1485
+ Password?: string | undefined;
1486
+ IdentityInfo?: UserIdentityInfo | undefined;
1485
1487
  PhoneConfig: UserPhoneConfig | undefined;
1486
- DirectoryUserId?: string;
1488
+ DirectoryUserId?: string | undefined;
1487
1489
  SecurityProfileIds: string[] | undefined;
1488
1490
  RoutingProfileId: string | undefined;
1489
- HierarchyGroupId?: string;
1491
+ HierarchyGroupId?: string | undefined;
1490
1492
  InstanceId: string | undefined;
1491
- Tags?: Record<string, string>;
1493
+ Tags?: Record<string, string> | undefined;
1492
1494
  }
1493
1495
  export interface CreateUserResponse {
1494
- UserId?: string;
1495
- UserArn?: string;
1496
+ UserId?: string | undefined;
1497
+ UserArn?: string | undefined;
1496
1498
  }
1497
1499
  export interface CreateUserHierarchyGroupRequest {
1498
1500
  Name: string | undefined;
1499
- ParentGroupId?: string;
1501
+ ParentGroupId?: string | undefined;
1500
1502
  InstanceId: string | undefined;
1501
- Tags?: Record<string, string>;
1503
+ Tags?: Record<string, string> | undefined;
1502
1504
  }
1503
1505
  export interface CreateUserHierarchyGroupResponse {
1504
- HierarchyGroupId?: string;
1505
- HierarchyGroupArn?: string;
1506
+ HierarchyGroupId?: string | undefined;
1507
+ HierarchyGroupArn?: string | undefined;
1506
1508
  }
1507
1509
  export interface ViewInputContent {
1508
- Template?: string;
1509
- Actions?: string[];
1510
+ Template?: string | undefined;
1511
+ Actions?: string[] | undefined;
1510
1512
  }
1511
1513
  export declare const ViewStatus: {
1512
1514
  readonly PUBLISHED: "PUBLISHED";
@@ -1515,17 +1517,17 @@ export declare const ViewStatus: {
1515
1517
  export type ViewStatus = (typeof ViewStatus)[keyof typeof ViewStatus];
1516
1518
  export interface CreateViewRequest {
1517
1519
  InstanceId: string | undefined;
1518
- ClientToken?: string;
1520
+ ClientToken?: string | undefined;
1519
1521
  Status: ViewStatus | undefined;
1520
1522
  Content: ViewInputContent | undefined;
1521
- Description?: string;
1523
+ Description?: string | undefined;
1522
1524
  Name: string | undefined;
1523
- Tags?: Record<string, string>;
1525
+ Tags?: Record<string, string> | undefined;
1524
1526
  }
1525
1527
  export interface ViewContent {
1526
- InputSchema?: string;
1527
- Template?: string;
1528
- Actions?: string[];
1528
+ InputSchema?: string | undefined;
1529
+ Template?: string | undefined;
1530
+ Actions?: string[] | undefined;
1529
1531
  }
1530
1532
  export declare const ViewType: {
1531
1533
  readonly AWS_MANAGED: "AWS_MANAGED";
@@ -1533,22 +1535,22 @@ export declare const ViewType: {
1533
1535
  };
1534
1536
  export type ViewType = (typeof ViewType)[keyof typeof ViewType];
1535
1537
  export interface View {
1536
- Id?: string;
1537
- Arn?: string;
1538
- Name?: string;
1539
- Status?: ViewStatus;
1540
- Type?: ViewType;
1541
- Description?: string;
1542
- Version?: number;
1543
- VersionDescription?: string;
1544
- Content?: ViewContent;
1545
- Tags?: Record<string, string>;
1546
- CreatedTime?: Date;
1547
- LastModifiedTime?: Date;
1548
- ViewContentSha256?: string;
1538
+ Id?: string | undefined;
1539
+ Arn?: string | undefined;
1540
+ Name?: string | undefined;
1541
+ Status?: ViewStatus | undefined;
1542
+ Type?: ViewType | undefined;
1543
+ Description?: string | undefined;
1544
+ Version?: number | undefined;
1545
+ VersionDescription?: string | undefined;
1546
+ Content?: ViewContent | undefined;
1547
+ Tags?: Record<string, string> | undefined;
1548
+ CreatedTime?: Date | undefined;
1549
+ LastModifiedTime?: Date | undefined;
1550
+ ViewContentSha256?: string | undefined;
1549
1551
  }
1550
1552
  export interface CreateViewResponse {
1551
- View?: View;
1553
+ View?: View | undefined;
1552
1554
  }
1553
1555
  export declare const ResourceType: {
1554
1556
  readonly CONTACT: "CONTACT";
@@ -1564,9 +1566,9 @@ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
1564
1566
  export declare class ResourceInUseException extends __BaseException {
1565
1567
  readonly name: "ResourceInUseException";
1566
1568
  readonly $fault: "client";
1567
- Message?: string;
1568
- ResourceType?: ResourceType;
1569
- ResourceId?: string;
1569
+ Message?: string | undefined;
1570
+ ResourceType?: ResourceType | undefined;
1571
+ ResourceId?: string | undefined;
1570
1572
  constructor(
1571
1573
  opts: __ExceptionOptionType<ResourceInUseException, __BaseException>
1572
1574
  );
@@ -1574,7 +1576,7 @@ export declare class ResourceInUseException extends __BaseException {
1574
1576
  export declare class TooManyRequestsException extends __BaseException {
1575
1577
  readonly name: "TooManyRequestsException";
1576
1578
  readonly $fault: "client";
1577
- Message?: string;
1579
+ Message?: string | undefined;
1578
1580
  constructor(
1579
1581
  opts: __ExceptionOptionType<TooManyRequestsException, __BaseException>
1580
1582
  );
@@ -1582,19 +1584,19 @@ export declare class TooManyRequestsException extends __BaseException {
1582
1584
  export interface CreateViewVersionRequest {
1583
1585
  InstanceId: string | undefined;
1584
1586
  ViewId: string | undefined;
1585
- VersionDescription?: string;
1586
- ViewContentSha256?: string;
1587
+ VersionDescription?: string | undefined;
1588
+ ViewContentSha256?: string | undefined;
1587
1589
  }
1588
1590
  export interface CreateViewVersionResponse {
1589
- View?: View;
1591
+ View?: View | undefined;
1590
1592
  }
1591
1593
  export interface CreateVocabularyRequest {
1592
- ClientToken?: string;
1594
+ ClientToken?: string | undefined;
1593
1595
  InstanceId: string | undefined;
1594
1596
  VocabularyName: string | undefined;
1595
1597
  LanguageCode: VocabularyLanguageCode | undefined;
1596
1598
  Content: string | undefined;
1597
- Tags?: Record<string, string>;
1599
+ Tags?: Record<string, string> | undefined;
1598
1600
  }
1599
1601
  export declare const VocabularyState: {
1600
1602
  readonly ACTIVE: "ACTIVE";
@@ -1642,7 +1644,7 @@ export interface DeleteContactFlowModuleResponse {}
1642
1644
  export interface DeleteEvaluationFormRequest {
1643
1645
  InstanceId: string | undefined;
1644
1646
  EvaluationFormId: string | undefined;
1645
- EvaluationFormVersion?: number;
1647
+ EvaluationFormVersion?: number | undefined;
1646
1648
  }
1647
1649
  export interface DeleteHoursOfOperationRequest {
1648
1650
  InstanceId: string | undefined;
@@ -1730,28 +1732,28 @@ export interface DescribeAgentStatusRequest {
1730
1732
  AgentStatusId: string | undefined;
1731
1733
  }
1732
1734
  export interface DescribeAgentStatusResponse {
1733
- AgentStatus?: AgentStatus;
1735
+ AgentStatus?: AgentStatus | undefined;
1734
1736
  }
1735
1737
  export interface DescribeAuthenticationProfileRequest {
1736
1738
  AuthenticationProfileId: string | undefined;
1737
1739
  InstanceId: string | undefined;
1738
1740
  }
1739
1741
  export interface AuthenticationProfile {
1740
- Id?: string;
1741
- Arn?: string;
1742
- Name?: string;
1743
- Description?: string;
1744
- AllowedIps?: string[];
1745
- BlockedIps?: string[];
1746
- IsDefault?: boolean;
1747
- CreatedTime?: Date;
1748
- LastModifiedTime?: Date;
1749
- LastModifiedRegion?: string;
1750
- PeriodicSessionDuration?: number;
1751
- MaxSessionDuration?: number;
1742
+ Id?: string | undefined;
1743
+ Arn?: string | undefined;
1744
+ Name?: string | undefined;
1745
+ Description?: string | undefined;
1746
+ AllowedIps?: string[] | undefined;
1747
+ BlockedIps?: string[] | undefined;
1748
+ IsDefault?: boolean | undefined;
1749
+ CreatedTime?: Date | undefined;
1750
+ LastModifiedTime?: Date | undefined;
1751
+ LastModifiedRegion?: string | undefined;
1752
+ PeriodicSessionDuration?: number | undefined;
1753
+ MaxSessionDuration?: number | undefined;
1752
1754
  }
1753
1755
  export interface DescribeAuthenticationProfileResponse {
1754
- AuthenticationProfile?: AuthenticationProfile;
1756
+ AuthenticationProfile?: AuthenticationProfile | undefined;
1755
1757
  }
1756
1758
  export interface DescribeContactRequest {
1757
1759
  InstanceId: string | undefined;
@@ -1776,33 +1778,33 @@ export declare const AnsweringMachineDetectionStatus: {
1776
1778
  export type AnsweringMachineDetectionStatus =
1777
1779
  (typeof AnsweringMachineDetectionStatus)[keyof typeof AnsweringMachineDetectionStatus];
1778
1780
  export interface Customer {
1779
- DeviceInfo?: DeviceInfo;
1780
- Capabilities?: ParticipantCapabilities;
1781
+ DeviceInfo?: DeviceInfo | undefined;
1782
+ Capabilities?: ParticipantCapabilities | undefined;
1781
1783
  }
1782
1784
  export interface CustomerVoiceActivity {
1783
- GreetingStartTimestamp?: Date;
1784
- GreetingEndTimestamp?: Date;
1785
+ GreetingStartTimestamp?: Date | undefined;
1786
+ GreetingEndTimestamp?: Date | undefined;
1785
1787
  }
1786
1788
  export interface DisconnectDetails {
1787
- PotentialDisconnectIssue?: string;
1789
+ PotentialDisconnectIssue?: string | undefined;
1788
1790
  }
1789
1791
  export interface CustomerQualityMetrics {
1790
- Audio?: AudioQualityMetricsInfo;
1792
+ Audio?: AudioQualityMetricsInfo | undefined;
1791
1793
  }
1792
1794
  export interface QualityMetrics {
1793
- Agent?: AgentQualityMetrics;
1794
- Customer?: CustomerQualityMetrics;
1795
+ Agent?: AgentQualityMetrics | undefined;
1796
+ Customer?: CustomerQualityMetrics | undefined;
1795
1797
  }
1796
1798
  export interface QueueInfo {
1797
- Id?: string;
1798
- EnqueueTimestamp?: Date;
1799
+ Id?: string | undefined;
1800
+ EnqueueTimestamp?: Date | undefined;
1799
1801
  }
1800
1802
  export interface Expiry {
1801
- DurationInSeconds?: number;
1802
- ExpiryTimestamp?: Date;
1803
+ DurationInSeconds?: number | undefined;
1804
+ ExpiryTimestamp?: Date | undefined;
1803
1805
  }
1804
1806
  export interface MatchCriteria {
1805
- AgentsCriteria?: AgentsCriteria;
1807
+ AgentsCriteria?: AgentsCriteria | undefined;
1806
1808
  }
1807
1809
  export declare const CreateInstanceRequestFilterSensitiveLog: (
1808
1810
  obj: CreateInstanceRequest