@aws-sdk/client-chime 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.
@@ -32,8 +32,8 @@ export type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode];
32
32
  export declare class AccessDeniedException extends __BaseException {
33
33
  readonly name: "AccessDeniedException";
34
34
  readonly $fault: "client";
35
- Code?: ErrorCode;
36
- Message?: string;
35
+ Code?: ErrorCode | undefined;
36
+ Message?: string | undefined;
37
37
  /**
38
38
  * @internal
39
39
  */
@@ -88,7 +88,7 @@ export interface SigninDelegateGroup {
88
88
  * <p>The group name.</p>
89
89
  * @public
90
90
  */
91
- GroupName?: string;
91
+ GroupName?: string | undefined;
92
92
  }
93
93
  /**
94
94
  * <p>The Amazon Chime account details. An AWS account can have multiple Amazon Chime accounts.</p>
@@ -116,32 +116,32 @@ export interface Account {
116
116
  * Guide</i>.</p>
117
117
  * @public
118
118
  */
119
- AccountType?: AccountType;
119
+ AccountType?: AccountType | undefined;
120
120
  /**
121
121
  * <p>The Amazon Chime account creation timestamp, in ISO 8601 format.</p>
122
122
  * @public
123
123
  */
124
- CreatedTimestamp?: Date;
124
+ CreatedTimestamp?: Date | undefined;
125
125
  /**
126
126
  * <p>The default license for the Amazon Chime account.</p>
127
127
  * @public
128
128
  */
129
- DefaultLicense?: License;
129
+ DefaultLicense?: License | undefined;
130
130
  /**
131
131
  * <p>Supported licenses for the Amazon Chime account.</p>
132
132
  * @public
133
133
  */
134
- SupportedLicenses?: License[];
134
+ SupportedLicenses?: License[] | undefined;
135
135
  /**
136
136
  * <p>The status of the account.</p>
137
137
  * @public
138
138
  */
139
- AccountStatus?: AccountStatus;
139
+ AccountStatus?: AccountStatus | undefined;
140
140
  /**
141
141
  * <p>The sign-in delegate groups associated with the account.</p>
142
142
  * @public
143
143
  */
144
- SigninDelegateGroups?: SigninDelegateGroup[];
144
+ SigninDelegateGroups?: SigninDelegateGroup[] | undefined;
145
145
  }
146
146
  /**
147
147
  * <p>Settings related to the Amazon Chime account. This includes settings that start or stop
@@ -154,13 +154,13 @@ export interface AccountSettings {
154
154
  * <p>Setting that stops or starts remote control of shared screens during meetings.</p>
155
155
  * @public
156
156
  */
157
- DisableRemoteControl?: boolean;
157
+ DisableRemoteControl?: boolean | undefined;
158
158
  /**
159
159
  * <p>Setting that allows meeting participants to choose the <b>Call me at a phone number</b> option. For more information, see
160
160
  * <a href="https://docs.aws.amazon.com/chime/latest/ug/chime-join-meeting.html">Join a Meeting without the Amazon Chime App</a>.</p>
161
161
  * @public
162
162
  */
163
- EnableDialOut?: boolean;
163
+ EnableDialOut?: boolean | undefined;
164
164
  }
165
165
  /**
166
166
  * <p>A validated address.</p>
@@ -171,52 +171,52 @@ export interface Address {
171
171
  * <p>The address street, such as <code>8th Avenue</code>.</p>
172
172
  * @public
173
173
  */
174
- streetName?: string;
174
+ streetName?: string | undefined;
175
175
  /**
176
176
  * <p>The address suffix, such as the <code>N</code> in <code>8th Avenue N</code>.</p>
177
177
  * @public
178
178
  */
179
- streetSuffix?: string;
179
+ streetSuffix?: string | undefined;
180
180
  /**
181
181
  * <p>An address suffix location, such as the <code>S. Unit A</code> in <code>Central Park S. Unit A</code>.</p>
182
182
  * @public
183
183
  */
184
- postDirectional?: string;
184
+ postDirectional?: string | undefined;
185
185
  /**
186
186
  * <p>An address prefix location, such as the <code>N</code> in <code>N. Third St.</code>.</p>
187
187
  * @public
188
188
  */
189
- preDirectional?: string;
189
+ preDirectional?: string | undefined;
190
190
  /**
191
191
  * <p>The numeric portion of an address.</p>
192
192
  * @public
193
193
  */
194
- streetNumber?: string;
194
+ streetNumber?: string | undefined;
195
195
  /**
196
196
  * <p>The city of an address.</p>
197
197
  * @public
198
198
  */
199
- city?: string;
199
+ city?: string | undefined;
200
200
  /**
201
201
  * <p>The state of an address.</p>
202
202
  * @public
203
203
  */
204
- state?: string;
204
+ state?: string | undefined;
205
205
  /**
206
206
  * <p>The postal code of an address.</p>
207
207
  * @public
208
208
  */
209
- postalCode?: string;
209
+ postalCode?: string | undefined;
210
210
  /**
211
211
  * <p>The Zip + 4 or postal code + 4 of an address.</p>
212
212
  * @public
213
213
  */
214
- postalCodePlus4?: string;
214
+ postalCodePlus4?: string | undefined;
215
215
  /**
216
216
  * <p>The country of an address. </p>
217
217
  * @public
218
218
  */
219
- country?: string;
219
+ country?: string | undefined;
220
220
  }
221
221
  /**
222
222
  * <p>The Alexa for Business metadata associated with an Amazon Chime user, used to integrate Alexa for Business with a device.</p>
@@ -227,12 +227,12 @@ export interface AlexaForBusinessMetadata {
227
227
  * <p>Starts or stops Alexa for Business.</p>
228
228
  * @public
229
229
  */
230
- IsAlexaForBusinessEnabled?: boolean;
230
+ IsAlexaForBusinessEnabled?: boolean | undefined;
231
231
  /**
232
232
  * <p>The ARN of the room resource.</p>
233
233
  * @public
234
234
  */
235
- AlexaForBusinessRoomArn?: string;
235
+ AlexaForBusinessRoomArn?: string | undefined;
236
236
  }
237
237
  /**
238
238
  * <p>The details of an <code>AppInstance</code>, an instance of an Amazon Chime SDK messaging application.</p>
@@ -243,27 +243,27 @@ export interface AppInstance {
243
243
  * <p>The ARN of the messaging instance.</p>
244
244
  * @public
245
245
  */
246
- AppInstanceArn?: string;
246
+ AppInstanceArn?: string | undefined;
247
247
  /**
248
248
  * <p>The name of an <code>AppInstance</code>.</p>
249
249
  * @public
250
250
  */
251
- Name?: string;
251
+ Name?: string | undefined;
252
252
  /**
253
253
  * <p>The metadata of an <code>AppInstance</code>.</p>
254
254
  * @public
255
255
  */
256
- Metadata?: string;
256
+ Metadata?: string | undefined;
257
257
  /**
258
258
  * <p>The time at which an <code>AppInstance</code> was created. In epoch milliseconds.</p>
259
259
  * @public
260
260
  */
261
- CreatedTimestamp?: Date;
261
+ CreatedTimestamp?: Date | undefined;
262
262
  /**
263
263
  * <p>The time an <code>AppInstance</code> was last updated. In epoch milliseconds.</p>
264
264
  * @public
265
265
  */
266
- LastUpdatedTimestamp?: Date;
266
+ LastUpdatedTimestamp?: Date | undefined;
267
267
  }
268
268
  /**
269
269
  * <p>The details of a user.</p>
@@ -274,12 +274,12 @@ export interface Identity {
274
274
  * <p>The ARN in an Identity.</p>
275
275
  * @public
276
276
  */
277
- Arn?: string;
277
+ Arn?: string | undefined;
278
278
  /**
279
279
  * <p>The name in an Identity.</p>
280
280
  * @public
281
281
  */
282
- Name?: string;
282
+ Name?: string | undefined;
283
283
  }
284
284
  /**
285
285
  * <p>The details of an <code>AppInstanceAdmin</code>.</p>
@@ -290,17 +290,17 @@ export interface AppInstanceAdmin {
290
290
  * <p>The <code>AppInstanceAdmin</code> data.</p>
291
291
  * @public
292
292
  */
293
- Admin?: Identity;
293
+ Admin?: Identity | undefined;
294
294
  /**
295
295
  * <p>The ARN of the <code>AppInstance</code> for which the user is an administrator.</p>
296
296
  * @public
297
297
  */
298
- AppInstanceArn?: string;
298
+ AppInstanceArn?: string | undefined;
299
299
  /**
300
300
  * <p>The time at which an administrator was created.</p>
301
301
  * @public
302
302
  */
303
- CreatedTimestamp?: Date;
303
+ CreatedTimestamp?: Date | undefined;
304
304
  }
305
305
  /**
306
306
  * <p>Summary of the details of an <code>AppInstanceAdmin</code>.</p>
@@ -311,7 +311,7 @@ export interface AppInstanceAdminSummary {
311
311
  * <p>The details of the <code>AppInstanceAdmin</code>.</p>
312
312
  * @public
313
313
  */
314
- Admin?: Identity;
314
+ Admin?: Identity | undefined;
315
315
  }
316
316
  /**
317
317
  * @public
@@ -334,17 +334,17 @@ export interface AppInstanceSummary {
334
334
  * <p>The <code>AppInstance</code> ARN.</p>
335
335
  * @public
336
336
  */
337
- AppInstanceArn?: string;
337
+ AppInstanceArn?: string | undefined;
338
338
  /**
339
339
  * <p>The name of the <code>AppInstance</code>.</p>
340
340
  * @public
341
341
  */
342
- Name?: string;
342
+ Name?: string | undefined;
343
343
  /**
344
344
  * <p>The metadata of the <code>AppInstance</code>.</p>
345
345
  * @public
346
346
  */
347
- Metadata?: string;
347
+ Metadata?: string | undefined;
348
348
  }
349
349
  /**
350
350
  * <p>The details of the retention settings for a channel.</p>
@@ -355,7 +355,7 @@ export interface ChannelRetentionSettings {
355
355
  * <p>The time in days to retain the messages in a channel.</p>
356
356
  * @public
357
357
  */
358
- RetentionDays?: number;
358
+ RetentionDays?: number | undefined;
359
359
  }
360
360
  /**
361
361
  * <p>The details of the data-retention settings for an <code>AppInstance</code>.</p>
@@ -366,7 +366,7 @@ export interface AppInstanceRetentionSettings {
366
366
  * <p>The length of time in days to retain the messages in a channel.</p>
367
367
  * @public
368
368
  */
369
- ChannelRetentionSettings?: ChannelRetentionSettings;
369
+ ChannelRetentionSettings?: ChannelRetentionSettings | undefined;
370
370
  }
371
371
  /**
372
372
  * <p>The details of the streaming configuration of an <code>AppInstance</code>.</p>
@@ -393,27 +393,27 @@ export interface AppInstanceUser {
393
393
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
394
394
  * @public
395
395
  */
396
- AppInstanceUserArn?: string;
396
+ AppInstanceUserArn?: string | undefined;
397
397
  /**
398
398
  * <p>The name of the <code>AppInstanceUser</code>.</p>
399
399
  * @public
400
400
  */
401
- Name?: string;
401
+ Name?: string | undefined;
402
402
  /**
403
403
  * <p>The time at which the <code>AppInstanceUser</code> was created.</p>
404
404
  * @public
405
405
  */
406
- CreatedTimestamp?: Date;
406
+ CreatedTimestamp?: Date | undefined;
407
407
  /**
408
408
  * <p>The metadata of the <code>AppInstanceUser</code>.</p>
409
409
  * @public
410
410
  */
411
- Metadata?: string;
411
+ Metadata?: string | undefined;
412
412
  /**
413
413
  * <p>The time at which the <code>AppInstanceUser</code> was last updated.</p>
414
414
  * @public
415
415
  */
416
- LastUpdatedTimestamp?: Date;
416
+ LastUpdatedTimestamp?: Date | undefined;
417
417
  }
418
418
  /**
419
419
  * <p>Summary of the details of an <code>AppInstanceUser</code>.</p>
@@ -424,17 +424,17 @@ export interface AppInstanceUserSummary {
424
424
  * <p>The ARN of the <code>AppInstanceUser</code>.</p>
425
425
  * @public
426
426
  */
427
- AppInstanceUserArn?: string;
427
+ AppInstanceUserArn?: string | undefined;
428
428
  /**
429
429
  * <p>The name of an <code>AppInstanceUser</code>.</p>
430
430
  * @public
431
431
  */
432
- Name?: string;
432
+ Name?: string | undefined;
433
433
  /**
434
434
  * <p>The metadata of the <code>AppInstanceUser</code>.</p>
435
435
  * @public
436
436
  */
437
- Metadata?: string;
437
+ Metadata?: string | undefined;
438
438
  }
439
439
  /**
440
440
  * @public
@@ -457,12 +457,12 @@ export interface AppInstanceUserMembershipSummary {
457
457
  * <p>The type of <code>ChannelMembership</code>.</p>
458
458
  * @public
459
459
  */
460
- Type?: ChannelMembershipType;
460
+ Type?: ChannelMembershipType | undefined;
461
461
  /**
462
462
  * <p>The time at which a message was last read.</p>
463
463
  * @public
464
464
  */
465
- ReadMarkerTimestamp?: Date;
465
+ ReadMarkerTimestamp?: Date | undefined;
466
466
  }
467
467
  /**
468
468
  * @public
@@ -524,7 +524,7 @@ export interface ContentArtifactsConfiguration {
524
524
  * <p>The MUX type of the artifact configuration.</p>
525
525
  * @public
526
526
  */
527
- MuxType?: ContentMuxType;
527
+ MuxType?: ContentMuxType | undefined;
528
528
  }
529
529
  /**
530
530
  * @public
@@ -551,7 +551,7 @@ export interface VideoArtifactsConfiguration {
551
551
  * <p>The MUX type of the video artifact configuration object.</p>
552
552
  * @public
553
553
  */
554
- MuxType?: VideoMuxType;
554
+ MuxType?: VideoMuxType | undefined;
555
555
  }
556
556
  /**
557
557
  * <p>The configuration for the artifacts.</p>
@@ -592,7 +592,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorRequest {
592
592
  * <p>If true, associates the provided phone numbers with the provided Amazon Chime Voice Connector and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.</p>
593
593
  * @public
594
594
  */
595
- ForceAssociate?: boolean;
595
+ ForceAssociate?: boolean | undefined;
596
596
  }
597
597
  /**
598
598
  * <p>If the phone number action fails for one or more of the phone numbers in the request, a list of
@@ -604,17 +604,17 @@ export interface PhoneNumberError {
604
604
  * <p>The phone number ID for which the action failed.</p>
605
605
  * @public
606
606
  */
607
- PhoneNumberId?: string;
607
+ PhoneNumberId?: string | undefined;
608
608
  /**
609
609
  * <p>The error code.</p>
610
610
  * @public
611
611
  */
612
- ErrorCode?: ErrorCode;
612
+ ErrorCode?: ErrorCode | undefined;
613
613
  /**
614
614
  * <p>The error message.</p>
615
615
  * @public
616
616
  */
617
- ErrorMessage?: string;
617
+ ErrorMessage?: string | undefined;
618
618
  }
619
619
  /**
620
620
  * @public
@@ -625,7 +625,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
625
625
  * error messages.</p>
626
626
  * @public
627
627
  */
628
- PhoneNumberErrors?: PhoneNumberError[];
628
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
629
629
  }
630
630
  /**
631
631
  * <p>The input parameters don't match the service's restrictions.</p>
@@ -634,8 +634,8 @@ export interface AssociatePhoneNumbersWithVoiceConnectorResponse {
634
634
  export declare class BadRequestException extends __BaseException {
635
635
  readonly name: "BadRequestException";
636
636
  readonly $fault: "client";
637
- Code?: ErrorCode;
638
- Message?: string;
637
+ Code?: ErrorCode | undefined;
638
+ Message?: string | undefined;
639
639
  /**
640
640
  * @internal
641
641
  */
