@aws-sdk/client-workmail 3.687.0 → 3.692.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-types/models/models_0.d.ts +439 -439
- package/dist-types/ts3.4/models/models_0.d.ts +441 -439
- package/package.json +35 -35
|
@@ -21,71 +21,71 @@ export interface AccessControlRule {
|
|
|
21
21
|
* <p>The rule name.</p>
|
|
22
22
|
* @public
|
|
23
23
|
*/
|
|
24
|
-
Name?: string;
|
|
24
|
+
Name?: string | undefined;
|
|
25
25
|
/**
|
|
26
26
|
* <p>The rule effect.</p>
|
|
27
27
|
* @public
|
|
28
28
|
*/
|
|
29
|
-
Effect?: AccessControlRuleEffect;
|
|
29
|
+
Effect?: AccessControlRuleEffect | undefined;
|
|
30
30
|
/**
|
|
31
31
|
* <p>The rule description.</p>
|
|
32
32
|
* @public
|
|
33
33
|
*/
|
|
34
|
-
Description?: string;
|
|
34
|
+
Description?: string | undefined;
|
|
35
35
|
/**
|
|
36
36
|
* <p>IPv4 CIDR ranges to include in the rule.</p>
|
|
37
37
|
* @public
|
|
38
38
|
*/
|
|
39
|
-
IpRanges?: string[];
|
|
39
|
+
IpRanges?: string[] | undefined;
|
|
40
40
|
/**
|
|
41
41
|
* <p>IPv4 CIDR ranges to exclude from the rule.</p>
|
|
42
42
|
* @public
|
|
43
43
|
*/
|
|
44
|
-
NotIpRanges?: string[];
|
|
44
|
+
NotIpRanges?: string[] | undefined;
|
|
45
45
|
/**
|
|
46
46
|
* <p>Access protocol actions to include in the rule. Valid values include
|
|
47
47
|
* <code>ActiveSync</code>, <code>AutoDiscover</code>, <code>EWS</code>, <code>IMAP</code>,
|
|
48
48
|
* <code>SMTP</code>, <code>WindowsOutlook</code>, and <code>WebMail</code>.</p>
|
|
49
49
|
* @public
|
|
50
50
|
*/
|
|
51
|
-
Actions?: string[];
|
|
51
|
+
Actions?: string[] | undefined;
|
|
52
52
|
/**
|
|
53
53
|
* <p>Access protocol actions to exclude from the rule. Valid values include
|
|
54
54
|
* <code>ActiveSync</code>, <code>AutoDiscover</code>, <code>EWS</code>, <code>IMAP</code>,
|
|
55
55
|
* <code>SMTP</code>, <code>WindowsOutlook</code>, and <code>WebMail</code>.</p>
|
|
56
56
|
* @public
|
|
57
57
|
*/
|
|
58
|
-
NotActions?: string[];
|
|
58
|
+
NotActions?: string[] | undefined;
|
|
59
59
|
/**
|
|
60
60
|
* <p>User IDs to include in the rule.</p>
|
|
61
61
|
* @public
|
|
62
62
|
*/
|
|
63
|
-
UserIds?: string[];
|
|
63
|
+
UserIds?: string[] | undefined;
|
|
64
64
|
/**
|
|
65
65
|
* <p>User IDs to exclude from the rule.</p>
|
|
66
66
|
* @public
|
|
67
67
|
*/
|
|
68
|
-
NotUserIds?: string[];
|
|
68
|
+
NotUserIds?: string[] | undefined;
|
|
69
69
|
/**
|
|
70
70
|
* <p>The date that the rule was created.</p>
|
|
71
71
|
* @public
|
|
72
72
|
*/
|
|
73
|
-
DateCreated?: Date;
|
|
73
|
+
DateCreated?: Date | undefined;
|
|
74
74
|
/**
|
|
75
75
|
* <p>The date that the rule was modified.</p>
|
|
76
76
|
* @public
|
|
77
77
|
*/
|
|
78
|
-
DateModified?: Date;
|
|
78
|
+
DateModified?: Date | undefined;
|
|
79
79
|
/**
|
|
80
80
|
* <p>Impersonation role IDs to include in the rule.</p>
|
|
81
81
|
* @public
|
|
82
82
|
*/
|
|
83
|
-
ImpersonationRoleIds?: string[];
|
|
83
|
+
ImpersonationRoleIds?: string[] | undefined;
|
|
84
84
|
/**
|
|
85
85
|
* <p>Impersonation role IDs to exclude from the rule.</p>
|
|
86
86
|
* @public
|
|
87
87
|
*/
|
|
88
|
-
NotImpersonationRoleIds?: string[];
|
|
88
|
+
NotImpersonationRoleIds?: string[] | undefined;
|
|
89
89
|
}
|
|
90
90
|
/**
|
|
91
91
|
* @public
|
|
@@ -156,7 +156,7 @@ export interface AssociateDelegateToResourceResponse {
|
|
|
156
156
|
export declare class EntityNotFoundException extends __BaseException {
|
|
157
157
|
readonly name: "EntityNotFoundException";
|
|
158
158
|
readonly $fault: "client";
|
|
159
|
-
Message?: string;
|
|
159
|
+
Message?: string | undefined;
|
|
160
160
|
/**
|
|
161
161
|
* @internal
|
|
162
162
|
*/
|
|
@@ -170,7 +170,7 @@ export declare class EntityNotFoundException extends __BaseException {
|
|
|
170
170
|
export declare class EntityStateException extends __BaseException {
|
|
171
171
|
readonly name: "EntityStateException";
|
|
172
172
|
readonly $fault: "client";
|
|
173
|
-
Message?: string;
|
|
173
|
+
Message?: string | undefined;
|
|
174
174
|
/**
|
|
175
175
|
* @internal
|
|
176
176
|
*/
|
|
@@ -183,7 +183,7 @@ export declare class EntityStateException extends __BaseException {
|
|
|
183
183
|
export declare class InvalidParameterException extends __BaseException {
|
|
184
184
|
readonly name: "InvalidParameterException";
|
|
185
185
|
readonly $fault: "client";
|
|
186
|
-
Message?: string;
|
|
186
|
+
Message?: string | undefined;
|
|
187
187
|
/**
|
|
188
188
|
* @internal
|
|
189
189
|
*/
|
|
@@ -197,7 +197,7 @@ export declare class InvalidParameterException extends __BaseException {
|
|
|
197
197
|
export declare class OrganizationNotFoundException extends __BaseException {
|
|
198
198
|
readonly name: "OrganizationNotFoundException";
|
|
199
199
|
readonly $fault: "client";
|
|
200
|
-
Message?: string;
|
|
200
|
+
Message?: string | undefined;
|
|
201
201
|
/**
|
|
202
202
|
* @internal
|
|
203
203
|
*/
|
|
@@ -211,7 +211,7 @@ export declare class OrganizationNotFoundException extends __BaseException {
|
|
|
211
211
|
export declare class OrganizationStateException extends __BaseException {
|
|
212
212
|
readonly name: "OrganizationStateException";
|
|
213
213
|
readonly $fault: "client";
|
|
214
|
-
Message?: string;
|
|
214
|
+
Message?: string | undefined;
|
|
215
215
|
/**
|
|
216
216
|
* @internal
|
|
217
217
|
*/
|
|
@@ -224,7 +224,7 @@ export declare class OrganizationStateException extends __BaseException {
|
|
|
224
224
|
export declare class UnsupportedOperationException extends __BaseException {
|
|
225
225
|
readonly name: "UnsupportedOperationException";
|
|
226
226
|
readonly $fault: "client";
|
|
227
|
-
Message?: string;
|
|
227
|
+
Message?: string | undefined;
|
|
228
228
|
/**
|
|
229
229
|
* @internal
|
|
230
230
|
*/
|
|
@@ -286,7 +286,7 @@ export interface AssociateMemberToGroupResponse {
|
|
|
286
286
|
export declare class DirectoryServiceAuthenticationFailedException extends __BaseException {
|
|
287
287
|
readonly name: "DirectoryServiceAuthenticationFailedException";
|
|
288
288
|
readonly $fault: "client";
|
|
289
|
-
Message?: string;
|
|
289
|
+
Message?: string | undefined;
|
|
290
290
|
/**
|
|
291
291
|
* @internal
|
|
292
292
|
*/
|
|
@@ -299,7 +299,7 @@ export declare class DirectoryServiceAuthenticationFailedException extends __Bas
|
|
|
299
299
|
export declare class DirectoryUnavailableException extends __BaseException {
|
|
300
300
|
readonly name: "DirectoryUnavailableException";
|
|
301
301
|
readonly $fault: "client";
|
|
302
|
-
Message?: string;
|
|
302
|
+
Message?: string | undefined;
|
|
303
303
|
/**
|
|
304
304
|
* @internal
|
|
305
305
|
*/
|
|
@@ -328,12 +328,12 @@ export interface AssumeImpersonationRoleResponse {
|
|
|
328
328
|
* <p>The authentication token for the impersonation role.</p>
|
|
329
329
|
* @public
|
|
330
330
|
*/
|
|
331
|
-
Token?: string;
|
|
331
|
+
Token?: string | undefined;
|
|
332
332
|
/**
|
|
333
333
|
* <p>The authentication token's validity, in seconds.</p>
|
|
334
334
|
* @public
|
|
335
335
|
*/
|
|
336
|
-
ExpiresIn?: number;
|
|
336
|
+
ExpiresIn?: number | undefined;
|
|
337
337
|
}
|
|
338
338
|
/**
|
|
339
339
|
* <p>The resource cannot be found.</p>
|
|
@@ -342,7 +342,7 @@ export interface AssumeImpersonationRoleResponse {
|
|
|
342
342
|
export declare class ResourceNotFoundException extends __BaseException {
|
|
343
343
|
readonly name: "ResourceNotFoundException";
|
|
344
344
|
readonly $fault: "client";
|
|
345
|
-
Message?: string;
|
|
345
|
+
Message?: string | undefined;
|
|
346
346
|
/**
|
|
347
347
|
* @internal
|
|
348
348
|
*/
|
|
@@ -358,12 +358,12 @@ export interface RedactedEwsAvailabilityProvider {
|
|
|
358
358
|
* <p>The endpoint of the remote EWS server.</p>
|
|
359
359
|
* @public
|
|
360
360
|
*/
|
|
361
|
-
EwsEndpoint?: string;
|
|
361
|
+
EwsEndpoint?: string | undefined;
|
|
362
362
|
/**
|
|
363
363
|
* <p>The username used to authenticate the remote EWS server.</p>
|
|
364
364
|
* @public
|
|
365
365
|
*/
|
|
366
|
-
EwsUsername?: string;
|
|
366
|
+
EwsUsername?: string | undefined;
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
369
|
* <p>Describes a Lambda based availability provider.</p>
|
|
@@ -398,34 +398,34 @@ export interface AvailabilityConfiguration {
|
|
|
398
398
|
* <p>Displays the domain to which the provider applies.</p>
|
|
399
399
|
* @public
|
|
400
400
|
*/
|
|
401
|
-
DomainName?: string;
|
|
401
|
+
DomainName?: string | undefined;
|
|
402
402
|
/**
|
|
403
403
|
* <p>Displays the provider type that applies to this domain.</p>
|
|
404
404
|
* @public
|
|
405
405
|
*/
|
|
406
|
-
ProviderType?: AvailabilityProviderType;
|
|
406
|
+
ProviderType?: AvailabilityProviderType | undefined;
|
|
407
407
|
/**
|
|
408
408
|
* <p>If <code>ProviderType</code> is <code>EWS</code>, then this field contains
|
|
409
409
|
* <code>RedactedEwsAvailabilityProvider</code>. Otherwise, it is not required.</p>
|
|
410
410
|
* @public
|
|
411
411
|
*/
|
|
412
|
-
EwsProvider?: RedactedEwsAvailabilityProvider;
|
|
412
|
+
EwsProvider?: RedactedEwsAvailabilityProvider | undefined;
|
|
413
413
|
/**
|
|
414
414
|
* <p>If ProviderType is <code>LAMBDA</code> then this field contains
|
|
415
415
|
* <code>LambdaAvailabilityProvider</code>. Otherwise, it is not required.</p>
|
|
416
416
|
* @public
|
|
417
417
|
*/
|
|
418
|
-
LambdaProvider?: LambdaAvailabilityProvider;
|
|
418
|
+
LambdaProvider?: LambdaAvailabilityProvider | undefined;
|
|
419
419
|
/**
|
|
420
420
|
* <p>The date and time at which the availability configuration was created.</p>
|
|
421
421
|
* @public
|
|
422
422
|
*/
|
|
423
|
-
DateCreated?: Date;
|
|
423
|
+
DateCreated?: Date | undefined;
|
|
424
424
|
/**
|
|
425
425
|
* <p>The date and time at which the availability configuration was last modified.</p>
|
|
426
426
|
* @public
|
|
427
427
|
*/
|
|
428
|
-
DateModified?: Date;
|
|
428
|
+
DateModified?: Date | undefined;
|
|
429
429
|
}
|
|
430
430
|
/**
|
|
431
431
|
* <p>At least one delegate must be associated to the resource to disable automatic replies
|
|
@@ -438,17 +438,17 @@ export interface BookingOptions {
|
|
|
438
438
|
* must be associated to the resource.</p>
|
|
439
439
|
* @public
|
|
440
440
|
*/
|
|
441
|
-
AutoAcceptRequests?: boolean;
|
|
441
|
+
AutoAcceptRequests?: boolean | undefined;
|
|
442
442
|
/**
|
|
443
443
|
* <p>The resource's ability to automatically decline any recurring requests.</p>
|
|
444
444
|
* @public
|
|
445
445
|
*/
|
|
446
|
-
AutoDeclineRecurringRequests?: boolean;
|
|
446
|
+
AutoDeclineRecurringRequests?: boolean | undefined;
|
|
447
447
|
/**
|
|
448
448
|
* <p>The resource's ability to automatically decline any conflicting requests.</p>
|
|
449
449
|
* @public
|
|
450
450
|
*/
|
|
451
|
-
AutoDeclineConflictingRequests?: boolean;
|
|
451
|
+
AutoDeclineConflictingRequests?: boolean | undefined;
|
|
452
452
|
}
|
|
453
453
|
/**
|
|
454
454
|
* @public
|
|
@@ -458,7 +458,7 @@ export interface CancelMailboxExportJobRequest {
|
|
|
458
458
|
* <p>The idempotency token for the client request.</p>
|
|
459
459
|
* @public
|
|
460
460
|
*/
|
|
461
|
-
ClientToken?: string;
|
|
461
|
+
ClientToken?: string | undefined;
|
|
462
462
|
/**
|
|
463
463
|
* <p>The job ID.</p>
|
|
464
464
|
* @public
|
|
@@ -508,7 +508,7 @@ export interface CreateAliasResponse {
|
|
|
508
508
|
export declare class EmailAddressInUseException extends __BaseException {
|
|
509
509
|
readonly name: "EmailAddressInUseException";
|
|
510
510
|
readonly $fault: "client";
|
|
511
|
-
Message?: string;
|
|
511
|
+
Message?: string | undefined;
|
|
512
512
|
/**
|
|
513
513
|
* @internal
|
|
514
514
|
*/
|
|
@@ -521,7 +521,7 @@ export declare class EmailAddressInUseException extends __BaseException {
|
|
|
521
521
|
export declare class LimitExceededException extends __BaseException {
|
|
522
522
|
readonly name: "LimitExceededException";
|
|
523
523
|
readonly $fault: "client";
|
|
524
|
-
Message?: string;
|
|
524
|
+
Message?: string | undefined;
|
|
525
525
|
/**
|
|
526
526
|
* @internal
|
|
527
527
|
*/
|
|
@@ -534,7 +534,7 @@ export declare class LimitExceededException extends __BaseException {
|
|
|
534
534
|
export declare class MailDomainNotFoundException extends __BaseException {
|
|
535
535
|
readonly name: "MailDomainNotFoundException";
|
|
536
536
|
readonly $fault: "client";
|
|
537
|
-
Message?: string;
|
|
537
|
+
Message?: string | undefined;
|
|
538
538
|
/**
|
|
539
539
|
* @internal
|
|
540
540
|
*/
|
|
@@ -548,7 +548,7 @@ export declare class MailDomainNotFoundException extends __BaseException {
|
|
|
548
548
|
export declare class MailDomainStateException extends __BaseException {
|
|
549
549
|
readonly name: "MailDomainStateException";
|
|
550
550
|
readonly $fault: "client";
|
|
551
|
-
Message?: string;
|
|
551
|
+
Message?: string | undefined;
|
|
552
552
|
/**
|
|
553
553
|
* @internal
|
|
554
554
|
*/
|
|
@@ -583,7 +583,7 @@ export interface CreateAvailabilityConfigurationRequest {
|
|
|
583
583
|
* <p>An idempotent token that ensures that an API request is executed only once.</p>
|
|
584
584
|
* @public
|
|
585
585
|
*/
|
|
586
|
-
ClientToken?: string;
|
|
586
|
+
ClientToken?: string | undefined;
|
|
587
587
|
/**
|
|
588
588
|
* <p>The WorkMail organization for which the <code>AvailabilityConfiguration</code> will be created.</p>
|
|
589
589
|
* @public
|
|
@@ -598,12 +598,12 @@ export interface CreateAvailabilityConfigurationRequest {
|
|
|
598
598
|
* <p>Exchange Web Services (EWS) availability provider definition. The request must contain exactly one provider definition, either <code>EwsProvider</code> or <code>LambdaProvider</code>.</p>
|
|
599
599
|
* @public
|
|
600
600
|
*/
|
|
601
|
-
EwsProvider?: EwsAvailabilityProvider;
|
|
601
|
+
EwsProvider?: EwsAvailabilityProvider | undefined;
|
|
602
602
|
/**
|
|
603
603
|
* <p>Lambda availability provider definition. The request must contain exactly one provider definition, either <code>EwsProvider</code> or <code>LambdaProvider</code>.</p>
|
|
604
604
|
* @public
|
|
605
605
|
*/
|
|
606
|
-
LambdaProvider?: LambdaAvailabilityProvider;
|
|
606
|
+
LambdaProvider?: LambdaAvailabilityProvider | undefined;
|
|
607
607
|
}
|
|
608
608
|
/**
|
|
609
609
|
* @public
|
|
@@ -617,7 +617,7 @@ export interface CreateAvailabilityConfigurationResponse {
|
|
|
617
617
|
export declare class NameAvailabilityException extends __BaseException {
|
|
618
618
|
readonly name: "NameAvailabilityException";
|
|
619
619
|
readonly $fault: "client";
|
|
620
|
-
Message?: string;
|
|
620
|
+
Message?: string | undefined;
|
|
621
621
|
/**
|
|
622
622
|
* @internal
|
|
623
623
|
*/
|
|
@@ -641,7 +641,7 @@ export interface CreateGroupRequest {
|
|
|
641
641
|
* <p>If this parameter is enabled, the group will be hidden from the address book.</p>
|
|
642
642
|
* @public
|
|
643
643
|
*/
|
|
644
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
644
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
645
645
|
}
|
|
646
646
|
/**
|
|
647
647
|
* @public
|
|
@@ -651,7 +651,7 @@ export interface CreateGroupResponse {
|
|
|
651
651
|
* <p>The identifier of the group.</p>
|
|
652
652
|
* @public
|
|
653
653
|
*/
|
|
654
|
-
GroupId?: string;
|
|
654
|
+
GroupId?: string | undefined;
|
|
655
655
|
}
|
|
656
656
|
/**
|
|
657
657
|
* <p>This user, group, or resource name is not allowed in WorkMail.</p>
|
|
@@ -660,7 +660,7 @@ export interface CreateGroupResponse {
|
|
|
660
660
|
export declare class ReservedNameException extends __BaseException {
|
|
661
661
|
readonly name: "ReservedNameException";
|
|
662
662
|
readonly $fault: "client";
|
|
663
|
-
Message?: string;
|
|
663
|
+
Message?: string | undefined;
|
|
664
664
|
/**
|
|
665
665
|
* @internal
|
|
666
666
|
*/
|
|
@@ -694,7 +694,7 @@ export interface CreateIdentityCenterApplicationRequest {
|
|
|
694
694
|
* </p>
|
|
695
695
|
* @public
|
|
696
696
|
*/
|
|
697
|
-
ClientToken?: string;
|
|
697
|
+
ClientToken?: string | undefined;
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* @public
|
|
@@ -706,7 +706,7 @@ export interface CreateIdentityCenterApplicationResponse {
|
|
|
706
706
|
* </p>
|
|
707
707
|
* @public
|
|
708
708
|
*/
|
|
709
|
-
ApplicationArn?: string;
|
|
709
|
+
ApplicationArn?: string | undefined;
|
|
710
710
|
}
|
|
711
711
|
/**
|
|
712
712
|
* <p>The rules for the given impersonation role.</p>
|
|
@@ -722,12 +722,12 @@ export interface ImpersonationRule {
|
|
|
722
722
|
* <p>The rule name.</p>
|
|
723
723
|
* @public
|
|
724
724
|
*/
|
|
725
|
-
Name?: string;
|
|
725
|
+
Name?: string | undefined;
|
|
726
726
|
/**
|
|
727
727
|
* <p>The rule description.</p>
|
|
728
728
|
* @public
|
|
729
729
|
*/
|
|
730
|
-
Description?: string;
|
|
730
|
+
Description?: string | undefined;
|
|
731
731
|
/**
|
|
732
732
|
* <p>The effect of the rule when it matches the input. Allowed effect values are
|
|
733
733
|
* <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
@@ -738,12 +738,12 @@ export interface ImpersonationRule {
|
|
|
738
738
|
* <p>A list of user IDs that match the rule.</p>
|
|
739
739
|
* @public
|
|
740
740
|
*/
|
|
741
|
-
TargetUsers?: string[];
|
|
741
|
+
TargetUsers?: string[] | undefined;
|
|
742
742
|
/**
|
|
743
743
|
* <p>A list of user IDs that don't match the rule.</p>
|
|
744
744
|
* @public
|
|
745
745
|
*/
|
|
746
|
-
NotTargetUsers?: string[];
|
|
746
|
+
NotTargetUsers?: string[] | undefined;
|
|
747
747
|
}
|
|
748
748
|
/**
|
|
749
749
|
* @public
|
|
@@ -765,7 +765,7 @@ export interface CreateImpersonationRoleRequest {
|
|
|
765
765
|
* <p>The idempotency token for the client request.</p>
|
|
766
766
|
* @public
|
|
767
767
|
*/
|
|
768
|
-
ClientToken?: string;
|
|
768
|
+
ClientToken?: string | undefined;
|
|
769
769
|
/**
|
|
770
770
|
* <p>The WorkMail organization to create the new impersonation role within.</p>
|
|
771
771
|
* @public
|
|
@@ -786,7 +786,7 @@ export interface CreateImpersonationRoleRequest {
|
|
|
786
786
|
* <p>The description of the new impersonation role.</p>
|
|
787
787
|
* @public
|
|
788
788
|
*/
|
|
789
|
-
Description?: string;
|
|
789
|
+
Description?: string | undefined;
|
|
790
790
|
/**
|
|
791
791
|
* <p>The list of rules for the impersonation role.</p>
|
|
792
792
|
* @public
|
|
@@ -801,7 +801,7 @@ export interface CreateImpersonationRoleResponse {
|
|
|
801
801
|
* <p>The new impersonation role ID.</p>
|
|
802
802
|
* @public
|
|
803
803
|
*/
|
|
804
|
-
ImpersonationRoleId?: string;
|
|
804
|
+
ImpersonationRoleId?: string | undefined;
|
|
805
805
|
}
|
|
806
806
|
/**
|
|
807
807
|
* @public
|
|
@@ -828,7 +828,7 @@ export interface CreateMobileDeviceAccessRuleRequest {
|
|
|
828
828
|
* <p>The idempotency token for the client request.</p>
|
|
829
829
|
* @public
|
|
830
830
|
*/
|
|
831
|
-
ClientToken?: string;
|
|
831
|
+
ClientToken?: string | undefined;
|
|
832
832
|
/**
|
|
833
833
|
* <p>The rule name.</p>
|
|
834
834
|
* @public
|
|
@@ -838,7 +838,7 @@ export interface CreateMobileDeviceAccessRuleRequest {
|
|
|
838
838
|
* <p>The rule description.</p>
|
|
839
839
|
* @public
|
|
840
840
|
*/
|
|
841
|
-
Description?: string;
|
|
841
|
+
Description?: string | undefined;
|
|
842
842
|
/**
|
|
843
843
|
* <p>The effect of the rule when it matches. Allowed values are <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
844
844
|
* @public
|
|
@@ -848,42 +848,42 @@ export interface CreateMobileDeviceAccessRuleRequest {
|
|
|
848
848
|
* <p>Device types that the rule will match.</p>
|
|
849
849
|
* @public
|
|
850
850
|
*/
|
|
851
|
-
DeviceTypes?: string[];
|
|
851
|
+
DeviceTypes?: string[] | undefined;
|
|
852
852
|
/**
|
|
853
853
|
* <p>Device types that the rule <b>will not</b> match. All other device types will match.</p>
|
|
854
854
|
* @public
|
|
855
855
|
*/
|
|
856
|
-
NotDeviceTypes?: string[];
|
|
856
|
+
NotDeviceTypes?: string[] | undefined;
|
|
857
857
|
/**
|
|
858
858
|
* <p>Device models that the rule will match.</p>
|
|
859
859
|
* @public
|
|
860
860
|
*/
|
|
861
|
-
DeviceModels?: string[];
|
|
861
|
+
DeviceModels?: string[] | undefined;
|
|
862
862
|
/**
|
|
863
863
|
* <p>Device models that the rule <b>will not</b> match. All other device models will match.</p>
|
|
864
864
|
* @public
|
|
865
865
|
*/
|
|
866
|
-
NotDeviceModels?: string[];
|
|
866
|
+
NotDeviceModels?: string[] | undefined;
|
|
867
867
|
/**
|
|
868
868
|
* <p>Device operating systems that the rule will match.</p>
|
|
869
869
|
* @public
|
|
870
870
|
*/
|
|
871
|
-
DeviceOperatingSystems?: string[];
|
|
871
|
+
DeviceOperatingSystems?: string[] | undefined;
|
|
872
872
|
/**
|
|
873
873
|
* <p>Device operating systems that the rule <b>will not</b> match. All other device operating systems will match.</p>
|
|
874
874
|
* @public
|
|
875
875
|
*/
|
|
876
|
-
NotDeviceOperatingSystems?: string[];
|
|
876
|
+
NotDeviceOperatingSystems?: string[] | undefined;
|
|
877
877
|
/**
|
|
878
878
|
* <p>Device user agents that the rule will match.</p>
|
|
879
879
|
* @public
|
|
880
880
|
*/
|
|
881
|
-
DeviceUserAgents?: string[];
|
|
881
|
+
DeviceUserAgents?: string[] | undefined;
|
|
882
882
|
/**
|
|
883
883
|
* <p>Device user agents that the rule <b>will not</b> match. All other device user agents will match.</p>
|
|
884
884
|
* @public
|
|
885
885
|
*/
|
|
886
|
-
NotDeviceUserAgents?: string[];
|
|
886
|
+
NotDeviceUserAgents?: string[] | undefined;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* @public
|
|
@@ -893,7 +893,7 @@ export interface CreateMobileDeviceAccessRuleResponse {
|
|
|
893
893
|
* <p>The identifier for the newly created mobile device access rule.</p>
|
|
894
894
|
* @public
|
|
895
895
|
*/
|
|
896
|
-
MobileDeviceAccessRuleId?: string;
|
|
896
|
+
MobileDeviceAccessRuleId?: string | undefined;
|
|
897
897
|
}
|
|
898
898
|
/**
|
|
899
899
|
* <p>The domain to associate with an WorkMail organization.</p>
|
|
@@ -910,7 +910,7 @@ export interface Domain {
|
|
|
910
910
|
* <p>The hosted zone ID for a domain hosted in Route 53. Required when configuring a domain hosted in Route 53.</p>
|
|
911
911
|
* @public
|
|
912
912
|
*/
|
|
913
|
-
HostedZoneId?: string;
|
|
913
|
+
HostedZoneId?: string | undefined;
|
|
914
914
|
}
|
|
915
915
|
/**
|
|
916
916
|
* @public
|
|
@@ -920,7 +920,7 @@ export interface CreateOrganizationRequest {
|
|
|
920
920
|
* <p>The AWS Directory Service directory ID.</p>
|
|
921
921
|
* @public
|
|
922
922
|
*/
|
|
923
|
-
DirectoryId?: string;
|
|
923
|
+
DirectoryId?: string | undefined;
|
|
924
924
|
/**
|
|
925
925
|
* <p>The organization alias.</p>
|
|
926
926
|
* @public
|
|
@@ -930,24 +930,24 @@ export interface CreateOrganizationRequest {
|
|
|
930
930
|
* <p>The idempotency token associated with the request.</p>
|
|
931
931
|
* @public
|
|
932
932
|
*/
|
|
933
|
-
ClientToken?: string;
|
|
933
|
+
ClientToken?: string | undefined;
|
|
934
934
|
/**
|
|
935
935
|
* <p>The email domains to associate with the organization.</p>
|
|
936
936
|
* @public
|
|
937
937
|
*/
|
|
938
|
-
Domains?: Domain[];
|
|
938
|
+
Domains?: Domain[] | undefined;
|
|
939
939
|
/**
|
|
940
940
|
* <p>The Amazon Resource Name (ARN) of a customer managed key from AWS KMS.</p>
|
|
941
941
|
* @public
|
|
942
942
|
*/
|
|
943
|
-
KmsKeyArn?: string;
|
|
943
|
+
KmsKeyArn?: string | undefined;
|
|
944
944
|
/**
|
|
945
945
|
* <p>When <code>true</code>, allows organization interoperability between WorkMail and
|
|
946
946
|
* Microsoft Exchange. If <code>true</code>, you must include a AD Connector directory ID in
|
|
947
947
|
* the request.</p>
|
|
948
948
|
* @public
|
|
949
949
|
*/
|
|
950
|
-
EnableInteroperability?: boolean;
|
|
950
|
+
EnableInteroperability?: boolean | undefined;
|
|
951
951
|
}
|
|
952
952
|
/**
|
|
953
953
|
* @public
|
|
@@ -957,7 +957,7 @@ export interface CreateOrganizationResponse {
|
|
|
957
957
|
* <p>The organization ID.</p>
|
|
958
958
|
* @public
|
|
959
959
|
*/
|
|
960
|
-
OrganizationId?: string;
|
|
960
|
+
OrganizationId?: string | undefined;
|
|
961
961
|
}
|
|
962
962
|
/**
|
|
963
963
|
* <p>The directory is already in use by another WorkMail organization in the same account and Region.</p>
|
|
@@ -966,7 +966,7 @@ export interface CreateOrganizationResponse {
|
|
|
966
966
|
export declare class DirectoryInUseException extends __BaseException {
|
|
967
967
|
readonly name: "DirectoryInUseException";
|
|
968
968
|
readonly $fault: "client";
|
|
969
|
-
Message?: string;
|
|
969
|
+
Message?: string | undefined;
|
|
970
970
|
/**
|
|
971
971
|
* @internal
|
|
972
972
|
*/
|
|
@@ -1009,12 +1009,12 @@ export interface CreateResourceRequest {
|
|
|
1009
1009
|
* <p>Resource description.</p>
|
|
1010
1010
|
* @public
|
|
1011
1011
|
*/
|
|
1012
|
-
Description?: string;
|
|
1012
|
+
Description?: string | undefined;
|
|
1013
1013
|
/**
|
|
1014
1014
|
* <p>If this parameter is enabled, the resource will be hidden from the address book.</p>
|
|
1015
1015
|
* @public
|
|
1016
1016
|
*/
|
|
1017
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
1017
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
1018
1018
|
}
|
|
1019
1019
|
/**
|
|
1020
1020
|
* @public
|
|
@@ -1024,7 +1024,7 @@ export interface CreateResourceResponse {
|
|
|
1024
1024
|
* <p>The identifier of the new resource.</p>
|
|
1025
1025
|
* @public
|
|
1026
1026
|
*/
|
|
1027
|
-
ResourceId?: string;
|
|
1027
|
+
ResourceId?: string | undefined;
|
|
1028
1028
|
}
|
|
1029
1029
|
/**
|
|
1030
1030
|
* @public
|
|
@@ -1063,33 +1063,33 @@ export interface CreateUserRequest {
|
|
|
1063
1063
|
* <p>The password for the new user.</p>
|
|
1064
1064
|
* @public
|
|
1065
1065
|
*/
|
|
1066
|
-
Password?: string;
|
|
1066
|
+
Password?: string | undefined;
|
|
1067
1067
|
/**
|
|
1068
1068
|
* <p>The role of the new user.</p>
|
|
1069
1069
|
* <p>You cannot pass <i>SYSTEM_USER</i> or <i>RESOURCE</i> role in a single request. When a user role is not selected, the default role of <i>USER</i> is selected.</p>
|
|
1070
1070
|
* @public
|
|
1071
1071
|
*/
|
|
1072
|
-
Role?: UserRole;
|
|
1072
|
+
Role?: UserRole | undefined;
|
|
1073
1073
|
/**
|
|
1074
1074
|
* <p>The first name of the new user.</p>
|
|
1075
1075
|
* @public
|
|
1076
1076
|
*/
|
|
1077
|
-
FirstName?: string;
|
|
1077
|
+
FirstName?: string | undefined;
|
|
1078
1078
|
/**
|
|
1079
1079
|
* <p>The last name of the new user. </p>
|
|
1080
1080
|
* @public
|
|
1081
1081
|
*/
|
|
1082
|
-
LastName?: string;
|
|
1082
|
+
LastName?: string | undefined;
|
|
1083
1083
|
/**
|
|
1084
1084
|
* <p>If this parameter is enabled, the user will be hidden from the address book.</p>
|
|
1085
1085
|
* @public
|
|
1086
1086
|
*/
|
|
1087
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
1087
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
1088
1088
|
/**
|
|
1089
1089
|
* <p>User ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.</p>
|
|
1090
1090
|
* @public
|
|
1091
1091
|
*/
|
|
1092
|
-
IdentityProviderUserId?: string;
|
|
1092
|
+
IdentityProviderUserId?: string | undefined;
|
|
1093
1093
|
}
|
|
1094
1094
|
/**
|
|
1095
1095
|
* @public
|
|
@@ -1099,7 +1099,7 @@ export interface CreateUserResponse {
|
|
|
1099
1099
|
* <p>The identifier for the new user.</p>
|
|
1100
1100
|
* @public
|
|
1101
1101
|
*/
|
|
1102
|
-
UserId?: string;
|
|
1102
|
+
UserId?: string | undefined;
|
|
1103
1103
|
}
|
|
1104
1104
|
/**
|
|
1105
1105
|
* <p>The supplied password doesn't match the minimum security constraints, such as length
|
|
@@ -1109,7 +1109,7 @@ export interface CreateUserResponse {
|
|
|
1109
1109
|
export declare class InvalidPasswordException extends __BaseException {
|
|
1110
1110
|
readonly name: "InvalidPasswordException";
|
|
1111
1111
|
readonly $fault: "client";
|
|
1112
|
-
Message?: string;
|
|
1112
|
+
Message?: string | undefined;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* @internal
|
|
1115
1115
|
*/
|
|
@@ -1425,7 +1425,7 @@ export interface DeleteOrganizationRequest {
|
|
|
1425
1425
|
* <p>The idempotency token associated with the request.</p>
|
|
1426
1426
|
* @public
|
|
1427
1427
|
*/
|
|
1428
|
-
ClientToken?: string;
|
|
1428
|
+
ClientToken?: string | undefined;
|
|
1429
1429
|
/**
|
|
1430
1430
|
* <p>The organization ID.</p>
|
|
1431
1431
|
* @public
|
|
@@ -1440,12 +1440,12 @@ export interface DeleteOrganizationRequest {
|
|
|
1440
1440
|
* <p>Deletes a WorkMail organization even if the organization has enabled users.</p>
|
|
1441
1441
|
* @public
|
|
1442
1442
|
*/
|
|
1443
|
-
ForceDelete?: boolean;
|
|
1443
|
+
ForceDelete?: boolean | undefined;
|
|
1444
1444
|
/**
|
|
1445
1445
|
* <p>Deletes IAM Identity Center application for WorkMail. This action does not affect authentication settings for any organization.</p>
|
|
1446
1446
|
* @public
|
|
1447
1447
|
*/
|
|
1448
|
-
DeleteIdentityCenterApplication?: boolean;
|
|
1448
|
+
DeleteIdentityCenterApplication?: boolean | undefined;
|
|
1449
1449
|
}
|
|
1450
1450
|
/**
|
|
1451
1451
|
* @public
|
|
@@ -1455,12 +1455,12 @@ export interface DeleteOrganizationResponse {
|
|
|
1455
1455
|
* <p>The organization ID.</p>
|
|
1456
1456
|
* @public
|
|
1457
1457
|
*/
|
|
1458
|
-
OrganizationId?: string;
|
|
1458
|
+
OrganizationId?: string | undefined;
|
|
1459
1459
|
/**
|
|
1460
1460
|
* <p>The state of the organization.</p>
|
|
1461
1461
|
* @public
|
|
1462
1462
|
*/
|
|
1463
|
-
State?: string;
|
|
1463
|
+
State?: string | undefined;
|
|
1464
1464
|
}
|
|
1465
1465
|
/**
|
|
1466
1466
|
* @public
|
|
@@ -1623,7 +1623,7 @@ export interface DeregisterMailDomainResponse {
|
|
|
1623
1623
|
export declare class InvalidCustomSesConfigurationException extends __BaseException {
|
|
1624
1624
|
readonly name: "InvalidCustomSesConfigurationException";
|
|
1625
1625
|
readonly $fault: "client";
|
|
1626
|
-
Message?: string;
|
|
1626
|
+
Message?: string | undefined;
|
|
1627
1627
|
/**
|
|
1628
1628
|
* @internal
|
|
1629
1629
|
*/
|
|
@@ -1636,7 +1636,7 @@ export declare class InvalidCustomSesConfigurationException extends __BaseExcept
|
|
|
1636
1636
|
export declare class MailDomainInUseException extends __BaseException {
|
|
1637
1637
|
readonly name: "MailDomainInUseException";
|
|
1638
1638
|
readonly $fault: "client";
|
|
1639
|
-
Message?: string;
|
|
1639
|
+
Message?: string | undefined;
|
|
1640
1640
|
/**
|
|
1641
1641
|
* @internal
|
|
1642
1642
|
*/
|
|
@@ -1660,12 +1660,12 @@ export interface DescribeEmailMonitoringConfigurationResponse {
|
|
|
1660
1660
|
* <p>The Amazon Resource Name (ARN) of the IAM Role associated with the email monitoring configuration.</p>
|
|
1661
1661
|
* @public
|
|
1662
1662
|
*/
|
|
1663
|
-
RoleArn?: string;
|
|
1663
|
+
RoleArn?: string | undefined;
|
|
1664
1664
|
/**
|
|
1665
1665
|
* <p>The Amazon Resource Name (ARN) of the CloudWatch Log group associated with the email monitoring configuration.</p>
|
|
1666
1666
|
* @public
|
|
1667
1667
|
*/
|
|
1668
|
-
LogGroupArn?: string;
|
|
1668
|
+
LogGroupArn?: string | undefined;
|
|
1669
1669
|
}
|
|
1670
1670
|
/**
|
|
1671
1671
|
* @public
|
|
@@ -1703,17 +1703,17 @@ export interface DescribeEntityResponse {
|
|
|
1703
1703
|
* <p>The entity ID under which the entity exists.</p>
|
|
1704
1704
|
* @public
|
|
1705
1705
|
*/
|
|
1706
|
-
EntityId?: string;
|
|
1706
|
+
EntityId?: string | undefined;
|
|
1707
1707
|
/**
|
|
1708
1708
|
* <p>Username, GroupName, or ResourceName based on entity type.</p>
|
|
1709
1709
|
* @public
|
|
1710
1710
|
*/
|
|
1711
|
-
Name?: string;
|
|
1711
|
+
Name?: string | undefined;
|
|
1712
1712
|
/**
|
|
1713
1713
|
* <p>Entity type.</p>
|
|
1714
1714
|
* @public
|
|
1715
1715
|
*/
|
|
1716
|
-
Type?: EntityType;
|
|
1716
|
+
Type?: EntityType | undefined;
|
|
1717
1717
|
}
|
|
1718
1718
|
/**
|
|
1719
1719
|
* @public
|
|
@@ -1763,40 +1763,40 @@ export interface DescribeGroupResponse {
|
|
|
1763
1763
|
* <p>The identifier of the described group.</p>
|
|
1764
1764
|
* @public
|
|
1765
1765
|
*/
|
|
1766
|
-
GroupId?: string;
|
|
1766
|
+
GroupId?: string | undefined;
|
|
1767
1767
|
/**
|
|
1768
1768
|
* <p>The name of the described group.</p>
|
|
1769
1769
|
* @public
|
|
1770
1770
|
*/
|
|
1771
|
-
Name?: string;
|
|
1771
|
+
Name?: string | undefined;
|
|
1772
1772
|
/**
|
|
1773
1773
|
* <p>The email of the described group.</p>
|
|
1774
1774
|
* @public
|
|
1775
1775
|
*/
|
|
1776
|
-
Email?: string;
|
|
1776
|
+
Email?: string | undefined;
|
|
1777
1777
|
/**
|
|
1778
1778
|
* <p>The state of the user: enabled (registered to WorkMail) or disabled (deregistered or
|
|
1779
1779
|
* never registered to WorkMail).</p>
|
|
1780
1780
|
* @public
|
|
1781
1781
|
*/
|
|
1782
|
-
State?: EntityState;
|
|
1782
|
+
State?: EntityState | undefined;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* <p>The date and time when a user was registered to WorkMail, in UNIX epoch time
|
|
1785
1785
|
* format.</p>
|
|
1786
1786
|
* @public
|
|
1787
1787
|
*/
|
|
1788
|
-
EnabledDate?: Date;
|
|
1788
|
+
EnabledDate?: Date | undefined;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* <p>The date and time when a user was deregistered from WorkMail, in UNIX epoch time
|
|
1791
1791
|
* format.</p>
|
|
1792
1792
|
* @public
|
|
1793
1793
|
*/
|
|
1794
|
-
DisabledDate?: Date;
|
|
1794
|
+
DisabledDate?: Date | undefined;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* <p>If the value is set to <i>true</i>, the group is hidden from the address book.</p>
|
|
1797
1797
|
* @public
|
|
1798
1798
|
*/
|
|
1799
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
1799
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
1800
1800
|
}
|
|
1801
1801
|
/**
|
|
1802
1802
|
* @public
|
|
@@ -1885,7 +1885,7 @@ export interface PersonalAccessTokenConfiguration {
|
|
|
1885
1885
|
* </p>
|
|
1886
1886
|
* @public
|
|
1887
1887
|
*/
|
|
1888
|
-
LifetimeInDays?: number;
|
|
1888
|
+
LifetimeInDays?: number | undefined;
|
|
1889
1889
|
}
|
|
1890
1890
|
/**
|
|
1891
1891
|
* @public
|
|
@@ -1896,21 +1896,21 @@ export interface DescribeIdentityProviderConfigurationResponse {
|
|
|
1896
1896
|
* The authentication mode used in WorkMail.</p>
|
|
1897
1897
|
* @public
|
|
1898
1898
|
*/
|
|
1899
|
-
AuthenticationMode?: IdentityProviderAuthenticationMode;
|
|
1899
|
+
AuthenticationMode?: IdentityProviderAuthenticationMode | undefined;
|
|
1900
1900
|
/**
|
|
1901
1901
|
* <p>
|
|
1902
1902
|
* The details of the IAM Identity Center configuration.
|
|
1903
1903
|
* </p>
|
|
1904
1904
|
* @public
|
|
1905
1905
|
*/
|
|
1906
|
-
IdentityCenterConfiguration?: IdentityCenterConfiguration;
|
|
1906
|
+
IdentityCenterConfiguration?: IdentityCenterConfiguration | undefined;
|
|
1907
1907
|
/**
|
|
1908
1908
|
* <p>
|
|
1909
1909
|
* The details of the Personal Access Token configuration.
|
|
1910
1910
|
* </p>
|
|
1911
1911
|
* @public
|
|
1912
1912
|
*/
|
|
1913
|
-
PersonalAccessTokenConfiguration?: PersonalAccessTokenConfiguration;
|
|
1913
|
+
PersonalAccessTokenConfiguration?: PersonalAccessTokenConfiguration | undefined;
|
|
1914
1914
|
}
|
|
1915
1915
|
/**
|
|
1916
1916
|
* @public
|
|
@@ -1930,7 +1930,7 @@ export interface DescribeInboundDmarcSettingsResponse {
|
|
|
1930
1930
|
* <p>Lists the enforcement setting of the applied policy.</p>
|
|
1931
1931
|
* @public
|
|
1932
1932
|
*/
|
|
1933
|
-
Enforced?: boolean;
|
|
1933
|
+
Enforced?: boolean | undefined;
|
|
1934
1934
|
}
|
|
1935
1935
|
/**
|
|
1936
1936
|
* @public
|
|
@@ -1969,65 +1969,65 @@ export interface DescribeMailboxExportJobResponse {
|
|
|
1969
1969
|
* <p>The identifier of the user or resource associated with the mailbox.</p>
|
|
1970
1970
|
* @public
|
|
1971
1971
|
*/
|
|
1972
|
-
EntityId?: string;
|
|
1972
|
+
EntityId?: string | undefined;
|
|
1973
1973
|
/**
|
|
1974
1974
|
* <p>The mailbox export job description.</p>
|
|
1975
1975
|
* @public
|
|
1976
1976
|
*/
|
|
1977
|
-
Description?: string;
|
|
1977
|
+
Description?: string | undefined;
|
|
1978
1978
|
/**
|
|
1979
1979
|
* <p>The ARN of the AWS Identity and Access Management (IAM) role that grants write permission to the Amazon Simple
|
|
1980
1980
|
* Storage Service (Amazon S3) bucket.</p>
|
|
1981
1981
|
* @public
|
|
1982
1982
|
*/
|
|
1983
|
-
RoleArn?: string;
|
|
1983
|
+
RoleArn?: string | undefined;
|
|
1984
1984
|
/**
|
|
1985
1985
|
* <p>The Amazon Resource Name (ARN) of the symmetric AWS Key Management Service (AWS KMS)
|
|
1986
1986
|
* key that encrypts the exported mailbox content.</p>
|
|
1987
1987
|
* @public
|
|
1988
1988
|
*/
|
|
1989
|
-
KmsKeyArn?: string;
|
|
1989
|
+
KmsKeyArn?: string | undefined;
|
|
1990
1990
|
/**
|
|
1991
1991
|
* <p>The name of the S3 bucket.</p>
|
|
1992
1992
|
* @public
|
|
1993
1993
|
*/
|
|
1994
|
-
S3BucketName?: string;
|
|
1994
|
+
S3BucketName?: string | undefined;
|
|
1995
1995
|
/**
|
|
1996
1996
|
* <p>The S3 bucket prefix.</p>
|
|
1997
1997
|
* @public
|
|
1998
1998
|
*/
|
|
1999
|
-
S3Prefix?: string;
|
|
1999
|
+
S3Prefix?: string | undefined;
|
|
2000
2000
|
/**
|
|
2001
2001
|
* <p>The path to the S3 bucket and file that the mailbox export job is exporting
|
|
2002
2002
|
* to.</p>
|
|
2003
2003
|
* @public
|
|
2004
2004
|
*/
|
|
2005
|
-
S3Path?: string;
|
|
2005
|
+
S3Path?: string | undefined;
|
|
2006
2006
|
/**
|
|
2007
2007
|
* <p>The estimated progress of the mailbox export job, in percentage points.</p>
|
|
2008
2008
|
* @public
|
|
2009
2009
|
*/
|
|
2010
|
-
EstimatedProgress?: number;
|
|
2010
|
+
EstimatedProgress?: number | undefined;
|
|
2011
2011
|
/**
|
|
2012
2012
|
* <p>The state of the mailbox export job.</p>
|
|
2013
2013
|
* @public
|
|
2014
2014
|
*/
|
|
2015
|
-
State?: MailboxExportJobState;
|
|
2015
|
+
State?: MailboxExportJobState | undefined;
|
|
2016
2016
|
/**
|
|
2017
2017
|
* <p>Error information for failed mailbox export jobs.</p>
|
|
2018
2018
|
* @public
|
|
2019
2019
|
*/
|
|
2020
|
-
ErrorInfo?: string;
|
|
2020
|
+
ErrorInfo?: string | undefined;
|
|
2021
2021
|
/**
|
|
2022
2022
|
* <p>The mailbox export job start timestamp.</p>
|
|
2023
2023
|
* @public
|
|
2024
2024
|
*/
|
|
2025
|
-
StartTime?: Date;
|
|
2025
|
+
StartTime?: Date | undefined;
|
|
2026
2026
|
/**
|
|
2027
2027
|
* <p>The mailbox export job end timestamp.</p>
|
|
2028
2028
|
* @public
|
|
2029
2029
|
*/
|
|
2030
|
-
EndTime?: Date;
|
|
2030
|
+
EndTime?: Date | undefined;
|
|
2031
2031
|
}
|
|
2032
2032
|
/**
|
|
2033
2033
|
* @public
|
|
@@ -2047,59 +2047,59 @@ export interface DescribeOrganizationResponse {
|
|
|
2047
2047
|
* <p>The identifier of an organization.</p>
|
|
2048
2048
|
* @public
|
|
2049
2049
|
*/
|
|
2050
|
-
OrganizationId?: string;
|
|
2050
|
+
OrganizationId?: string | undefined;
|
|
2051
2051
|
/**
|
|
2052
2052
|
* <p>The alias for an organization.</p>
|
|
2053
2053
|
* @public
|
|
2054
2054
|
*/
|
|
2055
|
-
Alias?: string;
|
|
2055
|
+
Alias?: string | undefined;
|
|
2056
2056
|
/**
|
|
2057
2057
|
* <p>The state of an organization.</p>
|
|
2058
2058
|
* @public
|
|
2059
2059
|
*/
|
|
2060
|
-
State?: string;
|
|
2060
|
+
State?: string | undefined;
|
|
2061
2061
|
/**
|
|
2062
2062
|
* <p>The identifier for the directory associated with an WorkMail organization.</p>
|
|
2063
2063
|
* @public
|
|
2064
2064
|
*/
|
|
2065
|
-
DirectoryId?: string;
|
|
2065
|
+
DirectoryId?: string | undefined;
|
|
2066
2066
|
/**
|
|
2067
2067
|
* <p>The type of directory associated with the WorkMail organization.</p>
|
|
2068
2068
|
* @public
|
|
2069
2069
|
*/
|
|
2070
|
-
DirectoryType?: string;
|
|
2070
|
+
DirectoryType?: string | undefined;
|
|
2071
2071
|
/**
|
|
2072
2072
|
* <p>The default mail domain associated with the organization.</p>
|
|
2073
2073
|
* @public
|
|
2074
2074
|
*/
|
|
2075
|
-
DefaultMailDomain?: string;
|
|
2075
|
+
DefaultMailDomain?: string | undefined;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* <p>The date at which the organization became usable in the WorkMail context, in UNIX epoch
|
|
2078
2078
|
* time format.</p>
|
|
2079
2079
|
* @public
|
|
2080
2080
|
*/
|
|
2081
|
-
CompletedDate?: Date;
|
|
2081
|
+
CompletedDate?: Date | undefined;
|
|
2082
2082
|
/**
|
|
2083
2083
|
* <p>(Optional) The error message indicating if unexpected behavior was encountered with
|
|
2084
2084
|
* regards to the organization.</p>
|
|
2085
2085
|
* @public
|
|
2086
2086
|
*/
|
|
2087
|
-
ErrorMessage?: string;
|
|
2087
|
+
ErrorMessage?: string | undefined;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* <p>The Amazon Resource Name (ARN) of the organization.</p>
|
|
2090
2090
|
* @public
|
|
2091
2091
|
*/
|
|
2092
|
-
ARN?: string;
|
|
2092
|
+
ARN?: string | undefined;
|
|
2093
2093
|
/**
|
|
2094
2094
|
* <p>The user ID of the migration admin if migration is enabled for the organization.</p>
|
|
2095
2095
|
* @public
|
|
2096
2096
|
*/
|
|
2097
|
-
MigrationAdmin?: string;
|
|
2097
|
+
MigrationAdmin?: string | undefined;
|
|
2098
2098
|
/**
|
|
2099
2099
|
* <p>Indicates if interoperability is enabled for this organization.</p>
|
|
2100
2100
|
* @public
|
|
2101
2101
|
*/
|
|
2102
|
-
InteroperabilityEnabled?: boolean;
|
|
2102
|
+
InteroperabilityEnabled?: boolean | undefined;
|
|
2103
2103
|
}
|
|
2104
2104
|
/**
|
|
2105
2105
|
* @public
|
|
@@ -2137,55 +2137,55 @@ export interface DescribeResourceResponse {
|
|
|
2137
2137
|
* <p>The identifier of the described resource.</p>
|
|
2138
2138
|
* @public
|
|
2139
2139
|
*/
|
|
2140
|
-
ResourceId?: string;
|
|
2140
|
+
ResourceId?: string | undefined;
|
|
2141
2141
|
/**
|
|
2142
2142
|
* <p>The email of the described resource.</p>
|
|
2143
2143
|
* @public
|
|
2144
2144
|
*/
|
|
2145
|
-
Email?: string;
|
|
2145
|
+
Email?: string | undefined;
|
|
2146
2146
|
/**
|
|
2147
2147
|
* <p>The name of the described resource.</p>
|
|
2148
2148
|
* @public
|
|
2149
2149
|
*/
|
|
2150
|
-
Name?: string;
|
|
2150
|
+
Name?: string | undefined;
|
|
2151
2151
|
/**
|
|
2152
2152
|
* <p>The type of the described resource.</p>
|
|
2153
2153
|
* @public
|
|
2154
2154
|
*/
|
|
2155
|
-
Type?: ResourceType;
|
|
2155
|
+
Type?: ResourceType | undefined;
|
|
2156
2156
|
/**
|
|
2157
2157
|
* <p>The booking options for the described resource.</p>
|
|
2158
2158
|
* @public
|
|
2159
2159
|
*/
|
|
2160
|
-
BookingOptions?: BookingOptions;
|
|
2160
|
+
BookingOptions?: BookingOptions | undefined;
|
|
2161
2161
|
/**
|
|
2162
2162
|
* <p>The state of the resource: enabled (registered to WorkMail), disabled (deregistered
|
|
2163
2163
|
* or never registered to WorkMail), or deleted.</p>
|
|
2164
2164
|
* @public
|
|
2165
2165
|
*/
|
|
2166
|
-
State?: EntityState;
|
|
2166
|
+
State?: EntityState | undefined;
|
|
2167
2167
|
/**
|
|
2168
2168
|
* <p>The date and time when a resource was enabled for WorkMail, in UNIX epoch time
|
|
2169
2169
|
* format.</p>
|
|
2170
2170
|
* @public
|
|
2171
2171
|
*/
|
|
2172
|
-
EnabledDate?: Date;
|
|
2172
|
+
EnabledDate?: Date | undefined;
|
|
2173
2173
|
/**
|
|
2174
2174
|
* <p>The date and time when a resource was disabled from WorkMail, in UNIX epoch time
|
|
2175
2175
|
* format.</p>
|
|
2176
2176
|
* @public
|
|
2177
2177
|
*/
|
|
2178
|
-
DisabledDate?: Date;
|
|
2178
|
+
DisabledDate?: Date | undefined;
|
|
2179
2179
|
/**
|
|
2180
2180
|
* <p>Description of the resource.</p>
|
|
2181
2181
|
* @public
|
|
2182
2182
|
*/
|
|
2183
|
-
Description?: string;
|
|
2183
|
+
Description?: string | undefined;
|
|
2184
2184
|
/**
|
|
2185
2185
|
* <p>If enabled, the resource is hidden from the global address list.</p>
|
|
2186
2186
|
* @public
|
|
2187
2187
|
*/
|
|
2188
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
2188
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
2189
2189
|
}
|
|
2190
2190
|
/**
|
|
2191
2191
|
* @public
|
|
@@ -2223,28 +2223,28 @@ export interface DescribeUserResponse {
|
|
|
2223
2223
|
* <p>The identifier for the described user.</p>
|
|
2224
2224
|
* @public
|
|
2225
2225
|
*/
|
|
2226
|
-
UserId?: string;
|
|
2226
|
+
UserId?: string | undefined;
|
|
2227
2227
|
/**
|
|
2228
2228
|
* <p>The name for the user.</p>
|
|
2229
2229
|
* @public
|
|
2230
2230
|
*/
|
|
2231
|
-
Name?: string;
|
|
2231
|
+
Name?: string | undefined;
|
|
2232
2232
|
/**
|
|
2233
2233
|
* <p>The email of the user.</p>
|
|
2234
2234
|
* @public
|
|
2235
2235
|
*/
|
|
2236
|
-
Email?: string;
|
|
2236
|
+
Email?: string | undefined;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* <p>The display name of the user.</p>
|
|
2239
2239
|
* @public
|
|
2240
2240
|
*/
|
|
2241
|
-
DisplayName?: string;
|
|
2241
|
+
DisplayName?: string | undefined;
|
|
2242
2242
|
/**
|
|
2243
2243
|
* <p>The state of a user: enabled (registered to WorkMail) or disabled (deregistered or
|
|
2244
2244
|
* never registered to WorkMail).</p>
|
|
2245
2245
|
* @public
|
|
2246
2246
|
*/
|
|
2247
|
-
State?: EntityState;
|
|
2247
|
+
State?: EntityState | undefined;
|
|
2248
2248
|
/**
|
|
2249
2249
|
* <p>In certain cases, other entities are modeled as users. If interoperability is
|
|
2250
2250
|
* enabled, resources are imported into WorkMail as users. Because different WorkMail
|
|
@@ -2253,106 +2253,106 @@ export interface DescribeUserResponse {
|
|
|
2253
2253
|
* administrators. The values are USER, RESOURCE, SYSTEM_USER, and REMOTE_USER.</p>
|
|
2254
2254
|
* @public
|
|
2255
2255
|
*/
|
|
2256
|
-
UserRole?: UserRole;
|
|
2256
|
+
UserRole?: UserRole | undefined;
|
|
2257
2257
|
/**
|
|
2258
2258
|
* <p>The date and time at which the user was enabled for WorkMailusage, in UNIX epoch
|
|
2259
2259
|
* time format.</p>
|
|
2260
2260
|
* @public
|
|
2261
2261
|
*/
|
|
2262
|
-
EnabledDate?: Date;
|
|
2262
|
+
EnabledDate?: Date | undefined;
|
|
2263
2263
|
/**
|
|
2264
2264
|
* <p>The date and time at which the user was disabled for WorkMail usage, in UNIX epoch
|
|
2265
2265
|
* time format.</p>
|
|
2266
2266
|
* @public
|
|
2267
2267
|
*/
|
|
2268
|
-
DisabledDate?: Date;
|
|
2268
|
+
DisabledDate?: Date | undefined;
|
|
2269
2269
|
/**
|
|
2270
2270
|
* <p>The date when the mailbox was created for the user.</p>
|
|
2271
2271
|
* @public
|
|
2272
2272
|
*/
|
|
2273
|
-
MailboxProvisionedDate?: Date;
|
|
2273
|
+
MailboxProvisionedDate?: Date | undefined;
|
|
2274
2274
|
/**
|
|
2275
2275
|
* <p>The date when the mailbox was removed for the user.</p>
|
|
2276
2276
|
* @public
|
|
2277
2277
|
*/
|
|
2278
|
-
MailboxDeprovisionedDate?: Date;
|
|
2278
|
+
MailboxDeprovisionedDate?: Date | undefined;
|
|
2279
2279
|
/**
|
|
2280
2280
|
* <p>First name of the user.</p>
|
|
2281
2281
|
* @public
|
|
2282
2282
|
*/
|
|
2283
|
-
FirstName?: string;
|
|
2283
|
+
FirstName?: string | undefined;
|
|
2284
2284
|
/**
|
|
2285
2285
|
* <p>Last name of the user.</p>
|
|
2286
2286
|
* @public
|
|
2287
2287
|
*/
|
|
2288
|
-
LastName?: string;
|
|
2288
|
+
LastName?: string | undefined;
|
|
2289
2289
|
/**
|
|
2290
2290
|
* <p>If enabled, the user is hidden from the global address list.</p>
|
|
2291
2291
|
* @public
|
|
2292
2292
|
*/
|
|
2293
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
2293
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
2294
2294
|
/**
|
|
2295
2295
|
* <p>Initials of the user.</p>
|
|
2296
2296
|
* @public
|
|
2297
2297
|
*/
|
|
2298
|
-
Initials?: string;
|
|
2298
|
+
Initials?: string | undefined;
|
|
2299
2299
|
/**
|
|
2300
2300
|
* <p>User's contact number.</p>
|
|
2301
2301
|
* @public
|
|
2302
2302
|
*/
|
|
2303
|
-
Telephone?: string;
|
|
2303
|
+
Telephone?: string | undefined;
|
|
2304
2304
|
/**
|
|
2305
2305
|
* <p>Street where the user is located.</p>
|
|
2306
2306
|
* @public
|
|
2307
2307
|
*/
|
|
2308
|
-
Street?: string;
|
|
2308
|
+
Street?: string | undefined;
|
|
2309
2309
|
/**
|
|
2310
2310
|
* <p>Job title of the user.</p>
|
|
2311
2311
|
* @public
|
|
2312
2312
|
*/
|
|
2313
|
-
JobTitle?: string;
|
|
2313
|
+
JobTitle?: string | undefined;
|
|
2314
2314
|
/**
|
|
2315
2315
|
* <p>City where the user is located.</p>
|
|
2316
2316
|
* @public
|
|
2317
2317
|
*/
|
|
2318
|
-
City?: string;
|
|
2318
|
+
City?: string | undefined;
|
|
2319
2319
|
/**
|
|
2320
2320
|
* <p>Company of the user.</p>
|
|
2321
2321
|
* @public
|
|
2322
2322
|
*/
|
|
2323
|
-
Company?: string;
|
|
2323
|
+
Company?: string | undefined;
|
|
2324
2324
|
/**
|
|
2325
2325
|
* <p>Zip code of the user.</p>
|
|
2326
2326
|
* @public
|
|
2327
2327
|
*/
|
|
2328
|
-
ZipCode?: string;
|
|
2328
|
+
ZipCode?: string | undefined;
|
|
2329
2329
|
/**
|
|
2330
2330
|
* <p>Department of the user.</p>
|
|
2331
2331
|
* @public
|
|
2332
2332
|
*/
|
|
2333
|
-
Department?: string;
|
|
2333
|
+
Department?: string | undefined;
|
|
2334
2334
|
/**
|
|
2335
2335
|
* <p>Country where the user is located.</p>
|
|
2336
2336
|
* @public
|
|
2337
2337
|
*/
|
|
2338
|
-
Country?: string;
|
|
2338
|
+
Country?: string | undefined;
|
|
2339
2339
|
/**
|
|
2340
2340
|
* <p>Office where the user is located.</p>
|
|
2341
2341
|
* @public
|
|
2342
2342
|
*/
|
|
2343
|
-
Office?: string;
|
|
2343
|
+
Office?: string | undefined;
|
|
2344
2344
|
/**
|
|
2345
2345
|
* <p>User ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.</p>
|
|
2346
2346
|
* @public
|
|
2347
2347
|
*/
|
|
2348
|
-
IdentityProviderUserId?: string;
|
|
2348
|
+
IdentityProviderUserId?: string | undefined;
|
|
2349
2349
|
/**
|
|
2350
2350
|
* <p>
|
|
2351
2351
|
* Identity Store ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.
|
|
2352
2352
|
* </p>
|
|
2353
2353
|
* @public
|
|
2354
2354
|
*/
|
|
2355
|
-
IdentityProviderIdentityStoreId?: string;
|
|
2355
|
+
IdentityProviderIdentityStoreId?: string | undefined;
|
|
2356
2356
|
}
|
|
2357
2357
|
/**
|
|
2358
2358
|
* @public
|
|
@@ -2463,17 +2463,17 @@ export interface DnsRecord {
|
|
|
2463
2463
|
* <p>The RFC 1035 record type. Possible values: <code>CNAME</code>, <code>A</code>, <code>MX</code>.</p>
|
|
2464
2464
|
* @public
|
|
2465
2465
|
*/
|
|
2466
|
-
Type?: string;
|
|
2466
|
+
Type?: string | undefined;
|
|
2467
2467
|
/**
|
|
2468
2468
|
* <p>The DNS hostname.- For example, <code>domain.example.com</code>.</p>
|
|
2469
2469
|
* @public
|
|
2470
2470
|
*/
|
|
2471
|
-
Hostname?: string;
|
|
2471
|
+
Hostname?: string | undefined;
|
|
2472
2472
|
/**
|
|
2473
2473
|
* <p>The value returned by the DNS for a query to that hostname and record type.</p>
|
|
2474
2474
|
* @public
|
|
2475
2475
|
*/
|
|
2476
|
-
Value?: string;
|
|
2476
|
+
Value?: string | undefined;
|
|
2477
2477
|
}
|
|
2478
2478
|
/**
|
|
2479
2479
|
* @public
|
|
@@ -2496,7 +2496,7 @@ export type DnsRecordVerificationStatus = (typeof DnsRecordVerificationStatus)[k
|
|
|
2496
2496
|
export declare class EntityAlreadyRegisteredException extends __BaseException {
|
|
2497
2497
|
readonly name: "EntityAlreadyRegisteredException";
|
|
2498
2498
|
readonly $fault: "client";
|
|
2499
|
-
Message?: string;
|
|
2499
|
+
Message?: string | undefined;
|
|
2500
2500
|
/**
|
|
2501
2501
|
* @internal
|
|
2502
2502
|
*/
|
|
@@ -2551,7 +2551,7 @@ export interface FolderConfiguration {
|
|
|
2551
2551
|
* <p>The number of days for which the folder-configuration action applies.</p>
|
|
2552
2552
|
* @public
|
|
2553
2553
|
*/
|
|
2554
|
-
Period?: number;
|
|
2554
|
+
Period?: number | undefined;
|
|
2555
2555
|
}
|
|
2556
2556
|
/**
|
|
2557
2557
|
* @public
|
|
@@ -2578,12 +2578,12 @@ export interface GetAccessControlEffectRequest {
|
|
|
2578
2578
|
* <p>The user ID.</p>
|
|
2579
2579
|
* @public
|
|
2580
2580
|
*/
|
|
2581
|
-
UserId?: string;
|
|
2581
|
+
UserId?: string | undefined;
|
|
2582
2582
|
/**
|
|
2583
2583
|
* <p>The impersonation role ID.</p>
|
|
2584
2584
|
* @public
|
|
2585
2585
|
*/
|
|
2586
|
-
ImpersonationRoleId?: string;
|
|
2586
|
+
ImpersonationRoleId?: string | undefined;
|
|
2587
2587
|
}
|
|
2588
2588
|
/**
|
|
2589
2589
|
* @public
|
|
@@ -2593,12 +2593,12 @@ export interface GetAccessControlEffectResponse {
|
|
|
2593
2593
|
* <p>The rule effect.</p>
|
|
2594
2594
|
* @public
|
|
2595
2595
|
*/
|
|
2596
|
-
Effect?: AccessControlRuleEffect;
|
|
2596
|
+
Effect?: AccessControlRuleEffect | undefined;
|
|
2597
2597
|
/**
|
|
2598
2598
|
* <p>The rules that match the given parameters, resulting in an effect.</p>
|
|
2599
2599
|
* @public
|
|
2600
2600
|
*/
|
|
2601
|
-
MatchedRules?: string[];
|
|
2601
|
+
MatchedRules?: string[] | undefined;
|
|
2602
2602
|
}
|
|
2603
2603
|
/**
|
|
2604
2604
|
* @public
|
|
@@ -2618,22 +2618,22 @@ export interface GetDefaultRetentionPolicyResponse {
|
|
|
2618
2618
|
* <p>The retention policy ID.</p>
|
|
2619
2619
|
* @public
|
|
2620
2620
|
*/
|
|
2621
|
-
Id?: string;
|
|
2621
|
+
Id?: string | undefined;
|
|
2622
2622
|
/**
|
|
2623
2623
|
* <p>The retention policy name.</p>
|
|
2624
2624
|
* @public
|
|
2625
2625
|
*/
|
|
2626
|
-
Name?: string;
|
|
2626
|
+
Name?: string | undefined;
|
|
2627
2627
|
/**
|
|
2628
2628
|
* <p>The retention policy description.</p>
|
|
2629
2629
|
* @public
|
|
2630
2630
|
*/
|
|
2631
|
-
Description?: string;
|
|
2631
|
+
Description?: string | undefined;
|
|
2632
2632
|
/**
|
|
2633
2633
|
* <p>The retention policy folder configurations.</p>
|
|
2634
2634
|
* @public
|
|
2635
2635
|
*/
|
|
2636
|
-
FolderConfigurations?: FolderConfiguration[];
|
|
2636
|
+
FolderConfigurations?: FolderConfiguration[] | undefined;
|
|
2637
2637
|
}
|
|
2638
2638
|
/**
|
|
2639
2639
|
* @public
|
|
@@ -2658,37 +2658,37 @@ export interface GetImpersonationRoleResponse {
|
|
|
2658
2658
|
* <p>The impersonation role ID.</p>
|
|
2659
2659
|
* @public
|
|
2660
2660
|
*/
|
|
2661
|
-
ImpersonationRoleId?: string;
|
|
2661
|
+
ImpersonationRoleId?: string | undefined;
|
|
2662
2662
|
/**
|
|
2663
2663
|
* <p>The impersonation role name.</p>
|
|
2664
2664
|
* @public
|
|
2665
2665
|
*/
|
|
2666
|
-
Name?: string;
|
|
2666
|
+
Name?: string | undefined;
|
|
2667
2667
|
/**
|
|
2668
2668
|
* <p>The impersonation role type.</p>
|
|
2669
2669
|
* @public
|
|
2670
2670
|
*/
|
|
2671
|
-
Type?: ImpersonationRoleType;
|
|
2671
|
+
Type?: ImpersonationRoleType | undefined;
|
|
2672
2672
|
/**
|
|
2673
2673
|
* <p>The impersonation role description.</p>
|
|
2674
2674
|
* @public
|
|
2675
2675
|
*/
|
|
2676
|
-
Description?: string;
|
|
2676
|
+
Description?: string | undefined;
|
|
2677
2677
|
/**
|
|
2678
2678
|
* <p>The list of rules for the given impersonation role.</p>
|
|
2679
2679
|
* @public
|
|
2680
2680
|
*/
|
|
2681
|
-
Rules?: ImpersonationRule[];
|
|
2681
|
+
Rules?: ImpersonationRule[] | undefined;
|
|
2682
2682
|
/**
|
|
2683
2683
|
* <p>The date when the impersonation role was created.</p>
|
|
2684
2684
|
* @public
|
|
2685
2685
|
*/
|
|
2686
|
-
DateCreated?: Date;
|
|
2686
|
+
DateCreated?: Date | undefined;
|
|
2687
2687
|
/**
|
|
2688
2688
|
* <p>The date when the impersonation role was last modified.</p>
|
|
2689
2689
|
* @public
|
|
2690
2690
|
*/
|
|
2691
|
-
DateModified?: Date;
|
|
2691
|
+
DateModified?: Date | undefined;
|
|
2692
2692
|
}
|
|
2693
2693
|
/**
|
|
2694
2694
|
* @public
|
|
@@ -2734,12 +2734,12 @@ export interface ImpersonationMatchedRule {
|
|
|
2734
2734
|
* <p>The ID of the rule that matched the input</p>
|
|
2735
2735
|
* @public
|
|
2736
2736
|
*/
|
|
2737
|
-
ImpersonationRuleId?: string;
|
|
2737
|
+
ImpersonationRuleId?: string | undefined;
|
|
2738
2738
|
/**
|
|
2739
2739
|
* <p>The name of the rule that matched the input.</p>
|
|
2740
2740
|
* @public
|
|
2741
2741
|
*/
|
|
2742
|
-
Name?: string;
|
|
2742
|
+
Name?: string | undefined;
|
|
2743
2743
|
}
|
|
2744
2744
|
/**
|
|
2745
2745
|
* @public
|
|
@@ -2749,19 +2749,19 @@ export interface GetImpersonationRoleEffectResponse {
|
|
|
2749
2749
|
* <p>The impersonation role type.</p>
|
|
2750
2750
|
* @public
|
|
2751
2751
|
*/
|
|
2752
|
-
Type?: ImpersonationRoleType;
|
|
2752
|
+
Type?: ImpersonationRoleType | undefined;
|
|
2753
2753
|
/**
|
|
2754
2754
|
* <p>
|
|
2755
2755
|
* <code></code>Effect of the impersonation role on the target user based on its rules. Available
|
|
2756
2756
|
* effects are <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
2757
2757
|
* @public
|
|
2758
2758
|
*/
|
|
2759
|
-
Effect?: AccessEffect;
|
|
2759
|
+
Effect?: AccessEffect | undefined;
|
|
2760
2760
|
/**
|
|
2761
2761
|
* <p>A list of the rules that match the input and produce the configured effect.</p>
|
|
2762
2762
|
* @public
|
|
2763
2763
|
*/
|
|
2764
|
-
MatchedRules?: ImpersonationMatchedRule[];
|
|
2764
|
+
MatchedRules?: ImpersonationMatchedRule[] | undefined;
|
|
2765
2765
|
}
|
|
2766
2766
|
/**
|
|
2767
2767
|
* @public
|
|
@@ -2799,12 +2799,12 @@ export interface GetMailboxDetailsResponse {
|
|
|
2799
2799
|
* <p>The maximum allowed mailbox size, in MB, for the specified user.</p>
|
|
2800
2800
|
* @public
|
|
2801
2801
|
*/
|
|
2802
|
-
MailboxQuota?: number;
|
|
2802
|
+
MailboxQuota?: number | undefined;
|
|
2803
2803
|
/**
|
|
2804
2804
|
* <p>The current mailbox size, in MB, for the specified user.</p>
|
|
2805
2805
|
* @public
|
|
2806
2806
|
*/
|
|
2807
|
-
MailboxSize?: number;
|
|
2807
|
+
MailboxSize?: number | undefined;
|
|
2808
2808
|
}
|
|
2809
2809
|
/**
|
|
2810
2810
|
* @public
|
|
@@ -2830,27 +2830,27 @@ export interface GetMailDomainResponse {
|
|
|
2830
2830
|
* email traffic to SES. See admin guide for more details.</p>
|
|
2831
2831
|
* @public
|
|
2832
2832
|
*/
|
|
2833
|
-
Records?: DnsRecord[];
|
|
2833
|
+
Records?: DnsRecord[] | undefined;
|
|
2834
2834
|
/**
|
|
2835
2835
|
* <p>Specifies whether the domain is a test domain provided by WorkMail, or a custom domain.</p>
|
|
2836
2836
|
* @public
|
|
2837
2837
|
*/
|
|
2838
|
-
IsTestDomain?: boolean;
|
|
2838
|
+
IsTestDomain?: boolean | undefined;
|
|
2839
2839
|
/**
|
|
2840
2840
|
* <p>Specifies whether the domain is the default domain for your organization.</p>
|
|
2841
2841
|
* @public
|
|
2842
2842
|
*/
|
|
2843
|
-
IsDefault?: boolean;
|
|
2843
|
+
IsDefault?: boolean | undefined;
|
|
2844
2844
|
/**
|
|
2845
2845
|
* <p> Indicates the status of the domain ownership verification.</p>
|
|
2846
2846
|
* @public
|
|
2847
2847
|
*/
|
|
2848
|
-
OwnershipVerificationStatus?: DnsRecordVerificationStatus;
|
|
2848
|
+
OwnershipVerificationStatus?: DnsRecordVerificationStatus | undefined;
|
|
2849
2849
|
/**
|
|
2850
2850
|
* <p>Indicates the status of a DKIM verification.</p>
|
|
2851
2851
|
* @public
|
|
2852
2852
|
*/
|
|
2853
|
-
DkimVerificationStatus?: DnsRecordVerificationStatus;
|
|
2853
|
+
DkimVerificationStatus?: DnsRecordVerificationStatus | undefined;
|
|
2854
2854
|
}
|
|
2855
2855
|
/**
|
|
2856
2856
|
* @public
|
|
@@ -2865,22 +2865,22 @@ export interface GetMobileDeviceAccessEffectRequest {
|
|
|
2865
2865
|
* <p>Device type the simulated user will report.</p>
|
|
2866
2866
|
* @public
|
|
2867
2867
|
*/
|
|
2868
|
-
DeviceType?: string;
|
|
2868
|
+
DeviceType?: string | undefined;
|
|
2869
2869
|
/**
|
|
2870
2870
|
* <p>Device model the simulated user will report.</p>
|
|
2871
2871
|
* @public
|
|
2872
2872
|
*/
|
|
2873
|
-
DeviceModel?: string;
|
|
2873
|
+
DeviceModel?: string | undefined;
|
|
2874
2874
|
/**
|
|
2875
2875
|
* <p>Device operating system the simulated user will report.</p>
|
|
2876
2876
|
* @public
|
|
2877
2877
|
*/
|
|
2878
|
-
DeviceOperatingSystem?: string;
|
|
2878
|
+
DeviceOperatingSystem?: string | undefined;
|
|
2879
2879
|
/**
|
|
2880
2880
|
* <p>Device user agent the simulated user will report.</p>
|
|
2881
2881
|
* @public
|
|
2882
2882
|
*/
|
|
2883
|
-
DeviceUserAgent?: string;
|
|
2883
|
+
DeviceUserAgent?: string | undefined;
|
|
2884
2884
|
}
|
|
2885
2885
|
/**
|
|
2886
2886
|
* <p>The rule that a simulated user matches.</p>
|
|
@@ -2891,12 +2891,12 @@ export interface MobileDeviceAccessMatchedRule {
|
|
|
2891
2891
|
* <p>Identifier of the rule that a simulated user matches.</p>
|
|
2892
2892
|
* @public
|
|
2893
2893
|
*/
|
|
2894
|
-
MobileDeviceAccessRuleId?: string;
|
|
2894
|
+
MobileDeviceAccessRuleId?: string | undefined;
|
|
2895
2895
|
/**
|
|
2896
2896
|
* <p>Name of a rule that a simulated user matches.</p>
|
|
2897
2897
|
* @public
|
|
2898
2898
|
*/
|
|
2899
|
-
Name?: string;
|
|
2899
|
+
Name?: string | undefined;
|
|
2900
2900
|
}
|
|
2901
2901
|
/**
|
|
2902
2902
|
* @public
|
|
@@ -2907,12 +2907,12 @@ export interface GetMobileDeviceAccessEffectResponse {
|
|
|
2907
2907
|
* user parameters.</p>
|
|
2908
2908
|
* @public
|
|
2909
2909
|
*/
|
|
2910
|
-
Effect?: MobileDeviceAccessRuleEffect;
|
|
2910
|
+
Effect?: MobileDeviceAccessRuleEffect | undefined;
|
|
2911
2911
|
/**
|
|
2912
2912
|
* <p>A list of the rules which matched the simulated user input and produced the effect.</p>
|
|
2913
2913
|
* @public
|
|
2914
2914
|
*/
|
|
2915
|
-
MatchedRules?: MobileDeviceAccessMatchedRule[];
|
|
2915
|
+
MatchedRules?: MobileDeviceAccessMatchedRule[] | undefined;
|
|
2916
2916
|
}
|
|
2917
2917
|
/**
|
|
2918
2918
|
* @public
|
|
@@ -2956,32 +2956,32 @@ export interface GetMobileDeviceAccessOverrideResponse {
|
|
|
2956
2956
|
* <p>The WorkMail user to which the access override applies.</p>
|
|
2957
2957
|
* @public
|
|
2958
2958
|
*/
|
|
2959
|
-
UserId?: string;
|
|
2959
|
+
UserId?: string | undefined;
|
|
2960
2960
|
/**
|
|
2961
2961
|
* <p>The device to which the access override applies.</p>
|
|
2962
2962
|
* @public
|
|
2963
2963
|
*/
|
|
2964
|
-
DeviceId?: string;
|
|
2964
|
+
DeviceId?: string | undefined;
|
|
2965
2965
|
/**
|
|
2966
2966
|
* <p>The effect of the override, <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
2967
2967
|
* @public
|
|
2968
2968
|
*/
|
|
2969
|
-
Effect?: MobileDeviceAccessRuleEffect;
|
|
2969
|
+
Effect?: MobileDeviceAccessRuleEffect | undefined;
|
|
2970
2970
|
/**
|
|
2971
2971
|
* <p>A description of the override.</p>
|
|
2972
2972
|
* @public
|
|
2973
2973
|
*/
|
|
2974
|
-
Description?: string;
|
|
2974
|
+
Description?: string | undefined;
|
|
2975
2975
|
/**
|
|
2976
2976
|
* <p>The date the override was first created.</p>
|
|
2977
2977
|
* @public
|
|
2978
2978
|
*/
|
|
2979
|
-
DateCreated?: Date;
|
|
2979
|
+
DateCreated?: Date | undefined;
|
|
2980
2980
|
/**
|
|
2981
2981
|
* <p>The date the description was last modified.</p>
|
|
2982
2982
|
* @public
|
|
2983
2983
|
*/
|
|
2984
|
-
DateModified?: Date;
|
|
2984
|
+
DateModified?: Date | undefined;
|
|
2985
2985
|
}
|
|
2986
2986
|
/**
|
|
2987
2987
|
* @public
|
|
@@ -3009,49 +3009,49 @@ export interface GetPersonalAccessTokenMetadataResponse {
|
|
|
3009
3009
|
* The Personal Access Token ID.</p>
|
|
3010
3010
|
* @public
|
|
3011
3011
|
*/
|
|
3012
|
-
PersonalAccessTokenId?: string;
|
|
3012
|
+
PersonalAccessTokenId?: string | undefined;
|
|
3013
3013
|
/**
|
|
3014
3014
|
* <p>
|
|
3015
3015
|
* The WorkMail User ID.
|
|
3016
3016
|
* </p>
|
|
3017
3017
|
* @public
|
|
3018
3018
|
*/
|
|
3019
|
-
UserId?: string;
|
|
3019
|
+
UserId?: string | undefined;
|
|
3020
3020
|
/**
|
|
3021
3021
|
* <p>
|
|
3022
3022
|
* The Personal Access Token name.
|
|
3023
3023
|
* </p>
|
|
3024
3024
|
* @public
|
|
3025
3025
|
*/
|
|
3026
|
-
Name?: string;
|
|
3026
|
+
Name?: string | undefined;
|
|
3027
3027
|
/**
|
|
3028
3028
|
* <p>
|
|
3029
3029
|
* The date when the Personal Access Token ID was created.
|
|
3030
3030
|
* </p>
|
|
3031
3031
|
* @public
|
|
3032
3032
|
*/
|
|
3033
|
-
DateCreated?: Date;
|
|
3033
|
+
DateCreated?: Date | undefined;
|
|
3034
3034
|
/**
|
|
3035
3035
|
* <p>
|
|
3036
3036
|
* The date when the Personal Access Token ID was last used.
|
|
3037
3037
|
* </p>
|
|
3038
3038
|
* @public
|
|
3039
3039
|
*/
|
|
3040
|
-
DateLastUsed?: Date;
|
|
3040
|
+
DateLastUsed?: Date | undefined;
|
|
3041
3041
|
/**
|
|
3042
3042
|
* <p>
|
|
3043
3043
|
* The time when the Personal Access Token ID will expire.
|
|
3044
3044
|
* </p>
|
|
3045
3045
|
* @public
|
|
3046
3046
|
*/
|
|
3047
|
-
ExpiresTime?: Date;
|
|
3047
|
+
ExpiresTime?: Date | undefined;
|
|
3048
3048
|
/**
|
|
3049
3049
|
* <p>
|
|
3050
3050
|
* Lists all the Personal Access Token permissions for a mailbox.
|
|
3051
3051
|
* </p>
|
|
3052
3052
|
* @public
|
|
3053
3053
|
*/
|
|
3054
|
-
Scopes?: string[];
|
|
3054
|
+
Scopes?: string[] | undefined;
|
|
3055
3055
|
}
|
|
3056
3056
|
/**
|
|
3057
3057
|
* <p>The representation of an WorkMail group.</p>
|
|
@@ -3062,32 +3062,32 @@ export interface Group {
|
|
|
3062
3062
|
* <p>The identifier of the group.</p>
|
|
3063
3063
|
* @public
|
|
3064
3064
|
*/
|
|
3065
|
-
Id?: string;
|
|
3065
|
+
Id?: string | undefined;
|
|
3066
3066
|
/**
|
|
3067
3067
|
* <p>The email of the group.</p>
|
|
3068
3068
|
* @public
|
|
3069
3069
|
*/
|
|
3070
|
-
Email?: string;
|
|
3070
|
+
Email?: string | undefined;
|
|
3071
3071
|
/**
|
|
3072
3072
|
* <p>The name of the group.</p>
|
|
3073
3073
|
* @public
|
|
3074
3074
|
*/
|
|
3075
|
-
Name?: string;
|
|
3075
|
+
Name?: string | undefined;
|
|
3076
3076
|
/**
|
|
3077
3077
|
* <p>The state of the group, which can be ENABLED, DISABLED, or DELETED.</p>
|
|
3078
3078
|
* @public
|
|
3079
3079
|
*/
|
|
3080
|
-
State?: EntityState;
|
|
3080
|
+
State?: EntityState | undefined;
|
|
3081
3081
|
/**
|
|
3082
3082
|
* <p>The date indicating when the group was enabled for WorkMail use.</p>
|
|
3083
3083
|
* @public
|
|
3084
3084
|
*/
|
|
3085
|
-
EnabledDate?: Date;
|
|
3085
|
+
EnabledDate?: Date | undefined;
|
|
3086
3086
|
/**
|
|
3087
3087
|
* <p>The date indicating when the group was disabled from WorkMail use.</p>
|
|
3088
3088
|
* @public
|
|
3089
3089
|
*/
|
|
3090
|
-
DisabledDate?: Date;
|
|
3090
|
+
DisabledDate?: Date | undefined;
|
|
3091
3091
|
}
|
|
3092
3092
|
/**
|
|
3093
3093
|
* <p>The identifier that contains the Group ID and name of a group.</p>
|
|
@@ -3098,12 +3098,12 @@ export interface GroupIdentifier {
|
|
|
3098
3098
|
* <p>Group ID that matched the group.</p>
|
|
3099
3099
|
* @public
|
|
3100
3100
|
*/
|
|
3101
|
-
GroupId?: string;
|
|
3101
|
+
GroupId?: string | undefined;
|
|
3102
3102
|
/**
|
|
3103
3103
|
* <p>Group name that matched the group.</p>
|
|
3104
3104
|
* @public
|
|
3105
3105
|
*/
|
|
3106
|
-
GroupName?: string;
|
|
3106
|
+
GroupName?: string | undefined;
|
|
3107
3107
|
}
|
|
3108
3108
|
/**
|
|
3109
3109
|
* <p>An impersonation role for the given WorkMail organization.</p>
|
|
@@ -3114,27 +3114,27 @@ export interface ImpersonationRole {
|
|
|
3114
3114
|
* <p>The identifier of the impersonation role.</p>
|
|
3115
3115
|
* @public
|
|
3116
3116
|
*/
|
|
3117
|
-
ImpersonationRoleId?: string;
|
|
3117
|
+
ImpersonationRoleId?: string | undefined;
|
|
3118
3118
|
/**
|
|
3119
3119
|
* <p>The impersonation role name.</p>
|
|
3120
3120
|
* @public
|
|
3121
3121
|
*/
|
|
3122
|
-
Name?: string;
|
|
3122
|
+
Name?: string | undefined;
|
|
3123
3123
|
/**
|
|
3124
3124
|
* <p>The impersonation role type.</p>
|
|
3125
3125
|
* @public
|
|
3126
3126
|
*/
|
|
3127
|
-
Type?: ImpersonationRoleType;
|
|
3127
|
+
Type?: ImpersonationRoleType | undefined;
|
|
3128
3128
|
/**
|
|
3129
3129
|
* <p>The date when the impersonation role was created.</p>
|
|
3130
3130
|
* @public
|
|
3131
3131
|
*/
|
|
3132
|
-
DateCreated?: Date;
|
|
3132
|
+
DateCreated?: Date | undefined;
|
|
3133
3133
|
/**
|
|
3134
3134
|
* <p>The date when the impersonation role was last modified.</p>
|
|
3135
3135
|
* @public
|
|
3136
3136
|
*/
|
|
3137
|
-
DateModified?: Date;
|
|
3137
|
+
DateModified?: Date | undefined;
|
|
3138
3138
|
}
|
|
3139
3139
|
/**
|
|
3140
3140
|
* <p>The configuration for a resource isn't valid. A resource must either be able to
|
|
@@ -3145,7 +3145,7 @@ export interface ImpersonationRole {
|
|
|
3145
3145
|
export declare class InvalidConfigurationException extends __BaseException {
|
|
3146
3146
|
readonly name: "InvalidConfigurationException";
|
|
3147
3147
|
readonly $fault: "client";
|
|
3148
|
-
Message?: string;
|
|
3148
|
+
Message?: string | undefined;
|
|
3149
3149
|
/**
|
|
3150
3150
|
* @internal
|
|
3151
3151
|
*/
|
|
@@ -3161,47 +3161,47 @@ export interface MailboxExportJob {
|
|
|
3161
3161
|
* <p>The identifier of the mailbox export job.</p>
|
|
3162
3162
|
* @public
|
|
3163
3163
|
*/
|
|
3164
|
-
JobId?: string;
|
|
3164
|
+
JobId?: string | undefined;
|
|
3165
3165
|
/**
|
|
3166
3166
|
* <p>The identifier of the user or resource associated with the mailbox.</p>
|
|
3167
3167
|
* @public
|
|
3168
3168
|
*/
|
|
3169
|
-
EntityId?: string;
|
|
3169
|
+
EntityId?: string | undefined;
|
|
3170
3170
|
/**
|
|
3171
3171
|
* <p>The mailbox export job description.</p>
|
|
3172
3172
|
* @public
|
|
3173
3173
|
*/
|
|
3174
|
-
Description?: string;
|
|
3174
|
+
Description?: string | undefined;
|
|
3175
3175
|
/**
|
|
3176
3176
|
* <p>The name of the S3 bucket.</p>
|
|
3177
3177
|
* @public
|
|
3178
3178
|
*/
|
|
3179
|
-
S3BucketName?: string;
|
|
3179
|
+
S3BucketName?: string | undefined;
|
|
3180
3180
|
/**
|
|
3181
3181
|
* <p>The path to the S3 bucket and file that the mailbox export job exports to.</p>
|
|
3182
3182
|
* @public
|
|
3183
3183
|
*/
|
|
3184
|
-
S3Path?: string;
|
|
3184
|
+
S3Path?: string | undefined;
|
|
3185
3185
|
/**
|
|
3186
3186
|
* <p>The estimated progress of the mailbox export job, in percentage points.</p>
|
|
3187
3187
|
* @public
|
|
3188
3188
|
*/
|
|
3189
|
-
EstimatedProgress?: number;
|
|
3189
|
+
EstimatedProgress?: number | undefined;
|
|
3190
3190
|
/**
|
|
3191
3191
|
* <p>The state of the mailbox export job.</p>
|
|
3192
3192
|
* @public
|
|
3193
3193
|
*/
|
|
3194
|
-
State?: MailboxExportJobState;
|
|
3194
|
+
State?: MailboxExportJobState | undefined;
|
|
3195
3195
|
/**
|
|
3196
3196
|
* <p>The mailbox export job start timestamp.</p>
|
|
3197
3197
|
* @public
|
|
3198
3198
|
*/
|
|
3199
|
-
StartTime?: Date;
|
|
3199
|
+
StartTime?: Date | undefined;
|
|
3200
3200
|
/**
|
|
3201
3201
|
* <p>The mailbox export job end timestamp.</p>
|
|
3202
3202
|
* @public
|
|
3203
3203
|
*/
|
|
3204
|
-
EndTime?: Date;
|
|
3204
|
+
EndTime?: Date | undefined;
|
|
3205
3205
|
}
|
|
3206
3206
|
/**
|
|
3207
3207
|
* @public
|
|
@@ -3221,7 +3221,7 @@ export interface ListAccessControlRulesResponse {
|
|
|
3221
3221
|
* <p>The access control rules.</p>
|
|
3222
3222
|
* @public
|
|
3223
3223
|
*/
|
|
3224
|
-
Rules?: AccessControlRule[];
|
|
3224
|
+
Rules?: AccessControlRule[] | undefined;
|
|
3225
3225
|
}
|
|
3226
3226
|
/**
|
|
3227
3227
|
* @public
|
|
@@ -3242,12 +3242,12 @@ export interface ListAliasesRequest {
|
|
|
3242
3242
|
* contain any tokens.</p>
|
|
3243
3243
|
* @public
|
|
3244
3244
|
*/
|
|
3245
|
-
NextToken?: string;
|
|
3245
|
+
NextToken?: string | undefined;
|
|
3246
3246
|
/**
|
|
3247
3247
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3248
3248
|
* @public
|
|
3249
3249
|
*/
|
|
3250
|
-
MaxResults?: number;
|
|
3250
|
+
MaxResults?: number | undefined;
|
|
3251
3251
|
}
|
|
3252
3252
|
/**
|
|
3253
3253
|
* @public
|
|
@@ -3257,13 +3257,13 @@ export interface ListAliasesResponse {
|
|
|
3257
3257
|
* <p>The entity's paginated aliases.</p>
|
|
3258
3258
|
* @public
|
|
3259
3259
|
*/
|
|
3260
|
-
Aliases?: string[];
|
|
3260
|
+
Aliases?: string[] | undefined;
|
|
3261
3261
|
/**
|
|
3262
3262
|
* <p>The token to use to retrieve the next page of results. The value is "null" when there
|
|
3263
3263
|
* are no more results to return.</p>
|
|
3264
3264
|
* @public
|
|
3265
3265
|
*/
|
|
3266
|
-
NextToken?: string;
|
|
3266
|
+
NextToken?: string | undefined;
|
|
3267
3267
|
}
|
|
3268
3268
|
/**
|
|
3269
3269
|
* @public
|
|
@@ -3279,12 +3279,12 @@ export interface ListAvailabilityConfigurationsRequest {
|
|
|
3279
3279
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3280
3280
|
* @public
|
|
3281
3281
|
*/
|
|
3282
|
-
MaxResults?: number;
|
|
3282
|
+
MaxResults?: number | undefined;
|
|
3283
3283
|
/**
|
|
3284
3284
|
* <p>The token to use to retrieve the next page of results. The first call does not require a token.</p>
|
|
3285
3285
|
* @public
|
|
3286
3286
|
*/
|
|
3287
|
-
NextToken?: string;
|
|
3287
|
+
NextToken?: string | undefined;
|
|
3288
3288
|
}
|
|
3289
3289
|
/**
|
|
3290
3290
|
* @public
|
|
@@ -3294,12 +3294,12 @@ export interface ListAvailabilityConfigurationsResponse {
|
|
|
3294
3294
|
* <p>The list of <code>AvailabilityConfiguration</code>'s that exist for the specified WorkMail organization.</p>
|
|
3295
3295
|
* @public
|
|
3296
3296
|
*/
|
|
3297
|
-
AvailabilityConfigurations?: AvailabilityConfiguration[];
|
|
3297
|
+
AvailabilityConfigurations?: AvailabilityConfiguration[] | undefined;
|
|
3298
3298
|
/**
|
|
3299
3299
|
* <p>The token to use to retrieve the next page of results. The value is <code>null</code> when there are no further results to return.</p>
|
|
3300
3300
|
* @public
|
|
3301
3301
|
*/
|
|
3302
|
-
NextToken?: string;
|
|
3302
|
+
NextToken?: string | undefined;
|
|
3303
3303
|
}
|
|
3304
3304
|
/**
|
|
3305
3305
|
* @public
|
|
@@ -3333,12 +3333,12 @@ export interface ListGroupMembersRequest {
|
|
|
3333
3333
|
* contain any tokens.</p>
|
|
3334
3334
|
* @public
|
|
3335
3335
|
*/
|
|
3336
|
-
NextToken?: string;
|
|
3336
|
+
NextToken?: string | undefined;
|
|
3337
3337
|
/**
|
|
3338
3338
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3339
3339
|
* @public
|
|
3340
3340
|
*/
|
|
3341
|
-
MaxResults?: number;
|
|
3341
|
+
MaxResults?: number | undefined;
|
|
3342
3342
|
}
|
|
3343
3343
|
/**
|
|
3344
3344
|
* <p>The representation of a user or group.</p>
|
|
@@ -3349,32 +3349,32 @@ export interface Member {
|
|
|
3349
3349
|
* <p>The identifier of the member.</p>
|
|
3350
3350
|
* @public
|
|
3351
3351
|
*/
|
|
3352
|
-
Id?: string;
|
|
3352
|
+
Id?: string | undefined;
|
|
3353
3353
|
/**
|
|
3354
3354
|
* <p>The name of the member.</p>
|
|
3355
3355
|
* @public
|
|
3356
3356
|
*/
|
|
3357
|
-
Name?: string;
|
|
3357
|
+
Name?: string | undefined;
|
|
3358
3358
|
/**
|
|
3359
3359
|
* <p>A member can be a user or group.</p>
|
|
3360
3360
|
* @public
|
|
3361
3361
|
*/
|
|
3362
|
-
Type?: MemberType;
|
|
3362
|
+
Type?: MemberType | undefined;
|
|
3363
3363
|
/**
|
|
3364
3364
|
* <p>The state of the member, which can be ENABLED, DISABLED, or DELETED.</p>
|
|
3365
3365
|
* @public
|
|
3366
3366
|
*/
|
|
3367
|
-
State?: EntityState;
|
|
3367
|
+
State?: EntityState | undefined;
|
|
3368
3368
|
/**
|
|
3369
3369
|
* <p>The date indicating when the member was enabled for WorkMail use.</p>
|
|
3370
3370
|
* @public
|
|
3371
3371
|
*/
|
|
3372
|
-
EnabledDate?: Date;
|
|
3372
|
+
EnabledDate?: Date | undefined;
|
|
3373
3373
|
/**
|
|
3374
3374
|
* <p>The date indicating when the member was disabled from WorkMail use.</p>
|
|
3375
3375
|
* @public
|
|
3376
3376
|
*/
|
|
3377
|
-
DisabledDate?: Date;
|
|
3377
|
+
DisabledDate?: Date | undefined;
|
|
3378
3378
|
}
|
|
3379
3379
|
/**
|
|
3380
3380
|
* @public
|
|
@@ -3384,13 +3384,13 @@ export interface ListGroupMembersResponse {
|
|
|
3384
3384
|
* <p>The members associated to the group.</p>
|
|
3385
3385
|
* @public
|
|
3386
3386
|
*/
|
|
3387
|
-
Members?: Member[];
|
|
3387
|
+
Members?: Member[] | undefined;
|
|
3388
3388
|
/**
|
|
3389
3389
|
* <p>The token to use to retrieve the next page of results. The first call does not
|
|
3390
3390
|
* contain any tokens.</p>
|
|
3391
3391
|
* @public
|
|
3392
3392
|
*/
|
|
3393
|
-
NextToken?: string;
|
|
3393
|
+
NextToken?: string | undefined;
|
|
3394
3394
|
}
|
|
3395
3395
|
/**
|
|
3396
3396
|
* <p> Filtering options for <i>ListGroups</i> operation. This is only used as input to Operation.</p>
|
|
@@ -3401,17 +3401,17 @@ export interface ListGroupsFilters {
|
|
|
3401
3401
|
* <p>Filters only groups with the provided name prefix.</p>
|
|
3402
3402
|
* @public
|
|
3403
3403
|
*/
|
|
3404
|
-
NamePrefix?: string;
|
|
3404
|
+
NamePrefix?: string | undefined;
|
|
3405
3405
|
/**
|
|
3406
3406
|
* <p>Filters only groups with the provided primary email prefix.</p>
|
|
3407
3407
|
* @public
|
|
3408
3408
|
*/
|
|
3409
|
-
PrimaryEmailPrefix?: string;
|
|
3409
|
+
PrimaryEmailPrefix?: string | undefined;
|
|
3410
3410
|
/**
|
|
3411
3411
|
* <p>Filters only groups with the provided state.</p>
|
|
3412
3412
|
* @public
|
|
3413
3413
|
*/
|
|
3414
|
-
State?: EntityState;
|
|
3414
|
+
State?: EntityState | undefined;
|
|
3415
3415
|
}
|
|
3416
3416
|
/**
|
|
3417
3417
|
* @public
|
|
@@ -3427,17 +3427,17 @@ export interface ListGroupsRequest {
|
|
|
3427
3427
|
* contain any tokens.</p>
|
|
3428
3428
|
* @public
|
|
3429
3429
|
*/
|
|
3430
|
-
NextToken?: string;
|
|
3430
|
+
NextToken?: string | undefined;
|
|
3431
3431
|
/**
|
|
3432
3432
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3433
3433
|
* @public
|
|
3434
3434
|
*/
|
|
3435
|
-
MaxResults?: number;
|
|
3435
|
+
MaxResults?: number | undefined;
|
|
3436
3436
|
/**
|
|
3437
3437
|
* <p>Limit the search results based on the filter criteria. Only one filter per request is supported.</p>
|
|
3438
3438
|
* @public
|
|
3439
3439
|
*/
|
|
3440
|
-
Filters?: ListGroupsFilters;
|
|
3440
|
+
Filters?: ListGroupsFilters | undefined;
|
|
3441
3441
|
}
|
|
3442
3442
|
/**
|
|
3443
3443
|
* @public
|
|
@@ -3447,13 +3447,13 @@ export interface ListGroupsResponse {
|
|
|
3447
3447
|
* <p>The overview of groups for an organization.</p>
|
|
3448
3448
|
* @public
|
|
3449
3449
|
*/
|
|
3450
|
-
Groups?: Group[];
|
|
3450
|
+
Groups?: Group[] | undefined;
|
|
3451
3451
|
/**
|
|
3452
3452
|
* <p>The token to use to retrieve the next page of results. The value is "null" when there
|
|
3453
3453
|
* are no more results to return.</p>
|
|
3454
3454
|
* @public
|
|
3455
3455
|
*/
|
|
3456
|
-
NextToken?: string;
|
|
3456
|
+
NextToken?: string | undefined;
|
|
3457
3457
|
}
|
|
3458
3458
|
/**
|
|
3459
3459
|
* <p> Filtering options for <i>ListGroupsForEntity</i> operation. This is only used as input to Operation.</p>
|
|
@@ -3464,7 +3464,7 @@ export interface ListGroupsForEntityFilters {
|
|
|
3464
3464
|
* <p>Filters only group names that start with the provided name prefix.</p>
|
|
3465
3465
|
* @public
|
|
3466
3466
|
*/
|
|
3467
|
-
GroupNamePrefix?: string;
|
|
3467
|
+
GroupNamePrefix?: string | undefined;
|
|
3468
3468
|
}
|
|
3469
3469
|
/**
|
|
3470
3470
|
* @public
|
|
@@ -3496,17 +3496,17 @@ export interface ListGroupsForEntityRequest {
|
|
|
3496
3496
|
* <p>Limit the search results based on the filter criteria.</p>
|
|
3497
3497
|
* @public
|
|
3498
3498
|
*/
|
|
3499
|
-
Filters?: ListGroupsForEntityFilters;
|
|
3499
|
+
Filters?: ListGroupsForEntityFilters | undefined;
|
|
3500
3500
|
/**
|
|
3501
3501
|
* <p>The token to use to retrieve the next page of results. The first call does not contain any tokens.</p>
|
|
3502
3502
|
* @public
|
|
3503
3503
|
*/
|
|
3504
|
-
NextToken?: string;
|
|
3504
|
+
NextToken?: string | undefined;
|
|
3505
3505
|
/**
|
|
3506
3506
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3507
3507
|
* @public
|
|
3508
3508
|
*/
|
|
3509
|
-
MaxResults?: number;
|
|
3509
|
+
MaxResults?: number | undefined;
|
|
3510
3510
|
}
|
|
3511
3511
|
/**
|
|
3512
3512
|
* @public
|
|
@@ -3516,12 +3516,12 @@ export interface ListGroupsForEntityResponse {
|
|
|
3516
3516
|
* <p>The overview of groups in an organization.</p>
|
|
3517
3517
|
* @public
|
|
3518
3518
|
*/
|
|
3519
|
-
Groups?: GroupIdentifier[];
|
|
3519
|
+
Groups?: GroupIdentifier[] | undefined;
|
|
3520
3520
|
/**
|
|
3521
3521
|
* <p>The token to use to retrieve the next page of results. This value is `null` when there are no more results to return.</p>
|
|
3522
3522
|
* @public
|
|
3523
3523
|
*/
|
|
3524
|
-
NextToken?: string;
|
|
3524
|
+
NextToken?: string | undefined;
|
|
3525
3525
|
}
|
|
3526
3526
|
/**
|
|
3527
3527
|
* @public
|
|
@@ -3537,12 +3537,12 @@ export interface ListImpersonationRolesRequest {
|
|
|
3537
3537
|
* token.</p>
|
|
3538
3538
|
* @public
|
|
3539
3539
|
*/
|
|
3540
|
-
NextToken?: string;
|
|
3540
|
+
NextToken?: string | undefined;
|
|
3541
3541
|
/**
|
|
3542
3542
|
* <p>The maximum number of results returned in a single call.</p>
|
|
3543
3543
|
* @public
|
|
3544
3544
|
*/
|
|
3545
|
-
MaxResults?: number;
|
|
3545
|
+
MaxResults?: number | undefined;
|
|
3546
3546
|
}
|
|
3547
3547
|
/**
|
|
3548
3548
|
* @public
|
|
@@ -3552,13 +3552,13 @@ export interface ListImpersonationRolesResponse {
|
|
|
3552
3552
|
* <p>The list of impersonation roles under the given WorkMail organization.</p>
|
|
3553
3553
|
* @public
|
|
3554
3554
|
*/
|
|
3555
|
-
Roles?: ImpersonationRole[];
|
|
3555
|
+
Roles?: ImpersonationRole[] | undefined;
|
|
3556
3556
|
/**
|
|
3557
3557
|
* <p>The token to retrieve the next page of results. The value is <code>null</code> when
|
|
3558
3558
|
* there are no results to return.</p>
|
|
3559
3559
|
* @public
|
|
3560
3560
|
*/
|
|
3561
|
-
NextToken?: string;
|
|
3561
|
+
NextToken?: string | undefined;
|
|
3562
3562
|
}
|
|
3563
3563
|
/**
|
|
3564
3564
|
* @public
|
|
@@ -3573,12 +3573,12 @@ export interface ListMailboxExportJobsRequest {
|
|
|
3573
3573
|
* <p>The token to use to retrieve the next page of results.</p>
|
|
3574
3574
|
* @public
|
|
3575
3575
|
*/
|
|
3576
|
-
NextToken?: string;
|
|
3576
|
+
NextToken?: string | undefined;
|
|
3577
3577
|
/**
|
|
3578
3578
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3579
3579
|
* @public
|
|
3580
3580
|
*/
|
|
3581
|
-
MaxResults?: number;
|
|
3581
|
+
MaxResults?: number | undefined;
|
|
3582
3582
|
}
|
|
3583
3583
|
/**
|
|
3584
3584
|
* @public
|
|
@@ -3588,12 +3588,12 @@ export interface ListMailboxExportJobsResponse {
|
|
|
3588
3588
|
* <p>The mailbox export job details.</p>
|
|
3589
3589
|
* @public
|
|
3590
3590
|
*/
|
|
3591
|
-
Jobs?: MailboxExportJob[];
|
|
3591
|
+
Jobs?: MailboxExportJob[] | undefined;
|
|
3592
3592
|
/**
|
|
3593
3593
|
* <p>The token to use to retrieve the next page of results.</p>
|
|
3594
3594
|
* @public
|
|
3595
3595
|
*/
|
|
3596
|
-
NextToken?: string;
|
|
3596
|
+
NextToken?: string | undefined;
|
|
3597
3597
|
}
|
|
3598
3598
|
/**
|
|
3599
3599
|
* @public
|
|
@@ -3628,12 +3628,12 @@ export interface ListMailboxPermissionsRequest {
|
|
|
3628
3628
|
* contain any tokens.</p>
|
|
3629
3629
|
* @public
|
|
3630
3630
|
*/
|
|
3631
|
-
NextToken?: string;
|
|
3631
|
+
NextToken?: string | undefined;
|
|
3632
3632
|
/**
|
|
3633
3633
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3634
3634
|
* @public
|
|
3635
3635
|
*/
|
|
3636
|
-
MaxResults?: number;
|
|
3636
|
+
MaxResults?: number | undefined;
|
|
3637
3637
|
}
|
|
3638
3638
|
/**
|
|
3639
3639
|
* @public
|
|
@@ -3684,13 +3684,13 @@ export interface ListMailboxPermissionsResponse {
|
|
|
3684
3684
|
* <p>One page of the user, group, or resource mailbox permissions.</p>
|
|
3685
3685
|
* @public
|
|
3686
3686
|
*/
|
|
3687
|
-
Permissions?: Permission[];
|
|
3687
|
+
Permissions?: Permission[] | undefined;
|
|
3688
3688
|
/**
|
|
3689
3689
|
* <p>The token to use to retrieve the next page of results. The value is "null" when there
|
|
3690
3690
|
* are no more results to return.</p>
|
|
3691
3691
|
* @public
|
|
3692
3692
|
*/
|
|
3693
|
-
NextToken?: string;
|
|
3693
|
+
NextToken?: string | undefined;
|
|
3694
3694
|
}
|
|
3695
3695
|
/**
|
|
3696
3696
|
* @public
|
|
@@ -3705,12 +3705,12 @@ export interface ListMailDomainsRequest {
|
|
|
3705
3705
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3706
3706
|
* @public
|
|
3707
3707
|
*/
|
|
3708
|
-
MaxResults?: number;
|
|
3708
|
+
MaxResults?: number | undefined;
|
|
3709
3709
|
/**
|
|
3710
3710
|
* <p>The token to use to retrieve the next page of results. The first call does not require a token.</p>
|
|
3711
3711
|
* @public
|
|
3712
3712
|
*/
|
|
3713
|
-
NextToken?: string;
|
|
3713
|
+
NextToken?: string | undefined;
|
|
3714
3714
|
}
|
|
3715
3715
|
/**
|
|
3716
3716
|
* <p>The data for a given domain.</p>
|
|
@@ -3721,12 +3721,12 @@ export interface MailDomainSummary {
|
|
|
3721
3721
|
* <p>The domain name.</p>
|
|
3722
3722
|
* @public
|
|
3723
3723
|
*/
|
|
3724
|
-
DomainName?: string;
|
|
3724
|
+
DomainName?: string | undefined;
|
|
3725
3725
|
/**
|
|
3726
3726
|
* <p>Whether the domain is default or not.</p>
|
|
3727
3727
|
* @public
|
|
3728
3728
|
*/
|
|
3729
|
-
DefaultDomain?: boolean;
|
|
3729
|
+
DefaultDomain?: boolean | undefined;
|
|
3730
3730
|
}
|
|
3731
3731
|
/**
|
|
3732
3732
|
* @public
|
|
@@ -3736,12 +3736,12 @@ export interface ListMailDomainsResponse {
|
|
|
3736
3736
|
* <p>The list of mail domain summaries, specifying domains that exist in the specified WorkMail organization, along with the information about whether the domain is or isn't the default.</p>
|
|
3737
3737
|
* @public
|
|
3738
3738
|
*/
|
|
3739
|
-
MailDomains?: MailDomainSummary[];
|
|
3739
|
+
MailDomains?: MailDomainSummary[] | undefined;
|
|
3740
3740
|
/**
|
|
3741
3741
|
* <p>The token to use to retrieve the next page of results. The value becomes <code>null</code> when there are no more results to return.</p>
|
|
3742
3742
|
* @public
|
|
3743
3743
|
*/
|
|
3744
|
-
NextToken?: string;
|
|
3744
|
+
NextToken?: string | undefined;
|
|
3745
3745
|
}
|
|
3746
3746
|
/**
|
|
3747
3747
|
* @public
|
|
@@ -3770,22 +3770,22 @@ export interface ListMobileDeviceAccessOverridesRequest {
|
|
|
3770
3770
|
* </ul>
|
|
3771
3771
|
* @public
|
|
3772
3772
|
*/
|
|
3773
|
-
UserId?: string;
|
|
3773
|
+
UserId?: string | undefined;
|
|
3774
3774
|
/**
|
|
3775
3775
|
* <p>The mobile device to which the access override applies.</p>
|
|
3776
3776
|
* @public
|
|
3777
3777
|
*/
|
|
3778
|
-
DeviceId?: string;
|
|
3778
|
+
DeviceId?: string | undefined;
|
|
3779
3779
|
/**
|
|
3780
3780
|
* <p>The token to use to retrieve the next page of results. The first call does not require a token.</p>
|
|
3781
3781
|
* @public
|
|
3782
3782
|
*/
|
|
3783
|
-
NextToken?: string;
|
|
3783
|
+
NextToken?: string | undefined;
|
|
3784
3784
|
/**
|
|
3785
3785
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3786
3786
|
* @public
|
|
3787
3787
|
*/
|
|
3788
|
-
MaxResults?: number;
|
|
3788
|
+
MaxResults?: number | undefined;
|
|
3789
3789
|
}
|
|
3790
3790
|
/**
|
|
3791
3791
|
* <p>The override object.</p>
|
|
@@ -3796,32 +3796,32 @@ export interface MobileDeviceAccessOverride {
|
|
|
3796
3796
|
* <p>The WorkMail user to which the access override applies.</p>
|
|
3797
3797
|
* @public
|
|
3798
3798
|
*/
|
|
3799
|
-
UserId?: string;
|
|
3799
|
+
UserId?: string | undefined;
|
|
3800
3800
|
/**
|
|
3801
3801
|
* <p>The device to which the override applies.</p>
|
|
3802
3802
|
* @public
|
|
3803
3803
|
*/
|
|
3804
|
-
DeviceId?: string;
|
|
3804
|
+
DeviceId?: string | undefined;
|
|
3805
3805
|
/**
|
|
3806
3806
|
* <p>The effect of the override, <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
3807
3807
|
* @public
|
|
3808
3808
|
*/
|
|
3809
|
-
Effect?: MobileDeviceAccessRuleEffect;
|
|
3809
|
+
Effect?: MobileDeviceAccessRuleEffect | undefined;
|
|
3810
3810
|
/**
|
|
3811
3811
|
* <p>A description of the override.</p>
|
|
3812
3812
|
* @public
|
|
3813
3813
|
*/
|
|
3814
|
-
Description?: string;
|
|
3814
|
+
Description?: string | undefined;
|
|
3815
3815
|
/**
|
|
3816
3816
|
* <p>The date the override was first created.</p>
|
|
3817
3817
|
* @public
|
|
3818
3818
|
*/
|
|
3819
|
-
DateCreated?: Date;
|
|
3819
|
+
DateCreated?: Date | undefined;
|
|
3820
3820
|
/**
|
|
3821
3821
|
* <p>The date the override was last modified.</p>
|
|
3822
3822
|
* @public
|
|
3823
3823
|
*/
|
|
3824
|
-
DateModified?: Date;
|
|
3824
|
+
DateModified?: Date | undefined;
|
|
3825
3825
|
}
|
|
3826
3826
|
/**
|
|
3827
3827
|
* @public
|
|
@@ -3831,12 +3831,12 @@ export interface ListMobileDeviceAccessOverridesResponse {
|
|
|
3831
3831
|
* <p>The list of mobile device access overrides that exist for the specified WorkMail organization and user.</p>
|
|
3832
3832
|
* @public
|
|
3833
3833
|
*/
|
|
3834
|
-
Overrides?: MobileDeviceAccessOverride[];
|
|
3834
|
+
Overrides?: MobileDeviceAccessOverride[] | undefined;
|
|
3835
3835
|
/**
|
|
3836
3836
|
* <p>The token to use to retrieve the next page of results. The value is “null” when there are no more results to return.</p>
|
|
3837
3837
|
* @public
|
|
3838
3838
|
*/
|
|
3839
|
-
NextToken?: string;
|
|
3839
|
+
NextToken?: string | undefined;
|
|
3840
3840
|
}
|
|
3841
3841
|
/**
|
|
3842
3842
|
* @public
|
|
@@ -3857,72 +3857,72 @@ export interface MobileDeviceAccessRule {
|
|
|
3857
3857
|
* <p>The ID assigned to a mobile access rule.</p>
|
|
3858
3858
|
* @public
|
|
3859
3859
|
*/
|
|
3860
|
-
MobileDeviceAccessRuleId?: string;
|
|
3860
|
+
MobileDeviceAccessRuleId?: string | undefined;
|
|
3861
3861
|
/**
|
|
3862
3862
|
* <p>The name of a mobile access rule.</p>
|
|
3863
3863
|
* @public
|
|
3864
3864
|
*/
|
|
3865
|
-
Name?: string;
|
|
3865
|
+
Name?: string | undefined;
|
|
3866
3866
|
/**
|
|
3867
3867
|
* <p>The description of a mobile access rule.</p>
|
|
3868
3868
|
* @public
|
|
3869
3869
|
*/
|
|
3870
|
-
Description?: string;
|
|
3870
|
+
Description?: string | undefined;
|
|
3871
3871
|
/**
|
|
3872
3872
|
* <p>The effect of the rule when it matches. Allowed values are <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
3873
3873
|
* @public
|
|
3874
3874
|
*/
|
|
3875
|
-
Effect?: MobileDeviceAccessRuleEffect;
|
|
3875
|
+
Effect?: MobileDeviceAccessRuleEffect | undefined;
|
|
3876
3876
|
/**
|
|
3877
3877
|
* <p>Device types that a rule will match.</p>
|
|
3878
3878
|
* @public
|
|
3879
3879
|
*/
|
|
3880
|
-
DeviceTypes?: string[];
|
|
3880
|
+
DeviceTypes?: string[] | undefined;
|
|
3881
3881
|
/**
|
|
3882
3882
|
* <p>Device types that a rule <b>will not</b> match. All other device types will match.</p>
|
|
3883
3883
|
* @public
|
|
3884
3884
|
*/
|
|
3885
|
-
NotDeviceTypes?: string[];
|
|
3885
|
+
NotDeviceTypes?: string[] | undefined;
|
|
3886
3886
|
/**
|
|
3887
3887
|
* <p>Device models that a rule will match.</p>
|
|
3888
3888
|
* @public
|
|
3889
3889
|
*/
|
|
3890
|
-
DeviceModels?: string[];
|
|
3890
|
+
DeviceModels?: string[] | undefined;
|
|
3891
3891
|
/**
|
|
3892
3892
|
* <p>Device models that a rule <b>will not</b> match. All other device models will match.</p>
|
|
3893
3893
|
* @public
|
|
3894
3894
|
*/
|
|
3895
|
-
NotDeviceModels?: string[];
|
|
3895
|
+
NotDeviceModels?: string[] | undefined;
|
|
3896
3896
|
/**
|
|
3897
3897
|
* <p>Device operating systems that a rule will match.</p>
|
|
3898
3898
|
* @public
|
|
3899
3899
|
*/
|
|
3900
|
-
DeviceOperatingSystems?: string[];
|
|
3900
|
+
DeviceOperatingSystems?: string[] | undefined;
|
|
3901
3901
|
/**
|
|
3902
3902
|
* <p>Device operating systems that a rule <b>will not</b> match. All other device types will match.</p>
|
|
3903
3903
|
* @public
|
|
3904
3904
|
*/
|
|
3905
|
-
NotDeviceOperatingSystems?: string[];
|
|
3905
|
+
NotDeviceOperatingSystems?: string[] | undefined;
|
|
3906
3906
|
/**
|
|
3907
3907
|
* <p>Device user agents that a rule will match.</p>
|
|
3908
3908
|
* @public
|
|
3909
3909
|
*/
|
|
3910
|
-
DeviceUserAgents?: string[];
|
|
3910
|
+
DeviceUserAgents?: string[] | undefined;
|
|
3911
3911
|
/**
|
|
3912
3912
|
* <p>Device user agents that a rule <b>will not</b> match. All other device user agents will match.</p>
|
|
3913
3913
|
* @public
|
|
3914
3914
|
*/
|
|
3915
|
-
NotDeviceUserAgents?: string[];
|
|
3915
|
+
NotDeviceUserAgents?: string[] | undefined;
|
|
3916
3916
|
/**
|
|
3917
3917
|
* <p>The date and time at which an access rule was created.</p>
|
|
3918
3918
|
* @public
|
|
3919
3919
|
*/
|
|
3920
|
-
DateCreated?: Date;
|
|
3920
|
+
DateCreated?: Date | undefined;
|
|
3921
3921
|
/**
|
|
3922
3922
|
* <p>The date and time at which an access rule was modified.</p>
|
|
3923
3923
|
* @public
|
|
3924
3924
|
*/
|
|
3925
|
-
DateModified?: Date;
|
|
3925
|
+
DateModified?: Date | undefined;
|
|
3926
3926
|
}
|
|
3927
3927
|
/**
|
|
3928
3928
|
* @public
|
|
@@ -3932,7 +3932,7 @@ export interface ListMobileDeviceAccessRulesResponse {
|
|
|
3932
3932
|
* <p>The list of mobile device access rules that exist under the specified WorkMail organization.</p>
|
|
3933
3933
|
* @public
|
|
3934
3934
|
*/
|
|
3935
|
-
Rules?: MobileDeviceAccessRule[];
|
|
3935
|
+
Rules?: MobileDeviceAccessRule[] | undefined;
|
|
3936
3936
|
}
|
|
3937
3937
|
/**
|
|
3938
3938
|
* @public
|
|
@@ -3943,12 +3943,12 @@ export interface ListOrganizationsRequest {
|
|
|
3943
3943
|
* contain any tokens.</p>
|
|
3944
3944
|
* @public
|
|
3945
3945
|
*/
|
|
3946
|
-
NextToken?: string;
|
|
3946
|
+
NextToken?: string | undefined;
|
|
3947
3947
|
/**
|
|
3948
3948
|
* <p>The maximum number of results to return in a single call.</p>
|
|
3949
3949
|
* @public
|
|
3950
3950
|
*/
|
|
3951
|
-
MaxResults?: number;
|
|
3951
|
+
MaxResults?: number | undefined;
|
|
3952
3952
|
}
|
|
3953
3953
|
/**
|
|
3954
3954
|
* <p>The representation of an organization.</p>
|
|
@@ -3959,29 +3959,29 @@ export interface OrganizationSummary {
|
|
|
3959
3959
|
* <p>The identifier associated with the organization.</p>
|
|
3960
3960
|
* @public
|
|
3961
3961
|
*/
|
|
3962
|
-
OrganizationId?: string;
|
|
3962
|
+
OrganizationId?: string | undefined;
|
|
3963
3963
|
/**
|
|
3964
3964
|
* <p>The alias associated with the organization.</p>
|
|
3965
3965
|
* @public
|
|
3966
3966
|
*/
|
|
3967
|
-
Alias?: string;
|
|
3967
|
+
Alias?: string | undefined;
|
|
3968
3968
|
/**
|
|
3969
3969
|
* <p>The default email domain associated with the organization.</p>
|
|
3970
3970
|
* @public
|
|
3971
3971
|
*/
|
|
3972
|
-
DefaultMailDomain?: string;
|
|
3972
|
+
DefaultMailDomain?: string | undefined;
|
|
3973
3973
|
/**
|
|
3974
3974
|
* <p>The error message associated with the organization. It is only present if unexpected
|
|
3975
3975
|
* behavior has occurred with regards to the organization. It provides insight or solutions
|
|
3976
3976
|
* regarding unexpected behavior.</p>
|
|
3977
3977
|
* @public
|
|
3978
3978
|
*/
|
|
3979
|
-
ErrorMessage?: string;
|
|
3979
|
+
ErrorMessage?: string | undefined;
|
|
3980
3980
|
/**
|
|
3981
3981
|
* <p>The state associated with the organization.</p>
|
|
3982
3982
|
* @public
|
|
3983
3983
|
*/
|
|
3984
|
-
State?: string;
|
|
3984
|
+
State?: string | undefined;
|
|
3985
3985
|
}
|
|
3986
3986
|
/**
|
|
3987
3987
|
* @public
|
|
@@ -3992,13 +3992,13 @@ export interface ListOrganizationsResponse {
|
|
|
3992
3992
|
* summaries.</p>
|
|
3993
3993
|
* @public
|
|
3994
3994
|
*/
|
|
3995
|
-
OrganizationSummaries?: OrganizationSummary[];
|
|
3995
|
+
OrganizationSummaries?: OrganizationSummary[] | undefined;
|
|
3996
3996
|
/**
|
|
3997
3997
|
* <p>The token to use to retrieve the next page of results. The value is "null" when there
|
|
3998
3998
|
* are no more results to return.</p>
|
|
3999
3999
|
* @public
|
|
4000
4000
|
*/
|
|
4001
|
-
NextToken?: string;
|
|
4001
|
+
NextToken?: string | undefined;
|
|
4002
4002
|
}
|
|
4003
4003
|
/**
|
|
4004
4004
|
* @public
|
|
@@ -4016,20 +4016,20 @@ export interface ListPersonalAccessTokensRequest {
|
|
|
4016
4016
|
* </p>
|
|
4017
4017
|
* @public
|
|
4018
4018
|
*/
|
|
4019
|
-
UserId?: string;
|
|
4019
|
+
UserId?: string | undefined;
|
|
4020
4020
|
/**
|
|
4021
4021
|
* <p>
|
|
4022
4022
|
* The token from the previous response to query the next page.</p>
|
|
4023
4023
|
* @public
|
|
4024
4024
|
*/
|
|
4025
|
-
NextToken?: string;
|
|
4025
|
+
NextToken?: string | undefined;
|
|
4026
4026
|
/**
|
|
4027
4027
|
* <p>
|
|
4028
4028
|
* The maximum amount of items that should be returned in a response.
|
|
4029
4029
|
* </p>
|
|
4030
4030
|
* @public
|
|
4031
4031
|
*/
|
|
4032
|
-
MaxResults?: number;
|
|
4032
|
+
MaxResults?: number | undefined;
|
|
4033
4033
|
}
|
|
4034
4034
|
/**
|
|
4035
4035
|
* <p>
|
|
@@ -4044,49 +4044,49 @@ export interface PersonalAccessTokenSummary {
|
|
|
4044
4044
|
* </p>
|
|
4045
4045
|
* @public
|
|
4046
4046
|
*/
|
|
4047
|
-
PersonalAccessTokenId?: string;
|
|
4047
|
+
PersonalAccessTokenId?: string | undefined;
|
|
4048
4048
|
/**
|
|
4049
4049
|
* <p>
|
|
4050
4050
|
* The user ID of the WorkMail user associated with the Personal Access Token.
|
|
4051
4051
|
* </p>
|
|
4052
4052
|
* @public
|
|
4053
4053
|
*/
|
|
4054
|
-
UserId?: string;
|
|
4054
|
+
UserId?: string | undefined;
|
|
4055
4055
|
/**
|
|
4056
4056
|
* <p>
|
|
4057
4057
|
* The name of the Personal Access Token.
|
|
4058
4058
|
* </p>
|
|
4059
4059
|
* @public
|
|
4060
4060
|
*/
|
|
4061
|
-
Name?: string;
|
|
4061
|
+
Name?: string | undefined;
|
|
4062
4062
|
/**
|
|
4063
4063
|
* <p>
|
|
4064
4064
|
* The date when the Personal Access Token was created.
|
|
4065
4065
|
* </p>
|
|
4066
4066
|
* @public
|
|
4067
4067
|
*/
|
|
4068
|
-
DateCreated?: Date;
|
|
4068
|
+
DateCreated?: Date | undefined;
|
|
4069
4069
|
/**
|
|
4070
4070
|
* <p>
|
|
4071
4071
|
* The date when the Personal Access Token was last used.
|
|
4072
4072
|
* </p>
|
|
4073
4073
|
* @public
|
|
4074
4074
|
*/
|
|
4075
|
-
DateLastUsed?: Date;
|
|
4075
|
+
DateLastUsed?: Date | undefined;
|
|
4076
4076
|
/**
|
|
4077
4077
|
* <p>
|
|
4078
4078
|
* The date when the Personal Access Token will expire.
|
|
4079
4079
|
* </p>
|
|
4080
4080
|
* @public
|
|
4081
4081
|
*/
|
|
4082
|
-
ExpiresTime?: Date;
|
|
4082
|
+
ExpiresTime?: Date | undefined;
|
|
4083
4083
|
/**
|
|
4084
4084
|
* <p>
|
|
4085
4085
|
* Lists all the Personal Access Token permissions for a mailbox.
|
|
4086
4086
|
* </p>
|
|
4087
4087
|
* @public
|
|
4088
4088
|
*/
|
|
4089
|
-
Scopes?: string[];
|
|
4089
|
+
Scopes?: string[] | undefined;
|
|
4090
4090
|
}
|
|
4091
4091
|
/**
|
|
4092
4092
|
* @public
|
|
@@ -4097,14 +4097,14 @@ export interface ListPersonalAccessTokensResponse {
|
|
|
4097
4097
|
* The token from the previous response to query the next page.</p>
|
|
4098
4098
|
* @public
|
|
4099
4099
|
*/
|
|
4100
|
-
NextToken?: string;
|
|
4100
|
+
NextToken?: string | undefined;
|
|
4101
4101
|
/**
|
|
4102
4102
|
* <p>
|
|
4103
4103
|
* Lists all the personal tokens in an organization or user, if user ID is provided.
|
|
4104
4104
|
* </p>
|
|
4105
4105
|
* @public
|
|
4106
4106
|
*/
|
|
4107
|
-
PersonalAccessTokenSummaries?: PersonalAccessTokenSummary[];
|
|
4107
|
+
PersonalAccessTokenSummaries?: PersonalAccessTokenSummary[] | undefined;
|
|
4108
4108
|
}
|
|
4109
4109
|
/**
|
|
4110
4110
|
* @public
|
|
@@ -4138,12 +4138,12 @@ export interface ListResourceDelegatesRequest {
|
|
|
4138
4138
|
* resource.</p>
|
|
4139
4139
|
* @public
|
|
4140
4140
|
*/
|
|
4141
|
-
NextToken?: string;
|
|
4141
|
+
NextToken?: string | undefined;
|
|
4142
4142
|
/**
|
|
4143
4143
|
* <p>The number of maximum results in a page.</p>
|
|
4144
4144
|
* @public
|
|
4145
4145
|
*/
|
|
4146
|
-
MaxResults?: number;
|
|
4146
|
+
MaxResults?: number | undefined;
|
|
4147
4147
|
}
|
|
4148
4148
|
/**
|
|
4149
4149
|
* @public
|
|
@@ -4153,14 +4153,14 @@ export interface ListResourceDelegatesResponse {
|
|
|
4153
4153
|
* <p>One page of the resource's delegates.</p>
|
|
4154
4154
|
* @public
|
|
4155
4155
|
*/
|
|
4156
|
-
Delegates?: Delegate[];
|
|
4156
|
+
Delegates?: Delegate[] | undefined;
|
|
4157
4157
|
/**
|
|
4158
4158
|
* <p>The token used to paginate through the delegates associated with a resource. While
|
|
4159
4159
|
* results are still available, it has an associated value. When the last page is reached, the
|
|
4160
4160
|
* token is empty.</p>
|
|
4161
4161
|
* @public
|
|
4162
4162
|
*/
|
|
4163
|
-
NextToken?: string;
|
|
4163
|
+
NextToken?: string | undefined;
|
|
4164
4164
|
}
|
|
4165
4165
|
/**
|
|
4166
4166
|
* <p>Filtering options for <i>ListResources</i> operation. This is only used as input to Operation.</p>
|
|
@@ -4171,17 +4171,17 @@ export interface ListResourcesFilters {
|
|
|
4171
4171
|
* <p>Filters only resource that start with the entered name prefix .</p>
|
|
4172
4172
|
* @public
|
|
4173
4173
|
*/
|
|
4174
|
-
NamePrefix?: string;
|
|
4174
|
+
NamePrefix?: string | undefined;
|
|
4175
4175
|
/**
|
|
4176
4176
|
* <p>Filters only resource with the provided primary email prefix.</p>
|
|
4177
4177
|
* @public
|
|
4178
4178
|
*/
|
|
4179
|
-
PrimaryEmailPrefix?: string;
|
|
4179
|
+
PrimaryEmailPrefix?: string | undefined;
|
|
4180
4180
|
/**
|
|
4181
4181
|
* <p>Filters only resource with the provided state.</p>
|
|
4182
4182
|
* @public
|
|
4183
4183
|
*/
|
|
4184
|
-
State?: EntityState;
|
|
4184
|
+
State?: EntityState | undefined;
|
|
4185
4185
|
}
|
|
4186
4186
|
/**
|
|
4187
4187
|
* @public
|
|
@@ -4197,17 +4197,17 @@ export interface ListResourcesRequest {
|
|
|
4197
4197
|
* contain any tokens.</p>
|
|
4198
4198
|
* @public
|
|
4199
4199
|
*/
|
|
4200
|
-
NextToken?: string;
|
|
4200
|
+
NextToken?: string | undefined;
|
|
4201
4201
|
/**
|
|
4202
4202
|
* <p>The maximum number of results to return in a single call.</p>
|
|
4203
4203
|
* @public
|
|
4204
4204
|
*/
|
|
4205
|
-
MaxResults?: number;
|
|
4205
|
+
MaxResults?: number | undefined;
|
|
4206
4206
|
/**
|
|
4207
4207
|
* <p>Limit the resource search results based on the filter criteria. You can only use one filter per request.</p>
|
|
4208
4208
|
* @public
|
|
4209
4209
|
*/
|
|
4210
|
-
Filters?: ListResourcesFilters;
|
|
4210
|
+
Filters?: ListResourcesFilters | undefined;
|
|
4211
4211
|
}
|
|
4212
4212
|
/**
|
|
4213
4213
|
* <p>The representation of a resource.</p>
|
|
@@ -4218,42 +4218,42 @@ export interface Resource {
|
|
|
4218
4218
|
* <p>The identifier of the resource.</p>
|
|
4219
4219
|
* @public
|
|
4220
4220
|
*/
|
|
4221
|
-
Id?: string;
|
|
4221
|
+
Id?: string | undefined;
|
|
4222
4222
|
/**
|
|
4223
4223
|
* <p>The email of the resource.</p>
|
|
4224
4224
|
* @public
|
|
4225
4225
|
*/
|
|
4226
|
-
Email?: string;
|
|
4226
|
+
Email?: string | undefined;
|
|
4227
4227
|
/**
|
|
4228
4228
|
* <p>The name of the resource.</p>
|
|
4229
4229
|
* @public
|
|
4230
4230
|
*/
|
|
4231
|
-
Name?: string;
|
|
4231
|
+
Name?: string | undefined;
|
|
4232
4232
|
/**
|
|
4233
4233
|
* <p>The type of the resource: equipment or room.</p>
|
|
4234
4234
|
* @public
|
|
4235
4235
|
*/
|
|
4236
|
-
Type?: ResourceType;
|
|
4236
|
+
Type?: ResourceType | undefined;
|
|
4237
4237
|
/**
|
|
4238
4238
|
* <p>The state of the resource, which can be ENABLED, DISABLED, or DELETED.</p>
|
|
4239
4239
|
* @public
|
|
4240
4240
|
*/
|
|
4241
|
-
State?: EntityState;
|
|
4241
|
+
State?: EntityState | undefined;
|
|
4242
4242
|
/**
|
|
4243
4243
|
* <p>The date indicating when the resource was enabled for WorkMail use.</p>
|
|
4244
4244
|
* @public
|
|
4245
4245
|
*/
|
|
4246
|
-
EnabledDate?: Date;
|
|
4246
|
+
EnabledDate?: Date | undefined;
|
|
4247
4247
|
/**
|
|
4248
4248
|
* <p>The date indicating when the resource was disabled from WorkMail use.</p>
|
|
4249
4249
|
* @public
|
|
4250
4250
|
*/
|
|
4251
|
-
DisabledDate?: Date;
|
|
4251
|
+
DisabledDate?: Date | undefined;
|
|
4252
4252
|
/**
|
|
4253
4253
|
* <p>Resource description.</p>
|
|
4254
4254
|
* @public
|
|
4255
4255
|
*/
|
|
4256
|
-
Description?: string;
|
|
4256
|
+
Description?: string | undefined;
|
|
4257
4257
|
}
|
|
4258
4258
|
/**
|
|
4259
4259
|
* @public
|
|
@@ -4263,14 +4263,14 @@ export interface ListResourcesResponse {
|
|
|
4263
4263
|
* <p>One page of the organization's resource representation.</p>
|
|
4264
4264
|
* @public
|
|
4265
4265
|
*/
|
|
4266
|
-
Resources?: Resource[];
|
|
4266
|
+
Resources?: Resource[] | undefined;
|
|
4267
4267
|
/**
|
|
4268
4268
|
* <p> The token used to paginate through all the organization's resources. While results
|
|
4269
4269
|
* are still available, it has an associated value. When the last page is reached, the token
|
|
4270
4270
|
* is empty.</p>
|
|
4271
4271
|
* @public
|
|
4272
4272
|
*/
|
|
4273
|
-
NextToken?: string;
|
|
4273
|
+
NextToken?: string | undefined;
|
|
4274
4274
|
}
|
|
4275
4275
|
/**
|
|
4276
4276
|
* @public
|
|
@@ -4306,7 +4306,7 @@ export interface ListTagsForResourceResponse {
|
|
|
4306
4306
|
* <p>A list of tag key-value pairs.</p>
|
|
4307
4307
|
* @public
|
|
4308
4308
|
*/
|
|
4309
|
-
Tags?: Tag[];
|
|
4309
|
+
Tags?: Tag[] | undefined;
|
|
4310
4310
|
}
|
|
4311
4311
|
/**
|
|
4312
4312
|
* <p> Filtering options for <i>ListUsers</i> operation. This is only used as input to Operation.</p>
|
|
@@ -4317,27 +4317,27 @@ export interface ListUsersFilters {
|
|
|
4317
4317
|
* <p>Filters only users with the provided username prefix.</p>
|
|
4318
4318
|
* @public
|
|
4319
4319
|
*/
|
|
4320
|
-
UsernamePrefix?: string;
|
|
4320
|
+
UsernamePrefix?: string | undefined;
|
|
4321
4321
|
/**
|
|
4322
4322
|
* <p>Filters only users with the provided display name prefix.</p>
|
|
4323
4323
|
* @public
|
|
4324
4324
|
*/
|
|
4325
|
-
DisplayNamePrefix?: string;
|
|
4325
|
+
DisplayNamePrefix?: string | undefined;
|
|
4326
4326
|
/**
|
|
4327
4327
|
* <p>Filters only users with the provided email prefix.</p>
|
|
4328
4328
|
* @public
|
|
4329
4329
|
*/
|
|
4330
|
-
PrimaryEmailPrefix?: string;
|
|
4330
|
+
PrimaryEmailPrefix?: string | undefined;
|
|
4331
4331
|
/**
|
|
4332
4332
|
* <p>Filters only users with the provided state.</p>
|
|
4333
4333
|
* @public
|
|
4334
4334
|
*/
|
|
4335
|
-
State?: EntityState;
|
|
4335
|
+
State?: EntityState | undefined;
|
|
4336
4336
|
/**
|
|
4337
4337
|
* <p>Filters only users with the ID from the IAM Identity Center.</p>
|
|
4338
4338
|
* @public
|
|
4339
4339
|
*/
|
|
4340
|
-
IdentityProviderUserIdPrefix?: string;
|
|
4340
|
+
IdentityProviderUserIdPrefix?: string | undefined;
|
|
4341
4341
|
}
|
|
4342
4342
|
/**
|
|
4343
4343
|
* @public
|
|
@@ -4353,17 +4353,17 @@ export interface ListUsersRequest {
|
|
|
4353
4353
|
* contain any tokens.</p>
|
|
4354
4354
|
* @public
|
|
4355
4355
|
*/
|
|
4356
|
-
NextToken?: string;
|
|
4356
|
+
NextToken?: string | undefined;
|
|
4357
4357
|
/**
|
|
4358
4358
|
* <p>The maximum number of results to return in a single call.</p>
|
|
4359
4359
|
* @public
|
|
4360
4360
|
*/
|
|
4361
|
-
MaxResults?: number;
|
|
4361
|
+
MaxResults?: number | undefined;
|
|
4362
4362
|
/**
|
|
4363
4363
|
* <p>Limit the user search results based on the filter criteria. You can only use one filter per request.</p>
|
|
4364
4364
|
* @public
|
|
4365
4365
|
*/
|
|
4366
|
-
Filters?: ListUsersFilters;
|
|
4366
|
+
Filters?: ListUsersFilters | undefined;
|
|
4367
4367
|
}
|
|
4368
4368
|
/**
|
|
4369
4369
|
* <p>The representation of an WorkMail user.</p>
|
|
@@ -4374,52 +4374,52 @@ export interface User {
|
|
|
4374
4374
|
* <p>The identifier of the user.</p>
|
|
4375
4375
|
* @public
|
|
4376
4376
|
*/
|
|
4377
|
-
Id?: string;
|
|
4377
|
+
Id?: string | undefined;
|
|
4378
4378
|
/**
|
|
4379
4379
|
* <p>The email of the user.</p>
|
|
4380
4380
|
* @public
|
|
4381
4381
|
*/
|
|
4382
|
-
Email?: string;
|
|
4382
|
+
Email?: string | undefined;
|
|
4383
4383
|
/**
|
|
4384
4384
|
* <p>The name of the user.</p>
|
|
4385
4385
|
* @public
|
|
4386
4386
|
*/
|
|
4387
|
-
Name?: string;
|
|
4387
|
+
Name?: string | undefined;
|
|
4388
4388
|
/**
|
|
4389
4389
|
* <p>The display name of the user.</p>
|
|
4390
4390
|
* @public
|
|
4391
4391
|
*/
|
|
4392
|
-
DisplayName?: string;
|
|
4392
|
+
DisplayName?: string | undefined;
|
|
4393
4393
|
/**
|
|
4394
4394
|
* <p>The state of the user, which can be ENABLED, DISABLED, or DELETED.</p>
|
|
4395
4395
|
* @public
|
|
4396
4396
|
*/
|
|
4397
|
-
State?: EntityState;
|
|
4397
|
+
State?: EntityState | undefined;
|
|
4398
4398
|
/**
|
|
4399
4399
|
* <p>The role of the user.</p>
|
|
4400
4400
|
* @public
|
|
4401
4401
|
*/
|
|
4402
|
-
UserRole?: UserRole;
|
|
4402
|
+
UserRole?: UserRole | undefined;
|
|
4403
4403
|
/**
|
|
4404
4404
|
* <p>The date indicating when the user was enabled for WorkMail use.</p>
|
|
4405
4405
|
* @public
|
|
4406
4406
|
*/
|
|
4407
|
-
EnabledDate?: Date;
|
|
4407
|
+
EnabledDate?: Date | undefined;
|
|
4408
4408
|
/**
|
|
4409
4409
|
* <p>The date indicating when the user was disabled from WorkMail use.</p>
|
|
4410
4410
|
* @public
|
|
4411
4411
|
*/
|
|
4412
|
-
DisabledDate?: Date;
|
|
4412
|
+
DisabledDate?: Date | undefined;
|
|
4413
4413
|
/**
|
|
4414
4414
|
* <p>User ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.</p>
|
|
4415
4415
|
* @public
|
|
4416
4416
|
*/
|
|
4417
|
-
IdentityProviderUserId?: string;
|
|
4417
|
+
IdentityProviderUserId?: string | undefined;
|
|
4418
4418
|
/**
|
|
4419
4419
|
* <p>Identity store ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.</p>
|
|
4420
4420
|
* @public
|
|
4421
4421
|
*/
|
|
4422
|
-
IdentityProviderIdentityStoreId?: string;
|
|
4422
|
+
IdentityProviderIdentityStoreId?: string | undefined;
|
|
4423
4423
|
}
|
|
4424
4424
|
/**
|
|
4425
4425
|
* @public
|
|
@@ -4429,13 +4429,13 @@ export interface ListUsersResponse {
|
|
|
4429
4429
|
* <p>The overview of users for an organization.</p>
|
|
4430
4430
|
* @public
|
|
4431
4431
|
*/
|
|
4432
|
-
Users?: User[];
|
|
4432
|
+
Users?: User[] | undefined;
|
|
4433
4433
|
/**
|
|
4434
4434
|
* <p> The token to use to retrieve the next page of results. This value is `null` when
|
|
4435
4435
|
* there are no more results to return.</p>
|
|
4436
4436
|
* @public
|
|
4437
4437
|
*/
|
|
4438
|
-
NextToken?: string;
|
|
4438
|
+
NextToken?: string | undefined;
|
|
4439
4439
|
}
|
|
4440
4440
|
/**
|
|
4441
4441
|
* @public
|
|
@@ -4460,36 +4460,36 @@ export interface PutAccessControlRuleRequest {
|
|
|
4460
4460
|
* <p>IPv4 CIDR ranges to include in the rule.</p>
|
|
4461
4461
|
* @public
|
|
4462
4462
|
*/
|
|
4463
|
-
IpRanges?: string[];
|
|
4463
|
+
IpRanges?: string[] | undefined;
|
|
4464
4464
|
/**
|
|
4465
4465
|
* <p>IPv4 CIDR ranges to exclude from the rule.</p>
|
|
4466
4466
|
* @public
|
|
4467
4467
|
*/
|
|
4468
|
-
NotIpRanges?: string[];
|
|
4468
|
+
NotIpRanges?: string[] | undefined;
|
|
4469
4469
|
/**
|
|
4470
4470
|
* <p>Access protocol actions to include in the rule. Valid values include
|
|
4471
4471
|
* <code>ActiveSync</code>, <code>AutoDiscover</code>, <code>EWS</code>, <code>IMAP</code>,
|
|
4472
4472
|
* <code>SMTP</code>, <code>WindowsOutlook</code>, and <code>WebMail</code>.</p>
|
|
4473
4473
|
* @public
|
|
4474
4474
|
*/
|
|
4475
|
-
Actions?: string[];
|
|
4475
|
+
Actions?: string[] | undefined;
|
|
4476
4476
|
/**
|
|
4477
4477
|
* <p>Access protocol actions to exclude from the rule. Valid values include
|
|
4478
4478
|
* <code>ActiveSync</code>, <code>AutoDiscover</code>, <code>EWS</code>, <code>IMAP</code>,
|
|
4479
4479
|
* <code>SMTP</code>, <code>WindowsOutlook</code>, and <code>WebMail</code>.</p>
|
|
4480
4480
|
* @public
|
|
4481
4481
|
*/
|
|
4482
|
-
NotActions?: string[];
|
|
4482
|
+
NotActions?: string[] | undefined;
|
|
4483
4483
|
/**
|
|
4484
4484
|
* <p>User IDs to include in the rule.</p>
|
|
4485
4485
|
* @public
|
|
4486
4486
|
*/
|
|
4487
|
-
UserIds?: string[];
|
|
4487
|
+
UserIds?: string[] | undefined;
|
|
4488
4488
|
/**
|
|
4489
4489
|
* <p>User IDs to exclude from the rule.</p>
|
|
4490
4490
|
* @public
|
|
4491
4491
|
*/
|
|
4492
|
-
NotUserIds?: string[];
|
|
4492
|
+
NotUserIds?: string[] | undefined;
|
|
4493
4493
|
/**
|
|
4494
4494
|
* <p>The identifier of the organization.</p>
|
|
4495
4495
|
* @public
|
|
@@ -4499,12 +4499,12 @@ export interface PutAccessControlRuleRequest {
|
|
|
4499
4499
|
* <p>Impersonation role IDs to include in the rule.</p>
|
|
4500
4500
|
* @public
|
|
4501
4501
|
*/
|
|
4502
|
-
ImpersonationRoleIds?: string[];
|
|
4502
|
+
ImpersonationRoleIds?: string[] | undefined;
|
|
4503
4503
|
/**
|
|
4504
4504
|
* <p>Impersonation role IDs to exclude from the rule.</p>
|
|
4505
4505
|
* @public
|
|
4506
4506
|
*/
|
|
4507
|
-
NotImpersonationRoleIds?: string[];
|
|
4507
|
+
NotImpersonationRoleIds?: string[] | undefined;
|
|
4508
4508
|
}
|
|
4509
4509
|
/**
|
|
4510
4510
|
* @public
|
|
@@ -4695,7 +4695,7 @@ export interface PutMobileDeviceAccessOverrideRequest {
|
|
|
4695
4695
|
* <p>A description of the override.</p>
|
|
4696
4696
|
* @public
|
|
4697
4697
|
*/
|
|
4698
|
-
Description?: string;
|
|
4698
|
+
Description?: string | undefined;
|
|
4699
4699
|
}
|
|
4700
4700
|
/**
|
|
4701
4701
|
* @public
|
|
@@ -4715,7 +4715,7 @@ export interface PutRetentionPolicyRequest {
|
|
|
4715
4715
|
* <p>The retention policy ID.</p>
|
|
4716
4716
|
* @public
|
|
4717
4717
|
*/
|
|
4718
|
-
Id?: string;
|
|
4718
|
+
Id?: string | undefined;
|
|
4719
4719
|
/**
|
|
4720
4720
|
* <p>The retention policy name.</p>
|
|
4721
4721
|
* @public
|
|
@@ -4725,7 +4725,7 @@ export interface PutRetentionPolicyRequest {
|
|
|
4725
4725
|
* <p>The retention policy description.</p>
|
|
4726
4726
|
* @public
|
|
4727
4727
|
*/
|
|
4728
|
-
Description?: string;
|
|
4728
|
+
Description?: string | undefined;
|
|
4729
4729
|
/**
|
|
4730
4730
|
* <p>The retention policy folder configurations.</p>
|
|
4731
4731
|
* @public
|
|
@@ -4745,7 +4745,7 @@ export interface RegisterMailDomainRequest {
|
|
|
4745
4745
|
* <p>Idempotency token used when retrying requests.</p>
|
|
4746
4746
|
* @public
|
|
4747
4747
|
*/
|
|
4748
|
-
ClientToken?: string;
|
|
4748
|
+
ClientToken?: string | undefined;
|
|
4749
4749
|
/**
|
|
4750
4750
|
* <p>The WorkMail organization under which you're creating the domain.</p>
|
|
4751
4751
|
* @public
|
|
@@ -4831,7 +4831,7 @@ export interface StartMailboxExportJobRequest {
|
|
|
4831
4831
|
* <p>The idempotency token for the client request.</p>
|
|
4832
4832
|
* @public
|
|
4833
4833
|
*/
|
|
4834
|
-
ClientToken?: string;
|
|
4834
|
+
ClientToken?: string | undefined;
|
|
4835
4835
|
/**
|
|
4836
4836
|
* <p>The identifier associated with the organization.</p>
|
|
4837
4837
|
* @public
|
|
@@ -4859,7 +4859,7 @@ export interface StartMailboxExportJobRequest {
|
|
|
4859
4859
|
* <p>The mailbox export job description.</p>
|
|
4860
4860
|
* @public
|
|
4861
4861
|
*/
|
|
4862
|
-
Description?: string;
|
|
4862
|
+
Description?: string | undefined;
|
|
4863
4863
|
/**
|
|
4864
4864
|
* <p>The ARN of the AWS Identity and Access Management (IAM) role that grants write permission to the S3
|
|
4865
4865
|
* bucket.</p>
|
|
@@ -4891,7 +4891,7 @@ export interface StartMailboxExportJobResponse {
|
|
|
4891
4891
|
* <p>The job ID.</p>
|
|
4892
4892
|
* @public
|
|
4893
4893
|
*/
|
|
4894
|
-
JobId?: string;
|
|
4894
|
+
JobId?: string | undefined;
|
|
4895
4895
|
}
|
|
4896
4896
|
/**
|
|
4897
4897
|
* @public
|
|
@@ -4920,7 +4920,7 @@ export interface TagResourceResponse {
|
|
|
4920
4920
|
export declare class TooManyTagsException extends __BaseException {
|
|
4921
4921
|
readonly name: "TooManyTagsException";
|
|
4922
4922
|
readonly $fault: "client";
|
|
4923
|
-
Message?: string;
|
|
4923
|
+
Message?: string | undefined;
|
|
4924
4924
|
/**
|
|
4925
4925
|
* @internal
|
|
4926
4926
|
*/
|
|
@@ -4939,17 +4939,17 @@ export interface TestAvailabilityConfigurationRequest {
|
|
|
4939
4939
|
* <p>The domain to which the provider applies. If this field is provided, a stored availability provider associated to this domain name will be tested.</p>
|
|
4940
4940
|
* @public
|
|
4941
4941
|
*/
|
|
4942
|
-
DomainName?: string;
|
|
4942
|
+
DomainName?: string | undefined;
|
|
4943
4943
|
/**
|
|
4944
4944
|
* <p>Describes an EWS based availability provider. This is only used as input to the service.</p>
|
|
4945
4945
|
* @public
|
|
4946
4946
|
*/
|
|
4947
|
-
EwsProvider?: EwsAvailabilityProvider;
|
|
4947
|
+
EwsProvider?: EwsAvailabilityProvider | undefined;
|
|
4948
4948
|
/**
|
|
4949
4949
|
* <p>Describes a Lambda based availability provider.</p>
|
|
4950
4950
|
* @public
|
|
4951
4951
|
*/
|
|
4952
|
-
LambdaProvider?: LambdaAvailabilityProvider;
|
|
4952
|
+
LambdaProvider?: LambdaAvailabilityProvider | undefined;
|
|
4953
4953
|
}
|
|
4954
4954
|
/**
|
|
4955
4955
|
* @public
|
|
@@ -4959,12 +4959,12 @@ export interface TestAvailabilityConfigurationResponse {
|
|
|
4959
4959
|
* <p>Boolean indicating whether the test passed or failed.</p>
|
|
4960
4960
|
* @public
|
|
4961
4961
|
*/
|
|
4962
|
-
TestPassed?: boolean;
|
|
4962
|
+
TestPassed?: boolean | undefined;
|
|
4963
4963
|
/**
|
|
4964
4964
|
* <p>String containing the reason for a failed test if <code>TestPassed</code> is false.</p>
|
|
4965
4965
|
* @public
|
|
4966
4966
|
*/
|
|
4967
|
-
FailureReason?: string;
|
|
4967
|
+
FailureReason?: string | undefined;
|
|
4968
4968
|
}
|
|
4969
4969
|
/**
|
|
4970
4970
|
* @public
|
|
@@ -5007,14 +5007,14 @@ export interface UpdateAvailabilityConfigurationRequest {
|
|
|
5007
5007
|
* stored provider will be overridden by the one provided.</p>
|
|
5008
5008
|
* @public
|
|
5009
5009
|
*/
|
|
5010
|
-
EwsProvider?: EwsAvailabilityProvider;
|
|
5010
|
+
EwsProvider?: EwsAvailabilityProvider | undefined;
|
|
5011
5011
|
/**
|
|
5012
5012
|
* <p>The Lambda availability provider definition. The request must contain exactly one
|
|
5013
5013
|
* provider definition, either <code>EwsProvider</code> or <code>LambdaProvider</code>. The
|
|
5014
5014
|
* previously stored provider will be overridden by the one provided.</p>
|
|
5015
5015
|
* @public
|
|
5016
5016
|
*/
|
|
5017
|
-
LambdaProvider?: LambdaAvailabilityProvider;
|
|
5017
|
+
LambdaProvider?: LambdaAvailabilityProvider | undefined;
|
|
5018
5018
|
}
|
|
5019
5019
|
/**
|
|
5020
5020
|
* @public
|
|
@@ -5071,7 +5071,7 @@ export interface UpdateGroupRequest {
|
|
|
5071
5071
|
* <p>If enabled, the group is hidden from the global address list.</p>
|
|
5072
5072
|
* @public
|
|
5073
5073
|
*/
|
|
5074
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
5074
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
5075
5075
|
}
|
|
5076
5076
|
/**
|
|
5077
5077
|
* @public
|
|
@@ -5106,7 +5106,7 @@ export interface UpdateImpersonationRoleRequest {
|
|
|
5106
5106
|
* <p>The updated impersonation role description.</p>
|
|
5107
5107
|
* @public
|
|
5108
5108
|
*/
|
|
5109
|
-
Description?: string;
|
|
5109
|
+
Description?: string | undefined;
|
|
5110
5110
|
/**
|
|
5111
5111
|
* <p>The updated list of rules.</p>
|
|
5112
5112
|
* @public
|
|
@@ -5179,7 +5179,7 @@ export interface UpdateMobileDeviceAccessRuleRequest {
|
|
|
5179
5179
|
* <p>The updated rule description.</p>
|
|
5180
5180
|
* @public
|
|
5181
5181
|
*/
|
|
5182
|
-
Description?: string;
|
|
5182
|
+
Description?: string | undefined;
|
|
5183
5183
|
/**
|
|
5184
5184
|
* <p>The effect of the rule when it matches. Allowed values are <code>ALLOW</code> or <code>DENY</code>.</p>
|
|
5185
5185
|
* @public
|
|
@@ -5189,42 +5189,42 @@ export interface UpdateMobileDeviceAccessRuleRequest {
|
|
|
5189
5189
|
* <p>Device types that the updated rule will match.</p>
|
|
5190
5190
|
* @public
|
|
5191
5191
|
*/
|
|
5192
|
-
DeviceTypes?: string[];
|
|
5192
|
+
DeviceTypes?: string[] | undefined;
|
|
5193
5193
|
/**
|
|
5194
5194
|
* <p>Device types that the updated rule <b>will not</b> match. All other device types will match.</p>
|
|
5195
5195
|
* @public
|
|
5196
5196
|
*/
|
|
5197
|
-
NotDeviceTypes?: string[];
|
|
5197
|
+
NotDeviceTypes?: string[] | undefined;
|
|
5198
5198
|
/**
|
|
5199
5199
|
* <p>Device models that the updated rule will match.</p>
|
|
5200
5200
|
* @public
|
|
5201
5201
|
*/
|
|
5202
|
-
DeviceModels?: string[];
|
|
5202
|
+
DeviceModels?: string[] | undefined;
|
|
5203
5203
|
/**
|
|
5204
5204
|
* <p>Device models that the updated rule <b>will not</b> match. All other device models will match.</p>
|
|
5205
5205
|
* @public
|
|
5206
5206
|
*/
|
|
5207
|
-
NotDeviceModels?: string[];
|
|
5207
|
+
NotDeviceModels?: string[] | undefined;
|
|
5208
5208
|
/**
|
|
5209
5209
|
* <p>Device operating systems that the updated rule will match.</p>
|
|
5210
5210
|
* @public
|
|
5211
5211
|
*/
|
|
5212
|
-
DeviceOperatingSystems?: string[];
|
|
5212
|
+
DeviceOperatingSystems?: string[] | undefined;
|
|
5213
5213
|
/**
|
|
5214
5214
|
* <p>Device operating systems that the updated rule <b>will not</b> match. All other device operating systems will match.</p>
|
|
5215
5215
|
* @public
|
|
5216
5216
|
*/
|
|
5217
|
-
NotDeviceOperatingSystems?: string[];
|
|
5217
|
+
NotDeviceOperatingSystems?: string[] | undefined;
|
|
5218
5218
|
/**
|
|
5219
5219
|
* <p>User agents that the updated rule will match.</p>
|
|
5220
5220
|
* @public
|
|
5221
5221
|
*/
|
|
5222
|
-
DeviceUserAgents?: string[];
|
|
5222
|
+
DeviceUserAgents?: string[] | undefined;
|
|
5223
5223
|
/**
|
|
5224
5224
|
* <p>User agents that the updated rule <b>will not</b> match. All other user agents will match.</p>
|
|
5225
5225
|
* @public
|
|
5226
5226
|
*/
|
|
5227
|
-
NotDeviceUserAgents?: string[];
|
|
5227
|
+
NotDeviceUserAgents?: string[] | undefined;
|
|
5228
5228
|
}
|
|
5229
5229
|
/**
|
|
5230
5230
|
* @public
|
|
@@ -5299,27 +5299,27 @@ export interface UpdateResourceRequest {
|
|
|
5299
5299
|
* <p>The name of the resource to be updated.</p>
|
|
5300
5300
|
* @public
|
|
5301
5301
|
*/
|
|
5302
|
-
Name?: string;
|
|
5302
|
+
Name?: string | undefined;
|
|
5303
5303
|
/**
|
|
5304
5304
|
* <p>The resource's booking options to be updated.</p>
|
|
5305
5305
|
* @public
|
|
5306
5306
|
*/
|
|
5307
|
-
BookingOptions?: BookingOptions;
|
|
5307
|
+
BookingOptions?: BookingOptions | undefined;
|
|
5308
5308
|
/**
|
|
5309
5309
|
* <p>Updates the resource description.</p>
|
|
5310
5310
|
* @public
|
|
5311
5311
|
*/
|
|
5312
|
-
Description?: string;
|
|
5312
|
+
Description?: string | undefined;
|
|
5313
5313
|
/**
|
|
5314
5314
|
* <p>Updates the resource type.</p>
|
|
5315
5315
|
* @public
|
|
5316
5316
|
*/
|
|
5317
|
-
Type?: ResourceType;
|
|
5317
|
+
Type?: ResourceType | undefined;
|
|
5318
5318
|
/**
|
|
5319
5319
|
* <p>If enabled, the resource is hidden from the global address list.</p>
|
|
5320
5320
|
* @public
|
|
5321
5321
|
*/
|
|
5322
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
5322
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
5323
5323
|
}
|
|
5324
5324
|
/**
|
|
5325
5325
|
* @public
|
|
@@ -5357,82 +5357,82 @@ export interface UpdateUserRequest {
|
|
|
5357
5357
|
* <p>You cannot pass <i>SYSTEM_USER</i> or <i>RESOURCE</i>.</p>
|
|
5358
5358
|
* @public
|
|
5359
5359
|
*/
|
|
5360
|
-
Role?: UserRole;
|
|
5360
|
+
Role?: UserRole | undefined;
|
|
5361
5361
|
/**
|
|
5362
5362
|
* <p>Updates the display name of the user.</p>
|
|
5363
5363
|
* @public
|
|
5364
5364
|
*/
|
|
5365
|
-
DisplayName?: string;
|
|
5365
|
+
DisplayName?: string | undefined;
|
|
5366
5366
|
/**
|
|
5367
5367
|
* <p>Updates the user's first name.</p>
|
|
5368
5368
|
* @public
|
|
5369
5369
|
*/
|
|
5370
|
-
FirstName?: string;
|
|
5370
|
+
FirstName?: string | undefined;
|
|
5371
5371
|
/**
|
|
5372
5372
|
* <p>Updates the user's last name.</p>
|
|
5373
5373
|
* @public
|
|
5374
5374
|
*/
|
|
5375
|
-
LastName?: string;
|
|
5375
|
+
LastName?: string | undefined;
|
|
5376
5376
|
/**
|
|
5377
5377
|
* <p>If enabled, the user is hidden from the global address list.</p>
|
|
5378
5378
|
* @public
|
|
5379
5379
|
*/
|
|
5380
|
-
HiddenFromGlobalAddressList?: boolean;
|
|
5380
|
+
HiddenFromGlobalAddressList?: boolean | undefined;
|
|
5381
5381
|
/**
|
|
5382
5382
|
* <p>Updates the user's initials.</p>
|
|
5383
5383
|
* @public
|
|
5384
5384
|
*/
|
|
5385
|
-
Initials?: string;
|
|
5385
|
+
Initials?: string | undefined;
|
|
5386
5386
|
/**
|
|
5387
5387
|
* <p>Updates the user's contact details.</p>
|
|
5388
5388
|
* @public
|
|
5389
5389
|
*/
|
|
5390
|
-
Telephone?: string;
|
|
5390
|
+
Telephone?: string | undefined;
|
|
5391
5391
|
/**
|
|
5392
5392
|
* <p>Updates the user's street address.</p>
|
|
5393
5393
|
* @public
|
|
5394
5394
|
*/
|
|
5395
|
-
Street?: string;
|
|
5395
|
+
Street?: string | undefined;
|
|
5396
5396
|
/**
|
|
5397
5397
|
* <p>Updates the user's job title.</p>
|
|
5398
5398
|
* @public
|
|
5399
5399
|
*/
|
|
5400
|
-
JobTitle?: string;
|
|
5400
|
+
JobTitle?: string | undefined;
|
|
5401
5401
|
/**
|
|
5402
5402
|
* <p>Updates the user's city.</p>
|
|
5403
5403
|
* @public
|
|
5404
5404
|
*/
|
|
5405
|
-
City?: string;
|
|
5405
|
+
City?: string | undefined;
|
|
5406
5406
|
/**
|
|
5407
5407
|
* <p>Updates the user's company.</p>
|
|
5408
5408
|
* @public
|
|
5409
5409
|
*/
|
|
5410
|
-
Company?: string;
|
|
5410
|
+
Company?: string | undefined;
|
|
5411
5411
|
/**
|
|
5412
5412
|
* <p>Updates the user's zip code.</p>
|
|
5413
5413
|
* @public
|
|
5414
5414
|
*/
|
|
5415
|
-
ZipCode?: string;
|
|
5415
|
+
ZipCode?: string | undefined;
|
|
5416
5416
|
/**
|
|
5417
5417
|
* <p>Updates the user's department.</p>
|
|
5418
5418
|
* @public
|
|
5419
5419
|
*/
|
|
5420
|
-
Department?: string;
|
|
5420
|
+
Department?: string | undefined;
|
|
5421
5421
|
/**
|
|
5422
5422
|
* <p>Updates the user's country.</p>
|
|
5423
5423
|
* @public
|
|
5424
5424
|
*/
|
|
5425
|
-
Country?: string;
|
|
5425
|
+
Country?: string | undefined;
|
|
5426
5426
|
/**
|
|
5427
5427
|
* <p>Updates the user's office.</p>
|
|
5428
5428
|
* @public
|
|
5429
5429
|
*/
|
|
5430
|
-
Office?: string;
|
|
5430
|
+
Office?: string | undefined;
|
|
5431
5431
|
/**
|
|
5432
5432
|
* <p>User ID from the IAM Identity Center. If this parameter is empty it will be updated automatically when the user logs in for the first time to the mailbox associated with WorkMail.</p>
|
|
5433
5433
|
* @public
|
|
5434
5434
|
*/
|
|
5435
|
-
IdentityProviderUserId?: string;
|
|
5435
|
+
IdentityProviderUserId?: string | undefined;
|
|
5436
5436
|
}
|
|
5437
5437
|
/**
|
|
5438
5438
|
* @public
|