@aws-sdk/client-clouddirectory 3.934.0 → 3.936.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 +84 -83
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +83 -0
- package/dist-es/models/errors.js +495 -0
- package/dist-es/models/models_0.js +1 -578
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +171 -0
- package/dist-types/models/errors.d.ts +472 -0
- package/dist-types/models/models_0.d.ts +1 -642
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +101 -0
- package/dist-types/ts3.4/models/errors.d.ts +291 -0
- package/dist-types/ts3.4/models/models_0.d.ts +12 -391
- package/package.json +19 -19
- 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
|
@@ -0,0 +1,171 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ConsistencyLevel: {
|
|
6
|
+
readonly EVENTUAL: "EVENTUAL";
|
|
7
|
+
readonly SERIALIZABLE: "SERIALIZABLE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ConsistencyLevel = (typeof ConsistencyLevel)[keyof typeof ConsistencyLevel];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const RangeMode: {
|
|
18
|
+
readonly EXCLUSIVE: "EXCLUSIVE";
|
|
19
|
+
readonly FIRST: "FIRST";
|
|
20
|
+
readonly INCLUSIVE: "INCLUSIVE";
|
|
21
|
+
readonly LAST: "LAST";
|
|
22
|
+
readonly LAST_BEFORE_MISSING_VALUES: "LAST_BEFORE_MISSING_VALUES";
|
|
23
|
+
};
|
|
24
|
+
/**
|
|
25
|
+
* @public
|
|
26
|
+
*/
|
|
27
|
+
export type RangeMode = (typeof RangeMode)[keyof typeof RangeMode];
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
* @enum
|
|
31
|
+
*/
|
|
32
|
+
export declare const BatchReadExceptionType: {
|
|
33
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
34
|
+
readonly CannotListParentOfRootException: "CannotListParentOfRootException";
|
|
35
|
+
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
36
|
+
readonly FacetValidationException: "FacetValidationException";
|
|
37
|
+
readonly InternalServiceException: "InternalServiceException";
|
|
38
|
+
readonly InvalidArnException: "InvalidArnException";
|
|
39
|
+
readonly InvalidNextTokenException: "InvalidNextTokenException";
|
|
40
|
+
readonly LimitExceededException: "LimitExceededException";
|
|
41
|
+
readonly NotIndexException: "NotIndexException";
|
|
42
|
+
readonly NotNodeException: "NotNodeException";
|
|
43
|
+
readonly NotPolicyException: "NotPolicyException";
|
|
44
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
45
|
+
readonly ValidationException: "ValidationException";
|
|
46
|
+
};
|
|
47
|
+
/**
|
|
48
|
+
* @public
|
|
49
|
+
*/
|
|
50
|
+
export type BatchReadExceptionType = (typeof BatchReadExceptionType)[keyof typeof BatchReadExceptionType];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const BatchWriteExceptionType: {
|
|
56
|
+
readonly AccessDeniedException: "AccessDeniedException";
|
|
57
|
+
readonly DirectoryNotEnabledException: "DirectoryNotEnabledException";
|
|
58
|
+
readonly FacetValidationException: "FacetValidationException";
|
|
59
|
+
readonly IndexedAttributeMissingException: "IndexedAttributeMissingException";
|
|
60
|
+
readonly InternalServiceException: "InternalServiceException";
|
|
61
|
+
readonly InvalidArnException: "InvalidArnException";
|
|
62
|
+
readonly InvalidAttachmentException: "InvalidAttachmentException";
|
|
63
|
+
readonly LimitExceededException: "LimitExceededException";
|
|
64
|
+
readonly LinkNameAlreadyInUseException: "LinkNameAlreadyInUseException";
|
|
65
|
+
readonly NotIndexException: "NotIndexException";
|
|
66
|
+
readonly NotNodeException: "NotNodeException";
|
|
67
|
+
readonly NotPolicyException: "NotPolicyException";
|
|
68
|
+
readonly ObjectAlreadyDetachedException: "ObjectAlreadyDetachedException";
|
|
69
|
+
readonly ObjectNotDetachedException: "ObjectNotDetachedException";
|
|
70
|
+
readonly ResourceNotFoundException: "ResourceNotFoundException";
|
|
71
|
+
readonly StillContainsLinksException: "StillContainsLinksException";
|
|
72
|
+
readonly UnsupportedIndexTypeException: "UnsupportedIndexTypeException";
|
|
73
|
+
readonly ValidationException: "ValidationException";
|
|
74
|
+
};
|
|
75
|
+
/**
|
|
76
|
+
* @public
|
|
77
|
+
*/
|
|
78
|
+
export type BatchWriteExceptionType = (typeof BatchWriteExceptionType)[keyof typeof BatchWriteExceptionType];
|
|
79
|
+
/**
|
|
80
|
+
* @public
|
|
81
|
+
* @enum
|
|
82
|
+
*/
|
|
83
|
+
export declare const UpdateActionType: {
|
|
84
|
+
readonly CREATE_OR_UPDATE: "CREATE_OR_UPDATE";
|
|
85
|
+
readonly DELETE: "DELETE";
|
|
86
|
+
};
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
export type UpdateActionType = (typeof UpdateActionType)[keyof typeof UpdateActionType];
|
|
91
|
+
/**
|
|
92
|
+
* @public
|
|
93
|
+
* @enum
|
|
94
|
+
*/
|
|
95
|
+
export declare const RuleType: {
|
|
96
|
+
readonly BINARY_LENGTH: "BINARY_LENGTH";
|
|
97
|
+
readonly NUMBER_COMPARISON: "NUMBER_COMPARISON";
|
|
98
|
+
readonly STRING_FROM_SET: "STRING_FROM_SET";
|
|
99
|
+
readonly STRING_LENGTH: "STRING_LENGTH";
|
|
100
|
+
};
|
|
101
|
+
/**
|
|
102
|
+
* @public
|
|
103
|
+
*/
|
|
104
|
+
export type RuleType = (typeof RuleType)[keyof typeof RuleType];
|
|
105
|
+
/**
|
|
106
|
+
* @public
|
|
107
|
+
* @enum
|
|
108
|
+
*/
|
|
109
|
+
export declare const FacetAttributeType: {
|
|
110
|
+
readonly BINARY: "BINARY";
|
|
111
|
+
readonly BOOLEAN: "BOOLEAN";
|
|
112
|
+
readonly DATETIME: "DATETIME";
|
|
113
|
+
readonly NUMBER: "NUMBER";
|
|
114
|
+
readonly STRING: "STRING";
|
|
115
|
+
readonly VARIANT: "VARIANT";
|
|
116
|
+
};
|
|
117
|
+
/**
|
|
118
|
+
* @public
|
|
119
|
+
*/
|
|
120
|
+
export type FacetAttributeType = (typeof FacetAttributeType)[keyof typeof FacetAttributeType];
|
|
121
|
+
/**
|
|
122
|
+
* @public
|
|
123
|
+
* @enum
|
|
124
|
+
*/
|
|
125
|
+
export declare const RequiredAttributeBehavior: {
|
|
126
|
+
readonly NOT_REQUIRED: "NOT_REQUIRED";
|
|
127
|
+
readonly REQUIRED_ALWAYS: "REQUIRED_ALWAYS";
|
|
128
|
+
};
|
|
129
|
+
/**
|
|
130
|
+
* @public
|
|
131
|
+
*/
|
|
132
|
+
export type RequiredAttributeBehavior = (typeof RequiredAttributeBehavior)[keyof typeof RequiredAttributeBehavior];
|
|
133
|
+
/**
|
|
134
|
+
* @public
|
|
135
|
+
* @enum
|
|
136
|
+
*/
|
|
137
|
+
export declare const FacetStyle: {
|
|
138
|
+
readonly DYNAMIC: "DYNAMIC";
|
|
139
|
+
readonly STATIC: "STATIC";
|
|
140
|
+
};
|
|
141
|
+
/**
|
|
142
|
+
* @public
|
|
143
|
+
*/
|
|
144
|
+
export type FacetStyle = (typeof FacetStyle)[keyof typeof FacetStyle];
|
|
145
|
+
/**
|
|
146
|
+
* @public
|
|
147
|
+
* @enum
|
|
148
|
+
*/
|
|
149
|
+
export declare const ObjectType: {
|
|
150
|
+
readonly INDEX: "INDEX";
|
|
151
|
+
readonly LEAF_NODE: "LEAF_NODE";
|
|
152
|
+
readonly NODE: "NODE";
|
|
153
|
+
readonly POLICY: "POLICY";
|
|
154
|
+
};
|
|
155
|
+
/**
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export type ObjectType = (typeof ObjectType)[keyof typeof ObjectType];
|
|
159
|
+
/**
|
|
160
|
+
* @public
|
|
161
|
+
* @enum
|
|
162
|
+
*/
|
|
163
|
+
export declare const DirectoryState: {
|
|
164
|
+
readonly DELETED: "DELETED";
|
|
165
|
+
readonly DISABLED: "DISABLED";
|
|
166
|
+
readonly ENABLED: "ENABLED";
|
|
167
|
+
};
|
|
168
|
+
/**
|
|
169
|
+
* @public
|
|
170
|
+
*/
|
|
171
|
+
export type DirectoryState = (typeof DirectoryState)[keyof typeof DirectoryState];
|
|
@@ -0,0 +1,472 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { CloudDirectoryServiceException as __BaseException } from "./CloudDirectoryServiceException";
|
|
3
|
+
import { BatchWriteExceptionType } from "./enums";
|
|
4
|
+
/**
|
|
5
|
+
* <p>Access denied or directory not found. Either you don't have permissions for this directory or the directory does not exist. Try calling <a>ListDirectories</a> and check your permissions.</p>
|
|
6
|
+
* @public
|
|
7
|
+
*/
|
|
8
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
9
|
+
readonly name: "AccessDeniedException";
|
|
10
|
+
readonly $fault: "client";
|
|
11
|
+
Message?: string | undefined;
|
|
12
|
+
/**
|
|
13
|
+
* @internal
|
|
14
|
+
*/
|
|
15
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* <p>Operations are only permitted on enabled directories.</p>
|
|
19
|
+
* @public
|
|
20
|
+
*/
|
|
21
|
+
export declare class DirectoryNotEnabledException extends __BaseException {
|
|
22
|
+
readonly name: "DirectoryNotEnabledException";
|
|
23
|
+
readonly $fault: "client";
|
|
24
|
+
Message?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* @internal
|
|
27
|
+
*/
|
|
28
|
+
constructor(opts: __ExceptionOptionType<DirectoryNotEnabledException, __BaseException>);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* <p>The <a>Facet</a> that you provided was not well formed or could not be
|
|
32
|
+
* validated with the schema.</p>
|
|
33
|
+
* @public
|
|
34
|
+
*/
|
|
35
|
+
export declare class FacetValidationException extends __BaseException {
|
|
36
|
+
readonly name: "FacetValidationException";
|
|
37
|
+
readonly $fault: "client";
|
|
38
|
+
Message?: string | undefined;
|
|
39
|
+
/**
|
|
40
|
+
* @internal
|
|
41
|
+
*/
|
|
42
|
+
constructor(opts: __ExceptionOptionType<FacetValidationException, __BaseException>);
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* <p>Indicates a problem that must be resolved by Amazon Web Services. This might be a transient error in which case you can retry your request until it succeeds. Otherwise, go to the <a href="http://status.aws.amazon.com/">AWS Service Health Dashboard</a> site to see if there are any operational issues with the service.</p>
|
|
46
|
+
* @public
|
|
47
|
+
*/
|
|
48
|
+
export declare class InternalServiceException extends __BaseException {
|
|
49
|
+
readonly name: "InternalServiceException";
|
|
50
|
+
readonly $fault: "server";
|
|
51
|
+
Message?: string | undefined;
|
|
52
|
+
/**
|
|
53
|
+
* @internal
|
|
54
|
+
*/
|
|
55
|
+
constructor(opts: __ExceptionOptionType<InternalServiceException, __BaseException>);
|
|
56
|
+
}
|
|
57
|
+
/**
|
|
58
|
+
* <p>Indicates that the provided ARN value is not valid.</p>
|
|
59
|
+
* @public
|
|
60
|
+
*/
|
|
61
|
+
export declare class InvalidArnException extends __BaseException {
|
|
62
|
+
readonly name: "InvalidArnException";
|
|
63
|
+
readonly $fault: "client";
|
|
64
|
+
Message?: string | undefined;
|
|
65
|
+
/**
|
|
66
|
+
* @internal
|
|
67
|
+
*/
|
|
68
|
+
constructor(opts: __ExceptionOptionType<InvalidArnException, __BaseException>);
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* <p>Indicates that limits are exceeded. See <a href="https://docs.aws.amazon.com/clouddirectory/latest/developerguide/limits.html">Limits</a> for more information.</p>
|
|
72
|
+
* @public
|
|
73
|
+
*/
|
|
74
|
+
export declare class LimitExceededException extends __BaseException {
|
|
75
|
+
readonly name: "LimitExceededException";
|
|
76
|
+
readonly $fault: "client";
|
|
77
|
+
Message?: string | undefined;
|
|
78
|
+
/**
|
|
79
|
+
* @internal
|
|
80
|
+
*/
|
|
81
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
82
|
+
}
|
|
83
|
+
/**
|
|
84
|
+
* <p>The specified resource could not be found.</p>
|
|
85
|
+
* @public
|
|
86
|
+
*/
|
|
87
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
88
|
+
readonly name: "ResourceNotFoundException";
|
|
89
|
+
readonly $fault: "client";
|
|
90
|
+
Message?: string | undefined;
|
|
91
|
+
/**
|
|
92
|
+
* @internal
|
|
93
|
+
*/
|
|
94
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
95
|
+
}
|
|
96
|
+
/**
|
|
97
|
+
* <p>Occurs when a conflict with a previous successful write is detected. For example, if a write operation occurs on an object and then an attempt is made to read the object using “SERIALIZABLE” consistency, this exception may result. This generally occurs when the previous write did not have time to propagate to the host serving the current request. A retry (with appropriate backoff logic) is the recommended response to this exception.</p>
|
|
98
|
+
* @public
|
|
99
|
+
*/
|
|
100
|
+
export declare class RetryableConflictException extends __BaseException {
|
|
101
|
+
readonly name: "RetryableConflictException";
|
|
102
|
+
readonly $fault: "client";
|
|
103
|
+
Message?: string | undefined;
|
|
104
|
+
/**
|
|
105
|
+
* @internal
|
|
106
|
+
*/
|
|
107
|
+
constructor(opts: __ExceptionOptionType<RetryableConflictException, __BaseException>);
|
|
108
|
+
}
|
|
109
|
+
/**
|
|
110
|
+
* <p>Indicates that your request is malformed in some manner. See the exception
|
|
111
|
+
* message.</p>
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export declare class ValidationException extends __BaseException {
|
|
115
|
+
readonly name: "ValidationException";
|
|
116
|
+
readonly $fault: "client";
|
|
117
|
+
Message?: string | undefined;
|
|
118
|
+
/**
|
|
119
|
+
* @internal
|
|
120
|
+
*/
|
|
121
|
+
constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
|
|
122
|
+
}
|
|
123
|
+
/**
|
|
124
|
+
* <p>Indicates that an attempt to make an attachment was invalid. For example, attaching two nodes
|
|
125
|
+
* with a link type that is not applicable to the nodes or attempting to apply a schema to a directory a second time.</p>
|
|
126
|
+
* @public
|
|
127
|
+
*/
|
|
128
|
+
export declare class InvalidAttachmentException extends __BaseException {
|
|
129
|
+
readonly name: "InvalidAttachmentException";
|
|
130
|
+
readonly $fault: "client";
|
|
131
|
+
Message?: string | undefined;
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
constructor(opts: __ExceptionOptionType<InvalidAttachmentException, __BaseException>);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* <p>Indicates that a schema could not be created due to a naming conflict. Please select a
|
|
139
|
+
* different name and then try again.</p>
|
|
140
|
+
* @public
|
|
141
|
+
*/
|
|
142
|
+
export declare class SchemaAlreadyExistsException extends __BaseException {
|
|
143
|
+
readonly name: "SchemaAlreadyExistsException";
|
|
144
|
+
readonly $fault: "client";
|
|
145
|
+
Message?: string | undefined;
|
|
146
|
+
/**
|
|
147
|
+
* @internal
|
|
148
|
+
*/
|
|
149
|
+
constructor(opts: __ExceptionOptionType<SchemaAlreadyExistsException, __BaseException>);
|
|
150
|
+
}
|
|
151
|
+
/**
|
|
152
|
+
* <p>Indicates that a link could not be created due to a naming conflict. Choose a different
|
|
153
|
+
* name and then try again.</p>
|
|
154
|
+
* @public
|
|
155
|
+
*/
|
|
156
|
+
export declare class LinkNameAlreadyInUseException extends __BaseException {
|
|
157
|
+
readonly name: "LinkNameAlreadyInUseException";
|
|
158
|
+
readonly $fault: "client";
|
|
159
|
+
Message?: string | undefined;
|
|
160
|
+
/**
|
|
161
|
+
* @internal
|
|
162
|
+
*/
|
|
163
|
+
constructor(opts: __ExceptionOptionType<LinkNameAlreadyInUseException, __BaseException>);
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* <p>Indicates that the requested operation can only operate on policy objects.</p>
|
|
167
|
+
* @public
|
|
168
|
+
*/
|
|
169
|
+
export declare class NotPolicyException extends __BaseException {
|
|
170
|
+
readonly name: "NotPolicyException";
|
|
171
|
+
readonly $fault: "client";
|
|
172
|
+
Message?: string | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* @internal
|
|
175
|
+
*/
|
|
176
|
+
constructor(opts: __ExceptionOptionType<NotPolicyException, __BaseException>);
|
|
177
|
+
}
|
|
178
|
+
/**
|
|
179
|
+
* <p>An object has been attempted to be attached to an object that does not have the appropriate attribute value.</p>
|
|
180
|
+
* @public
|
|
181
|
+
*/
|
|
182
|
+
export declare class IndexedAttributeMissingException extends __BaseException {
|
|
183
|
+
readonly name: "IndexedAttributeMissingException";
|
|
184
|
+
readonly $fault: "client";
|
|
185
|
+
Message?: string | undefined;
|
|
186
|
+
/**
|
|
187
|
+
* @internal
|
|
188
|
+
*/
|
|
189
|
+
constructor(opts: __ExceptionOptionType<IndexedAttributeMissingException, __BaseException>);
|
|
190
|
+
}
|
|
191
|
+
/**
|
|
192
|
+
* <p>Indicates that the requested operation can only operate on index objects.</p>
|
|
193
|
+
* @public
|
|
194
|
+
*/
|
|
195
|
+
export declare class NotIndexException extends __BaseException {
|
|
196
|
+
readonly name: "NotIndexException";
|
|
197
|
+
readonly $fault: "client";
|
|
198
|
+
Message?: string | undefined;
|
|
199
|
+
/**
|
|
200
|
+
* @internal
|
|
201
|
+
*/
|
|
202
|
+
constructor(opts: __ExceptionOptionType<NotIndexException, __BaseException>);
|
|
203
|
+
}
|
|
204
|
+
/**
|
|
205
|
+
* <p>A <code>BatchWrite</code> exception has occurred.</p>
|
|
206
|
+
* @public
|
|
207
|
+
*/
|
|
208
|
+
export declare class BatchWriteException extends __BaseException {
|
|
209
|
+
readonly name: "BatchWriteException";
|
|
210
|
+
readonly $fault: "client";
|
|
211
|
+
Index?: number | undefined;
|
|
212
|
+
Type?: BatchWriteExceptionType | undefined;
|
|
213
|
+
Message?: string | undefined;
|
|
214
|
+
/**
|
|
215
|
+
* @internal
|
|
216
|
+
*/
|
|
217
|
+
constructor(opts: __ExceptionOptionType<BatchWriteException, __BaseException>);
|
|
218
|
+
}
|
|
219
|
+
/**
|
|
220
|
+
* <p>Indicates that a <a>Directory</a> could not be created due to a naming
|
|
221
|
+
* conflict. Choose a different name and try again.</p>
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export declare class DirectoryAlreadyExistsException extends __BaseException {
|
|
225
|
+
readonly name: "DirectoryAlreadyExistsException";
|
|
226
|
+
readonly $fault: "client";
|
|
227
|
+
Message?: string | undefined;
|
|
228
|
+
/**
|
|
229
|
+
* @internal
|
|
230
|
+
*/
|
|
231
|
+
constructor(opts: __ExceptionOptionType<DirectoryAlreadyExistsException, __BaseException>);
|
|
232
|
+
}
|
|
233
|
+
/**
|
|
234
|
+
* <p>A facet with the same name already exists.</p>
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export declare class FacetAlreadyExistsException extends __BaseException {
|
|
238
|
+
readonly name: "FacetAlreadyExistsException";
|
|
239
|
+
readonly $fault: "client";
|
|
240
|
+
Message?: string | undefined;
|
|
241
|
+
/**
|
|
242
|
+
* @internal
|
|
243
|
+
*/
|
|
244
|
+
constructor(opts: __ExceptionOptionType<FacetAlreadyExistsException, __BaseException>);
|
|
245
|
+
}
|
|
246
|
+
/**
|
|
247
|
+
* <p>Occurs when any of the rule parameter keys or values are invalid.</p>
|
|
248
|
+
* @public
|
|
249
|
+
*/
|
|
250
|
+
export declare class InvalidRuleException extends __BaseException {
|
|
251
|
+
readonly name: "InvalidRuleException";
|
|
252
|
+
readonly $fault: "client";
|
|
253
|
+
Message?: string | undefined;
|
|
254
|
+
/**
|
|
255
|
+
* @internal
|
|
256
|
+
*/
|
|
257
|
+
constructor(opts: __ExceptionOptionType<InvalidRuleException, __BaseException>);
|
|
258
|
+
}
|
|
259
|
+
/**
|
|
260
|
+
* <p>Indicates that the requested index type is not supported.</p>
|
|
261
|
+
* @public
|
|
262
|
+
*/
|
|
263
|
+
export declare class UnsupportedIndexTypeException extends __BaseException {
|
|
264
|
+
readonly name: "UnsupportedIndexTypeException";
|
|
265
|
+
readonly $fault: "client";
|
|
266
|
+
Message?: string | undefined;
|
|
267
|
+
/**
|
|
268
|
+
* @internal
|
|
269
|
+
*/
|
|
270
|
+
constructor(opts: __ExceptionOptionType<UnsupportedIndexTypeException, __BaseException>);
|
|
271
|
+
}
|
|
272
|
+
/**
|
|
273
|
+
* <p>A directory that has been deleted and to which access has been attempted. Note: The
|
|
274
|
+
* requested resource will eventually cease to exist.</p>
|
|
275
|
+
* @public
|
|
276
|
+
*/
|
|
277
|
+
export declare class DirectoryDeletedException extends __BaseException {
|
|
278
|
+
readonly name: "DirectoryDeletedException";
|
|
279
|
+
readonly $fault: "client";
|
|
280
|
+
Message?: string | undefined;
|
|
281
|
+
/**
|
|
282
|
+
* @internal
|
|
283
|
+
*/
|
|
284
|
+
constructor(opts: __ExceptionOptionType<DirectoryDeletedException, __BaseException>);
|
|
285
|
+
}
|
|
286
|
+
/**
|
|
287
|
+
* <p>An operation can only operate on a disabled directory.</p>
|
|
288
|
+
* @public
|
|
289
|
+
*/
|
|
290
|
+
export declare class DirectoryNotDisabledException extends __BaseException {
|
|
291
|
+
readonly name: "DirectoryNotDisabledException";
|
|
292
|
+
readonly $fault: "client";
|
|
293
|
+
Message?: string | undefined;
|
|
294
|
+
/**
|
|
295
|
+
* @internal
|
|
296
|
+
*/
|
|
297
|
+
constructor(opts: __ExceptionOptionType<DirectoryNotDisabledException, __BaseException>);
|
|
298
|
+
}
|
|
299
|
+
/**
|
|
300
|
+
* <p>Occurs when deleting a facet that contains an attribute that is a target to an
|
|
301
|
+
* attribute reference in a different facet.</p>
|
|
302
|
+
* @public
|
|
303
|
+
*/
|
|
304
|
+
export declare class FacetInUseException extends __BaseException {
|
|
305
|
+
readonly name: "FacetInUseException";
|
|
306
|
+
readonly $fault: "client";
|
|
307
|
+
Message?: string | undefined;
|
|
308
|
+
/**
|
|
309
|
+
* @internal
|
|
310
|
+
*/
|
|
311
|
+
constructor(opts: __ExceptionOptionType<FacetInUseException, __BaseException>);
|
|
312
|
+
}
|
|
313
|
+
/**
|
|
314
|
+
* <p>The specified <a>Facet</a> could not be found.</p>
|
|
315
|
+
* @public
|
|
316
|
+
*/
|
|
317
|
+
export declare class FacetNotFoundException extends __BaseException {
|
|
318
|
+
readonly name: "FacetNotFoundException";
|
|
319
|
+
readonly $fault: "client";
|
|
320
|
+
Message?: string | undefined;
|
|
321
|
+
/**
|
|
322
|
+
* @internal
|
|
323
|
+
*/
|
|
324
|
+
constructor(opts: __ExceptionOptionType<FacetNotFoundException, __BaseException>);
|
|
325
|
+
}
|
|
326
|
+
/**
|
|
327
|
+
* <p>Indicates that the requested operation cannot be completed because the object has not
|
|
328
|
+
* been detached from the tree.</p>
|
|
329
|
+
* @public
|
|
330
|
+
*/
|
|
331
|
+
export declare class ObjectNotDetachedException extends __BaseException {
|
|
332
|
+
readonly name: "ObjectNotDetachedException";
|
|
333
|
+
readonly $fault: "client";
|
|
334
|
+
Message?: string | undefined;
|
|
335
|
+
/**
|
|
336
|
+
* @internal
|
|
337
|
+
*/
|
|
338
|
+
constructor(opts: __ExceptionOptionType<ObjectNotDetachedException, __BaseException>);
|
|
339
|
+
}
|
|
340
|
+
/**
|
|
341
|
+
* <p>The object could not be deleted because links still exist. Remove the links and then
|
|
342
|
+
* try the operation again.</p>
|
|
343
|
+
* @public
|
|
344
|
+
*/
|
|
345
|
+
export declare class StillContainsLinksException extends __BaseException {
|
|
346
|
+
readonly name: "StillContainsLinksException";
|
|
347
|
+
readonly $fault: "client";
|
|
348
|
+
Message?: string | undefined;
|
|
349
|
+
/**
|
|
350
|
+
* @internal
|
|
351
|
+
*/
|
|
352
|
+
constructor(opts: __ExceptionOptionType<StillContainsLinksException, __BaseException>);
|
|
353
|
+
}
|
|
354
|
+
/**
|
|
355
|
+
* <p>Indicates that the object is not attached to the index.</p>
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
358
|
+
export declare class ObjectAlreadyDetachedException extends __BaseException {
|
|
359
|
+
readonly name: "ObjectAlreadyDetachedException";
|
|
360
|
+
readonly $fault: "client";
|
|
361
|
+
Message?: string | undefined;
|
|
362
|
+
/**
|
|
363
|
+
* @internal
|
|
364
|
+
*/
|
|
365
|
+
constructor(opts: __ExceptionOptionType<ObjectAlreadyDetachedException, __BaseException>);
|
|
366
|
+
}
|
|
367
|
+
/**
|
|
368
|
+
* <p>Occurs when any invalid operations are performed on an object that is not a node, such
|
|
369
|
+
* as calling <code>ListObjectChildren</code> for a leaf node object.</p>
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
export declare class NotNodeException extends __BaseException {
|
|
373
|
+
readonly name: "NotNodeException";
|
|
374
|
+
readonly $fault: "client";
|
|
375
|
+
Message?: string | undefined;
|
|
376
|
+
/**
|
|
377
|
+
* @internal
|
|
378
|
+
*/
|
|
379
|
+
constructor(opts: __ExceptionOptionType<NotNodeException, __BaseException>);
|
|
380
|
+
}
|
|
381
|
+
/**
|
|
382
|
+
* <p>Indicates that the <code>NextToken</code> value is not valid.</p>
|
|
383
|
+
* @public
|
|
384
|
+
*/
|
|
385
|
+
export declare class InvalidNextTokenException extends __BaseException {
|
|
386
|
+
readonly name: "InvalidNextTokenException";
|
|
387
|
+
readonly $fault: "client";
|
|
388
|
+
Message?: string | undefined;
|
|
389
|
+
/**
|
|
390
|
+
* @internal
|
|
391
|
+
*/
|
|
392
|
+
constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
|
|
393
|
+
}
|
|
394
|
+
/**
|
|
395
|
+
* <p>Cannot list the parents of a <a>Directory</a> root.</p>
|
|
396
|
+
* @public
|
|
397
|
+
*/
|
|
398
|
+
export declare class CannotListParentOfRootException extends __BaseException {
|
|
399
|
+
readonly name: "CannotListParentOfRootException";
|
|
400
|
+
readonly $fault: "client";
|
|
401
|
+
Message?: string | undefined;
|
|
402
|
+
/**
|
|
403
|
+
* @internal
|
|
404
|
+
*/
|
|
405
|
+
constructor(opts: __ExceptionOptionType<CannotListParentOfRootException, __BaseException>);
|
|
406
|
+
}
|
|
407
|
+
/**
|
|
408
|
+
* <p>Can occur for multiple reasons such as when you tag a resource that doesn’t exist or if you specify a higher number of tags for a resource than the allowed limit. Allowed limit is 50 tags per resource.</p>
|
|
409
|
+
* @public
|
|
410
|
+
*/
|
|
411
|
+
export declare class InvalidTaggingRequestException extends __BaseException {
|
|
412
|
+
readonly name: "InvalidTaggingRequestException";
|
|
413
|
+
readonly $fault: "client";
|
|
414
|
+
Message?: string | undefined;
|
|
415
|
+
/**
|
|
416
|
+
* @internal
|
|
417
|
+
*/
|
|
418
|
+
constructor(opts: __ExceptionOptionType<InvalidTaggingRequestException, __BaseException>);
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* <p>Indicates that a schema is already published.</p>
|
|
422
|
+
* @public
|
|
423
|
+
*/
|
|
424
|
+
export declare class SchemaAlreadyPublishedException extends __BaseException {
|
|
425
|
+
readonly name: "SchemaAlreadyPublishedException";
|
|
426
|
+
readonly $fault: "client";
|
|
427
|
+
Message?: string | undefined;
|
|
428
|
+
/**
|
|
429
|
+
* @internal
|
|
430
|
+
*/
|
|
431
|
+
constructor(opts: __ExceptionOptionType<SchemaAlreadyPublishedException, __BaseException>);
|
|
432
|
+
}
|
|
433
|
+
/**
|
|
434
|
+
* <p>Indicates that the provided <code>SchemaDoc</code> value is not valid.</p>
|
|
435
|
+
* @public
|
|
436
|
+
*/
|
|
437
|
+
export declare class InvalidSchemaDocException extends __BaseException {
|
|
438
|
+
readonly name: "InvalidSchemaDocException";
|
|
439
|
+
readonly $fault: "client";
|
|
440
|
+
Message?: string | undefined;
|
|
441
|
+
/**
|
|
442
|
+
* @internal
|
|
443
|
+
*/
|
|
444
|
+
constructor(opts: __ExceptionOptionType<InvalidSchemaDocException, __BaseException>);
|
|
445
|
+
}
|
|
446
|
+
/**
|
|
447
|
+
* <p>An attempt to modify a <a>Facet</a> resulted in an invalid schema
|
|
448
|
+
* exception.</p>
|
|
449
|
+
* @public
|
|
450
|
+
*/
|
|
451
|
+
export declare class InvalidFacetUpdateException extends __BaseException {
|
|
452
|
+
readonly name: "InvalidFacetUpdateException";
|
|
453
|
+
readonly $fault: "client";
|
|
454
|
+
Message?: string | undefined;
|
|
455
|
+
/**
|
|
456
|
+
* @internal
|
|
457
|
+
*/
|
|
458
|
+
constructor(opts: __ExceptionOptionType<InvalidFacetUpdateException, __BaseException>);
|
|
459
|
+
}
|
|
460
|
+
/**
|
|
461
|
+
* <p>Indicates a failure occurred while performing a check for backward compatibility between the specified schema and the schema that is currently applied to the directory.</p>
|
|
462
|
+
* @public
|
|
463
|
+
*/
|
|
464
|
+
export declare class IncompatibleSchemaException extends __BaseException {
|
|
465
|
+
readonly name: "IncompatibleSchemaException";
|
|
466
|
+
readonly $fault: "client";
|
|
467
|
+
Message?: string | undefined;
|
|
468
|
+
/**
|
|
469
|
+
* @internal
|
|
470
|
+
*/
|
|
471
|
+
constructor(opts: __ExceptionOptionType<IncompatibleSchemaException, __BaseException>);
|
|
472
|
+
}
|