@@ -648,8 +648,8 @@ export declare class BadRequestException extends __BaseException {
648
648
  export declare class ForbiddenException extends __BaseException {
649
649
  readonly name: "ForbiddenException";
650
650
  readonly $fault: "client";
651
- Code?: ErrorCode;
652
- Message?: string;
651
+ Code?: ErrorCode | undefined;
652
+ Message?: string | undefined;
653
653
  /**
654
654
  * @internal
655
655
  */
@@ -662,8 +662,8 @@ export declare class ForbiddenException extends __BaseException {
662
662
  export declare class NotFoundException extends __BaseException {
663
663
  readonly name: "NotFoundException";
664
664
  readonly $fault: "client";
665
- Code?: ErrorCode;
666
- Message?: string;
665
+ Code?: ErrorCode | undefined;
666
+ Message?: string | undefined;
667
667
  /**
668
668
  * @internal
669
669
  */
@@ -676,8 +676,8 @@ export declare class NotFoundException extends __BaseException {
676
676
  export declare class ServiceFailureException extends __BaseException {
677
677
  readonly name: "ServiceFailureException";
678
678
  readonly $fault: "server";
679
- Code?: ErrorCode;
680
- Message?: string;
679
+ Code?: ErrorCode | undefined;
680
+ Message?: string | undefined;
681
681
  /**
682
682
  * @internal
683
683
  */
@@ -690,8 +690,8 @@ export declare class ServiceFailureException extends __BaseException {
690
690
  export declare class ServiceUnavailableException extends __BaseException {
691
691
  readonly name: "ServiceUnavailableException";
692
692
  readonly $fault: "server";
693
- Code?: ErrorCode;
694
- Message?: string;
693
+ Code?: ErrorCode | undefined;
694
+ Message?: string | undefined;
695
695
  /**
696
696
  * @internal
697
697
  */
@@ -704,8 +704,8 @@ export declare class ServiceUnavailableException extends __BaseException {
704
704
  export declare class ThrottledClientException extends __BaseException {
705
705
  readonly name: "ThrottledClientException";
706
706
  readonly $fault: "client";
707
- Code?: ErrorCode;
708
- Message?: string;
707
+ Code?: ErrorCode | undefined;
708
+ Message?: string | undefined;
709
709
  /**
710
710
  * @internal
711
711
  */
@@ -718,8 +718,8 @@ export declare class ThrottledClientException extends __BaseException {
718
718
  export declare class UnauthorizedClientException extends __BaseException {
719
719
  readonly name: "UnauthorizedClientException";
720
720
  readonly $fault: "client";
721
- Code?: ErrorCode;
722
- Message?: string;
721
+ Code?: ErrorCode | undefined;
722
+ Message?: string | undefined;
723
723
  /**
724
724
  * @internal
725
725
  */
@@ -743,7 +743,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorGroupRequest {
743
743
  * <p>If true, associates the provided phone numbers with the provided Amazon Chime Voice Connector Group and removes any previously existing associations. If false, does not associate any phone numbers that have previously existing associations.</p>
744
744
  * @public
745
745
  */
746
- ForceAssociate?: boolean;
746
+ ForceAssociate?: boolean | undefined;
747
747
  }
748
748
  /**
749
749
  * @public
@@ -753,7 +753,7 @@ export interface AssociatePhoneNumbersWithVoiceConnectorGroupResponse {
753
753
  * <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
754
754
  * @public
755
755
  */
756
- PhoneNumberErrors?: PhoneNumberError[];
756
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
757
757
  }
758
758
  /**
759
759
  * @public
@@ -824,17 +824,17 @@ export interface Attendee {
824
824
  * <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
825
825
  * @public
826
826
  */
827
- ExternalUserId?: string;
827
+ ExternalUserId?: string | undefined;
828
828
  /**
829
829
  * <p>The Amazon Chime SDK attendee ID.</p>
830
830
  * @public
831
831
  */
832
- AttendeeId?: string;
832
+ AttendeeId?: string | undefined;
833
833
  /**
834
834
  * <p>The join token used by the Amazon Chime SDK attendee.</p>
835
835
  * @public
836
836
  */
837
- JoinToken?: string;
837
+ JoinToken?: string | undefined;
838
838
  }
839
839
  /**
840
840
  * <p>Describes a tag applied to a resource.</p>
@@ -862,22 +862,22 @@ export interface BatchChannelMemberships {
862
862
  * <p>The identifier of the member who invited another member.</p>
863
863
  * @public
864
864
  */
865
- InvitedBy?: Identity;
865
+ InvitedBy?: Identity | undefined;
866
866
  /**
867
867
  * <p>The membership types set for the channel users.</p>
868
868
  * @public
869
869
  */
870
- Type?: ChannelMembershipType;
870
+ Type?: ChannelMembershipType | undefined;
871
871
  /**
872
872
  * <p>The users successfully added to the request.</p>
873
873
  * @public
874
874
  */
875
- Members?: Identity[];
875
+ Members?: Identity[] | undefined;
876
876
  /**
877
877
  * <p>The ARN of the channel to which you're adding users.</p>
878
878
  * @public
879
879
  */
880
- ChannelArn?: string;
880
+ ChannelArn?: string | undefined;
881
881
  }
882
882
  /**
883
883
  * <p>The Amazon Chime SDK attendee fields to create, used with the BatchCreateAttendee action.</p>
@@ -893,7 +893,7 @@ export interface CreateAttendeeRequestItem {
893
893
  * <p>The tag key-value pairs.</p>
894
894
  * @public
895
895
  */
896
- Tags?: Tag[];
896
+ Tags?: Tag[] | undefined;
897
897
  }
898
898
  /**
899
899
  * @public
@@ -919,17 +919,17 @@ export interface CreateAttendeeError {
919
919
  * <p>The Amazon Chime SDK external user ID. An idempotency token. Links the attendee to an identity managed by a builder application.</p>
920
920
  * @public
921
921
  */
922
- ExternalUserId?: string;
922
+ ExternalUserId?: string | undefined;
923
923
  /**
924
924
  * <p>The error code.</p>
925
925
  * @public
926
926
  */
927
- ErrorCode?: string;
927
+ ErrorCode?: string | undefined;
928
928
  /**
929
929
  * <p>The error message.</p>
930
930
  * @public
931
931
  */
932
- ErrorMessage?: string;
932
+ ErrorMessage?: string | undefined;
933
933
  }
934
934
  /**
935
935
  * @public
@@ -939,12 +939,12 @@ export interface BatchCreateAttendeeResponse {
939
939
  * <p>The attendee information, including attendees IDs and join tokens.</p>
940
940
  * @public
941
941
  */
942
- Attendees?: Attendee[];
942
+ Attendees?: Attendee[] | undefined;
943
943
  /**
944
944
  * <p>If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.</p>
945
945
  * @public
946
946
  */
947
- Errors?: CreateAttendeeError[];
947
+ Errors?: CreateAttendeeError[] | undefined;
948
948
  }
949
949
  /**
950
950
  * <p>The request exceeds the resource limit.</p>
@@ -953,8 +953,8 @@ export interface BatchCreateAttendeeResponse {
953
953
  export declare class ResourceLimitExceededException extends __BaseException {
954
954
  readonly name: "ResourceLimitExceededException";
955
955
  readonly $fault: "client";
956
- Code?: ErrorCode;
957
- Message?: string;
956
+ Code?: ErrorCode | undefined;
957
+ Message?: string | undefined;
958
958
  /**
959
959
  * @internal
960
960
  */
@@ -977,7 +977,7 @@ export interface BatchCreateChannelMembershipRequest {
977
977
  * by moderators.</p>
978
978
  * @public
979
979
  */
980
- Type?: ChannelMembershipType;
980
+ Type?: ChannelMembershipType | undefined;
981
981
  /**
982
982
  * <p>The ARNs of the members you want to add to the channel.</p>
983
983
  * @public
@@ -987,7 +987,7 @@ export interface BatchCreateChannelMembershipRequest {
987
987
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
988
988
  * @public
989
989
  */
990
- ChimeBearer?: string;
990
+ ChimeBearer?: string | undefined;
991
991
  }
992
992
  /**
993
993
  * <p>A list of failed member ARNs, error codes, and error messages.</p>
@@ -998,17 +998,17 @@ export interface BatchCreateChannelMembershipError {
998
998
  * <p>The ARN of the member that the service couldn't add.</p>
999
999
  * @public
1000
1000
  */
1001
- MemberArn?: string;
1001
+ MemberArn?: string | undefined;
1002
1002
  /**
1003
1003
  * <p>The error code.</p>
1004
1004
  * @public
1005
1005
  */
1006
- ErrorCode?: ErrorCode;
1006
+ ErrorCode?: ErrorCode | undefined;
1007
1007
  /**
1008
1008
  * <p>The error message.</p>
1009
1009
  * @public
1010
1010
  */
1011
- ErrorMessage?: string;
1011
+ ErrorMessage?: string | undefined;
1012
1012
  }
1013
1013
  /**
1014
1014
  * @public
@@ -1018,13 +1018,13 @@ export interface BatchCreateChannelMembershipResponse {
1018
1018
  * <p>The list of channel memberships in the response.</p>
1019
1019
  * @public
1020
1020
  */
1021
- BatchChannelMemberships?: BatchChannelMemberships;
1021
+ BatchChannelMemberships?: BatchChannelMemberships | undefined;
1022
1022
  /**
1023
1023
  * <p>If the action fails for one or more of the memberships in the request, a list of the
1024
1024
  * memberships is returned, along with error codes and error messages.</p>
1025
1025
  * @public
1026
1026
  */
1027
- Errors?: BatchCreateChannelMembershipError[];
1027
+ Errors?: BatchCreateChannelMembershipError[] | undefined;
1028
1028
  }
1029
1029
  /**
1030
1030
  * @public
@@ -1047,12 +1047,12 @@ export interface MembershipItem {
1047
1047
  * <p>The member ID.</p>
1048
1048
  * @public
1049
1049
  */
1050
- MemberId?: string;
1050
+ MemberId?: string | undefined;
1051
1051
  /**
1052
1052
  * <p>The member role.</p>
1053
1053
  * @public
1054
1054
  */
1055
- Role?: RoomMembershipRole;
1055
+ Role?: RoomMembershipRole | undefined;
1056
1056
  }
1057
1057
  /**
1058
1058
  * @public
@@ -1083,17 +1083,17 @@ export interface MemberError {
1083
1083
  * <p>The member ID.</p>
1084
1084
  * @public
1085
1085
  */
1086
- MemberId?: string;
1086
+ MemberId?: string | undefined;
1087
1087
  /**
1088
1088
  * <p>The error code.</p>
1089
1089
  * @public
1090
1090
  */
1091
- ErrorCode?: ErrorCode;
1091
+ ErrorCode?: ErrorCode | undefined;
1092
1092
  /**
1093
1093
  * <p>The error message.</p>
1094
1094
  * @public
1095
1095
  */
1096
- ErrorMessage?: string;
1096
+ ErrorMessage?: string | undefined;
1097
1097
  }
1098
1098
  /**
1099
1099
  * @public
@@ -1103,7 +1103,7 @@ export interface BatchCreateRoomMembershipResponse {
1103
1103
  * <p>If the action fails for one or more of the member IDs in the request, a list of the member IDs is returned, along with error codes and error messages.</p>
1104
1104
  * @public
1105
1105
  */
1106
- Errors?: MemberError[];
1106
+ Errors?: MemberError[] | undefined;
1107
1107
  }
1108
1108
  /**
1109
1109
  * @public
@@ -1123,7 +1123,7 @@ export interface BatchDeletePhoneNumberResponse {
1123
1123
  * <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
1124
1124
  * @public
1125
1125
  */
1126
- PhoneNumberErrors?: PhoneNumberError[];
1126
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
1127
1127
  }
1128
1128
  /**
1129
1129
  * @public
@@ -1150,17 +1150,17 @@ export interface UserError {
1150
1150
  * <p>The user ID for which the action failed.</p>
1151
1151
  * @public
1152
1152
  */
1153
- UserId?: string;
1153
+ UserId?: string | undefined;
1154
1154
  /**
1155
1155
  * <p>The error code.</p>
1156
1156
  * @public
1157
1157
  */
1158
- ErrorCode?: ErrorCode;
1158
+ ErrorCode?: ErrorCode | undefined;
1159
1159
  /**
1160
1160
  * <p>The error message.</p>
1161
1161
  * @public
1162
1162
  */
1163
- ErrorMessage?: string;
1163
+ ErrorMessage?: string | undefined;
1164
1164
  }
1165
1165
  /**
1166
1166
  * @public
@@ -1171,7 +1171,7 @@ export interface BatchSuspendUserResponse {
1171
1171
  * request, a list of the user IDs is returned, along with error codes and error messages.</p>
1172
1172
  * @public
1173
1173
  */
1174
- UserErrors?: UserError[];
1174
+ UserErrors?: UserError[] | undefined;
1175
1175
  }
1176
1176
  /**
1177
1177
  * @public
@@ -1197,7 +1197,7 @@ export interface BatchUnsuspendUserResponse {
1197
1197
  * request, a list of the user IDs is returned, along with error codes and error messages.</p>
1198
1198
  * @public
1199
1199
  */
1200
- UserErrors?: UserError[];
1200
+ UserErrors?: UserError[] | undefined;
1201
1201
  }
1202
1202
  /**
1203
1203
  * @public
@@ -1227,12 +1227,12 @@ export interface UpdatePhoneNumberRequestItem {
1227
1227
  * <p>The product type to update.</p>
1228
1228
  * @public
1229
1229
  */
1230
- ProductType?: PhoneNumberProductType;
1230
+ ProductType?: PhoneNumberProductType | undefined;
1231
1231
  /**
1232
1232
  * <p>The outbound calling name to update.</p>
1233
1233
  * @public
1234
1234
  */
1235
- CallingName?: string;
1235
+ CallingName?: string | undefined;
1236
1236
  }
1237
1237
  /**
1238
1238
  * @public
@@ -1252,7 +1252,7 @@ export interface BatchUpdatePhoneNumberResponse {
1252
1252
  * <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
1253
1253
  * @public
1254
1254
  */
1255
- PhoneNumberErrors?: PhoneNumberError[];
1255
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
1256
1256
  }
1257
1257
  /**
1258
1258
  * @public
@@ -1281,17 +1281,17 @@ export interface UpdateUserRequestItem {
1281
1281
  * <p>The user license type.</p>
1282
1282
  * @public
1283
1283
  */
1284
- LicenseType?: License;
1284
+ LicenseType?: License | undefined;
1285
1285
  /**
1286
1286
  * <p>The user type.</p>
1287
1287
  * @public
1288
1288
  */
1289
- UserType?: UserType;
1289
+ UserType?: UserType | undefined;
1290
1290
  /**
1291
1291
  * <p>The Alexa for Business metadata.</p>
1292
1292
  * @public
1293
1293
  */
1294
- AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
1294
+ AlexaForBusinessMetadata?: AlexaForBusinessMetadata | undefined;
1295
1295
  }
1296
1296
  /**
1297
1297
  * @public
@@ -1317,7 +1317,7 @@ export interface BatchUpdateUserResponse {
1317
1317
  * request, a list of the user IDs is returned, along with error codes and error messages.</p>
1318
1318
  * @public
1319
1319
  */
1320
- UserErrors?: UserError[];
1320
+ UserErrors?: UserError[] | undefined;
1321
1321
  }
1322
1322
  /**
1323
1323
  * @public
@@ -1339,47 +1339,47 @@ export interface Bot {
1339
1339
  * <p>The bot ID.</p>
1340
1340
  * @public
1341
1341
  */
1342
- BotId?: string;
1342
+ BotId?: string | undefined;
1343
1343
  /**
1344
1344
  * <p>The unique ID for the bot user.</p>
1345
1345
  * @public
1346
1346
  */
1347
- UserId?: string;
1347
+ UserId?: string | undefined;
1348
1348
  /**
1349
1349
  * <p>The bot display name.</p>
1350
1350
  * @public
1351
1351
  */
1352
- DisplayName?: string;
1352
+ DisplayName?: string | undefined;
1353
1353
  /**
1354
1354
  * <p>The bot type.</p>
1355
1355
  * @public
1356
1356
  */
1357
- BotType?: BotType;
1357
+ BotType?: BotType | undefined;
1358
1358
  /**
1359
1359
  * <p>When true, the bot is stopped from running in your account.</p>
1360
1360
  * @public
1361
1361
  */
1362
- Disabled?: boolean;
1362
+ Disabled?: boolean | undefined;
1363
1363
  /**
1364
1364
  * <p>The bot creation timestamp, in ISO 8601 format.</p>
1365
1365
  * @public
1366
1366
  */
1367
- CreatedTimestamp?: Date;
1367
+ CreatedTimestamp?: Date | undefined;
1368
1368
  /**
1369
1369
  * <p>The updated bot timestamp, in ISO 8601 format.</p>
1370
1370
  * @public
1371
1371
  */
1372
- UpdatedTimestamp?: Date;
1372
+ UpdatedTimestamp?: Date | undefined;
1373
1373
  /**
1374
1374
  * <p>The bot email address.</p>
1375
1375
  * @public
1376
1376
  */
1377
- BotEmail?: string;
1377
+ BotEmail?: string | undefined;
1378
1378
  /**
1379
1379
  * <p>The security token used to authenticate Amazon Chime with the outgoing event endpoint.</p>
1380
1380
  * @public
1381
1381
  */
1382
- SecurityToken?: string;
1382
+ SecurityToken?: string | undefined;
1383
1383
  }
1384
1384
  /**
1385
1385
  * <p>The Amazon Chime Business Calling settings for the administrator's AWS account. Includes any
@@ -1391,7 +1391,7 @@ export interface BusinessCallingSettings {
1391
1391
  * <p>The Amazon S3 bucket designated for call detail record storage.</p>
1392
1392
  * @public
1393
1393
  */
1394
- CdrBucket?: string;
1394
+ CdrBucket?: string | undefined;
1395
1395
  }
1396
1396
  /**
1397
1397
  * @public
@@ -1416,37 +1416,37 @@ export interface CandidateAddress {
1416
1416
  * <p>The street information of a candidate address</p>
1417
1417
  * @public
1418
1418
  */
1419
- streetInfo?: string;
1419
+ streetInfo?: string | undefined;
1420
1420
  /**
1421
1421
  * <p>The numeric portion of a candidate address.</p>
1422
1422
  * @public
1423
1423
  */
1424
- streetNumber?: string;
1424
+ streetNumber?: string | undefined;
1425
1425
  /**
1426
1426
  * <p>The city of a candidate address.</p>
1427
1427
  * @public
1428
1428
  */
1429
- city?: string;
1429
+ city?: string | undefined;
1430
1430
  /**
1431
1431
  * <p>The state of a candidate address.</p>
1432
1432
  * @public
1433
1433
  */
1434
- state?: string;
1434
+ state?: string | undefined;
1435
1435
  /**
1436
1436
  * <p>The postal code of a candidate address.</p>
1437
1437
  * @public
1438
1438
  */
1439
- postalCode?: string;
1439
+ postalCode?: string | undefined;
1440
1440
  /**
1441
1441
  * <p>The Zip + 4 or postal code + 4 of a candidate address.</p>
1442
1442
  * @public
1443
1443
  */
1444
- postalCodePlus4?: string;
1444
+ postalCodePlus4?: string | undefined;
1445
1445
  /**
1446
1446
  * <p>The country of a candidate address.</p>
1447
1447
  * @public
1448
1448
  */
1449
- country?: string;
1449
+ country?: string | undefined;
1450
1450
  }
1451
1451
  /**
1452
1452
  * @public
@@ -1493,47 +1493,47 @@ export interface Channel {
1493
1493
  * <p>The name of the channel.</p>
1494
1494
  * @public
1495
1495
  */
1496
- Name?: string;
1496
+ Name?: string | undefined;
1497
1497
  /**
1498
1498
  * <p>The ARN of the channel.</p>
1499
1499
  * @public
1500
1500
  */
1501
- ChannelArn?: string;
1501
+ ChannelArn?: string | undefined;
1502
1502
  /**
1503
1503
  * <p>The mode of the channel.</p>
1504
1504
  * @public
1505
1505
  */
1506
- Mode?: ChannelMode;
1506
+ Mode?: ChannelMode | undefined;
1507
1507
  /**
1508
1508
  * <p>The channel's privacy setting.</p>
1509
1509
  * @public
1510
1510
  */
