@aws-sdk/client-workmail 3.934.0 → 3.935.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +81 -80
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +80 -0
- package/dist-es/models/errors.js +309 -0
- package/dist-es/models/models_0.js +1 -389
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +216 -0
- package/dist-types/models/errors.d.ts +299 -0
- package/dist-types/models/models_0.d.ts +1 -515
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +107 -0
- package/dist-types/ts3.4/models/errors.d.ts +187 -0
- package/dist-types/ts3.4/models/models_0.d.ts +19 -294
- package/package.json +12 -12
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
|
@@ -1,17 +1,4 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { WorkMailServiceException as __BaseException } from "./WorkMailServiceException";
|
|
3
|
-
/**
|
|
4
|
-
* @public
|
|
5
|
-
* @enum
|
|
6
|
-
*/
|
|
7
|
-
export declare const AccessControlRuleEffect: {
|
|
8
|
-
readonly ALLOW: "ALLOW";
|
|
9
|
-
readonly DENY: "DENY";
|
|
10
|
-
};
|
|
11
|
-
/**
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
export type AccessControlRuleEffect = (typeof AccessControlRuleEffect)[keyof typeof AccessControlRuleEffect];
|
|
1
|
+
import { AccessControlRuleEffect, AccessEffect, AvailabilityProviderType, DnsRecordVerificationStatus, EntityState, EntityType, FolderName, IdentityProviderAuthenticationMode, ImpersonationRoleType, MailboxExportJobState, MemberType, MobileDeviceAccessRuleEffect, PermissionType, PersonalAccessTokenConfigurationStatus, ResourceType, RetentionAction, UserRole } from "./enums";
|
|
15
2
|
/**
|
|
16
3
|
* <p>A rule that controls access to an WorkMail organization.</p>
|
|
17
4
|
* @public
|
|
@@ -87,18 +74,6 @@ export interface AccessControlRule {
|
|
|
87
74
|
*/
|
|
88
75
|
NotImpersonationRoleIds?: string[] | undefined;
|
|
89
76
|
}
|
|
90
|
-
/**
|
|
91
|
-
* @public
|
|
92
|
-
* @enum
|
|
93
|
-
*/
|
|
94
|
-
export declare const AccessEffect: {
|
|
95
|
-
readonly ALLOW: "ALLOW";
|
|
96
|
-
readonly DENY: "DENY";
|
|
97
|
-
};
|
|
98
|
-
/**
|
|
99
|
-
* @public
|
|
100
|
-
*/
|
|
101
|
-
export type AccessEffect = (typeof AccessEffect)[keyof typeof AccessEffect];
|
|
102
77
|
/**
|
|
103
78
|
* @public
|
|
104
79
|
*/
|
|
@@ -148,88 +123,6 @@ export interface AssociateDelegateToResourceRequest {
|
|
|
148
123
|
*/
|
|
149
124
|
export interface AssociateDelegateToResourceResponse {
|
|
150
125
|
}
|
|
151
|
-
/**
|
|
152
|
-
* <p>The identifier supplied for the user, group, or resource does not exist in your
|
|
153
|
-
* organization.</p>
|
|
154
|
-
* @public
|
|
155
|
-
*/
|
|
156
|
-
export declare class EntityNotFoundException extends __BaseException {
|
|
157
|
-
readonly name: "EntityNotFoundException";
|
|
158
|
-
readonly $fault: "client";
|
|
159
|
-
Message?: string | undefined;
|
|
160
|
-
/**
|
|
161
|
-
* @internal
|
|
162
|
-
*/
|
|
163
|
-
constructor(opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>);
|
|
164
|
-
}
|
|
165
|
-
/**
|
|
166
|
-
* <p>You are performing an operation on a user, group, or resource that isn't in the
|
|
167
|
-
* expected state, such as trying to delete an active user.</p>
|
|
168
|
-
* @public
|
|
169
|
-
*/
|
|
170
|
-
export declare class EntityStateException extends __BaseException {
|
|
171
|
-
readonly name: "EntityStateException";
|
|
172
|
-
readonly $fault: "client";
|
|
173
|
-
Message?: string | undefined;
|
|
174
|
-
/**
|
|
175
|
-
* @internal
|
|
176
|
-
*/
|
|
177
|
-
constructor(opts: __ExceptionOptionType<EntityStateException, __BaseException>);
|
|
178
|
-
}
|
|
179
|
-
/**
|
|
180
|
-
* <p>One or more of the input parameters don't match the service's restrictions.</p>
|
|
181
|
-
* @public
|
|
182
|
-
*/
|
|
183
|
-
export declare class InvalidParameterException extends __BaseException {
|
|
184
|
-
readonly name: "InvalidParameterException";
|
|
185
|
-
readonly $fault: "client";
|
|
186
|
-
Message?: string | undefined;
|
|
187
|
-
/**
|
|
188
|
-
* @internal
|
|
189
|
-
*/
|
|
190
|
-
constructor(opts: __ExceptionOptionType<InvalidParameterException, __BaseException>);
|
|
191
|
-
}
|
|
192
|
-
/**
|
|
193
|
-
* <p>An operation received a valid organization identifier that either doesn't belong or
|
|
194
|
-
* exist in the system.</p>
|
|
195
|
-
* @public
|
|
196
|
-
*/
|
|
197
|
-
export declare class OrganizationNotFoundException extends __BaseException {
|
|
198
|
-
readonly name: "OrganizationNotFoundException";
|
|
199
|
-
readonly $fault: "client";
|
|
200
|
-
Message?: string | undefined;
|
|
201
|
-
/**
|
|
202
|
-
* @internal
|
|
203
|
-
*/
|
|
204
|
-
constructor(opts: __ExceptionOptionType<OrganizationNotFoundException, __BaseException>);
|
|
205
|
-
}
|
|
206
|
-
/**
|
|
207
|
-
* <p>The organization must have a valid state to perform certain
|
|
208
|
-
* operations on the organization or its members.</p>
|
|
209
|
-
* @public
|
|
210
|
-
*/
|
|
211
|
-
export declare class OrganizationStateException extends __BaseException {
|
|
212
|
-
readonly name: "OrganizationStateException";
|
|
213
|
-
readonly $fault: "client";
|
|
214
|
-
Message?: string | undefined;
|
|
215
|
-
/**
|
|
216
|
-
* @internal
|
|
217
|
-
*/
|
|
218
|
-
constructor(opts: __ExceptionOptionType<OrganizationStateException, __BaseException>);
|
|
219
|
-
}
|
|
220
|
-
/**
|
|
221
|
-
* <p>You can't perform a write operation against a read-only directory.</p>
|
|
222
|
-
* @public
|
|
223
|
-
*/
|
|
224
|
-
export declare class UnsupportedOperationException extends __BaseException {
|
|
225
|
-
readonly name: "UnsupportedOperationException";
|
|
226
|
-
readonly $fault: "client";
|
|
227
|
-
Message?: string | undefined;
|
|
228
|
-
/**
|
|
229
|
-
* @internal
|
|
230
|
-
*/
|
|
231
|
-
constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
|
|
232
|
-
}
|
|
233
126
|
/**
|
|
234
127
|
* @public
|
|
235
128
|
*/
|
|
@@ -279,32 +172,6 @@ export interface AssociateMemberToGroupRequest {
|
|
|
279
172
|
*/
|
|
280
173
|
export interface AssociateMemberToGroupResponse {
|
|
281
174
|
}
|
|
282
|
-
/**
|
|
283
|
-
* <p>The directory service doesn't recognize the credentials supplied by WorkMail.</p>
|
|
284
|
-
* @public
|
|
285
|
-
*/
|
|
286
|
-
export declare class DirectoryServiceAuthenticationFailedException extends __BaseException {
|
|
287
|
-
readonly name: "DirectoryServiceAuthenticationFailedException";
|
|
288
|
-
readonly $fault: "client";
|
|
289
|
-
Message?: string | undefined;
|
|
290
|
-
/**
|
|
291
|
-
* @internal
|
|
292
|
-
*/
|
|
293
|
-
constructor(opts: __ExceptionOptionType<DirectoryServiceAuthenticationFailedException, __BaseException>);
|
|
294
|
-
}
|
|
295
|
-
/**
|
|
296
|
-
* <p>The directory is unavailable. It might be located in another Region or deleted.</p>
|
|
297
|
-
* @public
|
|
298
|
-
*/
|
|
299
|
-
export declare class DirectoryUnavailableException extends __BaseException {
|
|
300
|
-
readonly name: "DirectoryUnavailableException";
|
|
301
|
-
readonly $fault: "client";
|
|
302
|
-
Message?: string | undefined;
|
|
303
|
-
/**
|
|
304
|
-
* @internal
|
|
305
|
-
*/
|
|
306
|
-
constructor(opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>);
|
|
307
|
-
}
|
|
308
175
|
/**
|
|
309
176
|
* @public
|
|
310
177
|
*/
|
|
@@ -335,19 +202,6 @@ export interface AssumeImpersonationRoleResponse {
|
|
|
335
202
|
*/
|
|
336
203
|
ExpiresIn?: number | undefined;
|
|
337
204
|
}
|
|
338
|
-
/**
|
|
339
|
-
* <p>The resource cannot be found.</p>
|
|
340
|
-
* @public
|
|
341
|
-
*/
|
|
342
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
343
|
-
readonly name: "ResourceNotFoundException";
|
|
344
|
-
readonly $fault: "client";
|
|
345
|
-
Message?: string | undefined;
|
|
346
|
-
/**
|
|
347
|
-
* @internal
|
|
348
|
-
*/
|
|
349
|
-
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
350
|
-
}
|
|
351
205
|
/**
|
|
352
206
|
* <p>Describes an EWS based availability provider when returned from the service. It does not
|
|
353
207
|
* contain the password of the endpoint.</p>
|
|
@@ -376,18 +230,6 @@ export interface LambdaAvailabilityProvider {
|
|
|
376
230
|
*/
|
|
377
231
|
LambdaArn: string | undefined;
|
|
378
232
|
}
|
|
379
|
-
/**
|
|
380
|
-
* @public
|
|
381
|
-
* @enum
|
|
382
|
-
*/
|
|
383
|
-
export declare const AvailabilityProviderType: {
|
|
384
|
-
readonly EWS: "EWS";
|
|
385
|
-
readonly LAMBDA: "LAMBDA";
|
|
386
|
-
};
|
|
387
|
-
/**
|
|
388
|
-
* @public
|
|
389
|
-
*/
|
|
390
|
-
export type AvailabilityProviderType = (typeof AvailabilityProviderType)[keyof typeof AvailabilityProviderType];
|
|
391
233
|
/**
|
|
392
234
|
* <p>List all the <code>AvailabilityConfiguration</code>'s for the given WorkMail
|
|
393
235
|
* organization.</p>
|
|
@@ -500,60 +342,6 @@ export interface CreateAliasRequest {
|
|
|
500
342
|
*/
|
|
501
343
|
export interface CreateAliasResponse {
|
|
502
344
|
}
|
|
503
|
-
/**
|
|
504
|
-
* <p>The email address that you're trying to assign is already created for a different
|
|
505
|
-
* user, group, or resource.</p>
|
|
506
|
-
* @public
|
|
507
|
-
*/
|
|
508
|
-
export declare class EmailAddressInUseException extends __BaseException {
|
|
509
|
-
readonly name: "EmailAddressInUseException";
|
|
510
|
-
readonly $fault: "client";
|
|
511
|
-
Message?: string | undefined;
|
|
512
|
-
/**
|
|
513
|
-
* @internal
|
|
514
|
-
*/
|
|
515
|
-
constructor(opts: __ExceptionOptionType<EmailAddressInUseException, __BaseException>);
|
|
516
|
-
}
|
|
517
|
-
/**
|
|
518
|
-
* <p>The request exceeds the limit of the resource.</p>
|
|
519
|
-
* @public
|
|
520
|
-
*/
|
|
521
|
-
export declare class LimitExceededException extends __BaseException {
|
|
522
|
-
readonly name: "LimitExceededException";
|
|
523
|
-
readonly $fault: "client";
|
|
524
|
-
Message?: string | undefined;
|
|
525
|
-
/**
|
|
526
|
-
* @internal
|
|
527
|
-
*/
|
|
528
|
-
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
529
|
-
}
|
|
530
|
-
/**
|
|
531
|
-
* <p>The domain specified is not found in your organization.</p>
|
|
532
|
-
* @public
|
|
533
|
-
*/
|
|
534
|
-
export declare class MailDomainNotFoundException extends __BaseException {
|
|
535
|
-
readonly name: "MailDomainNotFoundException";
|
|
536
|
-
readonly $fault: "client";
|
|
537
|
-
Message?: string | undefined;
|
|
538
|
-
/**
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
constructor(opts: __ExceptionOptionType<MailDomainNotFoundException, __BaseException>);
|
|
542
|
-
}
|
|
543
|
-
/**
|
|
544
|
-
* <p>After a domain has been added to the organization, it must be verified. The domain is
|
|
545
|
-
* not yet verified.</p>
|
|
546
|
-
* @public
|
|
547
|
-
*/
|
|
548
|
-
export declare class MailDomainStateException extends __BaseException {
|
|
549
|
-
readonly name: "MailDomainStateException";
|
|
550
|
-
readonly $fault: "client";
|
|
551
|
-
Message?: string | undefined;
|
|
552
|
-
/**
|
|
553
|
-
* @internal
|
|
554
|
-
*/
|
|
555
|
-
constructor(opts: __ExceptionOptionType<MailDomainStateException, __BaseException>);
|
|
556
|
-
}
|
|
557
345
|
/**
|
|
558
346
|
* <p>Describes an EWS based availability provider. This is only used as input to the service.</p>
|
|
559
347
|
* @public
|
|
@@ -610,19 +398,6 @@ export interface CreateAvailabilityConfigurationRequest {
|
|
|
610
398
|
*/
|
|
611
399
|
export interface CreateAvailabilityConfigurationResponse {
|
|
612
400
|
}
|
|
613
|
-
/**
|
|
614
|
-
* <p>The user, group, or resource name isn't unique in WorkMail.</p>
|
|
615
|
-
* @public
|
|
616
|
-
*/
|
|
617
|
-
export declare class NameAvailabilityException extends __BaseException {
|
|
618
|
-
readonly name: "NameAvailabilityException";
|
|
619
|
-
readonly $fault: "client";
|
|
620
|
-
Message?: string | undefined;
|
|
621
|
-
/**
|
|
622
|
-
* @internal
|
|
623
|
-
*/
|
|
624
|
-
constructor(opts: __ExceptionOptionType<NameAvailabilityException, __BaseException>);
|
|
625
|
-
}
|
|
626
401
|
/**
|
|
627
402
|
* @public
|
|
628
403
|
*/
|
|
@@ -653,19 +428,6 @@ export interface CreateGroupResponse {
|
|
|
653
428
|
*/
|
|
654
429
|
GroupId?: string | undefined;
|
|
655
430
|
}
|
|
656
|
-
/**
|
|
657
|
-
* <p>This user, group, or resource name is not allowed in WorkMail.</p>
|
|
658
|
-
* @public
|
|
659
|
-
*/
|
|
660
|
-
export declare class ReservedNameException extends __BaseException {
|
|
661
|
-
readonly name: "ReservedNameException";
|
|
662
|
-
readonly $fault: "client";
|
|
663
|
-
Message?: string | undefined;
|
|
664
|
-
/**
|
|
665
|
-
* @internal
|
|
666
|
-
*/
|
|
667
|
-
constructor(opts: __ExceptionOptionType<ReservedNameException, __BaseException>);
|
|
668
|
-
}
|
|
669
431
|
/**
|
|
670
432
|
* @public
|
|
671
433
|
*/
|
|
@@ -745,18 +507,6 @@ export interface ImpersonationRule {
|
|
|
745
507
|
*/
|
|
746
508
|
NotTargetUsers?: string[] | undefined;
|
|
747
509
|
}
|
|
748
|
-
/**
|
|
749
|
-
* @public
|
|
750
|
-
* @enum
|
|
751
|
-
*/
|
|
752
|
-
export declare const ImpersonationRoleType: {
|
|
753
|
-
readonly FULL_ACCESS: "FULL_ACCESS";
|
|
754
|
-
readonly READ_ONLY: "READ_ONLY";
|
|
755
|
-
};
|
|
756
|
-
/**
|
|
757
|
-
* @public
|
|
758
|
-
*/
|
|
759
|
-
export type ImpersonationRoleType = (typeof ImpersonationRoleType)[keyof typeof ImpersonationRoleType];
|
|
760
510
|
/**
|
|
761
511
|
* @public
|
|
762
512
|
*/
|
|
@@ -803,18 +553,6 @@ export interface CreateImpersonationRoleResponse {
|
|
|
803
553
|
*/
|
|
804
554
|
ImpersonationRoleId?: string | undefined;
|
|
805
555
|
}
|
|
806
|
-
/**
|
|
807
|
-
* @public
|
|
808
|
-
* @enum
|
|
809
|
-
*/
|
|
810
|
-
export declare const MobileDeviceAccessRuleEffect: {
|
|
811
|
-
readonly ALLOW: "ALLOW";
|
|
812
|
-
readonly DENY: "DENY";
|
|
813
|
-
};
|
|
814
|
-
/**
|
|
815
|
-
* @public
|
|
816
|
-
*/
|
|
817
|
-
export type MobileDeviceAccessRuleEffect = (typeof MobileDeviceAccessRuleEffect)[keyof typeof MobileDeviceAccessRuleEffect];
|
|
818
556
|
/**
|
|
819
557
|
* @public
|
|
820
558
|
*/
|
|
@@ -959,31 +697,6 @@ export interface CreateOrganizationResponse {
|
|
|
959
697
|
*/
|
|
960
698
|
OrganizationId?: string | undefined;
|
|
961
699
|
}
|
|
962
|
-
/**
|
|
963
|
-
* <p>The directory is already in use by another WorkMail organization in the same account and Region.</p>
|
|
964
|
-
* @public
|
|
965
|
-
*/
|
|
966
|
-
export declare class DirectoryInUseException extends __BaseException {
|
|
967
|
-
readonly name: "DirectoryInUseException";
|
|
968
|
-
readonly $fault: "client";
|
|
969
|
-
Message?: string | undefined;
|
|
970
|
-
/**
|
|
971
|
-
* @internal
|
|
972
|
-
*/
|
|
973
|
-
constructor(opts: __ExceptionOptionType<DirectoryInUseException, __BaseException>);
|
|
974
|
-
}
|
|
975
|
-
/**
|
|
976
|
-
* @public
|
|
977
|
-
* @enum
|
|
978
|
-
*/
|
|
979
|
-
export declare const ResourceType: {
|
|
980
|
-
readonly EQUIPMENT: "EQUIPMENT";
|
|
981
|
-
readonly ROOM: "ROOM";
|
|
982
|
-
};
|
|
983
|
-
/**
|
|
984
|
-
* @public
|
|
985
|
-
*/
|
|
986
|
-
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
987
700
|
/**
|
|
988
701
|
* @public
|
|
989
702
|
*/
|
|
@@ -1026,20 +739,6 @@ export interface CreateResourceResponse {
|
|
|
1026
739
|
*/
|
|
1027
740
|
ResourceId?: string | undefined;
|
|
1028
741
|
}
|
|
1029
|
-
/**
|
|
1030
|
-
* @public
|
|
1031
|
-
* @enum
|
|
1032
|
-
*/
|
|
1033
|
-
export declare const UserRole: {
|
|
1034
|
-
readonly REMOTE_USER: "REMOTE_USER";
|
|
1035
|
-
readonly RESOURCE: "RESOURCE";
|
|
1036
|
-
readonly SYSTEM_USER: "SYSTEM_USER";
|
|
1037
|
-
readonly USER: "USER";
|
|
1038
|
-
};
|
|
1039
|
-
/**
|
|
1040
|
-
* @public
|
|
1041
|
-
*/
|
|
1042
|
-
export type UserRole = (typeof UserRole)[keyof typeof UserRole];
|
|
1043
742
|
/**
|
|
1044
743
|
* @public
|
|
1045
744
|
*/
|
|
@@ -1101,32 +800,6 @@ export interface CreateUserResponse {
|
|
|
1101
800
|
*/
|
|
1102
801
|
UserId?: string | undefined;
|
|
1103
802
|
}
|
|
1104
|
-
/**
|
|
1105
|
-
* <p>The supplied password doesn't match the minimum security constraints, such as length
|
|
1106
|
-
* or use of special characters.</p>
|
|
1107
|
-
* @public
|
|
1108
|
-
*/
|
|
1109
|
-
export declare class InvalidPasswordException extends __BaseException {
|
|
1110
|
-
readonly name: "InvalidPasswordException";
|
|
1111
|
-
readonly $fault: "client";
|
|
1112
|
-
Message?: string | undefined;
|
|
1113
|
-
/**
|
|
1114
|
-
* @internal
|
|
1115
|
-
*/
|
|
1116
|
-
constructor(opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>);
|
|
1117
|
-
}
|
|
1118
|
-
/**
|
|
1119
|
-
* @public
|
|
1120
|
-
* @enum
|
|
1121
|
-
*/
|
|
1122
|
-
export declare const MemberType: {
|
|
1123
|
-
readonly GROUP: "GROUP";
|
|
1124
|
-
readonly USER: "USER";
|
|
1125
|
-
};
|
|
1126
|
-
/**
|
|
1127
|
-
* @public
|
|
1128
|
-
*/
|
|
1129
|
-
export type MemberType = (typeof MemberType)[keyof typeof MemberType];
|
|
1130
803
|
/**
|
|
1131
804
|
* <p>The name of the attribute, which is one of the values defined in the UserAttribute
|
|
1132
805
|
* enumeration.</p>
|
|
@@ -1615,33 +1288,6 @@ export interface DeregisterMailDomainRequest {
|
|
|
1615
1288
|
*/
|
|
1616
1289
|
export interface DeregisterMailDomainResponse {
|
|
1617
1290
|
}
|
|
1618
|
-
/**
|
|
1619
|
-
* <p>You SES configuration has customizations that WorkMail cannot save. The error message lists the invalid setting. For examples of invalid settings, refer to
|
|
1620
|
-
* <a href="https://docs.aws.amazon.com/ses/latest/APIReference/API_CreateReceiptRule.html">CreateReceiptRule</a>.</p>
|
|
1621
|
-
* @public
|
|
1622
|
-
*/
|
|
1623
|
-
export declare class InvalidCustomSesConfigurationException extends __BaseException {
|
|
1624
|
-
readonly name: "InvalidCustomSesConfigurationException";
|
|
1625
|
-
readonly $fault: "client";
|
|
1626
|
-
Message?: string | undefined;
|
|
1627
|
-
/**
|
|
1628
|
-
* @internal
|
|
1629
|
-
*/
|
|
1630
|
-
constructor(opts: __ExceptionOptionType<InvalidCustomSesConfigurationException, __BaseException>);
|
|
1631
|
-
}
|
|
1632
|
-
/**
|
|
1633
|
-
* <p>The domain you're trying to change is in use by another user or organization in your account. See the error message for details.</p>
|
|
1634
|
-
* @public
|
|
1635
|
-
*/
|
|
1636
|
-
export declare class MailDomainInUseException extends __BaseException {
|
|
1637
|
-
readonly name: "MailDomainInUseException";
|
|
1638
|
-
readonly $fault: "client";
|
|
1639
|
-
Message?: string | undefined;
|
|
1640
|
-
/**
|
|
1641
|
-
* @internal
|
|
1642
|
-
*/
|
|
1643
|
-
constructor(opts: __ExceptionOptionType<MailDomainInUseException, __BaseException>);
|
|
1644
|
-
}
|
|
1645
1291
|
/**
|
|
1646
1292
|
* @public
|
|
1647
1293
|
*/
|
|
@@ -1682,19 +1328,6 @@ export interface DescribeEntityRequest {
|
|
|
1682
1328
|
*/
|
|
1683
1329
|
Email: string | undefined;
|
|
1684
1330
|
}
|
|
1685
|
-
/**
|
|
1686
|
-
* @public
|
|
1687
|
-
* @enum
|
|
1688
|
-
*/
|
|
1689
|
-
export declare const EntityType: {
|
|
1690
|
-
readonly GROUP: "GROUP";
|
|
1691
|
-
readonly RESOURCE: "RESOURCE";
|
|
1692
|
-
readonly USER: "USER";
|
|
1693
|
-
};
|
|
1694
|
-
/**
|
|
1695
|
-
* @public
|
|
1696
|
-
*/
|
|
1697
|
-
export type EntityType = (typeof EntityType)[keyof typeof EntityType];
|
|
1698
1331
|
/**
|
|
1699
1332
|
* @public
|
|
1700
1333
|
*/
|
|
@@ -1742,19 +1375,6 @@ export interface DescribeGroupRequest {
|
|
|
1742
1375
|
*/
|
|
1743
1376
|
GroupId: string | undefined;
|
|
1744
1377
|
}
|
|
1745
|
-
/**
|
|
1746
|
-
* @public
|
|
1747
|
-
* @enum
|
|
1748
|
-
*/
|
|
1749
|
-
export declare const EntityState: {
|
|
1750
|
-
readonly DELETED: "DELETED";
|
|
1751
|
-
readonly DISABLED: "DISABLED";
|
|
1752
|
-
readonly ENABLED: "ENABLED";
|
|
1753
|
-
};
|
|
1754
|
-
/**
|
|
1755
|
-
* @public
|
|
1756
|
-
*/
|
|
1757
|
-
export type EntityState = (typeof EntityState)[keyof typeof EntityState];
|
|
1758
1378
|
/**
|
|
1759
1379
|
* @public
|
|
1760
1380
|
*/
|
|
@@ -1809,18 +1429,6 @@ export interface DescribeIdentityProviderConfigurationRequest {
|
|
|
1809
1429
|
*/
|
|
1810
1430
|
OrganizationId: string | undefined;
|
|
1811
1431
|
}
|
|
1812
|
-
/**
|
|
1813
|
-
* @public
|
|
1814
|
-
* @enum
|
|
1815
|
-
*/
|
|
1816
|
-
export declare const IdentityProviderAuthenticationMode: {
|
|
1817
|
-
readonly IDENTITY_PROVIDER_AND_DIRECTORY: "IDENTITY_PROVIDER_AND_DIRECTORY";
|
|
1818
|
-
readonly IDENTITY_PROVIDER_ONLY: "IDENTITY_PROVIDER_ONLY";
|
|
1819
|
-
};
|
|
1820
|
-
/**
|
|
1821
|
-
* @public
|
|
1822
|
-
*/
|
|
1823
|
-
export type IdentityProviderAuthenticationMode = (typeof IdentityProviderAuthenticationMode)[keyof typeof IdentityProviderAuthenticationMode];
|
|
1824
1432
|
/**
|
|
1825
1433
|
* <p>
|
|
1826
1434
|
* The IAM Identity Center configuration.
|
|
@@ -1841,18 +1449,6 @@ export interface IdentityCenterConfiguration {
|
|
|
1841
1449
|
*/
|
|
1842
1450
|
ApplicationArn: string | undefined;
|
|
1843
1451
|
}
|
|
1844
|
-
/**
|
|
1845
|
-
* @public
|
|
1846
|
-
* @enum
|
|
1847
|
-
*/
|
|
1848
|
-
export declare const PersonalAccessTokenConfigurationStatus: {
|
|
1849
|
-
readonly ACTIVE: "ACTIVE";
|
|
1850
|
-
readonly INACTIVE: "INACTIVE";
|
|
1851
|
-
};
|
|
1852
|
-
/**
|
|
1853
|
-
* @public
|
|
1854
|
-
*/
|
|
1855
|
-
export type PersonalAccessTokenConfigurationStatus = (typeof PersonalAccessTokenConfigurationStatus)[keyof typeof PersonalAccessTokenConfigurationStatus];
|
|
1856
1452
|
/**
|
|
1857
1453
|
* <p>
|
|
1858
1454
|
* Displays the Personal Access Token status.
|
|
@@ -1947,20 +1543,6 @@ export interface DescribeMailboxExportJobRequest {
|
|
|
1947
1543
|
*/
|
|
1948
1544
|
OrganizationId: string | undefined;
|
|
1949
1545
|
}
|
|
1950
|
-
/**
|
|
1951
|
-
* @public
|
|
1952
|
-
* @enum
|
|
1953
|
-
*/
|
|
1954
|
-
export declare const MailboxExportJobState: {
|
|
1955
|
-
readonly CANCELLED: "CANCELLED";
|
|
1956
|
-
readonly COMPLETED: "COMPLETED";
|
|
1957
|
-
readonly FAILED: "FAILED";
|
|
1958
|
-
readonly RUNNING: "RUNNING";
|
|
1959
|
-
};
|
|
1960
|
-
/**
|
|
1961
|
-
* @public
|
|
1962
|
-
*/
|
|
1963
|
-
export type MailboxExportJobState = (typeof MailboxExportJobState)[keyof typeof MailboxExportJobState];
|
|
1964
1546
|
/**
|
|
1965
1547
|
* @public
|
|
1966
1548
|
*/
|
|
@@ -2475,61 +2057,6 @@ export interface DnsRecord {
|
|
|
2475
2057
|
*/
|
|
2476
2058
|
Value?: string | undefined;
|
|
2477
2059
|
}
|
|
2478
|
-
/**
|
|
2479
|
-
* @public
|
|
2480
|
-
* @enum
|
|
2481
|
-
*/
|
|
2482
|
-
export declare const DnsRecordVerificationStatus: {
|
|
2483
|
-
readonly FAILED: "FAILED";
|
|
2484
|
-
readonly PENDING: "PENDING";
|
|
2485
|
-
readonly VERIFIED: "VERIFIED";
|
|
2486
|
-
};
|
|
2487
|
-
/**
|
|
2488
|
-
* @public
|
|
2489
|
-
*/
|
|
2490
|
-
export type DnsRecordVerificationStatus = (typeof DnsRecordVerificationStatus)[keyof typeof DnsRecordVerificationStatus];
|
|
2491
|
-
/**
|
|
2492
|
-
* <p>The user, group, or resource that you're trying to register is already
|
|
2493
|
-
* registered.</p>
|
|
2494
|
-
* @public
|
|
2495
|
-
*/
|
|
2496
|
-
export declare class EntityAlreadyRegisteredException extends __BaseException {
|
|
2497
|
-
readonly name: "EntityAlreadyRegisteredException";
|
|
2498
|
-
readonly $fault: "client";
|
|
2499
|
-
Message?: string | undefined;
|
|
2500
|
-
/**
|
|
2501
|
-
* @internal
|
|
2502
|
-
*/
|
|
2503
|
-
constructor(opts: __ExceptionOptionType<EntityAlreadyRegisteredException, __BaseException>);
|
|
2504
|
-
}
|
|
2505
|
-
/**
|
|
2506
|
-
* @public
|
|
2507
|
-
* @enum
|
|
2508
|
-
*/
|
|
2509
|
-
export declare const RetentionAction: {
|
|
2510
|
-
readonly DELETE: "DELETE";
|
|
2511
|
-
readonly NONE: "NONE";
|
|
2512
|
-
readonly PERMANENTLY_DELETE: "PERMANENTLY_DELETE";
|
|
2513
|
-
};
|
|
2514
|
-
/**
|
|
2515
|
-
* @public
|
|
2516
|
-
*/
|
|
2517
|
-
export type RetentionAction = (typeof RetentionAction)[keyof typeof RetentionAction];
|
|
2518
|
-
/**
|
|
2519
|
-
* @public
|
|
2520
|
-
* @enum
|
|
2521
|
-
*/
|
|
2522
|
-
export declare const FolderName: {
|
|
2523
|
-
readonly DELETED_ITEMS: "DELETED_ITEMS";
|
|
2524
|
-
readonly DRAFTS: "DRAFTS";
|
|
2525
|
-
readonly INBOX: "INBOX";
|
|
2526
|
-
readonly JUNK_EMAIL: "JUNK_EMAIL";
|
|
2527
|
-
readonly SENT_ITEMS: "SENT_ITEMS";
|
|
2528
|
-
};
|
|
2529
|
-
/**
|
|
2530
|
-
* @public
|
|
2531
|
-
*/
|
|
2532
|
-
export type FolderName = (typeof FolderName)[keyof typeof FolderName];
|
|
2533
2060
|
/**
|
|
2534
2061
|
* <p>The configuration applied to an organization's folders by its retention
|
|
2535
2062
|
* policy.</p>
|
|
@@ -3136,21 +2663,6 @@ export interface ImpersonationRole {
|
|
|
3136
2663
|
*/
|
|
3137
2664
|
DateModified?: Date | undefined;
|
|
3138
2665
|
}
|
|
3139
|
-
/**
|
|
3140
|
-
* <p>The configuration for a resource isn't valid. A resource must either be able to
|
|
3141
|
-
* auto-respond to requests or have at least one delegate associated that can do so on its
|
|
3142
|
-
* behalf.</p>
|
|
3143
|
-
* @public
|
|
3144
|
-
*/
|
|
3145
|
-
export declare class InvalidConfigurationException extends __BaseException {
|
|
3146
|
-
readonly name: "InvalidConfigurationException";
|
|
3147
|
-
readonly $fault: "client";
|
|
3148
|
-
Message?: string | undefined;
|
|
3149
|
-
/**
|
|
3150
|
-
* @internal
|
|
3151
|
-
*/
|
|
3152
|
-
constructor(opts: __ExceptionOptionType<InvalidConfigurationException, __BaseException>);
|
|
3153
|
-
}
|
|
3154
2666
|
/**
|
|
3155
2667
|
* <p>The details of a mailbox export job, including the user or resource ID associated
|
|
3156
2668
|
* with the mailbox and the S3 bucket that the mailbox contents are exported to.</p>
|
|
@@ -3635,19 +3147,6 @@ export interface ListMailboxPermissionsRequest {
|
|
|
3635
3147
|
*/
|
|
3636
3148
|
MaxResults?: number | undefined;
|
|
3637
3149
|
}
|
|
3638
|
-
/**
|
|
3639
|
-
* @public
|
|
3640
|
-
* @enum
|
|
3641
|
-
*/
|
|
3642
|
-
export declare const PermissionType: {
|
|
3643
|
-
readonly FULL_ACCESS: "FULL_ACCESS";
|
|
3644
|
-
readonly SEND_AS: "SEND_AS";
|
|
3645
|
-
readonly SEND_ON_BEHALF: "SEND_ON_BEHALF";
|
|
3646
|
-
};
|
|
3647
|
-
/**
|
|
3648
|
-
* @public
|
|
3649
|
-
*/
|
|
3650
|
-
export type PermissionType = (typeof PermissionType)[keyof typeof PermissionType];
|
|
3651
3150
|
/**
|
|
3652
3151
|
* <p>Permission granted to a user, group, or resource to access a certain aspect of
|
|
3653
3152
|
* another user, group, or resource mailbox.</p>
|
|
@@ -4913,19 +4412,6 @@ export interface TagResourceRequest {
|
|
|
4913
4412
|
*/
|
|
4914
4413
|
export interface TagResourceResponse {
|
|
4915
4414
|
}
|
|
4916
|
-
/**
|
|
4917
|
-
* <p>The resource can have up to 50 user-applied tags.</p>
|
|
4918
|
-
* @public
|
|
4919
|
-
*/
|
|
4920
|
-
export declare class TooManyTagsException extends __BaseException {
|
|
4921
|
-
readonly name: "TooManyTagsException";
|
|
4922
|
-
readonly $fault: "client";
|
|
4923
|
-
Message?: string | undefined;
|
|
4924
|
-
/**
|
|
4925
|
-
* @internal
|
|
4926
|
-
*/
|
|
4927
|
-
constructor(opts: __ExceptionOptionType<TooManyTagsException, __BaseException>);
|
|
4928
|
-
}
|
|
4929
4415
|
/**
|
|
4930
4416
|
* @public
|
|
4931
4417
|
*/
|
|
@@ -5,5 +5,7 @@ export { RuntimeExtension } from "./runtimeExtensions";
|
|
|
5
5
|
export { WorkMailExtensionConfiguration } from "./extensionConfiguration";
|
|
6
6
|
export * from "./commands";
|
|
7
7
|
export * from "./pagination";
|
|
8
|
-
export * from "./models";
|
|
8
|
+
export * from "./models/enums";
|
|
9
|
+
export * from "./models/errors";
|
|
10
|
+
export * from "./models/models_0";
|
|
9
11
|
export { WorkMailServiceException } from "./models/WorkMailServiceException";
|