@aws-sdk/client-eventbridge 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 +105 -104
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +104 -0
- package/dist-es/models/errors.js +157 -0
- package/dist-es/models/models_0.js +1 -261
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +248 -0
- package/dist-types/models/errors.d.ts +165 -0
- package/dist-types/models/models_0.d.ts +1 -413
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +132 -0
- package/dist-types/ts3.4/models/errors.d.ts +94 -0
- package/dist-types/ts3.4/models/models_0.d.ts +20 -226
- package/package.json +21 -21
- 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,261 +1 @@
|
|
|
1
|
-
|
|
2
|
-
export class AccessDeniedException extends __BaseException {
|
|
3
|
-
name = "AccessDeniedException";
|
|
4
|
-
$fault = "client";
|
|
5
|
-
constructor(opts) {
|
|
6
|
-
super({
|
|
7
|
-
name: "AccessDeniedException",
|
|
8
|
-
$fault: "client",
|
|
9
|
-
...opts,
|
|
10
|
-
});
|
|
11
|
-
Object.setPrototypeOf(this, AccessDeniedException.prototype);
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
export class ConcurrentModificationException extends __BaseException {
|
|
15
|
-
name = "ConcurrentModificationException";
|
|
16
|
-
$fault = "client";
|
|
17
|
-
constructor(opts) {
|
|
18
|
-
super({
|
|
19
|
-
name: "ConcurrentModificationException",
|
|
20
|
-
$fault: "client",
|
|
21
|
-
...opts,
|
|
22
|
-
});
|
|
23
|
-
Object.setPrototypeOf(this, ConcurrentModificationException.prototype);
|
|
24
|
-
}
|
|
25
|
-
}
|
|
26
|
-
export class InternalException extends __BaseException {
|
|
27
|
-
name = "InternalException";
|
|
28
|
-
$fault = "server";
|
|
29
|
-
constructor(opts) {
|
|
30
|
-
super({
|
|
31
|
-
name: "InternalException",
|
|
32
|
-
$fault: "server",
|
|
33
|
-
...opts,
|
|
34
|
-
});
|
|
35
|
-
Object.setPrototypeOf(this, InternalException.prototype);
|
|
36
|
-
}
|
|
37
|
-
}
|
|
38
|
-
export class InvalidStateException extends __BaseException {
|
|
39
|
-
name = "InvalidStateException";
|
|
40
|
-
$fault = "client";
|
|
41
|
-
constructor(opts) {
|
|
42
|
-
super({
|
|
43
|
-
name: "InvalidStateException",
|
|
44
|
-
$fault: "client",
|
|
45
|
-
...opts,
|
|
46
|
-
});
|
|
47
|
-
Object.setPrototypeOf(this, InvalidStateException.prototype);
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
export class OperationDisabledException extends __BaseException {
|
|
51
|
-
name = "OperationDisabledException";
|
|
52
|
-
$fault = "client";
|
|
53
|
-
constructor(opts) {
|
|
54
|
-
super({
|
|
55
|
-
name: "OperationDisabledException",
|
|
56
|
-
$fault: "client",
|
|
57
|
-
...opts,
|
|
58
|
-
});
|
|
59
|
-
Object.setPrototypeOf(this, OperationDisabledException.prototype);
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
export class ResourceNotFoundException extends __BaseException {
|
|
63
|
-
name = "ResourceNotFoundException";
|
|
64
|
-
$fault = "client";
|
|
65
|
-
constructor(opts) {
|
|
66
|
-
super({
|
|
67
|
-
name: "ResourceNotFoundException",
|
|
68
|
-
$fault: "client",
|
|
69
|
-
...opts,
|
|
70
|
-
});
|
|
71
|
-
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
72
|
-
}
|
|
73
|
-
}
|
|
74
|
-
export const ApiDestinationState = {
|
|
75
|
-
ACTIVE: "ACTIVE",
|
|
76
|
-
INACTIVE: "INACTIVE",
|
|
77
|
-
};
|
|
78
|
-
export const ApiDestinationHttpMethod = {
|
|
79
|
-
DELETE: "DELETE",
|
|
80
|
-
GET: "GET",
|
|
81
|
-
HEAD: "HEAD",
|
|
82
|
-
OPTIONS: "OPTIONS",
|
|
83
|
-
PATCH: "PATCH",
|
|
84
|
-
POST: "POST",
|
|
85
|
-
PUT: "PUT",
|
|
86
|
-
};
|
|
87
|
-
export const ArchiveState = {
|
|
88
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
89
|
-
CREATING: "CREATING",
|
|
90
|
-
DISABLED: "DISABLED",
|
|
91
|
-
ENABLED: "ENABLED",
|
|
92
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
93
|
-
UPDATING: "UPDATING",
|
|
94
|
-
};
|
|
95
|
-
export const AssignPublicIp = {
|
|
96
|
-
DISABLED: "DISABLED",
|
|
97
|
-
ENABLED: "ENABLED",
|
|
98
|
-
};
|
|
99
|
-
export const ReplayState = {
|
|
100
|
-
CANCELLED: "CANCELLED",
|
|
101
|
-
CANCELLING: "CANCELLING",
|
|
102
|
-
COMPLETED: "COMPLETED",
|
|
103
|
-
FAILED: "FAILED",
|
|
104
|
-
RUNNING: "RUNNING",
|
|
105
|
-
STARTING: "STARTING",
|
|
106
|
-
};
|
|
107
|
-
export class IllegalStatusException extends __BaseException {
|
|
108
|
-
name = "IllegalStatusException";
|
|
109
|
-
$fault = "client";
|
|
110
|
-
constructor(opts) {
|
|
111
|
-
super({
|
|
112
|
-
name: "IllegalStatusException",
|
|
113
|
-
$fault: "client",
|
|
114
|
-
...opts,
|
|
115
|
-
});
|
|
116
|
-
Object.setPrototypeOf(this, IllegalStatusException.prototype);
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
export class LimitExceededException extends __BaseException {
|
|
120
|
-
name = "LimitExceededException";
|
|
121
|
-
$fault = "client";
|
|
122
|
-
constructor(opts) {
|
|
123
|
-
super({
|
|
124
|
-
name: "LimitExceededException",
|
|
125
|
-
$fault: "client",
|
|
126
|
-
...opts,
|
|
127
|
-
});
|
|
128
|
-
Object.setPrototypeOf(this, LimitExceededException.prototype);
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
export class ResourceAlreadyExistsException extends __BaseException {
|
|
132
|
-
name = "ResourceAlreadyExistsException";
|
|
133
|
-
$fault = "client";
|
|
134
|
-
constructor(opts) {
|
|
135
|
-
super({
|
|
136
|
-
name: "ResourceAlreadyExistsException",
|
|
137
|
-
$fault: "client",
|
|
138
|
-
...opts,
|
|
139
|
-
});
|
|
140
|
-
Object.setPrototypeOf(this, ResourceAlreadyExistsException.prototype);
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
export class InvalidEventPatternException extends __BaseException {
|
|
144
|
-
name = "InvalidEventPatternException";
|
|
145
|
-
$fault = "client";
|
|
146
|
-
constructor(opts) {
|
|
147
|
-
super({
|
|
148
|
-
name: "InvalidEventPatternException",
|
|
149
|
-
$fault: "client",
|
|
150
|
-
...opts,
|
|
151
|
-
});
|
|
152
|
-
Object.setPrototypeOf(this, InvalidEventPatternException.prototype);
|
|
153
|
-
}
|
|
154
|
-
}
|
|
155
|
-
export const ConnectionAuthorizationType = {
|
|
156
|
-
API_KEY: "API_KEY",
|
|
157
|
-
BASIC: "BASIC",
|
|
158
|
-
OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS",
|
|
159
|
-
};
|
|
160
|
-
export const ConnectionOAuthHttpMethod = {
|
|
161
|
-
GET: "GET",
|
|
162
|
-
POST: "POST",
|
|
163
|
-
PUT: "PUT",
|
|
164
|
-
};
|
|
165
|
-
export const ConnectionState = {
|
|
166
|
-
ACTIVE: "ACTIVE",
|
|
167
|
-
AUTHORIZED: "AUTHORIZED",
|
|
168
|
-
AUTHORIZING: "AUTHORIZING",
|
|
169
|
-
CREATING: "CREATING",
|
|
170
|
-
DEAUTHORIZED: "DEAUTHORIZED",
|
|
171
|
-
DEAUTHORIZING: "DEAUTHORIZING",
|
|
172
|
-
DELETING: "DELETING",
|
|
173
|
-
FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY",
|
|
174
|
-
UPDATING: "UPDATING",
|
|
175
|
-
};
|
|
176
|
-
export class ThrottlingException extends __BaseException {
|
|
177
|
-
name = "ThrottlingException";
|
|
178
|
-
$fault = "client";
|
|
179
|
-
constructor(opts) {
|
|
180
|
-
super({
|
|
181
|
-
name: "ThrottlingException",
|
|
182
|
-
$fault: "client",
|
|
183
|
-
...opts,
|
|
184
|
-
});
|
|
185
|
-
Object.setPrototypeOf(this, ThrottlingException.prototype);
|
|
186
|
-
}
|
|
187
|
-
}
|
|
188
|
-
export const ReplicationState = {
|
|
189
|
-
DISABLED: "DISABLED",
|
|
190
|
-
ENABLED: "ENABLED",
|
|
191
|
-
};
|
|
192
|
-
export const EndpointState = {
|
|
193
|
-
ACTIVE: "ACTIVE",
|
|
194
|
-
CREATE_FAILED: "CREATE_FAILED",
|
|
195
|
-
CREATING: "CREATING",
|
|
196
|
-
DELETE_FAILED: "DELETE_FAILED",
|
|
197
|
-
DELETING: "DELETING",
|
|
198
|
-
UPDATE_FAILED: "UPDATE_FAILED",
|
|
199
|
-
UPDATING: "UPDATING",
|
|
200
|
-
};
|
|
201
|
-
export const IncludeDetail = {
|
|
202
|
-
FULL: "FULL",
|
|
203
|
-
NONE: "NONE",
|
|
204
|
-
};
|
|
205
|
-
export const Level = {
|
|
206
|
-
ERROR: "ERROR",
|
|
207
|
-
INFO: "INFO",
|
|
208
|
-
OFF: "OFF",
|
|
209
|
-
TRACE: "TRACE",
|
|
210
|
-
};
|
|
211
|
-
export class ManagedRuleException extends __BaseException {
|
|
212
|
-
name = "ManagedRuleException";
|
|
213
|
-
$fault = "client";
|
|
214
|
-
constructor(opts) {
|
|
215
|
-
super({
|
|
216
|
-
name: "ManagedRuleException",
|
|
217
|
-
$fault: "client",
|
|
218
|
-
...opts,
|
|
219
|
-
});
|
|
220
|
-
Object.setPrototypeOf(this, ManagedRuleException.prototype);
|
|
221
|
-
}
|
|
222
|
-
}
|
|
223
|
-
export const EventSourceState = {
|
|
224
|
-
ACTIVE: "ACTIVE",
|
|
225
|
-
DELETED: "DELETED",
|
|
226
|
-
PENDING: "PENDING",
|
|
227
|
-
};
|
|
228
|
-
export const RuleState = {
|
|
229
|
-
DISABLED: "DISABLED",
|
|
230
|
-
ENABLED: "ENABLED",
|
|
231
|
-
ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS: "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS",
|
|
232
|
-
};
|
|
233
|
-
export const LaunchType = {
|
|
234
|
-
EC2: "EC2",
|
|
235
|
-
EXTERNAL: "EXTERNAL",
|
|
236
|
-
FARGATE: "FARGATE",
|
|
237
|
-
};
|
|
238
|
-
export const PlacementConstraintType = {
|
|
239
|
-
DISTINCT_INSTANCE: "distinctInstance",
|
|
240
|
-
MEMBER_OF: "memberOf",
|
|
241
|
-
};
|
|
242
|
-
export const PlacementStrategyType = {
|
|
243
|
-
BINPACK: "binpack",
|
|
244
|
-
RANDOM: "random",
|
|
245
|
-
SPREAD: "spread",
|
|
246
|
-
};
|
|
247
|
-
export const PropagateTags = {
|
|
248
|
-
TASK_DEFINITION: "TASK_DEFINITION",
|
|
249
|
-
};
|
|
250
|
-
export class PolicyLengthExceededException extends __BaseException {
|
|
251
|
-
name = "PolicyLengthExceededException";
|
|
252
|
-
$fault = "client";
|
|
253
|
-
constructor(opts) {
|
|
254
|
-
super({
|
|
255
|
-
name: "PolicyLengthExceededException",
|
|
256
|
-
$fault: "client",
|
|
257
|
-
...opts,
|
|
258
|
-
});
|
|
259
|
-
Object.setPrototypeOf(this, PolicyLengthExceededException.prototype);
|
|
260
|
-
}
|
|
261
|
-
}
|
|
1
|
+
export {};
|
|
@@ -446,8 +446,8 @@ const _t = "type";
|
|
|
446
446
|
const _w = "weight";
|
|
447
447
|
const n0 = "com.amazonaws.eventbridge";
|
|
448
448
|
import { TypeRegistry } from "@smithy/core/schema";
|
|
449
|
+
import { AccessDeniedException as __AccessDeniedException, ConcurrentModificationException as __ConcurrentModificationException, IllegalStatusException as __IllegalStatusException, InternalException as __InternalException, InvalidEventPatternException as __InvalidEventPatternException, InvalidStateException as __InvalidStateException, LimitExceededException as __LimitExceededException, ManagedRuleException as __ManagedRuleException, OperationDisabledException as __OperationDisabledException, PolicyLengthExceededException as __PolicyLengthExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, } from "../models/errors";
|
|
449
450
|
import { EventBridgeServiceException as __EventBridgeServiceException } from "../models/EventBridgeServiceException";
|
|
450
|
-
import { AccessDeniedException as __AccessDeniedException, ConcurrentModificationException as __ConcurrentModificationException, IllegalStatusException as __IllegalStatusException, InternalException as __InternalException, InvalidEventPatternException as __InvalidEventPatternException, InvalidStateException as __InvalidStateException, LimitExceededException as __LimitExceededException, ManagedRuleException as __ManagedRuleException, OperationDisabledException as __OperationDisabledException, PolicyLengthExceededException as __PolicyLengthExceededException, ResourceAlreadyExistsException as __ResourceAlreadyExistsException, ResourceNotFoundException as __ResourceNotFoundException, ThrottlingException as __ThrottlingException, } from "../models/index";
|
|
451
451
|
export var AuthHeaderParametersSensitive = [0, n0, _AHPS, 8, 0];
|
|
452
452
|
export var GraphQLOperation = [0, n0, _GQLO, 8, 0];
|
|
453
453
|
export var HeaderValueSensitive = [0, n0, _HVS, 8, 0];
|
package/dist-types/index.d.ts
CHANGED
|
@@ -29,5 +29,7 @@ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
|
29
29
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
30
30
|
export type { EventBridgeExtensionConfiguration } from "./extensionConfiguration";
|
|
31
31
|
export * from "./commands";
|
|
32
|
-
export * from "./models";
|
|
32
|
+
export * from "./models/enums";
|
|
33
|
+
export * from "./models/errors";
|
|
34
|
+
export type * from "./models/models_0";
|
|
33
35
|
export { EventBridgeServiceException } from "./models/EventBridgeServiceException";
|
|
@@ -0,0 +1,248 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @public
|
|
3
|
+
* @enum
|
|
4
|
+
*/
|
|
5
|
+
export declare const ApiDestinationState: {
|
|
6
|
+
readonly ACTIVE: "ACTIVE";
|
|
7
|
+
readonly INACTIVE: "INACTIVE";
|
|
8
|
+
};
|
|
9
|
+
/**
|
|
10
|
+
* @public
|
|
11
|
+
*/
|
|
12
|
+
export type ApiDestinationState = (typeof ApiDestinationState)[keyof typeof ApiDestinationState];
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
* @enum
|
|
16
|
+
*/
|
|
17
|
+
export declare const ApiDestinationHttpMethod: {
|
|
18
|
+
readonly DELETE: "DELETE";
|
|
19
|
+
readonly GET: "GET";
|
|
20
|
+
readonly HEAD: "HEAD";
|
|
21
|
+
readonly OPTIONS: "OPTIONS";
|
|
22
|
+
readonly PATCH: "PATCH";
|
|
23
|
+
readonly POST: "POST";
|
|
24
|
+
readonly PUT: "PUT";
|
|
25
|
+
};
|
|
26
|
+
/**
|
|
27
|
+
* @public
|
|
28
|
+
*/
|
|
29
|
+
export type ApiDestinationHttpMethod = (typeof ApiDestinationHttpMethod)[keyof typeof ApiDestinationHttpMethod];
|
|
30
|
+
/**
|
|
31
|
+
* @public
|
|
32
|
+
* @enum
|
|
33
|
+
*/
|
|
34
|
+
export declare const ArchiveState: {
|
|
35
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
36
|
+
readonly CREATING: "CREATING";
|
|
37
|
+
readonly DISABLED: "DISABLED";
|
|
38
|
+
readonly ENABLED: "ENABLED";
|
|
39
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
40
|
+
readonly UPDATING: "UPDATING";
|
|
41
|
+
};
|
|
42
|
+
/**
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
export type ArchiveState = (typeof ArchiveState)[keyof typeof ArchiveState];
|
|
46
|
+
/**
|
|
47
|
+
* @public
|
|
48
|
+
* @enum
|
|
49
|
+
*/
|
|
50
|
+
export declare const AssignPublicIp: {
|
|
51
|
+
readonly DISABLED: "DISABLED";
|
|
52
|
+
readonly ENABLED: "ENABLED";
|
|
53
|
+
};
|
|
54
|
+
/**
|
|
55
|
+
* @public
|
|
56
|
+
*/
|
|
57
|
+
export type AssignPublicIp = (typeof AssignPublicIp)[keyof typeof AssignPublicIp];
|
|
58
|
+
/**
|
|
59
|
+
* @public
|
|
60
|
+
* @enum
|
|
61
|
+
*/
|
|
62
|
+
export declare const ReplayState: {
|
|
63
|
+
readonly CANCELLED: "CANCELLED";
|
|
64
|
+
readonly CANCELLING: "CANCELLING";
|
|
65
|
+
readonly COMPLETED: "COMPLETED";
|
|
66
|
+
readonly FAILED: "FAILED";
|
|
67
|
+
readonly RUNNING: "RUNNING";
|
|
68
|
+
readonly STARTING: "STARTING";
|
|
69
|
+
};
|
|
70
|
+
/**
|
|
71
|
+
* @public
|
|
72
|
+
*/
|
|
73
|
+
export type ReplayState = (typeof ReplayState)[keyof typeof ReplayState];
|
|
74
|
+
/**
|
|
75
|
+
* @public
|
|
76
|
+
* @enum
|
|
77
|
+
*/
|
|
78
|
+
export declare const ConnectionAuthorizationType: {
|
|
79
|
+
readonly API_KEY: "API_KEY";
|
|
80
|
+
readonly BASIC: "BASIC";
|
|
81
|
+
readonly OAUTH_CLIENT_CREDENTIALS: "OAUTH_CLIENT_CREDENTIALS";
|
|
82
|
+
};
|
|
83
|
+
/**
|
|
84
|
+
* @public
|
|
85
|
+
*/
|
|
86
|
+
export type ConnectionAuthorizationType = (typeof ConnectionAuthorizationType)[keyof typeof ConnectionAuthorizationType];
|
|
87
|
+
/**
|
|
88
|
+
* @public
|
|
89
|
+
* @enum
|
|
90
|
+
*/
|
|
91
|
+
export declare const ConnectionOAuthHttpMethod: {
|
|
92
|
+
readonly GET: "GET";
|
|
93
|
+
readonly POST: "POST";
|
|
94
|
+
readonly PUT: "PUT";
|
|
95
|
+
};
|
|
96
|
+
/**
|
|
97
|
+
* @public
|
|
98
|
+
*/
|
|
99
|
+
export type ConnectionOAuthHttpMethod = (typeof ConnectionOAuthHttpMethod)[keyof typeof ConnectionOAuthHttpMethod];
|
|
100
|
+
/**
|
|
101
|
+
* @public
|
|
102
|
+
* @enum
|
|
103
|
+
*/
|
|
104
|
+
export declare const ConnectionState: {
|
|
105
|
+
readonly ACTIVE: "ACTIVE";
|
|
106
|
+
readonly AUTHORIZED: "AUTHORIZED";
|
|
107
|
+
readonly AUTHORIZING: "AUTHORIZING";
|
|
108
|
+
readonly CREATING: "CREATING";
|
|
109
|
+
readonly DEAUTHORIZED: "DEAUTHORIZED";
|
|
110
|
+
readonly DEAUTHORIZING: "DEAUTHORIZING";
|
|
111
|
+
readonly DELETING: "DELETING";
|
|
112
|
+
readonly FAILED_CONNECTIVITY: "FAILED_CONNECTIVITY";
|
|
113
|
+
readonly UPDATING: "UPDATING";
|
|
114
|
+
};
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
*/
|
|
118
|
+
export type ConnectionState = (typeof ConnectionState)[keyof typeof ConnectionState];
|
|
119
|
+
/**
|
|
120
|
+
* @public
|
|
121
|
+
* @enum
|
|
122
|
+
*/
|
|
123
|
+
export declare const ReplicationState: {
|
|
124
|
+
readonly DISABLED: "DISABLED";
|
|
125
|
+
readonly ENABLED: "ENABLED";
|
|
126
|
+
};
|
|
127
|
+
/**
|
|
128
|
+
* @public
|
|
129
|
+
*/
|
|
130
|
+
export type ReplicationState = (typeof ReplicationState)[keyof typeof ReplicationState];
|
|
131
|
+
/**
|
|
132
|
+
* @public
|
|
133
|
+
* @enum
|
|
134
|
+
*/
|
|
135
|
+
export declare const EndpointState: {
|
|
136
|
+
readonly ACTIVE: "ACTIVE";
|
|
137
|
+
readonly CREATE_FAILED: "CREATE_FAILED";
|
|
138
|
+
readonly CREATING: "CREATING";
|
|
139
|
+
readonly DELETE_FAILED: "DELETE_FAILED";
|
|
140
|
+
readonly DELETING: "DELETING";
|
|
141
|
+
readonly UPDATE_FAILED: "UPDATE_FAILED";
|
|
142
|
+
readonly UPDATING: "UPDATING";
|
|
143
|
+
};
|
|
144
|
+
/**
|
|
145
|
+
* @public
|
|
146
|
+
*/
|
|
147
|
+
export type EndpointState = (typeof EndpointState)[keyof typeof EndpointState];
|
|
148
|
+
/**
|
|
149
|
+
* @public
|
|
150
|
+
* @enum
|
|
151
|
+
*/
|
|
152
|
+
export declare const IncludeDetail: {
|
|
153
|
+
readonly FULL: "FULL";
|
|
154
|
+
readonly NONE: "NONE";
|
|
155
|
+
};
|
|
156
|
+
/**
|
|
157
|
+
* @public
|
|
158
|
+
*/
|
|
159
|
+
export type IncludeDetail = (typeof IncludeDetail)[keyof typeof IncludeDetail];
|
|
160
|
+
/**
|
|
161
|
+
* @public
|
|
162
|
+
* @enum
|
|
163
|
+
*/
|
|
164
|
+
export declare const Level: {
|
|
165
|
+
readonly ERROR: "ERROR";
|
|
166
|
+
readonly INFO: "INFO";
|
|
167
|
+
readonly OFF: "OFF";
|
|
168
|
+
readonly TRACE: "TRACE";
|
|
169
|
+
};
|
|
170
|
+
/**
|
|
171
|
+
* @public
|
|
172
|
+
*/
|
|
173
|
+
export type Level = (typeof Level)[keyof typeof Level];
|
|
174
|
+
/**
|
|
175
|
+
* @public
|
|
176
|
+
* @enum
|
|
177
|
+
*/
|
|
178
|
+
export declare const EventSourceState: {
|
|
179
|
+
readonly ACTIVE: "ACTIVE";
|
|
180
|
+
readonly DELETED: "DELETED";
|
|
181
|
+
readonly PENDING: "PENDING";
|
|
182
|
+
};
|
|
183
|
+
/**
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
export type EventSourceState = (typeof EventSourceState)[keyof typeof EventSourceState];
|
|
187
|
+
/**
|
|
188
|
+
* @public
|
|
189
|
+
* @enum
|
|
190
|
+
*/
|
|
191
|
+
export declare const RuleState: {
|
|
192
|
+
readonly DISABLED: "DISABLED";
|
|
193
|
+
readonly ENABLED: "ENABLED";
|
|
194
|
+
readonly ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS: "ENABLED_WITH_ALL_CLOUDTRAIL_MANAGEMENT_EVENTS";
|
|
195
|
+
};
|
|
196
|
+
/**
|
|
197
|
+
* @public
|
|
198
|
+
*/
|
|
199
|
+
export type RuleState = (typeof RuleState)[keyof typeof RuleState];
|
|
200
|
+
/**
|
|
201
|
+
* @public
|
|
202
|
+
* @enum
|
|
203
|
+
*/
|
|
204
|
+
export declare const LaunchType: {
|
|
205
|
+
readonly EC2: "EC2";
|
|
206
|
+
readonly EXTERNAL: "EXTERNAL";
|
|
207
|
+
readonly FARGATE: "FARGATE";
|
|
208
|
+
};
|
|
209
|
+
/**
|
|
210
|
+
* @public
|
|
211
|
+
*/
|
|
212
|
+
export type LaunchType = (typeof LaunchType)[keyof typeof LaunchType];
|
|
213
|
+
/**
|
|
214
|
+
* @public
|
|
215
|
+
* @enum
|
|
216
|
+
*/
|
|
217
|
+
export declare const PlacementConstraintType: {
|
|
218
|
+
readonly DISTINCT_INSTANCE: "distinctInstance";
|
|
219
|
+
readonly MEMBER_OF: "memberOf";
|
|
220
|
+
};
|
|
221
|
+
/**
|
|
222
|
+
* @public
|
|
223
|
+
*/
|
|
224
|
+
export type PlacementConstraintType = (typeof PlacementConstraintType)[keyof typeof PlacementConstraintType];
|
|
225
|
+
/**
|
|
226
|
+
* @public
|
|
227
|
+
* @enum
|
|
228
|
+
*/
|
|
229
|
+
export declare const PlacementStrategyType: {
|
|
230
|
+
readonly BINPACK: "binpack";
|
|
231
|
+
readonly RANDOM: "random";
|
|
232
|
+
readonly SPREAD: "spread";
|
|
233
|
+
};
|
|
234
|
+
/**
|
|
235
|
+
* @public
|
|
236
|
+
*/
|
|
237
|
+
export type PlacementStrategyType = (typeof PlacementStrategyType)[keyof typeof PlacementStrategyType];
|
|
238
|
+
/**
|
|
239
|
+
* @public
|
|
240
|
+
* @enum
|
|
241
|
+
*/
|
|
242
|
+
export declare const PropagateTags: {
|
|
243
|
+
readonly TASK_DEFINITION: "TASK_DEFINITION";
|
|
244
|
+
};
|
|
245
|
+
/**
|
|
246
|
+
* @public
|
|
247
|
+
*/
|
|
248
|
+
export type PropagateTags = (typeof PropagateTags)[keyof typeof PropagateTags];
|
|
@@ -0,0 +1,165 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { EventBridgeServiceException as __BaseException } from "./EventBridgeServiceException";
|
|
3
|
+
/**
|
|
4
|
+
* <p>You do not have the necessary permissions for this action.</p>
|
|
5
|
+
* @public
|
|
6
|
+
*/
|
|
7
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
8
|
+
readonly name: "AccessDeniedException";
|
|
9
|
+
readonly $fault: "client";
|
|
10
|
+
/**
|
|
11
|
+
* @internal
|
|
12
|
+
*/
|
|
13
|
+
constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
|
|
14
|
+
}
|
|
15
|
+
/**
|
|
16
|
+
* <p>There is concurrent modification on a rule, target, archive, or replay.</p>
|
|
17
|
+
* @public
|
|
18
|
+
*/
|
|
19
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
20
|
+
readonly name: "ConcurrentModificationException";
|
|
21
|
+
readonly $fault: "client";
|
|
22
|
+
/**
|
|
23
|
+
* @internal
|
|
24
|
+
*/
|
|
25
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* <p>This exception occurs due to unexpected causes.</p>
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
export declare class InternalException extends __BaseException {
|
|
32
|
+
readonly name: "InternalException";
|
|
33
|
+
readonly $fault: "server";
|
|
34
|
+
/**
|
|
35
|
+
* @internal
|
|
36
|
+
*/
|
|
37
|
+
constructor(opts: __ExceptionOptionType<InternalException, __BaseException>);
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* <p>The specified state is not a valid state for an event source.</p>
|
|
41
|
+
* @public
|
|
42
|
+
*/
|
|
43
|
+
export declare class InvalidStateException extends __BaseException {
|
|
44
|
+
readonly name: "InvalidStateException";
|
|
45
|
+
readonly $fault: "client";
|
|
46
|
+
/**
|
|
47
|
+
* @internal
|
|
48
|
+
*/
|
|
49
|
+
constructor(opts: __ExceptionOptionType<InvalidStateException, __BaseException>);
|
|
50
|
+
}
|
|
51
|
+
/**
|
|
52
|
+
* <p>The operation you are attempting is not available in this region.</p>
|
|
53
|
+
* @public
|
|
54
|
+
*/
|
|
55
|
+
export declare class OperationDisabledException extends __BaseException {
|
|
56
|
+
readonly name: "OperationDisabledException";
|
|
57
|
+
readonly $fault: "client";
|
|
58
|
+
/**
|
|
59
|
+
* @internal
|
|
60
|
+
*/
|
|
61
|
+
constructor(opts: __ExceptionOptionType<OperationDisabledException, __BaseException>);
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* <p>An entity that you specified does not exist.</p>
|
|
65
|
+
* @public
|
|
66
|
+
*/
|
|
67
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
68
|
+
readonly name: "ResourceNotFoundException";
|
|
69
|
+
readonly $fault: "client";
|
|
70
|
+
/**
|
|
71
|
+
* @internal
|
|
72
|
+
*/
|
|
73
|
+
constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* <p>An error occurred because a replay can be canceled only when the state is Running or
|
|
77
|
+
* Starting.</p>
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
export declare class IllegalStatusException extends __BaseException {
|
|
81
|
+
readonly name: "IllegalStatusException";
|
|
82
|
+
readonly $fault: "client";
|
|
83
|
+
/**
|
|
84
|
+
* @internal
|
|
85
|
+
*/
|
|
86
|
+
constructor(opts: __ExceptionOptionType<IllegalStatusException, __BaseException>);
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* <p>The request failed because it attempted to create resource beyond the allowed service
|
|
90
|
+
* quota.</p>
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class LimitExceededException extends __BaseException {
|
|
94
|
+
readonly name: "LimitExceededException";
|
|
95
|
+
readonly $fault: "client";
|
|
96
|
+
/**
|
|
97
|
+
* @internal
|
|
98
|
+
*/
|
|
99
|
+
constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
|
|
100
|
+
}
|
|
101
|
+
/**
|
|
102
|
+
* <p>The resource you are trying to create already exists.</p>
|
|
103
|
+
* @public
|
|
104
|
+
*/
|
|
105
|
+
export declare class ResourceAlreadyExistsException extends __BaseException {
|
|
106
|
+
readonly name: "ResourceAlreadyExistsException";
|
|
107
|
+
readonly $fault: "client";
|
|
108
|
+
/**
|
|
109
|
+
* @internal
|
|
110
|
+
*/
|
|
111
|
+
constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* <p>The event pattern is not valid.</p>
|
|
115
|
+
* @public
|
|
116
|
+
*/
|
|
117
|
+
export declare class InvalidEventPatternException extends __BaseException {
|
|
118
|
+
readonly name: "InvalidEventPatternException";
|
|
119
|
+
readonly $fault: "client";
|
|
120
|
+
/**
|
|
121
|
+
* @internal
|
|
122
|
+
*/
|
|
123
|
+
constructor(opts: __ExceptionOptionType<InvalidEventPatternException, __BaseException>);
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* <p>This request cannot be completed due to throttling issues.</p>
|
|
127
|
+
* @public
|
|
128
|
+
*/
|
|
129
|
+
export declare class ThrottlingException extends __BaseException {
|
|
130
|
+
readonly name: "ThrottlingException";
|
|
131
|
+
readonly $fault: "client";
|
|
132
|
+
/**
|
|
133
|
+
* @internal
|
|
134
|
+
*/
|
|
135
|
+
constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
|
|
136
|
+
}
|
|
137
|
+
/**
|
|
138
|
+
* <p>This rule was created by an Amazon Web Services service on behalf of your account. It is
|
|
139
|
+
* managed by that service. If you see this error in response to <code>DeleteRule</code> or
|
|
140
|
+
* <code>RemoveTargets</code>, you can use the <code>Force</code> parameter in those calls to
|
|
141
|
+
* delete the rule or remove targets from the rule. You cannot modify these managed rules by
|
|
142
|
+
* using <code>DisableRule</code>, <code>EnableRule</code>, <code>PutTargets</code>,
|
|
143
|
+
* <code>PutRule</code>, <code>TagResource</code>, or <code>UntagResource</code>. </p>
|
|
144
|
+
* @public
|
|
145
|
+
*/
|
|
146
|
+
export declare class ManagedRuleException extends __BaseException {
|
|
147
|
+
readonly name: "ManagedRuleException";
|
|
148
|
+
readonly $fault: "client";
|
|
149
|
+
/**
|
|
150
|
+
* @internal
|
|
151
|
+
*/
|
|
152
|
+
constructor(opts: __ExceptionOptionType<ManagedRuleException, __BaseException>);
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* <p>The event bus policy is too long. For more information, see the limits.</p>
|
|
156
|
+
* @public
|
|
157
|
+
*/
|
|
158
|
+
export declare class PolicyLengthExceededException extends __BaseException {
|
|
159
|
+
readonly name: "PolicyLengthExceededException";
|
|
160
|
+
readonly $fault: "client";
|
|
161
|
+
/**
|
|
162
|
+
* @internal
|
|
163
|
+
*/
|
|
164
|
+
constructor(opts: __ExceptionOptionType<PolicyLengthExceededException, __BaseException>);
|
|
165
|
+
}
|