1511
- Privacy?: ChannelPrivacy;
1511
+ Privacy?: ChannelPrivacy | undefined;
1512
1512
  /**
1513
1513
  * <p>The channel's metadata.</p>
1514
1514
  * @public
1515
1515
  */
1516
- Metadata?: string;
1516
+ Metadata?: string | undefined;
1517
1517
  /**
1518
1518
  * <p>The <code>AppInstanceUser</code> who created the channel.</p>
1519
1519
  * @public
1520
1520
  */
1521
- CreatedBy?: Identity;
1521
+ CreatedBy?: Identity | undefined;
1522
1522
  /**
1523
1523
  * <p>The time at which the <code>AppInstanceUser</code> created the channel.</p>
1524
1524
  * @public
1525
1525
  */
1526
- CreatedTimestamp?: Date;
1526
+ CreatedTimestamp?: Date | undefined;
1527
1527
  /**
1528
1528
  * <p>The time at which a member sent the last message in the channel.</p>
1529
1529
  * @public
1530
1530
  */
1531
- LastMessageTimestamp?: Date;
1531
+ LastMessageTimestamp?: Date | undefined;
1532
1532
  /**
1533
1533
  * <p>The time at which a channel was last updated.</p>
1534
1534
  * @public
1535
1535
  */
1536
- LastUpdatedTimestamp?: Date;
1536
+ LastUpdatedTimestamp?: Date | undefined;
1537
1537
  }
1538
1538
  /**
1539
1539
  * <p>The details of a channel ban.</p>
@@ -1544,22 +1544,22 @@ export interface ChannelBan {
1544
1544
  * <p>The member being banned from the channel.</p>
1545
1545
  * @public
1546
1546
  */
1547
- Member?: Identity;
1547
+ Member?: Identity | undefined;
1548
1548
  /**
1549
1549
  * <p>The ARN of the channel from which a member is being banned.</p>
1550
1550
  * @public
1551
1551
  */
1552
- ChannelArn?: string;
1552
+ ChannelArn?: string | undefined;
1553
1553
  /**
1554
1554
  * <p>The time at which the ban was created.</p>
1555
1555
  * @public
1556
1556
  */
1557
- CreatedTimestamp?: Date;
1557
+ CreatedTimestamp?: Date | undefined;
1558
1558
  /**
1559
1559
  * <p>The <code>AppInstanceUser</code> who created the ban.</p>
1560
1560
  * @public
1561
1561
  */
1562
- CreatedBy?: Identity;
1562
+ CreatedBy?: Identity | undefined;
1563
1563
  }
1564
1564
  /**
1565
1565
  * <p>Summary of the details of a <code>ChannelBan</code>.</p>
@@ -1570,7 +1570,7 @@ export interface ChannelBanSummary {
1570
1570
  * <p>The member being banned from a channel.</p>
1571
1571
  * @public
1572
1572
  */
1573
- Member?: Identity;
1573
+ Member?: Identity | undefined;
1574
1574
  }
1575
1575
  /**
1576
1576
  * <p>The details of a channel member.</p>
@@ -1581,32 +1581,32 @@ export interface ChannelMembership {
1581
1581
  * <p>The identifier of the member who invited another member.</p>
1582
1582
  * @public
1583
1583
  */
1584
- InvitedBy?: Identity;
1584
+ InvitedBy?: Identity | undefined;
1585
1585
  /**
1586
1586
  * <p>The membership type set for the channel member.</p>
1587
1587
  * @public
1588
1588
  */
1589
- Type?: ChannelMembershipType;
1589
+ Type?: ChannelMembershipType | undefined;
1590
1590
  /**
1591
1591
  * <p>The data of the channel member.</p>
1592
1592
  * @public
1593
1593
  */
1594
- Member?: Identity;
1594
+ Member?: Identity | undefined;
1595
1595
  /**
1596
1596
  * <p>The ARN of the member's channel.</p>
1597
1597
  * @public
1598
1598
  */
1599
- ChannelArn?: string;
1599
+ ChannelArn?: string | undefined;
1600
1600
  /**
1601
1601
  * <p>The time at which the channel membership was created.</p>
1602
1602
  * @public
1603
1603
  */
1604
- CreatedTimestamp?: Date;
1604
+ CreatedTimestamp?: Date | undefined;
1605
1605
  /**
1606
1606
  * <p>The time at which a channel membership was last updated.</p>
1607
1607
  * @public
1608
1608
  */
1609
- LastUpdatedTimestamp?: Date;
1609
+ LastUpdatedTimestamp?: Date | undefined;
1610
1610
  }
1611
1611
  /**
1612
1612
  * <p>Summary of the details of a <code>Channel</code>.</p>
@@ -1617,32 +1617,32 @@ export interface ChannelSummary {
1617
1617
  * <p>The name of the channel.</p>
1618
1618
  * @public
1619
1619
  */
1620
- Name?: string;
1620
+ Name?: string | undefined;
1621
1621
  /**
1622
1622
  * <p>The ARN of the channel.</p>
1623
1623
  * @public
1624
1624
  */
1625
- ChannelArn?: string;
1625
+ ChannelArn?: string | undefined;
1626
1626
  /**
1627
1627
  * <p>The mode of the channel.</p>
1628
1628
  * @public
1629
1629
  */
1630
- Mode?: ChannelMode;
1630
+ Mode?: ChannelMode | undefined;
1631
1631
  /**
1632
1632
  * <p>The privacy setting of the channel.</p>
1633
1633
  * @public
1634
1634
  */
1635
- Privacy?: ChannelPrivacy;
1635
+ Privacy?: ChannelPrivacy | undefined;
1636
1636
  /**
1637
1637
  * <p>The metadata of the channel.</p>
1638
1638
  * @public
1639
1639
  */
1640
- Metadata?: string;
1640
+ Metadata?: string | undefined;
1641
1641
  /**
1642
1642
  * <p>The time at which the last message in a channel was sent.</p>
1643
1643
  * @public
1644
1644
  */
1645
- LastMessageTimestamp?: Date;
1645
+ LastMessageTimestamp?: Date | undefined;
1646
1646
  }
1647
1647
  /**
1648
1648
  * <p>Summary of the channel membership details of an <code>AppInstanceUser</code>.</p>
@@ -1653,12 +1653,12 @@ export interface ChannelMembershipForAppInstanceUserSummary {
1653
1653
  * <p>Summary of the details of a <code>Channel</code>.</p>
1654
1654
  * @public
1655
1655
  */
1656
- ChannelSummary?: ChannelSummary;
1656
+ ChannelSummary?: ChannelSummary | undefined;
1657
1657
  /**
1658
1658
  * <p>Summary of the membership details of an <code>AppInstanceUser</code>.</p>
1659
1659
  * @public
1660
1660
  */
1661
- AppInstanceUserMembershipSummary?: AppInstanceUserMembershipSummary;
1661
+ AppInstanceUserMembershipSummary?: AppInstanceUserMembershipSummary | undefined;
1662
1662
  }
1663
1663
  /**
1664
1664
  * <p>Summary of the details of a <code>ChannelMembership</code>.</p>
@@ -1669,7 +1669,7 @@ export interface ChannelMembershipSummary {
1669
1669
  * <p>A member's summary data.</p>
1670
1670
  * @public
1671
1671
  */
1672
- Member?: Identity;
1672
+ Member?: Identity | undefined;
1673
1673
  }
1674
1674
  /**
1675
1675
  * @public
@@ -1704,57 +1704,57 @@ export interface ChannelMessage {
1704
1704
  * <p>The ARN of the channel.</p>
1705
1705
  * @public
1706
1706
  */
1707
- ChannelArn?: string;
1707
+ ChannelArn?: string | undefined;
1708
1708
  /**
1709
1709
  * <p>The ID of a message.</p>
1710
1710
  * @public
1711
1711
  */
1712
- MessageId?: string;
1712
+ MessageId?: string | undefined;
1713
1713
  /**
1714
1714
  * <p>The message content.</p>
1715
1715
  * @public
1716
1716
  */
1717
- Content?: string;
1717
+ Content?: string | undefined;
1718
1718
  /**
1719
1719
  * <p>The message metadata.</p>
1720
1720
  * @public
1721
1721
  */
1722
- Metadata?: string;
1722
+ Metadata?: string | undefined;
1723
1723
  /**
1724
1724
  * <p>The message type.</p>
1725
1725
  * @public
1726
1726
  */
1727
- Type?: ChannelMessageType;
1727
+ Type?: ChannelMessageType | undefined;
1728
1728
  /**
1729
1729
  * <p>The time at which the message was created.</p>
1730
1730
  * @public
1731
1731
  */
1732
- CreatedTimestamp?: Date;
1732
+ CreatedTimestamp?: Date | undefined;
1733
1733
  /**
1734
1734
  * <p>The time at which a message was edited.</p>
1735
1735
  * @public
1736
1736
  */
1737
- LastEditedTimestamp?: Date;
1737
+ LastEditedTimestamp?: Date | undefined;
1738
1738
  /**
1739
1739
  * <p>The time at which a message was updated.</p>
1740
1740
  * @public
1741
1741
  */
1742
- LastUpdatedTimestamp?: Date;
1742
+ LastUpdatedTimestamp?: Date | undefined;
1743
1743
  /**
1744
1744
  * <p>The message sender.</p>
1745
1745
  * @public
1746
1746
  */
1747
- Sender?: Identity;
1747
+ Sender?: Identity | undefined;
1748
1748
  /**
1749
1749
  * <p>Hides the content of a message.</p>
1750
1750
  * @public
1751
1751
  */
1752
- Redacted?: boolean;
1752
+ Redacted?: boolean | undefined;
1753
1753
  /**
1754
1754
  * <p>The persistence setting for a channel message.</p>
1755
1755
  * @public
1756
1756
  */
1757
- Persistence?: ChannelMessagePersistenceType;
1757
+ Persistence?: ChannelMessagePersistenceType | undefined;
1758
1758
  }
1759
1759
  /**
1760
1760
  * <p>Summary of the messages in a <code>Channel</code>.</p>
@@ -1765,47 +1765,47 @@ export interface ChannelMessageSummary {
1765
1765
  * <p>The ID of the message.</p>
1766
1766
  * @public
1767
1767
  */
1768
- MessageId?: string;
1768
+ MessageId?: string | undefined;
1769
1769
  /**
1770
1770
  * <p>The content of the message.</p>
1771
1771
  * @public
1772
1772
  */
1773
- Content?: string;
1773
+ Content?: string | undefined;
1774
1774
  /**
1775
1775
  * <p>The metadata of the message.</p>
1776
1776
  * @public
1777
1777
  */
1778
- Metadata?: string;
1778
+ Metadata?: string | undefined;
1779
1779
  /**
1780
1780
  * <p>The type of message.</p>
1781
1781
  * @public
1782
1782
  */
1783
- Type?: ChannelMessageType;
1783
+ Type?: ChannelMessageType | undefined;
1784
1784
  /**
1785
1785
  * <p>The time at which the message summary was created.</p>
1786
1786
  * @public
1787
1787
  */
1788
- CreatedTimestamp?: Date;
1788
+ CreatedTimestamp?: Date | undefined;
1789
1789
  /**
1790
1790
  * <p>The time at which a message was last updated.</p>
1791
1791
  * @public
1792
1792
  */
1793
- LastUpdatedTimestamp?: Date;
1793
+ LastUpdatedTimestamp?: Date | undefined;
1794
1794
  /**
1795
1795
  * <p>The time at which a message was last edited.</p>
1796
1796
  * @public
1797
1797
  */
1798
- LastEditedTimestamp?: Date;
1798
+ LastEditedTimestamp?: Date | undefined;
1799
1799
  /**
1800
1800
  * <p>The message sender.</p>
1801
1801
  * @public
1802
1802
  */
1803
- Sender?: Identity;
1803
+ Sender?: Identity | undefined;
1804
1804
  /**
1805
1805
  * <p>Indicates whether a message was redacted.</p>
1806
1806
  * @public
1807
1807
  */
1808
- Redacted?: boolean;
1808
+ Redacted?: boolean | undefined;
1809
1809
  }
1810
1810
  /**
1811
1811
  * <p>Summary of the details of a moderated channel.</p>
@@ -1816,7 +1816,7 @@ export interface ChannelModeratedByAppInstanceUserSummary {
1816
1816
  * <p>Summary of the details of a <code>Channel</code>.</p>
1817
1817
  * @public
1818
1818
  */
1819
- ChannelSummary?: ChannelSummary;
1819
+ ChannelSummary?: ChannelSummary | undefined;
1820
1820
  }
1821
1821
  /**
1822
1822
  * <p>The details of a channel moderator.</p>
@@ -1827,22 +1827,22 @@ export interface ChannelModerator {
1827
1827
  * <p>The moderator's data.</p>
1828
1828
  * @public
1829
1829
  */
1830
- Moderator?: Identity;
1830
+ Moderator?: Identity | undefined;
1831
1831
  /**
1832
1832
  * <p>The ARN of the moderator's channel.</p>
1833
1833
  * @public
1834
1834
  */
1835
- ChannelArn?: string;
1835
+ ChannelArn?: string | undefined;
1836
1836
  /**
1837
1837
  * <p>The time at which the moderator was created.</p>
1838
1838
  * @public
1839
1839
  */
1840
- CreatedTimestamp?: Date;
1840
+ CreatedTimestamp?: Date | undefined;
1841
1841
  /**
1842
1842
  * <p>The <code>AppInstanceUser</code> who created the moderator.</p>
1843
1843
  * @public
1844
1844
  */
1845
- CreatedBy?: Identity;
1845
+ CreatedBy?: Identity | undefined;
1846
1846
  }
1847
1847
  /**
1848
1848
  * <p>Summary of the details of a <code>ChannelModerator</code>.</p>
@@ -1853,7 +1853,7 @@ export interface ChannelModeratorSummary {
1853
1853
  * <p>The data for a moderator.</p>
1854
1854
  * @public
1855
1855
  */
1856
- Moderator?: Identity;
1856
+ Moderator?: Identity | undefined;
1857
1857
  }
1858
1858
  /**
1859
1859
  * <p>The video streams to capture for a specified media capture pipeline. The total number of video streams can't exceed 25.</p>
@@ -1864,12 +1864,12 @@ export interface SelectedVideoStreams {
1864
1864
  * <p>The attendee IDs of the streams selected for a media capture pipeline. </p>
1865
1865
  * @public
1866
1866
  */
1867
- AttendeeIds?: string[];
1867
+ AttendeeIds?: string[] | undefined;
1868
1868
  /**
1869
1869
  * <p>The external user IDs of the streams selected for a media capture pipeline.</p>
1870
1870
  * @public
1871
1871
  */
1872
- ExternalUserIds?: string[];
1872
+ ExternalUserIds?: string[] | undefined;
1873
1873
  }
1874
1874
  /**
1875
1875
  * <p>Source configuration for a specified media capture pipeline.</p>
@@ -1880,7 +1880,7 @@ export interface SourceConfiguration {
1880
1880
  * <p>The selected video streams to capture for a specified media capture pipeline. The number of video streams can't exceed 25.</p>
1881
1881
  * @public
1882
1882
  */
1883
- SelectedVideoStreams?: SelectedVideoStreams;
1883
+ SelectedVideoStreams?: SelectedVideoStreams | undefined;
1884
1884
  }
1885
1885
  /**
1886
1886
  * <p>The configuration object of the Amazon Chime SDK meeting for a specified media capture pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
@@ -1891,12 +1891,12 @@ export interface ChimeSdkMeetingConfiguration {
1891
1891
  * <p>The source configuration for a specified media capture pipeline.</p>
1892
1892
  * @public
1893
1893
  */
1894
- SourceConfiguration?: SourceConfiguration;
1894
+ SourceConfiguration?: SourceConfiguration | undefined;
1895
1895
  /**
1896
1896
  * <p>The configuration for the artifacts in an Amazon Chime SDK meeting.</p>
1897
1897
  * @public
1898
1898
  */
1899
- ArtifactsConfiguration?: ArtifactsConfiguration;
1899
+ ArtifactsConfiguration?: ArtifactsConfiguration | undefined;
1900
1900
  }
1901
1901
  /**
1902
1902
  * <p>The request could not be processed because of conflict in the current state of the
@@ -1906,8 +1906,8 @@ export interface ChimeSdkMeetingConfiguration {
1906
1906
  export declare class ConflictException extends __BaseException {
1907
1907
  readonly name: "ConflictException";
1908
1908
  readonly $fault: "client";
1909
- Code?: ErrorCode;
1910
- Message?: string;
1909
+ Code?: ErrorCode | undefined;
1910
+ Message?: string | undefined;
1911
1911
  /**
1912
1912
  * @internal
1913
1913
  */
@@ -1922,7 +1922,7 @@ export interface ConversationRetentionSettings {
1922
1922
  * <p>The number of days for which to retain conversation messages.</p>
1923
1923
  * @public
1924
1924
  */
1925
- RetentionDays?: number;
1925
+ RetentionDays?: number | undefined;
1926
1926
  }
1927
1927
  /**
1928
1928
  * @public
@@ -1942,7 +1942,7 @@ export interface CreateAccountResponse {
1942
1942
  * <p>The Amazon Chime account details.</p>
1943
1943
  * @public
1944
1944
  */
1945
- Account?: Account;
1945
+ Account?: Account | undefined;
1946
1946
  }
1947
1947
  /**
1948
1948
  * @public
@@ -1957,17 +1957,17 @@ export interface CreateAppInstanceRequest {
1957
1957
  * <p>The metadata of the <code>AppInstance</code>. Limited to a 1KB string in UTF-8.</p>
1958
1958
  * @public
1959
1959
  */
1960
- Metadata?: string;
1960
+ Metadata?: string | undefined;
1961
1961
  /**
1962
1962
  * <p>The <code>ClientRequestToken</code> of the <code>AppInstance</code>.</p>
1963
1963
  * @public
1964
1964
  */
1965
- ClientRequestToken?: string;
1965
+ ClientRequestToken?: string | undefined;
1966
1966
  /**
1967
1967
  * <p>Tags assigned to the <code>AppInstance</code>.</p>
1968
1968
  * @public
1969
1969
  */
