@distilled.cloud/aws 0.16.8 → 0.17.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/lib/services/acm.d.ts +22 -2
- package/lib/services/acm.d.ts.map +1 -1
- package/lib/services/acm.js +3 -3
- package/lib/services/acm.js.map +1 -1
- package/lib/services/cloudwatch-logs.d.ts +73 -13
- package/lib/services/cloudwatch-logs.d.ts.map +1 -1
- package/lib/services/cloudwatch-logs.js +13 -13
- package/lib/services/cloudwatch-logs.js.map +1 -1
- package/lib/services/dynamodb.d.ts +196 -28
- package/lib/services/dynamodb.d.ts.map +1 -1
- package/lib/services/dynamodb.js +33 -33
- package/lib/services/dynamodb.js.map +1 -1
- package/lib/services/ec2.d.ts +16 -5
- package/lib/services/ec2.d.ts.map +1 -1
- package/lib/services/ec2.js +7 -1
- package/lib/services/ec2.js.map +1 -1
- package/lib/services/ecr.d.ts +56 -8
- package/lib/services/ecr.d.ts.map +1 -1
- package/lib/services/ecr.js +9 -9
- package/lib/services/ecr.js.map +1 -1
- package/lib/services/ecs.d.ts +152 -28
- package/lib/services/ecs.d.ts.map +1 -1
- package/lib/services/ecs.js +28 -28
- package/lib/services/ecs.js.map +1 -1
- package/lib/services/eventbridge.d.ts +66 -14
- package/lib/services/eventbridge.d.ts.map +1 -1
- package/lib/services/eventbridge.js +18 -12
- package/lib/services/eventbridge.js.map +1 -1
- package/lib/services/iam.d.ts +24 -0
- package/lib/services/iam.d.ts.map +1 -1
- package/lib/services/iam.js +6 -6
- package/lib/services/iam.js.map +1 -1
- package/lib/services/kinesis.d.ts +90 -14
- package/lib/services/kinesis.d.ts.map +1 -1
- package/lib/services/kinesis.js +14 -14
- package/lib/services/kinesis.js.map +1 -1
- package/lib/services/rds.d.ts +44 -0
- package/lib/services/rds.d.ts.map +1 -1
- package/lib/services/rds.js +10 -10
- package/lib/services/rds.js.map +1 -1
- package/lib/services/route-53.d.ts +16 -0
- package/lib/services/route-53.d.ts.map +1 -1
- package/lib/services/route-53.js +2 -2
- package/lib/services/route-53.js.map +1 -1
- package/lib/services/s3.d.ts +58 -10
- package/lib/services/s3.d.ts.map +1 -1
- package/lib/services/s3.js +11 -11
- package/lib/services/s3.js.map +1 -1
- package/lib/services/scheduler.d.ts +4 -0
- package/lib/services/scheduler.d.ts.map +1 -1
- package/lib/services/scheduler.js +1 -1
- package/lib/services/scheduler.js.map +1 -1
- package/lib/services/secrets-manager.d.ts +68 -12
- package/lib/services/secrets-manager.d.ts.map +1 -1
- package/lib/services/secrets-manager.js +13 -12
- package/lib/services/secrets-manager.js.map +1 -1
- package/lib/services/sqs.d.ts +63 -7
- package/lib/services/sqs.d.ts.map +1 -1
- package/lib/services/sqs.js +11 -11
- package/lib/services/sqs.js.map +1 -1
- package/package.json +2 -3
- package/src/services/acm.ts +3 -3
- package/src/services/cloudwatch-logs.ts +13 -13
- package/src/services/dynamodb.ts +33 -33
- package/src/services/ec2.ts +13 -1
- package/src/services/ecr.ts +9 -9
- package/src/services/ecs.ts +28 -28
- package/src/services/eventbridge.ts +22 -12
- package/src/services/iam.ts +6 -6
- package/src/services/kinesis.ts +14 -14
- package/src/services/rds.ts +10 -10
- package/src/services/route-53.ts +2 -2
- package/src/services/s3.ts +11 -11
- package/src/services/scheduler.ts +1 -1
- package/src/services/secrets-manager.ts +13 -12
- package/src/services/sqs.ts +11 -11
|
@@ -2122,7 +2122,15 @@ export interface UpdateTimeToLiveOutput {
|
|
|
2122
2122
|
export declare const UpdateTimeToLiveOutput: S.Schema<UpdateTimeToLiveOutput>;
|
|
2123
2123
|
declare const InternalServerError_base: S.Class<InternalServerError, S.TaggedStruct<"InternalServerError", {
|
|
2124
2124
|
readonly message: S.optional<S.String>;
|
|
2125
|
-
}>, import("effect/Cause").YieldableError
|
|
2125
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2126
|
+
"@distilled.cloud/error/categories": {
|
|
2127
|
+
ServerError: true;
|
|
2128
|
+
};
|
|
2129
|
+
}) & (new (...args: any[]) => {
|
|
2130
|
+
"@distilled.cloud/error/categories": {
|
|
2131
|
+
RetryableError: true;
|
|
2132
|
+
};
|
|
2133
|
+
});
|
|
2126
2134
|
export declare class InternalServerError extends InternalServerError_base {
|
|
2127
2135
|
}
|
|
2128
2136
|
declare const RequestLimitExceeded_base: S.Class<RequestLimitExceeded, S.TaggedStruct<"RequestLimitExceeded", {
|
|
@@ -2132,6 +2140,10 @@ declare const RequestLimitExceeded_base: S.Class<RequestLimitExceeded, S.TaggedS
|
|
|
2132
2140
|
"@distilled.cloud/error/categories": {
|
|
2133
2141
|
ThrottlingError: true;
|
|
2134
2142
|
};
|
|
2143
|
+
}) & (new (...args: any[]) => {
|
|
2144
|
+
"@distilled.cloud/error/categories": {
|
|
2145
|
+
RetryableError: true;
|
|
2146
|
+
};
|
|
2135
2147
|
});
|
|
2136
2148
|
export declare class RequestLimitExceeded extends RequestLimitExceeded_base {
|
|
2137
2149
|
}
|
|
@@ -2142,28 +2154,56 @@ declare const ThrottlingException_base: S.Class<ThrottlingException, S.TaggedStr
|
|
|
2142
2154
|
"@distilled.cloud/error/categories": {
|
|
2143
2155
|
BadRequestError: true;
|
|
2144
2156
|
};
|
|
2157
|
+
}) & (new (...args: any[]) => {
|
|
2158
|
+
"@distilled.cloud/error/categories": {
|
|
2159
|
+
ThrottlingError: true;
|
|
2160
|
+
};
|
|
2161
|
+
}) & (new (...args: any[]) => {
|
|
2162
|
+
"@distilled.cloud/error/categories": {
|
|
2163
|
+
RetryableError: true;
|
|
2164
|
+
};
|
|
2145
2165
|
});
|
|
2146
2166
|
export declare class ThrottlingException extends ThrottlingException_base {
|
|
2147
2167
|
}
|
|
2148
2168
|
declare const InvalidEndpointException_base: S.Class<InvalidEndpointException, S.TaggedStruct<"InvalidEndpointException", {
|
|
2149
2169
|
readonly Message: S.optional<S.String>;
|
|
2150
|
-
}>, import("effect/Cause").YieldableError
|
|
2170
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2171
|
+
"@distilled.cloud/error/categories": {
|
|
2172
|
+
BadRequestError: true;
|
|
2173
|
+
};
|
|
2174
|
+
});
|
|
2151
2175
|
export declare class InvalidEndpointException extends InvalidEndpointException_base {
|
|
2152
2176
|
}
|
|
2153
2177
|
declare const ProvisionedThroughputExceededException_base: S.Class<ProvisionedThroughputExceededException, S.TaggedStruct<"ProvisionedThroughputExceededException", {
|
|
2154
2178
|
readonly message: S.optional<S.String>;
|
|
2155
2179
|
readonly ThrottlingReasons: S.optional<S.$Array<S.Schema<ThrottlingReason>>>;
|
|
2156
|
-
}>, import("effect/Cause").YieldableError
|
|
2180
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2181
|
+
"@distilled.cloud/error/categories": {
|
|
2182
|
+
ThrottlingError: true;
|
|
2183
|
+
};
|
|
2184
|
+
}) & (new (...args: any[]) => {
|
|
2185
|
+
"@distilled.cloud/error/categories": {
|
|
2186
|
+
RetryableError: true;
|
|
2187
|
+
};
|
|
2188
|
+
});
|
|
2157
2189
|
export declare class ProvisionedThroughputExceededException extends ProvisionedThroughputExceededException_base {
|
|
2158
2190
|
}
|
|
2159
2191
|
declare const ResourceNotFoundException_base: S.Class<ResourceNotFoundException, S.TaggedStruct<"ResourceNotFoundException", {
|
|
2160
2192
|
readonly message: S.optional<S.String>;
|
|
2161
|
-
}>, import("effect/Cause").YieldableError
|
|
2193
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2194
|
+
"@distilled.cloud/error/categories": {
|
|
2195
|
+
NotFoundError: true;
|
|
2196
|
+
};
|
|
2197
|
+
});
|
|
2162
2198
|
export declare class ResourceNotFoundException extends ResourceNotFoundException_base {
|
|
2163
2199
|
}
|
|
2164
2200
|
declare const ItemCollectionSizeLimitExceededException_base: S.Class<ItemCollectionSizeLimitExceededException, S.TaggedStruct<"ItemCollectionSizeLimitExceededException", {
|
|
2165
2201
|
readonly message: S.optional<S.String>;
|
|
2166
|
-
}>, import("effect/Cause").YieldableError
|
|
2202
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2203
|
+
"@distilled.cloud/error/categories": {
|
|
2204
|
+
QuotaError: true;
|
|
2205
|
+
};
|
|
2206
|
+
});
|
|
2167
2207
|
export declare class ItemCollectionSizeLimitExceededException extends ItemCollectionSizeLimitExceededException_base {
|
|
2168
2208
|
}
|
|
2169
2209
|
declare const ReplicatedWriteConflictException_base: S.Class<ReplicatedWriteConflictException, S.TaggedStruct<"ReplicatedWriteConflictException", {
|
|
@@ -2177,32 +2217,68 @@ export declare class ReplicatedWriteConflictException extends ReplicatedWriteCon
|
|
|
2177
2217
|
}
|
|
2178
2218
|
declare const BackupInUseException_base: S.Class<BackupInUseException, S.TaggedStruct<"BackupInUseException", {
|
|
2179
2219
|
readonly message: S.optional<S.String>;
|
|
2180
|
-
}>, import("effect/Cause").YieldableError
|
|
2220
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2221
|
+
"@distilled.cloud/error/categories": {
|
|
2222
|
+
ConflictError: true;
|
|
2223
|
+
};
|
|
2224
|
+
});
|
|
2181
2225
|
export declare class BackupInUseException extends BackupInUseException_base {
|
|
2182
2226
|
}
|
|
2183
2227
|
declare const ContinuousBackupsUnavailableException_base: S.Class<ContinuousBackupsUnavailableException, S.TaggedStruct<"ContinuousBackupsUnavailableException", {
|
|
2184
2228
|
readonly message: S.optional<S.String>;
|
|
2185
|
-
}>, import("effect/Cause").YieldableError
|
|
2229
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2230
|
+
"@distilled.cloud/error/categories": {
|
|
2231
|
+
ConflictError: true;
|
|
2232
|
+
};
|
|
2233
|
+
}) & (new (...args: any[]) => {
|
|
2234
|
+
"@distilled.cloud/error/categories": {
|
|
2235
|
+
RetryableError: true;
|
|
2236
|
+
};
|
|
2237
|
+
});
|
|
2186
2238
|
export declare class ContinuousBackupsUnavailableException extends ContinuousBackupsUnavailableException_base {
|
|
2187
2239
|
}
|
|
2188
2240
|
declare const LimitExceededException_base: S.Class<LimitExceededException, S.TaggedStruct<"LimitExceededException", {
|
|
2189
2241
|
readonly message: S.optional<S.String>;
|
|
2190
|
-
}>, import("effect/Cause").YieldableError
|
|
2242
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2243
|
+
"@distilled.cloud/error/categories": {
|
|
2244
|
+
QuotaError: true;
|
|
2245
|
+
};
|
|
2246
|
+
}) & (new (...args: any[]) => {
|
|
2247
|
+
"@distilled.cloud/error/categories": {
|
|
2248
|
+
RetryableError: true;
|
|
2249
|
+
};
|
|
2250
|
+
});
|
|
2191
2251
|
export declare class LimitExceededException extends LimitExceededException_base {
|
|
2192
2252
|
}
|
|
2193
2253
|
declare const TableInUseException_base: S.Class<TableInUseException, S.TaggedStruct<"TableInUseException", {
|
|
2194
2254
|
readonly message: S.optional<S.String>;
|
|
2195
|
-
}>, import("effect/Cause").YieldableError
|
|
2255
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2256
|
+
"@distilled.cloud/error/categories": {
|
|
2257
|
+
ConflictError: true;
|
|
2258
|
+
};
|
|
2259
|
+
}) & (new (...args: any[]) => {
|
|
2260
|
+
"@distilled.cloud/error/categories": {
|
|
2261
|
+
RetryableError: true;
|
|
2262
|
+
};
|
|
2263
|
+
});
|
|
2196
2264
|
export declare class TableInUseException extends TableInUseException_base {
|
|
2197
2265
|
}
|
|
2198
2266
|
declare const TableNotFoundException_base: S.Class<TableNotFoundException, S.TaggedStruct<"TableNotFoundException", {
|
|
2199
2267
|
readonly message: S.optional<S.String>;
|
|
2200
|
-
}>, import("effect/Cause").YieldableError
|
|
2268
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2269
|
+
"@distilled.cloud/error/categories": {
|
|
2270
|
+
NotFoundError: true;
|
|
2271
|
+
};
|
|
2272
|
+
});
|
|
2201
2273
|
export declare class TableNotFoundException extends TableNotFoundException_base {
|
|
2202
2274
|
}
|
|
2203
2275
|
declare const GlobalTableAlreadyExistsException_base: S.Class<GlobalTableAlreadyExistsException, S.TaggedStruct<"GlobalTableAlreadyExistsException", {
|
|
2204
2276
|
readonly message: S.optional<S.String>;
|
|
2205
2277
|
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2278
|
+
"@distilled.cloud/error/categories": {
|
|
2279
|
+
ConflictError: true;
|
|
2280
|
+
};
|
|
2281
|
+
}) & (new (...args: any[]) => {
|
|
2206
2282
|
"@distilled.cloud/error/categories": {
|
|
2207
2283
|
AlreadyExistsError: true;
|
|
2208
2284
|
};
|
|
@@ -2211,53 +2287,101 @@ export declare class GlobalTableAlreadyExistsException extends GlobalTableAlread
|
|
|
2211
2287
|
}
|
|
2212
2288
|
declare const ResourceInUseException_base: S.Class<ResourceInUseException, S.TaggedStruct<"ResourceInUseException", {
|
|
2213
2289
|
readonly message: S.optional<S.String>;
|
|
2214
|
-
}>, import("effect/Cause").YieldableError
|
|
2290
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2291
|
+
"@distilled.cloud/error/categories": {
|
|
2292
|
+
ConflictError: true;
|
|
2293
|
+
};
|
|
2294
|
+
}) & (new (...args: any[]) => {
|
|
2295
|
+
"@distilled.cloud/error/categories": {
|
|
2296
|
+
RetryableError: true;
|
|
2297
|
+
};
|
|
2298
|
+
});
|
|
2215
2299
|
export declare class ResourceInUseException extends ResourceInUseException_base {
|
|
2216
2300
|
}
|
|
2217
2301
|
declare const BackupNotFoundException_base: S.Class<BackupNotFoundException, S.TaggedStruct<"BackupNotFoundException", {
|
|
2218
2302
|
readonly message: S.optional<S.String>;
|
|
2219
|
-
}>, import("effect/Cause").YieldableError
|
|
2303
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2304
|
+
"@distilled.cloud/error/categories": {
|
|
2305
|
+
NotFoundError: true;
|
|
2306
|
+
};
|
|
2307
|
+
});
|
|
2220
2308
|
export declare class BackupNotFoundException extends BackupNotFoundException_base {
|
|
2221
2309
|
}
|
|
2222
2310
|
declare const ConditionalCheckFailedException_base: S.Class<ConditionalCheckFailedException, S.TaggedStruct<"ConditionalCheckFailedException", {
|
|
2223
2311
|
readonly message: S.optional<S.String>;
|
|
2224
2312
|
readonly Item: S.optional<S.$Record<S.String, S.optional<S.suspend<S.Schema<AttributeValue>>>>>;
|
|
2225
|
-
}>, import("effect/Cause").YieldableError
|
|
2313
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2314
|
+
"@distilled.cloud/error/categories": {
|
|
2315
|
+
ConflictError: true;
|
|
2316
|
+
};
|
|
2317
|
+
});
|
|
2226
2318
|
export declare class ConditionalCheckFailedException extends ConditionalCheckFailedException_base {
|
|
2227
2319
|
}
|
|
2228
2320
|
declare const TransactionConflictException_base: S.Class<TransactionConflictException, S.TaggedStruct<"TransactionConflictException", {
|
|
2229
2321
|
readonly message: S.optional<S.String>;
|
|
2230
|
-
}>, import("effect/Cause").YieldableError
|
|
2322
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2323
|
+
"@distilled.cloud/error/categories": {
|
|
2324
|
+
ConflictError: true;
|
|
2325
|
+
};
|
|
2326
|
+
}) & (new (...args: any[]) => {
|
|
2327
|
+
"@distilled.cloud/error/categories": {
|
|
2328
|
+
RetryableError: true;
|
|
2329
|
+
};
|
|
2330
|
+
});
|
|
2231
2331
|
export declare class TransactionConflictException extends TransactionConflictException_base {
|
|
2232
2332
|
}
|
|
2233
2333
|
declare const PolicyNotFoundException_base: S.Class<PolicyNotFoundException, S.TaggedStruct<"PolicyNotFoundException", {
|
|
2234
2334
|
readonly message: S.optional<S.String>;
|
|
2235
|
-
}>, import("effect/Cause").YieldableError
|
|
2335
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2336
|
+
"@distilled.cloud/error/categories": {
|
|
2337
|
+
NotFoundError: true;
|
|
2338
|
+
};
|
|
2339
|
+
});
|
|
2236
2340
|
export declare class PolicyNotFoundException extends PolicyNotFoundException_base {
|
|
2237
2341
|
}
|
|
2238
2342
|
declare const ExportNotFoundException_base: S.Class<ExportNotFoundException, S.TaggedStruct<"ExportNotFoundException", {
|
|
2239
2343
|
readonly message: S.optional<S.String>;
|
|
2240
|
-
}>, import("effect/Cause").YieldableError
|
|
2344
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2345
|
+
"@distilled.cloud/error/categories": {
|
|
2346
|
+
NotFoundError: true;
|
|
2347
|
+
};
|
|
2348
|
+
});
|
|
2241
2349
|
export declare class ExportNotFoundException extends ExportNotFoundException_base {
|
|
2242
2350
|
}
|
|
2243
2351
|
declare const GlobalTableNotFoundException_base: S.Class<GlobalTableNotFoundException, S.TaggedStruct<"GlobalTableNotFoundException", {
|
|
2244
2352
|
readonly message: S.optional<S.String>;
|
|
2245
|
-
}>, import("effect/Cause").YieldableError
|
|
2353
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2354
|
+
"@distilled.cloud/error/categories": {
|
|
2355
|
+
NotFoundError: true;
|
|
2356
|
+
};
|
|
2357
|
+
});
|
|
2246
2358
|
export declare class GlobalTableNotFoundException extends GlobalTableNotFoundException_base {
|
|
2247
2359
|
}
|
|
2248
2360
|
declare const ImportNotFoundException_base: S.Class<ImportNotFoundException, S.TaggedStruct<"ImportNotFoundException", {
|
|
2249
2361
|
readonly message: S.optional<S.String>;
|
|
2250
|
-
}>, import("effect/Cause").YieldableError
|
|
2362
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2363
|
+
"@distilled.cloud/error/categories": {
|
|
2364
|
+
NotFoundError: true;
|
|
2365
|
+
};
|
|
2366
|
+
});
|
|
2251
2367
|
export declare class ImportNotFoundException extends ImportNotFoundException_base {
|
|
2252
2368
|
}
|
|
2253
2369
|
declare const DuplicateItemException_base: S.Class<DuplicateItemException, S.TaggedStruct<"DuplicateItemException", {
|
|
2254
2370
|
readonly message: S.optional<S.String>;
|
|
2255
|
-
}>, import("effect/Cause").YieldableError
|
|
2371
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2372
|
+
"@distilled.cloud/error/categories": {
|
|
2373
|
+
ConflictError: true;
|
|
2374
|
+
};
|
|
2375
|
+
});
|
|
2256
2376
|
export declare class DuplicateItemException extends DuplicateItemException_base {
|
|
2257
2377
|
}
|
|
2258
2378
|
declare const IdempotentParameterMismatchException_base: S.Class<IdempotentParameterMismatchException, S.TaggedStruct<"IdempotentParameterMismatchException", {
|
|
2259
2379
|
readonly Message: S.optional<S.String>;
|
|
2260
|
-
}>, import("effect/Cause").YieldableError
|
|
2380
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2381
|
+
"@distilled.cloud/error/categories": {
|
|
2382
|
+
BadRequestError: true;
|
|
2383
|
+
};
|
|
2384
|
+
});
|
|
2261
2385
|
export declare class IdempotentParameterMismatchException extends IdempotentParameterMismatchException_base {
|
|
2262
2386
|
}
|
|
2263
2387
|
declare const TransactionCanceledException_base: S.Class<TransactionCanceledException, S.TaggedStruct<"TransactionCanceledException", {
|
|
@@ -2268,32 +2392,60 @@ export declare class TransactionCanceledException extends TransactionCanceledExc
|
|
|
2268
2392
|
}
|
|
2269
2393
|
declare const TransactionInProgressException_base: S.Class<TransactionInProgressException, S.TaggedStruct<"TransactionInProgressException", {
|
|
2270
2394
|
readonly Message: S.optional<S.String>;
|
|
2271
|
-
}>, import("effect/Cause").YieldableError
|
|
2395
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2396
|
+
"@distilled.cloud/error/categories": {
|
|
2397
|
+
ConflictError: true;
|
|
2398
|
+
};
|
|
2399
|
+
}) & (new (...args: any[]) => {
|
|
2400
|
+
"@distilled.cloud/error/categories": {
|
|
2401
|
+
RetryableError: true;
|
|
2402
|
+
};
|
|
2403
|
+
});
|
|
2272
2404
|
export declare class TransactionInProgressException extends TransactionInProgressException_base {
|
|
2273
2405
|
}
|
|
2274
2406
|
declare const ExportConflictException_base: S.Class<ExportConflictException, S.TaggedStruct<"ExportConflictException", {
|
|
2275
2407
|
readonly message: S.optional<S.String>;
|
|
2276
|
-
}>, import("effect/Cause").YieldableError
|
|
2408
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2409
|
+
"@distilled.cloud/error/categories": {
|
|
2410
|
+
ConflictError: true;
|
|
2411
|
+
};
|
|
2412
|
+
});
|
|
2277
2413
|
export declare class ExportConflictException extends ExportConflictException_base {
|
|
2278
2414
|
}
|
|
2279
2415
|
declare const InvalidExportTimeException_base: S.Class<InvalidExportTimeException, S.TaggedStruct<"InvalidExportTimeException", {
|
|
2280
2416
|
readonly message: S.optional<S.String>;
|
|
2281
|
-
}>, import("effect/Cause").YieldableError
|
|
2417
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2418
|
+
"@distilled.cloud/error/categories": {
|
|
2419
|
+
BadRequestError: true;
|
|
2420
|
+
};
|
|
2421
|
+
});
|
|
2282
2422
|
export declare class InvalidExportTimeException extends InvalidExportTimeException_base {
|
|
2283
2423
|
}
|
|
2284
2424
|
declare const PointInTimeRecoveryUnavailableException_base: S.Class<PointInTimeRecoveryUnavailableException, S.TaggedStruct<"PointInTimeRecoveryUnavailableException", {
|
|
2285
2425
|
readonly message: S.optional<S.String>;
|
|
2286
|
-
}>, import("effect/Cause").YieldableError
|
|
2426
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2427
|
+
"@distilled.cloud/error/categories": {
|
|
2428
|
+
BadRequestError: true;
|
|
2429
|
+
};
|
|
2430
|
+
});
|
|
2287
2431
|
export declare class PointInTimeRecoveryUnavailableException extends PointInTimeRecoveryUnavailableException_base {
|
|
2288
2432
|
}
|
|
2289
2433
|
declare const ImportConflictException_base: S.Class<ImportConflictException, S.TaggedStruct<"ImportConflictException", {
|
|
2290
2434
|
readonly message: S.optional<S.String>;
|
|
2291
|
-
}>, import("effect/Cause").YieldableError
|
|
2435
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2436
|
+
"@distilled.cloud/error/categories": {
|
|
2437
|
+
ConflictError: true;
|
|
2438
|
+
};
|
|
2439
|
+
});
|
|
2292
2440
|
export declare class ImportConflictException extends ImportConflictException_base {
|
|
2293
2441
|
}
|
|
2294
2442
|
declare const TableAlreadyExistsException_base: S.Class<TableAlreadyExistsException, S.TaggedStruct<"TableAlreadyExistsException", {
|
|
2295
2443
|
readonly message: S.optional<S.String>;
|
|
2296
2444
|
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2445
|
+
"@distilled.cloud/error/categories": {
|
|
2446
|
+
ConflictError: true;
|
|
2447
|
+
};
|
|
2448
|
+
}) & (new (...args: any[]) => {
|
|
2297
2449
|
"@distilled.cloud/error/categories": {
|
|
2298
2450
|
AlreadyExistsError: true;
|
|
2299
2451
|
};
|
|
@@ -2302,12 +2454,20 @@ export declare class TableAlreadyExistsException extends TableAlreadyExistsExcep
|
|
|
2302
2454
|
}
|
|
2303
2455
|
declare const InvalidRestoreTimeException_base: S.Class<InvalidRestoreTimeException, S.TaggedStruct<"InvalidRestoreTimeException", {
|
|
2304
2456
|
readonly message: S.optional<S.String>;
|
|
2305
|
-
}>, import("effect/Cause").YieldableError
|
|
2457
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2458
|
+
"@distilled.cloud/error/categories": {
|
|
2459
|
+
BadRequestError: true;
|
|
2460
|
+
};
|
|
2461
|
+
});
|
|
2306
2462
|
export declare class InvalidRestoreTimeException extends InvalidRestoreTimeException_base {
|
|
2307
2463
|
}
|
|
2308
2464
|
declare const ReplicaAlreadyExistsException_base: S.Class<ReplicaAlreadyExistsException, S.TaggedStruct<"ReplicaAlreadyExistsException", {
|
|
2309
2465
|
readonly message: S.optional<S.String>;
|
|
2310
2466
|
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2467
|
+
"@distilled.cloud/error/categories": {
|
|
2468
|
+
ConflictError: true;
|
|
2469
|
+
};
|
|
2470
|
+
}) & (new (...args: any[]) => {
|
|
2311
2471
|
"@distilled.cloud/error/categories": {
|
|
2312
2472
|
AlreadyExistsError: true;
|
|
2313
2473
|
};
|
|
@@ -2316,12 +2476,20 @@ export declare class ReplicaAlreadyExistsException extends ReplicaAlreadyExistsE
|
|
|
2316
2476
|
}
|
|
2317
2477
|
declare const ReplicaNotFoundException_base: S.Class<ReplicaNotFoundException, S.TaggedStruct<"ReplicaNotFoundException", {
|
|
2318
2478
|
readonly message: S.optional<S.String>;
|
|
2319
|
-
}>, import("effect/Cause").YieldableError
|
|
2479
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2480
|
+
"@distilled.cloud/error/categories": {
|
|
2481
|
+
NotFoundError: true;
|
|
2482
|
+
};
|
|
2483
|
+
});
|
|
2320
2484
|
export declare class ReplicaNotFoundException extends ReplicaNotFoundException_base {
|
|
2321
2485
|
}
|
|
2322
2486
|
declare const IndexNotFoundException_base: S.Class<IndexNotFoundException, S.TaggedStruct<"IndexNotFoundException", {
|
|
2323
2487
|
readonly message: S.optional<S.String>;
|
|
2324
|
-
}>, import("effect/Cause").YieldableError
|
|
2488
|
+
}>, import("effect/Cause").YieldableError> & (new (...args: any[]) => {
|
|
2489
|
+
"@distilled.cloud/error/categories": {
|
|
2490
|
+
NotFoundError: true;
|
|
2491
|
+
};
|
|
2492
|
+
});
|
|
2325
2493
|
export declare class IndexNotFoundException extends IndexNotFoundException_base {
|
|
2326
2494
|
}
|
|
2327
2495
|
export type BatchExecuteStatementError = InternalServerError | RequestLimitExceeded | ThrottlingException | CommonErrors;
|