@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.
@@ -0,0 +1,107 @@
1
+ export declare const AccessControlRuleEffect: {
2
+ readonly ALLOW: "ALLOW";
3
+ readonly DENY: "DENY";
4
+ };
5
+ export type AccessControlRuleEffect =
6
+ (typeof AccessControlRuleEffect)[keyof typeof AccessControlRuleEffect];
7
+ export declare const AccessEffect: {
8
+ readonly ALLOW: "ALLOW";
9
+ readonly DENY: "DENY";
10
+ };
11
+ export type AccessEffect = (typeof AccessEffect)[keyof typeof AccessEffect];
12
+ export declare const AvailabilityProviderType: {
13
+ readonly EWS: "EWS";
14
+ readonly LAMBDA: "LAMBDA";
15
+ };
16
+ export type AvailabilityProviderType =
17
+ (typeof AvailabilityProviderType)[keyof typeof AvailabilityProviderType];
18
+ export declare const ImpersonationRoleType: {
19
+ readonly FULL_ACCESS: "FULL_ACCESS";
20
+ readonly READ_ONLY: "READ_ONLY";
21
+ };
22
+ export type ImpersonationRoleType =
23
+ (typeof ImpersonationRoleType)[keyof typeof ImpersonationRoleType];
24
+ export declare const MobileDeviceAccessRuleEffect: {
25
+ readonly ALLOW: "ALLOW";
26
+ readonly DENY: "DENY";
27
+ };
28
+ export type MobileDeviceAccessRuleEffect =
29
+ (typeof MobileDeviceAccessRuleEffect)[keyof typeof MobileDeviceAccessRuleEffect];
30
+ export declare const ResourceType: {
31
+ readonly EQUIPMENT: "EQUIPMENT";
32
+ readonly ROOM: "ROOM";
33
+ };
34
+ export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
35
+ export declare const UserRole: {
36
+ readonly REMOTE_USER: "REMOTE_USER";
37
+ readonly RESOURCE: "RESOURCE";
38
+ readonly SYSTEM_USER: "SYSTEM_USER";
39
+ readonly USER: "USER";
40
+ };
41
+ export type UserRole = (typeof UserRole)[keyof typeof UserRole];
42
+ export declare const MemberType: {
43
+ readonly GROUP: "GROUP";
44
+ readonly USER: "USER";
45
+ };
46
+ export type MemberType = (typeof MemberType)[keyof typeof MemberType];
47
+ export declare const EntityType: {
48
+ readonly GROUP: "GROUP";
49
+ readonly RESOURCE: "RESOURCE";
50
+ readonly USER: "USER";
51
+ };
52
+ export type EntityType = (typeof EntityType)[keyof typeof EntityType];
53
+ export declare const EntityState: {
54
+ readonly DELETED: "DELETED";
55
+ readonly DISABLED: "DISABLED";
56
+ readonly ENABLED: "ENABLED";
57
+ };
58
+ export type EntityState = (typeof EntityState)[keyof typeof EntityState];
59
+ export declare const IdentityProviderAuthenticationMode: {
60
+ readonly IDENTITY_PROVIDER_AND_DIRECTORY: "IDENTITY_PROVIDER_AND_DIRECTORY";
61
+ readonly IDENTITY_PROVIDER_ONLY: "IDENTITY_PROVIDER_ONLY";
62
+ };
63
+ export type IdentityProviderAuthenticationMode =
64
+ (typeof IdentityProviderAuthenticationMode)[keyof typeof IdentityProviderAuthenticationMode];
65
+ export declare const PersonalAccessTokenConfigurationStatus: {
66
+ readonly ACTIVE: "ACTIVE";
67
+ readonly INACTIVE: "INACTIVE";
68
+ };
69
+ export type PersonalAccessTokenConfigurationStatus =
70
+ (typeof PersonalAccessTokenConfigurationStatus)[keyof typeof PersonalAccessTokenConfigurationStatus];
71
+ export declare const MailboxExportJobState: {
72
+ readonly CANCELLED: "CANCELLED";
73
+ readonly COMPLETED: "COMPLETED";
74
+ readonly FAILED: "FAILED";
75
+ readonly RUNNING: "RUNNING";
76
+ };
77
+ export type MailboxExportJobState =
78
+ (typeof MailboxExportJobState)[keyof typeof MailboxExportJobState];
79
+ export declare const DnsRecordVerificationStatus: {
80
+ readonly FAILED: "FAILED";
81
+ readonly PENDING: "PENDING";
82
+ readonly VERIFIED: "VERIFIED";
83
+ };
84
+ export type DnsRecordVerificationStatus =
85
+ (typeof DnsRecordVerificationStatus)[keyof typeof DnsRecordVerificationStatus];
86
+ export declare const RetentionAction: {
87
+ readonly DELETE: "DELETE";
88
+ readonly NONE: "NONE";
89
+ readonly PERMANENTLY_DELETE: "PERMANENTLY_DELETE";
90
+ };
91
+ export type RetentionAction =
92
+ (typeof RetentionAction)[keyof typeof RetentionAction];
93
+ export declare const FolderName: {
94
+ readonly DELETED_ITEMS: "DELETED_ITEMS";
95
+ readonly DRAFTS: "DRAFTS";
96
+ readonly INBOX: "INBOX";
97
+ readonly JUNK_EMAIL: "JUNK_EMAIL";
98
+ readonly SENT_ITEMS: "SENT_ITEMS";
99
+ };
100
+ export type FolderName = (typeof FolderName)[keyof typeof FolderName];
101
+ export declare const PermissionType: {
102
+ readonly FULL_ACCESS: "FULL_ACCESS";
103
+ readonly SEND_AS: "SEND_AS";
104
+ readonly SEND_ON_BEHALF: "SEND_ON_BEHALF";
105
+ };
106
+ export type PermissionType =
107
+ (typeof PermissionType)[keyof typeof PermissionType];
@@ -0,0 +1,187 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { WorkMailServiceException as __BaseException } from "./WorkMailServiceException";
3
+ export declare class EntityNotFoundException extends __BaseException {
4
+ readonly name: "EntityNotFoundException";
5
+ readonly $fault: "client";
6
+ Message?: string | undefined;
7
+ constructor(
8
+ opts: __ExceptionOptionType<EntityNotFoundException, __BaseException>
9
+ );
10
+ }
11
+ export declare class EntityStateException extends __BaseException {
12
+ readonly name: "EntityStateException";
13
+ readonly $fault: "client";
14
+ Message?: string | undefined;
15
+ constructor(
16
+ opts: __ExceptionOptionType<EntityStateException, __BaseException>
17
+ );
18
+ }
19
+ export declare class InvalidParameterException extends __BaseException {
20
+ readonly name: "InvalidParameterException";
21
+ readonly $fault: "client";
22
+ Message?: string | undefined;
23
+ constructor(
24
+ opts: __ExceptionOptionType<InvalidParameterException, __BaseException>
25
+ );
26
+ }
27
+ export declare class OrganizationNotFoundException extends __BaseException {
28
+ readonly name: "OrganizationNotFoundException";
29
+ readonly $fault: "client";
30
+ Message?: string | undefined;
31
+ constructor(
32
+ opts: __ExceptionOptionType<OrganizationNotFoundException, __BaseException>
33
+ );
34
+ }
35
+ export declare class OrganizationStateException extends __BaseException {
36
+ readonly name: "OrganizationStateException";
37
+ readonly $fault: "client";
38
+ Message?: string | undefined;
39
+ constructor(
40
+ opts: __ExceptionOptionType<OrganizationStateException, __BaseException>
41
+ );
42
+ }
43
+ export declare class UnsupportedOperationException extends __BaseException {
44
+ readonly name: "UnsupportedOperationException";
45
+ readonly $fault: "client";
46
+ Message?: string | undefined;
47
+ constructor(
48
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
49
+ );
50
+ }
51
+ export declare class DirectoryServiceAuthenticationFailedException extends __BaseException {
52
+ readonly name: "DirectoryServiceAuthenticationFailedException";
53
+ readonly $fault: "client";
54
+ Message?: string | undefined;
55
+ constructor(
56
+ opts: __ExceptionOptionType<
57
+ DirectoryServiceAuthenticationFailedException,
58
+ __BaseException
59
+ >
60
+ );
61
+ }
62
+ export declare class DirectoryUnavailableException extends __BaseException {
63
+ readonly name: "DirectoryUnavailableException";
64
+ readonly $fault: "client";
65
+ Message?: string | undefined;
66
+ constructor(
67
+ opts: __ExceptionOptionType<DirectoryUnavailableException, __BaseException>
68
+ );
69
+ }
70
+ export declare class ResourceNotFoundException extends __BaseException {
71
+ readonly name: "ResourceNotFoundException";
72
+ readonly $fault: "client";
73
+ Message?: string | undefined;
74
+ constructor(
75
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
76
+ );
77
+ }
78
+ export declare class EmailAddressInUseException extends __BaseException {
79
+ readonly name: "EmailAddressInUseException";
80
+ readonly $fault: "client";
81
+ Message?: string | undefined;
82
+ constructor(
83
+ opts: __ExceptionOptionType<EmailAddressInUseException, __BaseException>
84
+ );
85
+ }
86
+ export declare class LimitExceededException extends __BaseException {
87
+ readonly name: "LimitExceededException";
88
+ readonly $fault: "client";
89
+ Message?: string | undefined;
90
+ constructor(
91
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
92
+ );
93
+ }
94
+ export declare class MailDomainNotFoundException extends __BaseException {
95
+ readonly name: "MailDomainNotFoundException";
96
+ readonly $fault: "client";
97
+ Message?: string | undefined;
98
+ constructor(
99
+ opts: __ExceptionOptionType<MailDomainNotFoundException, __BaseException>
100
+ );
101
+ }
102
+ export declare class MailDomainStateException extends __BaseException {
103
+ readonly name: "MailDomainStateException";
104
+ readonly $fault: "client";
105
+ Message?: string | undefined;
106
+ constructor(
107
+ opts: __ExceptionOptionType<MailDomainStateException, __BaseException>
108
+ );
109
+ }
110
+ export declare class NameAvailabilityException extends __BaseException {
111
+ readonly name: "NameAvailabilityException";
112
+ readonly $fault: "client";
113
+ Message?: string | undefined;
114
+ constructor(
115
+ opts: __ExceptionOptionType<NameAvailabilityException, __BaseException>
116
+ );
117
+ }
118
+ export declare class ReservedNameException extends __BaseException {
119
+ readonly name: "ReservedNameException";
120
+ readonly $fault: "client";
121
+ Message?: string | undefined;
122
+ constructor(
123
+ opts: __ExceptionOptionType<ReservedNameException, __BaseException>
124
+ );
125
+ }
126
+ export declare class DirectoryInUseException extends __BaseException {
127
+ readonly name: "DirectoryInUseException";
128
+ readonly $fault: "client";
129
+ Message?: string | undefined;
130
+ constructor(
131
+ opts: __ExceptionOptionType<DirectoryInUseException, __BaseException>
132
+ );
133
+ }
134
+ export declare class InvalidPasswordException extends __BaseException {
135
+ readonly name: "InvalidPasswordException";
136
+ readonly $fault: "client";
137
+ Message?: string | undefined;
138
+ constructor(
139
+ opts: __ExceptionOptionType<InvalidPasswordException, __BaseException>
140
+ );
141
+ }
142
+ export declare class InvalidCustomSesConfigurationException extends __BaseException {
143
+ readonly name: "InvalidCustomSesConfigurationException";
144
+ readonly $fault: "client";
145
+ Message?: string | undefined;
146
+ constructor(
147
+ opts: __ExceptionOptionType<
148
+ InvalidCustomSesConfigurationException,
149
+ __BaseException
150
+ >
151
+ );
152
+ }
153
+ export declare class MailDomainInUseException extends __BaseException {
154
+ readonly name: "MailDomainInUseException";
155
+ readonly $fault: "client";
156
+ Message?: string | undefined;
157
+ constructor(
158
+ opts: __ExceptionOptionType<MailDomainInUseException, __BaseException>
159
+ );
160
+ }
161
+ export declare class EntityAlreadyRegisteredException extends __BaseException {
162
+ readonly name: "EntityAlreadyRegisteredException";
163
+ readonly $fault: "client";
164
+ Message?: string | undefined;
165
+ constructor(
166
+ opts: __ExceptionOptionType<
167
+ EntityAlreadyRegisteredException,
168
+ __BaseException
169
+ >
170
+ );
171
+ }
172
+ export declare class InvalidConfigurationException extends __BaseException {
173
+ readonly name: "InvalidConfigurationException";
174
+ readonly $fault: "client";
175
+ Message?: string | undefined;
176
+ constructor(
177
+ opts: __ExceptionOptionType<InvalidConfigurationException, __BaseException>
178
+ );
179
+ }
180
+ export declare class TooManyTagsException extends __BaseException {
181
+ readonly name: "TooManyTagsException";
182
+ readonly $fault: "client";
183
+ Message?: string | undefined;
184
+ constructor(
185
+ opts: __ExceptionOptionType<TooManyTagsException, __BaseException>
186
+ );
187
+ }