1970
- Tags?: Tag[];
1970
+ Tags?: Tag[] | undefined;
1971
1971
  }
1972
1972
  /**
1973
1973
  * @public
@@ -1977,7 +1977,7 @@ export interface CreateAppInstanceResponse {
1977
1977
  * <p>The Amazon Resource Number (ARN) of the <code>AppInstance</code>.</p>
1978
1978
  * @public
1979
1979
  */
1980
- AppInstanceArn?: string;
1980
+ AppInstanceArn?: string | undefined;
1981
1981
  }
1982
1982
  /**
1983
1983
  * @public
@@ -2002,12 +2002,12 @@ export interface CreateAppInstanceAdminResponse {
2002
2002
  * <p>The name and ARN of the admin for the <code>AppInstance</code>.</p>
2003
2003
  * @public
2004
2004
  */
2005
- AppInstanceAdmin?: Identity;
2005
+ AppInstanceAdmin?: Identity | undefined;
2006
2006
  /**
2007
2007
  * <p>The ARN of the of the admin for the <code>AppInstance</code>.</p>
2008
2008
  * @public
2009
2009
  */
2010
- AppInstanceArn?: string;
2010
+ AppInstanceArn?: string | undefined;
2011
2011
  }
2012
2012
  /**
2013
2013
  * @public
@@ -2032,17 +2032,17 @@ export interface CreateAppInstanceUserRequest {
2032
2032
  * <p>The request's metadata. Limited to a 1KB string in UTF-8.</p>
2033
2033
  * @public
2034
2034
  */
2035
- Metadata?: string;
2035
+ Metadata?: string | undefined;
2036
2036
  /**
2037
2037
  * <p>The token assigned to the user requesting an <code>AppInstance</code>.</p>
2038
2038
  * @public
2039
2039
  */
2040
- ClientRequestToken?: string;
2040
+ ClientRequestToken?: string | undefined;
2041
2041
  /**
2042
2042
  * <p>Tags assigned to the <code>AppInstanceUser</code>.</p>
2043
2043
  * @public
2044
2044
  */
2045
- Tags?: Tag[];
2045
+ Tags?: Tag[] | undefined;
2046
2046
  }
2047
2047
  /**
2048
2048
  * @public
@@ -2052,7 +2052,7 @@ export interface CreateAppInstanceUserResponse {
2052
2052
  * <p>The user's ARN.</p>
2053
2053
  * @public
2054
2054
  */
2055
- AppInstanceUserArn?: string;
2055
+ AppInstanceUserArn?: string | undefined;
2056
2056
  }
2057
2057
  /**
2058
2058
  * @public
@@ -2072,7 +2072,7 @@ export interface CreateAttendeeRequest {
2072
2072
  * <p>The tag key-value pairs.</p>
2073
2073
  * @public
2074
2074
  */
2075
- Tags?: Tag[];
2075
+ Tags?: Tag[] | undefined;
2076
2076
  }
2077
2077
  /**
2078
2078
  * @public
@@ -2082,7 +2082,7 @@ export interface CreateAttendeeResponse {
2082
2082
  * <p>The attendee information, including attendee ID and join token.</p>
2083
2083
  * @public
2084
2084
  */
2085
- Attendee?: Attendee;
2085
+ Attendee?: Attendee | undefined;
2086
2086
  }
2087
2087
  /**
2088
2088
  * @public
@@ -2102,7 +2102,7 @@ export interface CreateBotRequest {
2102
2102
  * <p>The domain of the Amazon Chime Enterprise account.</p>
2103
2103
  * @public
2104
2104
  */
2105
- Domain?: string;
2105
+ Domain?: string | undefined;
2106
2106
  }
2107
2107
  /**
2108
2108
  * @public
@@ -2112,7 +2112,7 @@ export interface CreateBotResponse {
2112
2112
  * <p>The bot details.</p>
2113
2113
  * @public
2114
2114
  */
2115
- Bot?: Bot;
2115
+ Bot?: Bot | undefined;
2116
2116
  }
2117
2117
  /**
2118
2118
  * @public
@@ -2134,34 +2134,34 @@ export interface CreateChannelRequest {
2134
2134
  * channels. Only administrators and moderators can add members to restricted channels.</p>
2135
2135
  * @public
2136
2136
  */
2137
- Mode?: ChannelMode;
2137
+ Mode?: ChannelMode | undefined;
2138
2138
  /**
2139
2139
  * <p>The channel's privacy level: <code>PUBLIC</code> or <code>PRIVATE</code>. Private
2140
2140
  * channels aren't discoverable by users outside the channel. Public channels are discoverable
2141
2141
  * by anyone in the <code>AppInstance</code>.</p>
2142
2142
  * @public
2143
2143
  */
2144
- Privacy?: ChannelPrivacy;
2144
+ Privacy?: ChannelPrivacy | undefined;
2145
2145
  /**
2146
2146
  * <p>The metadata of the creation request. Limited to 1KB and UTF-8.</p>
2147
2147
  * @public
2148
2148
  */
2149
- Metadata?: string;
2149
+ Metadata?: string | undefined;
2150
2150
  /**
2151
2151
  * <p>The client token for the request. An <code>Idempotency</code> token.</p>
2152
2152
  * @public
2153
2153
  */
2154
- ClientRequestToken?: string;
2154
+ ClientRequestToken?: string | undefined;
2155
2155
  /**
2156
2156
  * <p>The tags for the creation request.</p>
2157
2157
  * @public
2158
2158
  */
2159
- Tags?: Tag[];
2159
+ Tags?: Tag[] | undefined;
2160
2160
  /**
2161
2161
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
2162
2162
  * @public
2163
2163
  */
2164
- ChimeBearer?: string;
2164
+ ChimeBearer?: string | undefined;
2165
2165
  }
2166
2166
  /**
2167
2167
  * @public
@@ -2171,7 +2171,7 @@ export interface CreateChannelResponse {
2171
2171
  * <p>The ARN of the channel.</p>
2172
2172
  * @public
2173
2173
  */
2174
- ChannelArn?: string;
2174
+ ChannelArn?: string | undefined;
2175
2175
  }
2176
2176
  /**
2177
2177
  * @public
@@ -2191,7 +2191,7 @@ export interface CreateChannelBanRequest {
2191
2191
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
2192
2192
  * @public
2193
2193
  */
2194
- ChimeBearer?: string;
2194
+ ChimeBearer?: string | undefined;
2195
2195
  }
2196
2196
  /**
2197
2197
  * @public
@@ -2201,13 +2201,13 @@ export interface CreateChannelBanResponse {
2201
2201
  * <p>The ARN of the response to the ban request.</p>
2202
2202
  * @public
2203
2203
  */
2204
- ChannelArn?: string;
2204
+ ChannelArn?: string | undefined;
2205
2205
  /**
2206
2206
  * <p>The <code>ChannelArn</code> and <code>BannedIdentity</code> of the member in the ban
2207
2207
  * response.</p>
2208
2208
  * @public
2209
2209
  */
2210
- Member?: Identity;
2210
+ Member?: Identity | undefined;
2211
2211
  }
2212
2212
  /**
2213
2213
  * @public
@@ -2236,7 +2236,7 @@ export interface CreateChannelMembershipRequest {
2236
2236
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
2237
2237
  * @public
2238
2238
  */
2239
- ChimeBearer?: string;
2239
+ ChimeBearer?: string | undefined;
2240
2240
  }
2241
2241
  /**
2242
2242
  * @public
@@ -2246,12 +2246,12 @@ export interface CreateChannelMembershipResponse {
2246
2246
  * <p>The ARN of the channel.</p>
2247
2247
  * @public
2248
2248
  */
2249
- ChannelArn?: string;
2249
+ ChannelArn?: string | undefined;
2250
2250
  /**
2251
2251
  * <p>The ARN and metadata of the member being added.</p>
2252
2252
  * @public
2253
2253
  */
2254
- Member?: Identity;
2254
+ Member?: Identity | undefined;
2255
2255
  }
2256
2256
  /**
2257
2257
  * @public
@@ -2271,7 +2271,7 @@ export interface CreateChannelModeratorRequest {
2271
2271
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
2272
2272
  * @public
2273
2273
  */
2274
- ChimeBearer?: string;
2274
+ ChimeBearer?: string | undefined;
2275
2275
  }
2276
2276
  /**
2277
2277
  * @public
@@ -2281,12 +2281,12 @@ export interface CreateChannelModeratorResponse {
2281
2281
  * <p>The ARN of the channel.</p>
2282
2282
  * @public
2283
2283
  */
2284
- ChannelArn?: string;
2284
+ ChannelArn?: string | undefined;
2285
2285
  /**
2286
2286
  * <p>The ARNs of the channel and the moderator.</p>
2287
2287
  * @public
2288
2288
  */
2289
- ChannelModerator?: Identity;
2289
+ ChannelModerator?: Identity | undefined;
2290
2290
  }
2291
2291
  /**
2292
2292
  * @public
@@ -2339,12 +2339,12 @@ export interface CreateMediaCapturePipelineRequest {
2339
2339
  * <p>The unique identifier for the client request. The token makes the API request idempotent. Use a different token for different media pipeline requests.</p>
2340
2340
  * @public
2341
2341
  */
2342
- ClientRequestToken?: string;
2342
+ ClientRequestToken?: string | undefined;
2343
2343
  /**
2344
2344
  * <p>The configuration for a specified media capture pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
2345
2345
  * @public
2346
2346
  */
2347
- ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
2347
+ ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
2348
2348
  }
2349
2349
  /**
2350
2350
  * @public
@@ -2370,47 +2370,47 @@ export interface MediaCapturePipeline {
2370
2370
  * <p>The ID of a media capture pipeline.</p>
2371
2371
  * @public
2372
2372
  */
2373
- MediaPipelineId?: string;
2373
+ MediaPipelineId?: string | undefined;
2374
2374
  /**
2375
2375
  * <p>Source type from which media artifacts are saved. You must use <code>ChimeMeeting</code>.</p>
2376
2376
  * @public
2377
2377
  */
2378
- SourceType?: MediaPipelineSourceType;
2378
+ SourceType?: MediaPipelineSourceType | undefined;
2379
2379
  /**
2380
2380
  * <p>ARN of the source from which the media artifacts will be saved.</p>
2381
2381
  * @public
2382
2382
  */
2383
- SourceArn?: string;
2383
+ SourceArn?: string | undefined;
2384
2384
  /**
2385
2385
  * <p>The status of the media capture pipeline.</p>
2386
2386
  * @public
2387
2387
  */
2388
- Status?: MediaPipelineStatus;
2388
+ Status?: MediaPipelineStatus | undefined;
2389
2389
  /**
2390
2390
  * <p>Destination type to which the media artifacts are saved. You must use an S3 Bucket.</p>
2391
2391
  * @public
2392
2392
  */
2393
- SinkType?: MediaPipelineSinkType;
2393
+ SinkType?: MediaPipelineSinkType | undefined;
2394
2394
  /**
2395
2395
  * <p>ARN of the destination to which the media artifacts are saved.</p>
2396
2396
  * @public
2397
2397
  */
2398
- SinkArn?: string;
2398
+ SinkArn?: string | undefined;
2399
2399
  /**
2400
2400
  * <p>The time at which the capture pipeline was created, in ISO 8601 format.</p>
2401
2401
  * @public
2402
2402
  */
2403
- CreatedTimestamp?: Date;
2403
+ CreatedTimestamp?: Date | undefined;
2404
2404
  /**
2405
2405
  * <p>The time at which the capture pipeline was updated, in ISO 8601 format.</p>
2406
2406
  * @public
2407
2407
  */
2408
- UpdatedTimestamp?: Date;
2408
+ UpdatedTimestamp?: Date | undefined;
2409
2409
  /**
2410
2410
  * <p>The configuration for a specified media capture pipeline. <code>SourceType</code> must be <code>ChimeSdkMeeting</code>.</p>
2411
2411
  * @public
2412
2412
  */
2413
- ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration;
2413
+ ChimeSdkMeetingConfiguration?: ChimeSdkMeetingConfiguration | undefined;
2414
2414
  }
2415
2415
  /**
2416
2416
  * @public
@@ -2420,7 +2420,7 @@ export interface CreateMediaCapturePipelineResponse {
2420
2420
  * <p>A media capture pipeline object, the ID, source type, source ARN, sink type, and sink ARN of a media capture pipeline object.</p>
2421
2421
  * @public
2422
2422
  */
2423
- MediaCapturePipeline?: MediaCapturePipeline;
2423
+ MediaCapturePipeline?: MediaCapturePipeline | undefined;
2424
2424
  }
2425
2425
  /**
2426
2426
  * <p> The resource target configurations for receiving Amazon Chime SDK meeting and attendee event
@@ -2433,12 +2433,12 @@ export interface MeetingNotificationConfiguration {
2433
2433
  * <p>The SNS topic ARN.</p>
2434
2434
  * @public
2435
2435
  */
2436
- SnsTopicArn?: string;
2436
+ SnsTopicArn?: string | undefined;
2437
2437
  /**
2438
2438
  * <p>The SQS queue ARN.</p>
2439
2439
  * @public
2440
2440
  */
2441
- SqsQueueArn?: string;
2441
+ SqsQueueArn?: string | undefined;
2442
2442
  }
2443
2443
  /**
2444
2444
  * @public
@@ -2448,17 +2448,17 @@ export interface CreateMeetingRequest {
2448
2448
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
2449
2449
  * @public
2450
2450
  */
2451
- ClientRequestToken?: string;
2451
+ ClientRequestToken?: string | undefined;
2452
2452
  /**
2453
2453
  * <p>The external meeting ID.</p>
2454
2454
  * @public
2455
2455
  */
2456
- ExternalMeetingId?: string;
2456
+ ExternalMeetingId?: string | undefined;
2457
2457
  /**
2458
2458
  * <p>Reserved.</p>
2459
2459
  * @public
2460
2460
  */
2461
- MeetingHostId?: string;
2461
+ MeetingHostId?: string | undefined;
2462
2462
  /**
2463
2463
  * <p>
2464
2464
  * The Region in which to create the meeting. Default: <code>us-east-1</code>.
@@ -2504,17 +2504,17 @@ export interface CreateMeetingRequest {
2504
2504
  * </p>
2505
2505
  * @public
2506
2506
  */
2507
- MediaRegion?: string;
2507
+ MediaRegion?: string | undefined;
2508
2508
  /**
2509
2509
  * <p>The tag key-value pairs.</p>
2510
2510
  * @public
2511
2511
  */
2512
- Tags?: Tag[];
2512
+ Tags?: Tag[] | undefined;
2513
2513
  /**
2514
2514
  * <p>The configuration for resource targets to receive notifications when meeting and attendee events occur.</p>
2515
2515
  * @public
2516
2516
  */
2517
- NotificationsConfiguration?: MeetingNotificationConfiguration;
2517
+ NotificationsConfiguration?: MeetingNotificationConfiguration | undefined;
2518
2518
  }
2519
2519
  /**
2520
2520
  * <p>A set of endpoints used by clients to connect to the media service group for an Amazon Chime SDK meeting.</p>
@@ -2525,12 +2525,12 @@ export interface MediaPlacement {
2525
2525
  * <p>The audio host URL.</p>
2526
2526
  * @public
2527
2527
  */
2528
- AudioHostUrl?: string;
2528
+ AudioHostUrl?: string | undefined;
2529
2529
  /**
2530
2530
  * <p>The audio fallback URL.</p>
2531
2531
  * @public
2532
2532
  */
2533
- AudioFallbackUrl?: string;
2533
+ AudioFallbackUrl?: string | undefined;
2534
2534
  /**
2535
2535
  * <p>The screen data URL.</p>
2536
2536
  * <important>
@@ -2540,7 +2540,7 @@ export interface MediaPlacement {
2540
2540
  * </important>
2541
2541
  * @public
2542
2542
  */
2543
- ScreenDataUrl?: string;
2543
+ ScreenDataUrl?: string | undefined;
2544
2544
  /**
2545
2545
  * <p>The screen sharing URL.</p>
2546
2546
  * <important>
@@ -2549,7 +2549,7 @@ export interface MediaPlacement {
2549
2549
  * </important>
2550
2550
  * @public
2551
2551
  */
2552
- ScreenSharingUrl?: string;
2552
+ ScreenSharingUrl?: string | undefined;
2553
2553
  /**
2554
2554
  * <p>The screen viewing URL.</p>
2555
2555
  * <important>
@@ -2559,12 +2559,12 @@ export interface MediaPlacement {
2559
2559
  * </important>
2560
2560
  * @public
2561
2561
  */
2562
- ScreenViewingUrl?: string;
2562
+ ScreenViewingUrl?: string | undefined;
2563
2563
  /**
2564
2564
  * <p>The signaling URL.</p>
2565
2565
  * @public
2566
2566
  */
2567
- SignalingUrl?: string;
2567
+ SignalingUrl?: string | undefined;
2568
2568
  /**
2569
2569
  * <p>The turn control URL.</p>
2570
2570
  * <important>
@@ -2574,12 +2574,12 @@ export interface MediaPlacement {
2574
2574
  * </important>
2575
2575
  * @public
2576
2576
  */
2577
- TurnControlUrl?: string;
2577
+ TurnControlUrl?: string | undefined;
2578
2578
  /**
2579
2579
  * <p>The event ingestion URL to which you send client meeting events.</p>
2580
2580
  * @public
2581
2581
  */
2582
- EventIngestionUrl?: string;
2582
+ EventIngestionUrl?: string | undefined;
2583
2583
  }
2584
2584
  /**
2585
2585
  * <p>A meeting created using the Amazon Chime SDK.</p>
@@ -2590,17 +2590,17 @@ export interface Meeting {
2590
2590
  * <p>The Amazon Chime SDK meeting ID.</p>
2591
2591
  * @public
2592
2592
  */
2593
- MeetingId?: string;
2593
+ MeetingId?: string | undefined;
2594
2594
  /**
2595
2595
  * <p>The external meeting ID.</p>
2596
2596
  * @public
2597
2597
  */
2598
- ExternalMeetingId?: string;
2598
+ ExternalMeetingId?: string | undefined;
2599
2599
  /**
2600
2600
  * <p>The media placement for the meeting.</p>
2601
2601
  * @public
2602
2602
  */
2603
- MediaPlacement?: MediaPlacement;
2603
+ MediaPlacement?: MediaPlacement | undefined;
2604
2604
  /**
2605
2605
  * <p>The Region in which you create the meeting. Available values: <code>af-south-1</code>, <code>ap-northeast-1</code>,
2606
2606
  * <code>ap-northeast-2</code>, <code>ap-south-1</code>, <code>ap-southeast-1</code>, <code>ap-southeast-2</code>, <code>ca-central-1</code>,
@@ -2610,7 +2610,7 @@ export interface Meeting {
2610
2610
  * <code>us-west-1</code>, <code>us-west-2</code>.</p>
2611
2611
  * @public
2612
2612
  */
2613
- MediaRegion?: string;
2613
+ MediaRegion?: string | undefined;
2614
2614
  }
2615
2615
  /**
2616
2616
  * @public
@@ -2624,7 +2624,7 @@ export interface CreateMeetingResponse {
2624
2624
  * </p>
2625
2625
  * @public
2626
2626
  */
2627
- Meeting?: Meeting;
2627
+ Meeting?: Meeting | undefined;
2628
2628
  }
2629
2629
  /**
2630
2630
  * @public
@@ -2659,7 +2659,7 @@ export interface CreateMeetingDialOutResponse {
2659
2659
  * <p>Unique ID that tracks API calls.</p>
2660
2660
  * @public
2661
2661
  */
2662
- TransactionId?: string;
2662
+ TransactionId?: string | undefined;
2663
2663
  }
2664
2664
  /**
2665
2665
  * @public
@@ -2669,17 +2669,17 @@ export interface CreateMeetingWithAttendeesRequest {
2669
2669
  * <p>The unique identifier for the client request. Use a different token for different meetings.</p>
2670
2670
  * @public
2671
2671
  */
2672
- ClientRequestToken?: string;
2672
+ ClientRequestToken?: string | undefined;
2673
2673
  /**
2674
2674
  * <p>The external meeting ID.</p>
2675
2675
  * @public
2676
2676
  */
2677
- ExternalMeetingId?: string;
2677
+ ExternalMeetingId?: string | undefined;
2678
2678
  /**
2679
2679
  * <p>Reserved.</p>
2680
2680
  * @public
2681
2681
  */
2682
- MeetingHostId?: string;
2682
+ MeetingHostId?: string | undefined;
2683
2683
  /**
2684
2684
  * <p>
2685
2685
  * The Region in which to create the meeting. Default: <code>us-east-1</code>
@@ -2726,24 +2726,24 @@ export interface CreateMeetingWithAttendeesRequest {
2726
2726
  * </p>
2727
2727
  * @public
2728
2728
  */
2729
- MediaRegion?: string;
2729
+ MediaRegion?: string | undefined;
2730
2730
  /**
2731
2731
  * <p>The tag key-value pairs.</p>
2732
2732
  * @public
2733
2733
  */
2734
- Tags?: Tag[];
2734
+ Tags?: Tag[] | undefined;
2735
2735
  /**
2736
2736
  * <p>The resource target configurations for receiving Amazon Chime SDK meeting and attendee event
2737
2737
  * notifications. The Amazon Chime SDK supports resource targets located in the US East (N. Virginia) AWS
2738
2738
  * Region (us-east-1).</p>
2739
2739
  * @public
2740
2740
  */
2741
- NotificationsConfiguration?: MeetingNotificationConfiguration;
2741
+ NotificationsConfiguration?: MeetingNotificationConfiguration | undefined;
2742
2742
  /**
2743
2743
  * <p>The request containing the attendees to create.</p>
2744
2744
  * @public
2745
2745
  */
2746
- Attendees?: CreateAttendeeRequestItem[];
2746
+ Attendees?: CreateAttendeeRequestItem[] | undefined;
2747
2747
  }
2748
2748
  /**
2749
2749
  * @public
@@ -2753,17 +2753,17 @@ export interface CreateMeetingWithAttendeesResponse {
2753
2753
  * <p>A meeting created using the Amazon Chime SDK.</p>
2754
2754
  * @public
2755
2755
  */
2756
- Meeting?: Meeting;
2756
+ Meeting?: Meeting | undefined;
2757
2757
  /**
2758
2758
  * <p>The attendee information, including attendees IDs and join tokens.</p>
2759
2759
  * @public
2760
2760
  */
2761
- Attendees?: Attendee[];
2761
+ Attendees?: Attendee[] | undefined;
2762
2762
  /**
2763
2763
  * <p>If the action fails for one or more of the attendees in the request, a list of the attendees is returned, along with error codes and error messages.</p>
2764
2764
  * @public
2765
2765
  */
2766
- Errors?: CreateAttendeeError[];
2766
+ Errors?: CreateAttendeeError[] | undefined;
2767
2767
  }
2768
2768
  /**
2769
2769
  * @public
@@ -2802,12 +2802,12 @@ export interface OrderedPhoneNumber {
2802
2802
  * <p>The phone number, in E.164 format.</p>
2803
2803
  * @public
2804
2804
  */
2805
- E164PhoneNumber?: string;
2805
+ E164PhoneNumber?: string | undefined;
2806
2806
  /**
2807
2807
  * <p>The phone number status.</p>
2808
2808
  * @public
2809
2809
  */
2810
- Status?: OrderedPhoneNumberStatus;
2810
+ Status?: OrderedPhoneNumberStatus | undefined;
2811
2811
  }
2812
2812
  /**
2813
2813
  * @public
@@ -2832,33 +2832,33 @@ export interface PhoneNumberOrder {
2832
2832
  * <p>The phone number order ID.</p>
2833
2833
  * @public
2834
2834
  */
2835
- PhoneNumberOrderId?: string;
2835
+ PhoneNumberOrderId?: string | undefined;
2836
2836
  /**
2837
2837
  * <p>The phone number order product type.</p>
2838
2838
  * @public
2839
2839
  */
2840
- ProductType?: PhoneNumberProductType;
2840
+ ProductType?: PhoneNumberProductType | undefined;
2841
2841
  /**
2842
2842
  * <p>The status of the phone number order.</p>
2843
2843
  * @public
2844
2844
  */
2845
- Status?: PhoneNumberOrderStatus;
2845
+ Status?: PhoneNumberOrderStatus | undefined;
2846
2846
  /**
2847
2847
  * <p>The ordered phone number details, such as the phone number in E.164 format and the phone
2848
2848
  * number status.</p>
2849
2849
  * @public
2850
2850
  */
2851
- OrderedPhoneNumbers?: OrderedPhoneNumber[];
2851
+ OrderedPhoneNumbers?: OrderedPhoneNumber[] | undefined;
2852
2852
  /**
2853
2853
  * <p>The phone number order creation time stamp, in ISO 8601 format.</p>
2854
2854
  * @public
2855
2855
  */
2856
- CreatedTimestamp?: Date;
2856
+ CreatedTimestamp?: Date | undefined;
2857
2857
  /**
2858
2858
  * <p>The updated phone number order time stamp, in ISO 8601 format.</p>
2859
2859
  * @public
2860
2860
  */
2861
- UpdatedTimestamp?: Date;
2861
+ UpdatedTimestamp?: Date | undefined;
2862
2862
  }
2863
2863
  /**
2864
2864
  * @public
@@ -2868,7 +2868,7 @@ export interface CreatePhoneNumberOrderResponse {
2868
2868
  * <p>The phone number order details.</p>
2869
2869
  * @public
2870
2870
  */
2871
- PhoneNumberOrder?: PhoneNumberOrder;
2871
+ PhoneNumberOrder?: PhoneNumberOrder | undefined;
2872
2872
  }
2873
2873
  /**
2874
2874
  * @public
@@ -2928,12 +2928,12 @@ export interface CreateProxySessionRequest {
2928
2928
  * <p>The name of the proxy session.</p>
2929
2929
  * @public
2930
2930
  */
2931
- Name?: string;
2931
+ Name?: string | undefined;
2932
2932
  /**
2933
2933
  * <p>The number of minutes allowed for the proxy session.</p>
2934
2934
  * @public
2935
2935
  */
2936
- ExpiryMinutes?: number;
2936
+ ExpiryMinutes?: number | undefined;
2937
2937
  /**
2938
2938
  * <p>The proxy session capabilities.</p>
2939
2939
  * @public
@@ -2943,17 +2943,17 @@ export interface CreateProxySessionRequest {
2943
2943
  * <p>The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.</p>
2944
2944
  * @public
2945
2945
  */
2946
- NumberSelectionBehavior?: NumberSelectionBehavior;
2946
+ NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
2947
2947
  /**
2948
2948
  * <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
2949
2949
  * @public
2950
2950
  */
2951
- GeoMatchLevel?: GeoMatchLevel;
2951
+ GeoMatchLevel?: GeoMatchLevel | undefined;
2952
2952
  /**
2953
2953
  * <p>The country and area code for the proxy phone number.</p>
2954
2954
  * @public
2955
2955
  */
2956
- GeoMatchParams?: GeoMatchParams;
2956
+ GeoMatchParams?: GeoMatchParams | undefined;
2957
2957
  }
2958
2958
  /**
2959
2959
  * <p>The phone number and proxy phone number for a participant in an Amazon Chime Voice Connector proxy session.</p>
@@ -2964,12 +2964,12 @@ export interface Participant {
2964
2964
  * <p>The participant's phone number.</p>
2965
2965
  * @public
2966
2966
  */
2967
- PhoneNumber?: string;
2967
+ PhoneNumber?: string | undefined;
2968
2968
  /**
2969
2969
  * <p>The participant's proxy phone number.</p>
2970
2970
  * @public
2971
2971
  */
2972
- ProxyPhoneNumber?: string;
2972
+ ProxyPhoneNumber?: string | undefined;
2973
2973
  }
2974
2974
  /**
2975
2975
  * @public
@@ -2993,67 +2993,67 @@ export interface ProxySession {
2993
2993
  * <p>The Amazon Chime voice connector ID.</p>
2994
2994
  * @public
2995
2995
  */
2996
- VoiceConnectorId?: string;
2996
+ VoiceConnectorId?: string | undefined;
2997
2997
  /**
2998
2998
  * <p>The proxy session ID.</p>
2999
2999
  * @public
3000
3000
  */
3001
- ProxySessionId?: string;
3001
+ ProxySessionId?: string | undefined;
3002
3002
  /**
3003
3003
  * <p>The name of the proxy session.</p>
3004
3004
  * @public
3005
3005
  */
3006
- Name?: string;
3006
+ Name?: string | undefined;
3007
3007
  /**
3008
3008
  * <p>The status of the proxy session.</p>
3009
3009
  * @public
3010
3010
  */
3011
- Status?: ProxySessionStatus;
3011
+ Status?: ProxySessionStatus | undefined;
3012
3012
  /**
3013
3013
  * <p>The number of minutes allowed for the proxy session.</p>
3014
3014
  * @public
3015
3015
  */
3016
- ExpiryMinutes?: number;
3016
+ ExpiryMinutes?: number | undefined;
3017
3017
  /**
3018
3018
  * <p>The proxy session capabilities.</p>
3019
3019
  * @public
3020
3020
  */
3021
- Capabilities?: Capability[];
3021
+ Capabilities?: Capability[] | undefined;
3022
3022
  /**
3023
3023
  * <p>The created time stamp, in ISO 8601 format.</p>
3024
3024
  * @public
3025
3025
  */
3026
- CreatedTimestamp?: Date;
3026
+ CreatedTimestamp?: Date | undefined;
3027
3027
  /**
3028
3028
  * <p>The updated time stamp, in ISO 8601 format.</p>
3029
3029
  * @public
3030
3030
  */
3031
- UpdatedTimestamp?: Date;
3031
+ UpdatedTimestamp?: Date | undefined;
3032
3032
  /**
3033
3033
  * <p>The ended time stamp, in ISO 8601 format.</p>
3034
3034
  * @public
3035
3035
  */
3036
- EndedTimestamp?: Date;
3036
+ EndedTimestamp?: Date | undefined;
3037
3037
  /**
3038
3038
  * <p>The proxy session participants.</p>
3039
3039
  * @public
3040
3040
  */
3041
- Participants?: Participant[];
3041
+ Participants?: Participant[] | undefined;
3042
3042
  /**
3043
3043
  * <p>The preference for proxy phone number reuse, or stickiness, between the same participants across sessions.</p>
3044
3044
  * @public
3045
3045
  */
3046
- NumberSelectionBehavior?: NumberSelectionBehavior;
3046
+ NumberSelectionBehavior?: NumberSelectionBehavior | undefined;
3047
3047
  /**
3048
3048
  * <p>The preference for matching the country or area code of the proxy phone number with that of the first participant.</p>
3049
3049
  * @public
3050
3050
  */
3051
- GeoMatchLevel?: GeoMatchLevel;
3051
+ GeoMatchLevel?: GeoMatchLevel | undefined;
3052
3052
  /**
3053
3053
  * <p>The country and area code for the proxy phone number.</p>
3054
3054
  * @public
3055
3055
  */
3056
- GeoMatchParams?: GeoMatchParams;
3056
+ GeoMatchParams?: GeoMatchParams | undefined;
3057
3057
  }
3058
3058
  /**
3059
3059
  * @public
@@ -3063,7 +3063,7 @@ export interface CreateProxySessionResponse {
3063
3063
  * <p>The proxy session details.</p>
3064
3064
  * @public
3065
3065
  */
3066
- ProxySession?: ProxySession;
3066
+ ProxySession?: ProxySession | undefined;
3067
3067
  }
3068
3068
  /**
3069
3069
  * @public
@@ -3083,7 +3083,7 @@ export interface CreateRoomRequest {
3083
3083
  * <p>The idempotency token for the request.</p>
3084
3084
  * @public
3085
3085
  */
3086
- ClientRequestToken?: string;
3086
+ ClientRequestToken?: string | undefined;
3087
3087
  }
3088
3088
  /**
3089
3089
  * <p>The Amazon Chime chat room details.</p>
@@ -3094,32 +3094,32 @@ export interface Room {
3094
3094
  * <p>The room ID.</p>
3095
3095
  * @public
3096
3096
  */
3097
- RoomId?: string;
3097
+ RoomId?: string | undefined;
3098
3098
  /**
3099
3099
  * <p>The room name.</p>
3100
3100
  * @public
3101
3101
  */
3102
- Name?: string;
3102
+ Name?: string | undefined;
3103
3103
  /**
3104
3104
  * <p>The Amazon Chime account ID.</p>
3105
3105
  * @public
3106
3106
  */
3107
- AccountId?: string;
3107
+ AccountId?: string | undefined;
3108
3108
  /**
3109
3109
  * <p>The identifier of the room creator.</p>
3110
3110
  * @public
3111
3111
  */
3112
- CreatedBy?: string;
3112
+ CreatedBy?: string | undefined;
3113
3113
  /**
3114
3114
  * <p>The room creation timestamp, in ISO 8601 format.</p>
3115
3115
  * @public
3116
3116
  */
3117
- CreatedTimestamp?: Date;
3117
+ CreatedTimestamp?: Date | undefined;
3118
3118
  /**
3119
3119
  * <p>The room update timestamp, in ISO 8601 format.</p>
3120
3120
  * @public
3121
3121
  */
3122
- UpdatedTimestamp?: Date;
3122
+ UpdatedTimestamp?: Date | undefined;
3123
3123
  }
3124
3124
  /**
3125
3125
  * @public
@@ -3129,7 +3129,7 @@ export interface CreateRoomResponse {
3129
3129
  * <p>The room details.</p>
3130
3130
  * @public
3131
3131
  */
3132
- Room?: Room;
3132
+ Room?: Room | undefined;
3133
3133
  }
3134
3134
  /**
3135
3135
  * @public
@@ -3154,7 +3154,7 @@ export interface CreateRoomMembershipRequest {
3154
3154
  * <p>The role of the member.</p>
3155
3155
  * @public
3156
3156
  */
3157
- Role?: RoomMembershipRole;
3157
+ Role?: RoomMembershipRole | undefined;
3158
3158
  }
3159
3159
  /**
3160
3160
  * @public
@@ -3178,27 +3178,27 @@ export interface Member {
3178
3178
  * <p>The member ID (user ID or bot ID).</p>
3179
3179
  * @public
3180
3180
  */
3181
- MemberId?: string;
3181
+ MemberId?: string | undefined;
3182
3182
  /**
3183
3183
  * <p>The member type.</p>
3184
3184
  * @public
3185
3185
  */
3186
- MemberType?: MemberType;
3186
+ MemberType?: MemberType | undefined;
3187
3187
  /**
3188
3188
  * <p>The member email address.</p>
3189
3189
  * @public
3190
3190
  */
3191
- Email?: string;
3191
+ Email?: string | undefined;
3192
3192
  /**
3193
3193
  * <p>The member name.</p>
3194
3194
  * @public
3195
3195
  */
3196
- FullName?: string;
3196
+ FullName?: string | undefined;
3197
3197
  /**
3198
3198
  * <p>The Amazon Chime account ID.</p>
3199
3199
  * @public
3200
3200
  */
3201
- AccountId?: string;
3201
+ AccountId?: string | undefined;
3202
3202
  }
3203
3203
  /**
3204
3204
  * <p>The room membership details.</p>
@@ -3209,27 +3209,27 @@ export interface RoomMembership {
3209
3209
  * <p>The room ID.</p>
3210
3210
  * @public
3211
3211
  */
3212
- RoomId?: string;
3212
+ RoomId?: string | undefined;
3213
3213
  /**
3214
3214
  * <p>The member details, such as email address, name, member ID, and member type.</p>
3215
3215
  * @public
3216
3216
  */
3217
- Member?: Member;
3217
+ Member?: Member | undefined;
3218
3218
  /**
3219
3219
  * <p>The membership role.</p>
3220
3220
  * @public
3221
3221
  */
3222
- Role?: RoomMembershipRole;
3222
+ Role?: RoomMembershipRole | undefined;
3223
3223
  /**
3224
3224
  * <p>The identifier of the user that invited the room member.</p>
3225
3225
  * @public
3226
3226
  */
3227
- InvitedBy?: string;
3227
+ InvitedBy?: string | undefined;
3228
3228
  /**
3229
3229
  * <p>The room membership update timestamp, in ISO 8601 format.</p>
3230
3230
  * @public
3231
3231
  */
3232
- UpdatedTimestamp?: Date;
3232
+ UpdatedTimestamp?: Date | undefined;
3233
3233
  }
3234
3234
  /**
3235
3235
  * @public
@@ -3239,7 +3239,7 @@ export interface CreateRoomMembershipResponse {
3239
3239
  * <p>The room membership details.</p>
3240
3240
  * @public
3241
3241
  */
3242
- RoomMembership?: RoomMembership;
3242
+ RoomMembership?: RoomMembership | undefined;
3243
3243
  }
3244
3244
  /**
3245
3245
  * <p>The endpoint assigned to the SIP media application.</p>
@@ -3250,7 +3250,7 @@ export interface SipMediaApplicationEndpoint {
3250
3250
  * <p>Valid Amazon Resource Name (ARN) of the Lambda function, version, or alias. The function must be created in the same AWS Region as the SIP media application.</p>
3251
3251
  * @public
3252
3252
  */
3253
- LambdaArn?: string;
3253
+ LambdaArn?: string | undefined;
3254
3254
  }
3255
3255
  /**
3256
3256
  * @public
@@ -3281,32 +3281,32 @@ export interface SipMediaApplication {
3281
3281
  * <p>The SIP media application ID.</p>
3282
3282
  * @public
3283
3283
  */
3284
- SipMediaApplicationId?: string;
3284
+ SipMediaApplicationId?: string | undefined;
3285
3285
  /**
3286
3286
  * <p>The AWS Region in which the SIP media application is created.</p>
3287
3287
  * @public
3288
3288
  */
3289
- AwsRegion?: string;
3289
+ AwsRegion?: string | undefined;
3290
3290
  /**
3291
3291
  * <p>The name of the SIP media application.</p>
3292
3292
  * @public
3293
3293
  */
3294
- Name?: string;
3294
+ Name?: string | undefined;
3295
3295
  /**
3296
3296
  * <p>List of endpoints for SIP media application. Currently, only one endpoint per SIP media application is permitted.</p>
3297
3297
  * @public
3298
3298
  */
3299
- Endpoints?: SipMediaApplicationEndpoint[];
3299
+ Endpoints?: SipMediaApplicationEndpoint[] | undefined;
3300
3300
  /**
3301
3301
  * <p>The SIP media application creation timestamp, in ISO 8601 format.</p>
3302
3302
  * @public
3303
3303
  */
3304
- CreatedTimestamp?: Date;
3304
+ CreatedTimestamp?: Date | undefined;
3305
3305
  /**
3306
3306
  * <p>The SIP media application updated timestamp, in ISO 8601 format.</p>
3307
3307
  * @public
3308
3308
  */
3309
- UpdatedTimestamp?: Date;
3309
+ UpdatedTimestamp?: Date | undefined;
3310
3310
  }
3311
3311
  /**
3312
3312
  * @public
@@ -3316,7 +3316,7 @@ export interface CreateSipMediaApplicationResponse {
3316
3316
  * <p>The SIP media application details.</p>
3317
3317
  * @public
3318
3318
  */
3319
- SipMediaApplication?: SipMediaApplication;
3319
+ SipMediaApplication?: SipMediaApplication | undefined;
3320
3320
  }
3321
3321
  /**
3322
3322
  * @public
@@ -3341,7 +3341,7 @@ export interface CreateSipMediaApplicationCallRequest {
3341
3341
  * <p>The SIP headers added to an outbound call leg.</p>
3342
3342
  * @public
3343
3343
  */
3344
- SipHeaders?: Record<string, string>;
3344
+ SipHeaders?: Record<string, string> | undefined;
3345
3345
  }
3346
3346
  /**
3347
3347
  * <p>A <code>Call</code> instance for a SIP media application.</p>
@@ -3352,7 +3352,7 @@ export interface SipMediaApplicationCall {
3352
3352
  * <p>The transaction ID of a call.</p>
3353
3353
  * @public
3354
3354
  */
3355
- TransactionId?: string;
3355
+ TransactionId?: string | undefined;
3356
3356
  }
3357
3357
  /**
3358
3358
  * @public
@@ -3362,7 +3362,7 @@ export interface CreateSipMediaApplicationCallResponse {
3362
3362
  * <p>The actual call.</p>
3363
3363
  * @public
3364
3364
  */
3365
- SipMediaApplicationCall?: SipMediaApplicationCall;
3365
+ SipMediaApplicationCall?: SipMediaApplicationCall | undefined;
3366
3366
  }
3367
3367
  /**
3368
3368
  * <p>Target SIP media application and other details, such as priority and AWS Region, to be
@@ -3374,17 +3374,17 @@ export interface SipRuleTargetApplication {
3374
3374
  * <p>The SIP media application ID.</p>
3375
3375
  * @public
3376
3376
  */
3377
- SipMediaApplicationId?: string;
3377
+ SipMediaApplicationId?: string | undefined;
3378
3378
  /**
3379
3379
  * <p>Priority of the SIP media application in the target list.</p>
3380
3380
  * @public
3381
3381
  */
3382
- Priority?: number;
3382
+ Priority?: number | undefined;
3383
3383
  /**
3384
3384
  * <p>The AWS Region of the target application.</p>
3385
3385
  * @public
3386
3386
  */
3387
- AwsRegion?: string;
3387
+ AwsRegion?: string | undefined;
3388
3388
  }
3389
3389
  /**
3390
3390
  * @public
@@ -3426,7 +3426,7 @@ export interface CreateSipRuleRequest {
3426
3426
  * <p>Enables or disables a rule. You must disable rules before you can delete them.</p>
3427
3427
  * @public
3428
3428
  */
3429
- Disabled?: boolean;
3429
+ Disabled?: boolean | undefined;
3430
3430
  /**
3431
3431
  * <p>List of SIP media applications with priority and AWS Region. Only one SIP application per AWS Region can be used.</p>
3432
3432
  * @public
@@ -3442,23 +3442,23 @@ export interface SipRule {
3442
3442
  * <p>The SIP rule ID.</p>
3443
3443
  * @public
3444
3444
  */
3445
- SipRuleId?: string;
3445
+ SipRuleId?: string | undefined;
3446
3446
  /**
3447
3447
  * <p>The name of the SIP rule.</p>
3448
3448
  * @public
3449
3449
  */
3450
- Name?: string;
3450
+ Name?: string | undefined;
3451
3451
  /**
3452
3452
  * <p>Indicates whether the SIP rule is enabled or disabled. You must disable a rule before you can delete it.</p>
3453
3453
  * @public
3454
3454
  */
3455
- Disabled?: boolean;
3455
+ Disabled?: boolean | undefined;
3456
3456
  /**
3457
3457
  * <p>The type of trigger assigned to the SIP rule in <code>TriggerValue</code>, currently <code>RequestUriHostname</code> or
3458
3458
  * <code>ToPhoneNumber</code>.</p>
3459
3459
  * @public
3460
3460
  */
3461
- TriggerType?: SipRuleTriggerType;
3461
+ TriggerType?: SipRuleTriggerType | undefined;
3462
3462
  /**
3463
3463
  * <p>If <code>TriggerType</code> is <code>RequestUriHostname</code>, then the value can be the
3464
3464
  * outbound host name of the Amazon Chime Voice Connector. If <code>TriggerType</code> is
@@ -3467,23 +3467,23 @@ export interface SipRule {
3467
3467
  * <code>ToPhoneNumber</code> matches in the incoming SIP request.</p>
3468
3468
  * @public
3469
3469
  */
3470
- TriggerValue?: string;
3470
+ TriggerValue?: string | undefined;
3471
3471
  /**
3472
3472
  * <p>Target SIP media application and other details, such as priority and AWS Region, to be
3473
3473
  * specified in the SIP rule. Only one SIP rule per AWS Region can be provided.</p>
3474
3474
  * @public
3475
3475
  */
3476
- TargetApplications?: SipRuleTargetApplication[];
3476
+ TargetApplications?: SipRuleTargetApplication[] | undefined;
3477
3477
  /**
3478
3478
  * <p>The time at which the SIP rule was created, in ISO 8601 format.</p>
3479
3479
  * @public
3480
3480
  */
3481
- CreatedTimestamp?: Date;
3481
+ CreatedTimestamp?: Date | undefined;
3482
3482
  /**
3483
3483
  * <p>The time at which the SIP rule was last updated, in ISO 8601 format.</p>
3484
3484
  * @public
3485
3485
  */
3486
- UpdatedTimestamp?: Date;
3486
+ UpdatedTimestamp?: Date | undefined;
3487
3487
  }
3488
3488
  /**
3489
3489
  * @public
@@ -3493,7 +3493,7 @@ export interface CreateSipRuleResponse {
3493
3493
  * <p>Returns the SIP rule information, including the rule ID, triggers, and target applications.</p>
3494
3494
  * @public
3495
3495
  */
3496
- SipRule?: SipRule;
3496
+ SipRule?: SipRule | undefined;
3497
3497
  }
3498
3498
  /**
3499
3499
  * @public
@@ -3508,17 +3508,17 @@ export interface CreateUserRequest {
3508
3508
  * <p>The user name.</p>
3509
3509
  * @public
3510
3510
  */
3511
- Username?: string;
3511
+ Username?: string | undefined;
3512
3512
  /**
3513
3513
  * <p>The user's email address.</p>
3514
3514
  * @public
3515
3515
  */
3516
- Email?: string;
3516
+ Email?: string | undefined;
3517
3517
  /**
3518
3518
  * <p>The user type.</p>
3519
3519
  * @public
3520
3520
  */
3521
- UserType?: UserType;
3521
+ UserType?: UserType | undefined;
3522
3522
  }
3523
3523
  /**
3524
3524
  * @public
@@ -3560,62 +3560,62 @@ export interface User {
3560
3560
  * <p>The Amazon Chime account ID.</p>
3561
3561
  * @public
3562
3562
  */
3563
- AccountId?: string;
3563
+ AccountId?: string | undefined;
3564
3564
  /**
3565
3565
  * <p>The primary email address of the user.</p>
3566
3566
  * @public
3567
3567
  */
3568
- PrimaryEmail?: string;
3568
+ PrimaryEmail?: string | undefined;
3569
3569
  /**
3570
3570
  * <p>The primary phone number associated with the user.</p>
3571
3571
  * @public
3572
3572
  */
3573
- PrimaryProvisionedNumber?: string;
3573
+ PrimaryProvisionedNumber?: string | undefined;
3574
3574
  /**
3575
3575
  * <p>The display name of the user.</p>
3576
3576
  * @public
3577
3577
  */
3578
- DisplayName?: string;
3578
+ DisplayName?: string | undefined;
3579
3579
  /**
3580
3580
  * <p>The license type for the user.</p>
3581
3581
  * @public
3582
3582
  */
3583
- LicenseType?: License;
3583
+ LicenseType?: License | undefined;
3584
3584
  /**
3585
3585
  * <p>The user type.</p>
3586
3586
  * @public
3587
3587
  */
3588
- UserType?: UserType;
3588
+ UserType?: UserType | undefined;
3589
3589
  /**
3590
3590
  * <p>The user registration status.</p>
3591
3591
  * @public
3592
3592
  */
3593
- UserRegistrationStatus?: RegistrationStatus;
3593
+ UserRegistrationStatus?: RegistrationStatus | undefined;
3594
3594
  /**
3595
3595
  * <p>The user invite status.</p>
3596
3596
  * @public
3597
3597
  */
3598
- UserInvitationStatus?: InviteStatus;
3598
+ UserInvitationStatus?: InviteStatus | undefined;
3599
3599
  /**
3600
3600
  * <p>Date and time when the user is registered, in ISO 8601 format.</p>
3601
3601
  * @public
3602
3602
  */
3603
- RegisteredOn?: Date;
3603
+ RegisteredOn?: Date | undefined;
3604
3604
  /**
3605
3605
  * <p>Date and time when the user is invited to the Amazon Chime account, in ISO 8601 format.</p>
3606
3606
  * @public
3607
3607
  */
3608
- InvitedOn?: Date;
3608
+ InvitedOn?: Date | undefined;
3609
3609
  /**
3610
3610
  * <p>The Alexa for Business metadata.</p>
3611
3611
  * @public
3612
3612
  */
3613
- AlexaForBusinessMetadata?: AlexaForBusinessMetadata;
3613
+ AlexaForBusinessMetadata?: AlexaForBusinessMetadata | undefined;
3614
3614
  /**
3615
3615
  * <p>The user's personal meeting PIN.</p>
3616
3616
  * @public
3617
3617
  */
3618
- PersonalPIN?: string;
3618
+ PersonalPIN?: string | undefined;
3619
3619
  }
3620
3620
  /**
3621
3621
  * @public
@@ -3625,7 +3625,7 @@ export interface CreateUserResponse {
3625
3625
  * <p>The user on the Amazon Chime account.</p>
3626
3626
  * @public
3627
3627
  */
3628
- User?: User;
3628
+ User?: User | undefined;
3629
3629
  }
3630
3630
  /**
3631
3631
  * @public
@@ -3656,7 +3656,7 @@ export interface CreateVoiceConnectorRequest {
3656
3656
  * </p>
3657
3657
  * @public
3658
3658
  */
3659
- AwsRegion?: VoiceConnectorAwsRegion;
3659
+ AwsRegion?: VoiceConnectorAwsRegion | undefined;
3660
3660
  /**
3661
3661
  * <p>When enabled, requires encryption for the Amazon Chime Voice Connector.</p>
3662
3662
  * @public
@@ -3673,7 +3673,7 @@ export interface VoiceConnector {
3673
3673
  * <p>The Amazon Chime Voice Connector ID.</p>
3674
3674
  * @public
3675
3675
  */
3676
- VoiceConnectorId?: string;
3676
+ VoiceConnectorId?: string | undefined;
3677
3677
  /**
3678
3678
  * <p>
3679
3679
  * The AWS Region in which the Amazon Chime Voice Connector is created. Default:
@@ -3681,37 +3681,37 @@ export interface VoiceConnector {
3681
3681
  * </p>
3682
3682
  * @public
3683
3683
  */
3684
- AwsRegion?: VoiceConnectorAwsRegion;
3684
+ AwsRegion?: VoiceConnectorAwsRegion | undefined;
3685
3685
  /**
3686
3686
  * <p>The name of the Amazon Chime Voice Connector.</p>
3687
3687
  * @public
3688
3688
  */
3689
- Name?: string;
3689
+ Name?: string | undefined;
3690
3690
  /**
3691
3691
  * <p>The outbound host name for the Amazon Chime Voice Connector.</p>
3692
3692
  * @public
3693
3693
  */
3694
- OutboundHostName?: string;
3694
+ OutboundHostName?: string | undefined;
3695
3695
  /**
3696
3696
  * <p>Designates whether encryption is required for the Amazon Chime Voice Connector.</p>
3697
3697
  * @public
3698
3698
  */
3699
- RequireEncryption?: boolean;
3699
+ RequireEncryption?: boolean | undefined;
3700
3700
  /**
3701
3701
  * <p>The Amazon Chime Voice Connector creation timestamp, in ISO 8601 format.</p>
3702
3702
  * @public
3703
3703
  */
3704
- CreatedTimestamp?: Date;
3704
+ CreatedTimestamp?: Date | undefined;
3705
3705
  /**
3706
3706
  * <p>The updated Amazon Chime Voice Connector timestamp, in ISO 8601 format.</p>
3707
3707
  * @public
3708
3708
  */
3709
- UpdatedTimestamp?: Date;
3709
+ UpdatedTimestamp?: Date | undefined;
3710
3710
  /**
3711
3711
  * <p>The ARN of the specified Amazon Chime Voice Connector.</p>
3712
3712
  * @public
3713
3713
  */
3714
- VoiceConnectorArn?: string;
3714
+ VoiceConnectorArn?: string | undefined;
3715
3715
  }
3716
3716
  /**
3717
3717
  * @public
@@ -3721,7 +3721,7 @@ export interface CreateVoiceConnectorResponse {
3721
3721
  * <p>The Amazon Chime Voice Connector details.</p>
3722
3722
  * @public
3723
3723
  */
3724
- VoiceConnector?: VoiceConnector;
3724
+ VoiceConnector?: VoiceConnector | undefined;
3725
3725
  }
3726
3726
  /**
3727
3727
  * <p>For Amazon Chime Voice Connector groups, the Amazon Chime Voice Connectors to which to route inbound calls. Includes priority configuration settings. Limit: 3
@@ -3754,7 +3754,7 @@ export interface CreateVoiceConnectorGroupRequest {
3754
3754
  * <p>The Amazon Chime Voice Connectors to route inbound calls to.</p>
3755
3755
  * @public
3756
3756
  */
3757
- VoiceConnectorItems?: VoiceConnectorItem[];
3757
+ VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
3758
3758
  }
3759
3759
  /**
3760
3760
  * <p>The Amazon Chime Voice Connector group configuration, including associated Amazon Chime Voice
@@ -3768,32 +3768,32 @@ export interface VoiceConnectorGroup {
3768
3768
  * <p>The Amazon Chime Voice Connector group ID.</p>
3769
3769
  * @public
3770
3770
  */
3771
- VoiceConnectorGroupId?: string;
3771
+ VoiceConnectorGroupId?: string | undefined;
3772
3772
  /**
3773
3773
  * <p>The name of the Amazon Chime Voice Connector group.</p>
3774
3774
  * @public
3775
3775
  */
3776
- Name?: string;
3776
+ Name?: string | undefined;
3777
3777
  /**
3778
3778
  * <p>The Amazon Chime Voice Connectors to which to route inbound calls.</p>
3779
3779
  * @public
3780
3780
  */
3781
- VoiceConnectorItems?: VoiceConnectorItem[];
3781
+ VoiceConnectorItems?: VoiceConnectorItem[] | undefined;
3782
3782
  /**
3783
3783
  * <p>The Amazon Chime Voice Connector group creation time stamp, in ISO 8601 format.</p>
3784
3784
  * @public
3785
3785
  */
3786
- CreatedTimestamp?: Date;
3786
+ CreatedTimestamp?: Date | undefined;
3787
3787
  /**
3788
3788
  * <p>The updated Amazon Chime Voice Connector group time stamp, in ISO 8601 format.</p>
3789
3789
  * @public
3790
3790
  */
3791
- UpdatedTimestamp?: Date;
3791
+ UpdatedTimestamp?: Date | undefined;
3792
3792
  /**
3793
3793
  * <p>The ARN of the specified Amazon Chime Voice Connector group.</p>
3794
3794
  * @public
3795
3795
  */
3796
- VoiceConnectorGroupArn?: string;
3796
+ VoiceConnectorGroupArn?: string | undefined;
3797
3797
  }
3798
3798
  /**
3799
3799
  * @public
@@ -3803,7 +3803,7 @@ export interface CreateVoiceConnectorGroupResponse {
3803
3803
  * <p>The Amazon Chime Voice Connector group details.</p>
3804
3804
  * @public
3805
3805
  */
3806
- VoiceConnectorGroup?: VoiceConnectorGroup;
3806
+ VoiceConnectorGroup?: VoiceConnectorGroup | undefined;
3807
3807
  }
3808
3808
  /**
3809
3809
  * <p>The SIP credentials used to authenticate requests to your Amazon Chime Voice Connector.</p>
@@ -3815,12 +3815,12 @@ export interface Credential {
3815
3815
  * format.</p>
3816
3816
  * @public
3817
3817
  */
3818
- Username?: string;
3818
+ Username?: string | undefined;
3819
3819
  /**
3820
3820
  * <p>The RFC2617 compliant password associated with the SIP credentials, in US-ASCII format.</p>
3821
3821
  * @public
3822
3822
  */
3823
- Password?: string;
3823
+ Password?: string | undefined;
3824
3824
  }
3825
3825
  /**
3826
3826
  * @public
@@ -3844,8 +3844,8 @@ export interface DeleteAccountResponse {
3844
3844
  export declare class UnprocessableEntityException extends __BaseException {
3845
3845
  readonly name: "UnprocessableEntityException";
3846
3846
  readonly $fault: "client";
3847
- Code?: ErrorCode;
3848
- Message?: string;
3847
+ Code?: ErrorCode | undefined;
3848
+ Message?: string | undefined;
3849
3849
  /**
3850
3850
  * @internal
3851
3851
  */
@@ -3924,7 +3924,7 @@ export interface DeleteChannelRequest {
3924
3924
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
3925
3925
  * @public
3926
3926
  */
3927
- ChimeBearer?: string;
3927
+ ChimeBearer?: string | undefined;
3928
3928
  }
3929
3929
  /**
3930
3930
  * @public
@@ -3944,7 +3944,7 @@ export interface DeleteChannelBanRequest {
3944
3944
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
3945
3945
  * @public
3946
3946
  */
3947
- ChimeBearer?: string;
3947
+ ChimeBearer?: string | undefined;
3948
3948
  }
3949
3949
  /**
3950
3950
  * @public
@@ -3964,7 +3964,7 @@ export interface DeleteChannelMembershipRequest {
3964
3964
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
3965
3965
  * @public
3966
3966
  */
3967
- ChimeBearer?: string;
3967
+ ChimeBearer?: string | undefined;
3968
3968
  }
3969
3969
  /**
3970
3970
  * @public
@@ -3984,7 +3984,7 @@ export interface DeleteChannelMessageRequest {
3984
3984
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
3985
3985
  * @public
3986
3986
  */
3987
- ChimeBearer?: string;
3987
+ ChimeBearer?: string | undefined;
3988
3988
  }
3989
3989
  /**
3990
3990
  * @public
@@ -4004,7 +4004,7 @@ export interface DeleteChannelModeratorRequest {
4004
4004
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4005
4005
  * @public
4006
4006
  */
4007
- ChimeBearer?: string;
4007
+ ChimeBearer?: string | undefined;
4008
4008
  }
4009
4009
  /**
4010
4010
  * @public
@@ -4225,7 +4225,7 @@ export interface DescribeAppInstanceResponse {
4225
4225
  * timestamps use epoch milliseconds.</p>
4226
4226
  * @public
4227
4227
  */
4228
- AppInstance?: AppInstance;
4228
+ AppInstance?: AppInstance | undefined;
4229
4229
  }
4230
4230
  /**
4231
4231
  * @public
@@ -4251,7 +4251,7 @@ export interface DescribeAppInstanceAdminResponse {
4251
4251
  * last-updated timestamps. All timestamps use epoch milliseconds.</p>
4252
4252
  * @public
4253
4253
  */
4254
- AppInstanceAdmin?: AppInstanceAdmin;
4254
+ AppInstanceAdmin?: AppInstanceAdmin | undefined;
4255
4255
  }
4256
4256
  /**
4257
4257
  * @public
@@ -4271,7 +4271,7 @@ export interface DescribeAppInstanceUserResponse {
4271
4271
  * <p>The name of the <code>AppInstanceUser</code>.</p>
4272
4272
  * @public
4273
4273
  */
4274
- AppInstanceUser?: AppInstanceUser;
4274
+ AppInstanceUser?: AppInstanceUser | undefined;
4275
4275
  }
4276
4276
  /**
4277
4277
  * @public
@@ -4286,7 +4286,7 @@ export interface DescribeChannelRequest {
4286
4286
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4287
4287
  * @public
4288
4288
  */
4289
- ChimeBearer?: string;
4289
+ ChimeBearer?: string | undefined;
4290
4290
  }
4291
4291
  /**
4292
4292
  * @public
@@ -4296,7 +4296,7 @@ export interface DescribeChannelResponse {
4296
4296
  * <p>The channel details.</p>
4297
4297
  * @public
4298
4298
  */
4299
- Channel?: Channel;
4299
+ Channel?: Channel | undefined;
4300
4300
  }
4301
4301
  /**
4302
4302
  * @public
@@ -4316,7 +4316,7 @@ export interface DescribeChannelBanRequest {
4316
4316
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4317
4317
  * @public
4318
4318
  */
4319
- ChimeBearer?: string;
4319
+ ChimeBearer?: string | undefined;
4320
4320
  }
4321
4321
  /**
4322
4322
  * @public
@@ -4326,7 +4326,7 @@ export interface DescribeChannelBanResponse {
4326
4326
  * <p>The details of the ban.</p>
4327
4327
  * @public
4328
4328
  */
4329
- ChannelBan?: ChannelBan;
4329
+ ChannelBan?: ChannelBan | undefined;
4330
4330
  }
4331
4331
  /**
4332
4332
  * @public
@@ -4346,7 +4346,7 @@ export interface DescribeChannelMembershipRequest {
4346
4346
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4347
4347
  * @public
4348
4348
  */
4349
- ChimeBearer?: string;
4349
+ ChimeBearer?: string | undefined;
4350
4350
  }
4351
4351
  /**
4352
4352
  * @public
@@ -4356,7 +4356,7 @@ export interface DescribeChannelMembershipResponse {
4356
4356
  * <p>The details of the membership.</p>
4357
4357
  * @public
4358
4358
  */
4359
- ChannelMembership?: ChannelMembership;
4359
+ ChannelMembership?: ChannelMembership | undefined;
4360
4360
  }
4361
4361
  /**
4362
4362
  * @public
@@ -4376,7 +4376,7 @@ export interface DescribeChannelMembershipForAppInstanceUserRequest {
4376
4376
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4377
4377
  * @public
4378
4378
  */
4379
- ChimeBearer?: string;
4379
+ ChimeBearer?: string | undefined;
4380
4380
  }
4381
4381
  /**
4382
4382
  * @public
@@ -4386,7 +4386,7 @@ export interface DescribeChannelMembershipForAppInstanceUserResponse {
4386
4386
  * <p>The channel to which a user belongs.</p>
4387
4387
  * @public
4388
4388
  */
4389
- ChannelMembership?: ChannelMembershipForAppInstanceUserSummary;
4389
+ ChannelMembership?: ChannelMembershipForAppInstanceUserSummary | undefined;
4390
4390
  }
4391
4391
  /**
4392
4392
  * @public
@@ -4406,7 +4406,7 @@ export interface DescribeChannelModeratedByAppInstanceUserRequest {
4406
4406
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4407
4407
  * @public
4408
4408
  */
4409
- ChimeBearer?: string;
4409
+ ChimeBearer?: string | undefined;
4410
4410
  }
4411
4411
  /**
4412
4412
  * @public
@@ -4416,7 +4416,7 @@ export interface DescribeChannelModeratedByAppInstanceUserResponse {
4416
4416
  * <p>The moderated channel.</p>
4417
4417
  * @public
4418
4418
  */
4419
- Channel?: ChannelModeratedByAppInstanceUserSummary;
4419
+ Channel?: ChannelModeratedByAppInstanceUserSummary | undefined;
4420
4420
  }
4421
4421
  /**
4422
4422
  * @public
@@ -4436,7 +4436,7 @@ export interface DescribeChannelModeratorRequest {
4436
4436
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
4437
4437
  * @public
4438
4438
  */
4439
- ChimeBearer?: string;
4439
+ ChimeBearer?: string | undefined;
4440
4440
  }
4441
4441
  /**
4442
4442
  * @public
@@ -4446,7 +4446,7 @@ export interface DescribeChannelModeratorResponse {
4446
4446
  * <p>The details of the channel moderator.</p>
4447
4447
  * @public
4448
4448
  */
4449
- ChannelModerator?: ChannelModerator;
4449
+ ChannelModerator?: ChannelModerator | undefined;
4450
4450
  }
4451
4451
  /**
4452
4452
  * @public
@@ -4491,7 +4491,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorResponse {
4491
4491
  * <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
4492
4492
  * @public
4493
4493
  */
4494
- PhoneNumberErrors?: PhoneNumberError[];
4494
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
4495
4495
  }
4496
4496
  /**
4497
4497
  * @public
@@ -4516,7 +4516,7 @@ export interface DisassociatePhoneNumbersFromVoiceConnectorGroupResponse {
4516
4516
  * <p>If the action fails for one or more of the phone numbers in the request, a list of the phone numbers is returned, along with error codes and error messages.</p>
4517
4517
  * @public
4518
4518
  */
4519
- PhoneNumberErrors?: PhoneNumberError[];
4519
+ PhoneNumberErrors?: PhoneNumberError[] | undefined;
4520
4520
  }
4521
4521
  /**
4522
4522
  * @public
@@ -4552,7 +4552,7 @@ export interface DNISEmergencyCallingConfiguration {
4552
4552
  * <p>The DNIS phone number to route test emergency calls to, in E.164 format.</p>
4553
4553
  * @public
4554
4554
  */
4555
- TestPhoneNumber?: string;
4555
+ TestPhoneNumber?: string | undefined;
4556
4556
  /**
4557
4557
  * <p>The country from which emergency calls are allowed, in ISO 3166-1 alpha-2 format.</p>
4558
4558
  * @public
@@ -4581,7 +4581,7 @@ export interface EmergencyCallingConfiguration {
4581
4581
  * <p>The Dialed Number Identification Service (DNIS) emergency calling configuration details.</p>
4582
4582
  * @public
4583
4583
  */
4584
- DNIS?: DNISEmergencyCallingConfiguration[];
4584
+ DNIS?: DNISEmergencyCallingConfiguration[] | undefined;
4585
4585
  }
4586
4586
  /**
4587
4587
  * @public
@@ -4674,18 +4674,18 @@ export interface EngineTranscribeMedicalSettings {
4674
4674
  * <p>The name of the vocabulary passed to Amazon Transcribe Medical.</p>
4675
4675
  * @public
4676
4676
  */
4677
- VocabularyName?: string;
4677
+ VocabularyName?: string | undefined;
4678
4678
  /**
4679
4679
  * <p>The AWS Region passed to Amazon Transcribe Medical. If you don't specify a Region, Amazon Chime uses the meeting's Region.</p>
4680
4680
  * @public
4681
4681
  */
4682
- Region?: TranscribeMedicalRegion;
4682
+ Region?: TranscribeMedicalRegion | undefined;
4683
4683
  /**
4684
4684
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
4685
4685
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4686
4686
  * @public
4687
4687
  */
4688
- ContentIdentificationType?: TranscribeMedicalContentIdentificationType;
4688
+ ContentIdentificationType?: TranscribeMedicalContentIdentificationType | undefined;
4689
4689
  }
4690
4690
  /**
4691
4691
  * @public
@@ -4795,7 +4795,7 @@ export interface EngineTranscribeSettings {
4795
4795
  * <p>If you're unsure of the language spoken in your audio, consider using <code>IdentifyLanguage</code> to enable automatic language identification.</p>
4796
4796
  * @public
4797
4797
  */
4798
- LanguageCode?: TranscribeLanguageCode;
4798
+ LanguageCode?: TranscribeLanguageCode | undefined;
4799
4799
  /**
4800
4800
  * <p>Specify how you want your vocabulary filter applied to your transcript.</p>
4801
4801
  * <p> To replace words with <code>***</code>, choose <code>mask</code>.</p>
@@ -4803,21 +4803,21 @@ export interface EngineTranscribeSettings {
4803
4803
  * <p>To flag words without changing them, choose <code>tag</code>.</p>
4804
4804
  * @public
4805
4805
  */
4806
- VocabularyFilterMethod?: TranscribeVocabularyFilterMethod;
4806
+ VocabularyFilterMethod?: TranscribeVocabularyFilterMethod | undefined;
4807
4807
  /**
4808
4808
  * <p>Specify the name of the custom vocabulary filter that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive. </p>
4809
4809
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
4810
4810
  * <p>If you include <code>IdentifyLanguage</code> and want to use one or more vocabulary filters with your transcription, use the <code>VocabularyFilterNames</code> parameter instead.</p>
4811
4811
  * @public
4812
4812
  */
4813
- VocabularyFilterName?: string;
4813
+ VocabularyFilterName?: string | undefined;
4814
4814
  /**
4815
4815
  * <p>Specify the name of the custom vocabulary that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
4816
4816
  * <p>If you use Amazon Transcribe multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
4817
4817
  * <p>If you include <code>IdentifyLanguage</code> and want to use one or more custom vocabularies with your transcription, use the <code>VocabularyNames</code> parameter instead.</p>
4818
4818
  * @public
4819
4819
  */
4820
- VocabularyName?: string;
4820
+ VocabularyName?: string | undefined;
4821
4821
  /**
4822
4822
  * <p>The AWS Region in which to use Amazon Transcribe.</p>
4823
4823
  * <p>If you don't specify a Region, then the <code>MediaRegion</code> parameter of the
@@ -4828,30 +4828,30 @@ export interface EngineTranscribeSettings {
4828
4828
  * <i>Amazon Chime SDK Developer Guide</i>.</p>
4829
4829
  * @public
4830
4830
  */
4831
- Region?: TranscribeRegion;
4831
+ Region?: TranscribeRegion | undefined;
4832
4832
  /**
4833
4833
  * <p>Enables partial result stabilization for your transcription. Partial result stabilization can reduce latency in your output, but may impact accuracy.</p>
4834
4834
  * @public
4835
4835
  */
4836
- EnablePartialResultsStabilization?: boolean;
4836
+ EnablePartialResultsStabilization?: boolean | undefined;
4837
4837
  /**
4838
4838
  * <p>Specify the level of stability to use when you enable partial results stabilization (<code>EnablePartialResultsStabilization</code>).</p>
4839
4839
  * <p>Low stability provides the highest accuracy. High stability transcribes faster, but with slightly lower accuracy.</p>
4840
4840
  * @public
4841
4841
  */
4842
- PartialResultsStability?: TranscribePartialResultsStability;
4842
+ PartialResultsStability?: TranscribePartialResultsStability | undefined;
4843
4843
  /**
4844
4844
  * <p>Labels all personally identifiable information (PII) identified in your transcript. If you don't include <code>PiiEntityTypes</code>, all PII is identified.</p>
4845
4845
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4846
4846
  * @public
4847
4847
  */
4848
- ContentIdentificationType?: TranscribeContentIdentificationType;
4848
+ ContentIdentificationType?: TranscribeContentIdentificationType | undefined;
4849
4849
  /**
4850
4850
  * <p>Content redaction is performed at the segment level. If you don't include <code>PiiEntityTypes</code>, all PII is redacted.</p>
4851
4851
  * <p>You can’t set <code>ContentIdentificationType</code> and <code>ContentRedactionType</code>.</p>
4852
4852
  * @public
4853
4853
  */
4854
- ContentRedactionType?: TranscribeContentRedactionType;
4854
+ ContentRedactionType?: TranscribeContentRedactionType | undefined;
4855
4855
  /**
4856
4856
  * <p>Specify which types of personally identifiable information (PII) you want to redact in your transcript. You can include as many types as you'd like, or you can select <code>ALL</code>.</p>
4857
4857
  * <p>Values must be comma-separated and can include: <code>ADDRESS</code>, <code>BANK_ACCOUNT_NUMBER</code>, <code>BANK_ROUTING</code>, <code>CREDIT_DEBIT_CVV</code>, <code>CREDIT_DEBIT_EXPIRY</code>
@@ -4861,7 +4861,7 @@ export interface EngineTranscribeSettings {
4861
4861
  * <p>If you include <code>ContentRedactionType</code> or <code>ContentIdentificationType</code>, but do not include <code>PiiEntityTypes</code>, all PII is redacted or identified.</p>
4862
4862
  * @public
4863
4863
  */
4864
- PiiEntityTypes?: string;
4864
+ PiiEntityTypes?: string | undefined;
4865
4865
  /**
4866
4866
  * <p>Specify the name of the custom language model that you want to use when processing your transcription. Note that language model names are case sensitive.</p>
4867
4867
  * <p>The language of the specified language model must match the language code. If the languages don't match, the custom language model isn't applied. There are no errors or warnings associated
@@ -4869,7 +4869,7 @@ export interface EngineTranscribeSettings {
4869
4869
  * <p>If you use Amazon Transcribe in multiple Regions, the custom language model must be available in Amazon Transcribe in each Region.</p>
4870
4870
  * @public
4871
4871
  */
4872
- LanguageModelName?: string;
4872
+ LanguageModelName?: string | undefined;
4873
4873
  /**
4874
4874
  * <p>Enables automatic language identification for your transcription.</p>
4875
4875
  * <p>If you include <code>IdentifyLanguage</code>, you can optionally use <code>LanguageOptions</code> to include a list of language codes that you think may be present in your audio stream.
@@ -4879,7 +4879,7 @@ export interface EngineTranscribeSettings {
4879
4879
  * <p>Language identification can't be combined with custom language models or redaction.</p>
4880
4880
  * @public
4881
4881
  */
4882
- IdentifyLanguage?: boolean;
4882
+ IdentifyLanguage?: boolean | undefined;
4883
4883
  /**
4884
4884
  * <p>Specify two or more language codes that represent the languages you think may be present in your media; including more than five is not recommended. If you're unsure what languages
4885
4885
  * are present, do not include this parameter.</p>
@@ -4890,20 +4890,20 @@ export interface EngineTranscribeSettings {
4890
4890
  * </important>
4891
4891
  * @public
4892
4892
  */
4893
- LanguageOptions?: string;
4893
+ LanguageOptions?: string | undefined;
4894
4894
  /**
4895
4895
  * <p>Specify a preferred language from the subset of languages codes you specified in <code>LanguageOptions</code>.</p>
4896
4896
  * <p>You can only use this parameter if you include <code>IdentifyLanguage</code> and <code>LanguageOptions</code>.</p>
4897
4897
  * @public
4898
4898
  */
4899
- PreferredLanguage?: TranscribeLanguageCode;
4899
+ PreferredLanguage?: TranscribeLanguageCode | undefined;
4900
4900
  /**
4901
4901
  * <p>Specify the names of the custom vocabularies that you want to use when processing your transcription. Note that vocabulary names are case sensitive.</p>
4902
4902
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary must be available in Amazon Transcribe in each Region.</p>
4903
4903
  * <p>If you don't include <code>IdentifyLanguage</code> and want to use a custom vocabulary with your transcription, use the <code>VocabularyName</code> parameter instead.</p>
4904
4904
  * @public
4905
4905
  */
4906
- VocabularyNames?: string;
4906
+ VocabularyNames?: string | undefined;
4907
4907
  /**
4908
4908
  * <p>Specify the names of the custom vocabulary filters that you want to use when processing your transcription. Note that vocabulary filter names are case sensitive.</p>
4909
4909
  * <p>If you use Amazon Transcribe in multiple Regions, the vocabulary filter must be available in Amazon Transcribe in each Region.</p>
@@ -4911,7 +4911,7 @@ export interface EngineTranscribeSettings {
4911
4911
  * parameter instead.</p>
4912
4912
  * @public
4913
4913
  */
4914
- VocabularyFilterNames?: string;
4914
+ VocabularyFilterNames?: string | undefined;
4915
4915
  }
4916
4916
  /**
4917
4917
  * <p>The configuration that allows a bot to receive outgoing events. Can be either an HTTPS endpoint or a Lambda function ARN.</p>
@@ -4922,17 +4922,17 @@ export interface EventsConfiguration {
4922
4922
  * <p>The bot ID.</p>
4923
4923
  * @public
4924
4924
  */
4925
- BotId?: string;
4925
+ BotId?: string | undefined;
4926
4926
  /**
4927
4927
  * <p>HTTPS endpoint that allows a bot to receive outgoing events.</p>
4928
4928
  * @public
4929
4929
  */
4930
- OutboundEventsHTTPSEndpoint?: string;
4930
+ OutboundEventsHTTPSEndpoint?: string | undefined;
4931
4931
  /**
4932
4932
  * <p>Lambda function ARN that allows a bot to receive outgoing events.</p>
4933
4933
  * @public
4934
4934
  */
4935
- LambdaFunctionArn?: string;
4935
+ LambdaFunctionArn?: string | undefined;
4936
4936
  }
4937
4937
  /**
4938
4938
  * @public
@@ -4952,7 +4952,7 @@ export interface GetAccountResponse {
4952
4952
  * <p>The Amazon Chime account details.</p>
4953
4953
  * @public
4954
4954
  */
4955
- Account?: Account;
4955
+ Account?: Account | undefined;
4956
4956
  }
4957
4957
  /**
4958
4958
  * @public
@@ -4972,7 +4972,7 @@ export interface GetAccountSettingsResponse {
4972
4972
  * <p>The Amazon Chime account settings.</p>
4973
4973
  * @public
4974
4974
  */
4975
- AccountSettings?: AccountSettings;
4975
+ AccountSettings?: AccountSettings | undefined;
4976
4976
  }
4977
4977
  /**
4978
4978
  * @public
@@ -4992,12 +4992,12 @@ export interface GetAppInstanceRetentionSettingsResponse {
4992
4992
  * <p>The retention settings for the <code>AppInstance</code>.</p>
4993
4993
  * @public
4994
4994
  */
4995
- AppInstanceRetentionSettings?: AppInstanceRetentionSettings;
4995
+ AppInstanceRetentionSettings?: AppInstanceRetentionSettings | undefined;
4996
4996
  /**
4997
4997
  * <p>The timestamp representing the time at which the specified items are retained, in Epoch Seconds.</p>
4998
4998
  * @public
4999
4999
  */
5000
- InitiateDeletionTimestamp?: Date;
5000
+ InitiateDeletionTimestamp?: Date | undefined;
5001
5001
  }
5002
5002
  /**
5003
5003
  * @public
@@ -5017,7 +5017,7 @@ export interface GetAppInstanceStreamingConfigurationsResponse {
5017
5017
  * <p>The streaming settings.</p>
5018
5018
  * @public
5019
5019
  */
5020
- AppInstanceStreamingConfigurations?: AppInstanceStreamingConfiguration[];
5020
+ AppInstanceStreamingConfigurations?: AppInstanceStreamingConfiguration[] | undefined;
5021
5021
  }
5022
5022
  /**
5023
5023
  * @public
@@ -5042,7 +5042,7 @@ export interface GetAttendeeResponse {
5042
5042
  * <p>The Amazon Chime SDK attendee information.</p>
5043
5043
  * @public
5044
5044
  */
5045
- Attendee?: Attendee;
5045
+ Attendee?: Attendee | undefined;
5046
5046
  }
5047
5047
  /**
5048
5048
  * @public
@@ -5067,7 +5067,7 @@ export interface GetBotResponse {
5067
5067
  * <p>The chat bot details.</p>
5068
5068
  * @public
5069
5069
  */
5070
- Bot?: Bot;
5070
+ Bot?: Bot | undefined;
5071
5071
  }
5072
5072
  /**
5073
5073
  * @public
@@ -5087,7 +5087,7 @@ export interface GetChannelMessageRequest {
5087
5087
  * <p>The <code>AppInstanceUserArn</code> of the user that makes the API call.</p>
5088
5088
  * @public
5089
5089
  */
5090
- ChimeBearer?: string;
5090
+ ChimeBearer?: string | undefined;
5091
5091
  }
5092
5092
  /**
5093
5093
  * @public
@@ -5097,7 +5097,7 @@ export interface GetChannelMessageResponse {
5097
5097
  * <p>The details of and content in the message.</p>
5098
5098
  * @public
5099
5099
  */
5100
- ChannelMessage?: ChannelMessage;
5100
+ ChannelMessage?: ChannelMessage | undefined;
5101
5101
  }
5102
5102
  /**
5103
5103
  * @public
@@ -5122,7 +5122,7 @@ export interface GetEventsConfigurationResponse {
5122
5122
  * <p>The events configuration details.</p>
5123
5123
  * @public
5124
5124
  */
5125
- EventsConfiguration?: EventsConfiguration;
5125
+ EventsConfiguration?: EventsConfiguration | undefined;
5126
5126
  }
5127
5127
  /**
5128
5128
  * <p>The Amazon Chime Voice Connector settings. Includes any Amazon S3 buckets designated for
@@ -5134,7 +5134,7 @@ export interface VoiceConnectorSettings {
5134
5134
  * <p>The Amazon S3 bucket designated for call detail record storage.</p>
5135
5135
  * @public
5136
5136
  */
5137
- CdrBucket?: string;
5137
+ CdrBucket?: string | undefined;
5138
5138
  }
5139
5139
  /**
5140
5140
  * @public
@@ -5144,12 +5144,12 @@ export interface GetGlobalSettingsResponse {
5144
5144
  * <p>The Amazon Chime Business Calling settings.</p>
5145
5145
  * @public
5146
5146
  */
5147
- BusinessCalling?: BusinessCallingSettings;
5147
+ BusinessCalling?: BusinessCallingSettings | undefined;
5148
5148
  /**
5149
5149
  * <p>The Amazon Chime Voice Connector settings.</p>
5150
5150
  * @public
5151
5151
  */
5152
- VoiceConnector?: VoiceConnectorSettings;
5152
+ VoiceConnector?: VoiceConnectorSettings | undefined;
5153
5153
  }
5154
5154
  /**
5155
5155
  * @public
@@ -5169,7 +5169,7 @@ export interface GetMediaCapturePipelineResponse {
5169
5169
  * <p>The media capture pipeline object.</p>
5170
5170
  * @public
5171
5171
  */
5172
- MediaCapturePipeline?: MediaCapturePipeline;
5172
+ MediaCapturePipeline?: MediaCapturePipeline | undefined;
5173
5173
  }
5174
5174
  /**
5175
5175
  * @public
@@ -5189,7 +5189,7 @@ export interface GetMeetingResponse {
5189
5189
  * <p>The Amazon Chime SDK meeting information.</p>
5190
5190
  * @public
5191
5191
  */
5192
- Meeting?: Meeting;
5192
+ Meeting?: Meeting | undefined;
5193
5193
  }
5194
5194
  /**
5195
5195
  * @public
@@ -5205,7 +5205,7 @@ export interface MessagingSessionEndpoint {
5205
5205
  * <p>The endpoint to which you establish a websocket connection.</p>
5206
5206
  * @public
5207
5207
  */
5208
- Url?: string;
5208
+ Url?: string | undefined;
5209
5209
  }
5210
5210
  /**
5211
5211
  * @public
@@ -5215,7 +5215,7 @@ export interface GetMessagingSessionEndpointResponse {
5215
5215
  * <p>The endpoint returned in the response.</p>
5216
5216
  * @public
5217
5217
  */
5218
- Endpoint?: MessagingSessionEndpoint;
5218
+ Endpoint?: MessagingSessionEndpoint | undefined;
5219
5219
  }
5220
5220
  /**
5221
5221
  * @public
@@ -5252,18 +5252,18 @@ export interface PhoneNumberAssociation {
5252
5252
  * <p>Contains the ID for the entity specified in Name.</p>
5253
5253
  * @public
5254
5254
  */
5255
- Value?: string;
5255
+ Value?: string | undefined;
5256
5256
  /**
5257
5257
  * <p>Defines the association with an Amazon Chime account ID, user ID, Amazon Chime Voice Connector
5258
5258
  * ID, or Amazon Chime Voice Connector group ID.</p>
5259
5259
  * @public
5260
5260
  */
5261
- Name?: PhoneNumberAssociationName;
5261
+ Name?: PhoneNumberAssociationName | undefined;
5262
5262
  /**
5263
5263
  * <p>The timestamp of the phone number association, in ISO 8601 format.</p>
5264
5264
  * @public
5265
5265
  */
5266
- AssociatedTimestamp?: Date;
5266
+ AssociatedTimestamp?: Date | undefined;
5267
5267
  }
5268
5268
  /**
5269
5269
  * <p>The phone number capabilities for Amazon Chime Business Calling phone numbers, such as enabled
@@ -5275,32 +5275,32 @@ export interface PhoneNumberCapabilities {
5275
5275
  * <p>Allows or denies inbound calling for the specified phone number.</p>
5276
5276
  * @public
5277
5277
  */
5278
- InboundCall?: boolean;
5278
+ InboundCall?: boolean | undefined;
5279
5279
  /**
5280
5280
  * <p>Allows or denies outbound calling for the specified phone number.</p>
5281
5281
  * @public
5282
5282
  */
5283
- OutboundCall?: boolean;
5283
+ OutboundCall?: boolean | undefined;
5284
5284
  /**
5285
5285
  * <p>Allows or denies inbound SMS messaging for the specified phone number.</p>
5286
5286
  * @public
5287
5287
  */
5288
- InboundSMS?: boolean;
5288
+ InboundSMS?: boolean | undefined;
5289
5289
  /**
5290
5290
  * <p>Allows or denies outbound SMS messaging for the specified phone number.</p>
5291
5291
  * @public
5292
5292
  */
5293
- OutboundSMS?: boolean;
5293
+ OutboundSMS?: boolean | undefined;
5294
5294
  /**
5295
5295
  * <p>Allows or denies inbound MMS messaging for the specified phone number.</p>
5296
5296
  * @public
5297
5297
  */
5298
- InboundMMS?: boolean;
5298
+ InboundMMS?: boolean | undefined;
5299
5299
  /**
5300
5300
  * <p>Allows or denies outbound MMS messaging for the specified phone number.</p>
5301
5301
  * @public
5302
5302
  */
5303
- OutboundMMS?: boolean;
5303
+ OutboundMMS?: boolean | undefined;
5304
5304
  }
5305
5305
  /**
5306
5306
  * @public
@@ -5342,67 +5342,67 @@ export interface PhoneNumber {
5342
5342
  * <p>The phone number ID.</p>
5343
5343
  * @public
5344
5344
  */
5345
- PhoneNumberId?: string;
5345
+ PhoneNumberId?: string | undefined;
5346
5346
  /**
5347
5347
  * <p>The phone number, in E.164 format.</p>
5348
5348
  * @public
5349
5349
  */
5350
- E164PhoneNumber?: string;
5350
+ E164PhoneNumber?: string | undefined;
5351
5351
  /**
5352
5352
  * <p>The phone number country. Format: ISO 3166-1 alpha-2.</p>
5353
5353
  * @public
5354
5354
  */
5355
- Country?: string;
5355
+ Country?: string | undefined;
5356
5356
  /**
5357
5357
  * <p>The phone number type.</p>
5358
5358
  * @public
5359
5359
  */
5360
- Type?: PhoneNumberType;
5360
+ Type?: PhoneNumberType | undefined;
5361
5361
  /**
5362
5362
  * <p>The phone number product type.</p>
5363
5363
  * @public
5364
5364
  */
5365
- ProductType?: PhoneNumberProductType;
5365
+ ProductType?: PhoneNumberProductType | undefined;
5366
5366
  /**
5367
5367
  * <p>The phone number status.</p>
5368
5368
  * @public
5369
5369
  */
5370
- Status?: PhoneNumberStatus;
5370
+ Status?: PhoneNumberStatus | undefined;
5371
5371
  /**
5372
5372
  * <p>The phone number capabilities.</p>
5373
5373
  * @public
5374
5374
  */
5375
- Capabilities?: PhoneNumberCapabilities;
5375
+ Capabilities?: PhoneNumberCapabilities | undefined;
5376
5376
  /**
5377
5377
  * <p>The phone number associations.</p>
5378
5378
  * @public
5379
5379
  */
5380
- Associations?: PhoneNumberAssociation[];
5380
+ Associations?: PhoneNumberAssociation[] | undefined;
5381
5381
  /**
5382
5382
  * <p>The outbound calling name associated with the phone number.</p>
5383
5383
  * @public
5384
5384
  */
5385
- CallingName?: string;
5385
+ CallingName?: string | undefined;
5386
5386
  /**
5387
5387
  * <p>The outbound calling name status.</p>
5388
5388
  * @public
5389
5389
  */
5390
- CallingNameStatus?: CallingNameStatus;
5390
+ CallingNameStatus?: CallingNameStatus | undefined;
5391
5391
  /**
5392
5392
  * <p>The phone number creation timestamp, in ISO 8601 format.</p>
5393
5393
  * @public
5394
5394
  */
5395
- CreatedTimestamp?: Date;
5395
+ CreatedTimestamp?: Date | undefined;
5396
5396
  /**
5397
5397
  * <p>The updated phone number timestamp, in ISO 8601 format.</p>
5398
5398
  * @public
5399
5399
  */
5400
- UpdatedTimestamp?: Date;
5400
+ UpdatedTimestamp?: Date | undefined;
5401
5401
  /**
5402
5402
  * <p>The deleted phone number timestamp, in ISO 8601 format.</p>
5403
5403
  * @public
5404
5404
  */
5405
- DeletionTimestamp?: Date;
5405
+ DeletionTimestamp?: Date | undefined;
5406
5406
  }
5407
5407
  /**
5408
5408
  * @public
@@ -5412,7 +5412,7 @@ export interface GetPhoneNumberResponse {
5412
5412
  * <p>The phone number details.</p>
5413
5413
  * @public
5414
5414
  */
5415
- PhoneNumber?: PhoneNumber;
5415
+ PhoneNumber?: PhoneNumber | undefined;
5416
5416
  }
5417
5417
  /**
5418
5418
  * @public
@@ -5432,7 +5432,7 @@ export interface GetPhoneNumberOrderResponse {
5432
5432
  * <p>The phone number order details.</p>
5433
5433
  * @public
5434
5434
  */
5435
- PhoneNumberOrder?: PhoneNumberOrder;
5435
+ PhoneNumberOrder?: PhoneNumberOrder | undefined;
5436
5436
  }
5437
5437
  /**
5438
5438
  * @public
@@ -5442,12 +5442,12 @@ export interface GetPhoneNumberSettingsResponse {
5442
5442
  * <p>The default outbound calling name for the account.</p>
5443
5443
  * @public
5444
5444
  */
5445
- CallingName?: string;
5445
+ CallingName?: string | undefined;
5446
5446
  /**
5447
5447
  * <p>The updated outbound calling name timestamp, in ISO 8601 format.</p>
5448
5448
  * @public
5449
5449
  */
5450
- CallingNameUpdatedTimestamp?: Date;
5450
+ CallingNameUpdatedTimestamp?: Date | undefined;
5451
5451
  }
5452
5452
  /**
5453
5453
  * @public
@@ -5472,7 +5472,7 @@ export interface GetProxySessionResponse {
5472
5472
  * <p>The proxy session details.</p>
5473
5473
  * @public
5474
5474
  */
5475
- ProxySession?: ProxySession;
5475
+ ProxySession?: ProxySession | undefined;
5476
5476
  }
5477
5477
  /**
5478
5478
  * @public