@aws-sdk/client-health 3.50.0 → 3.53.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/CHANGELOG.md +27 -0
- package/dist-cjs/index.js +3 -0
- package/dist-cjs/models/HealthServiceException.js +11 -0
- package/dist-cjs/models/models_0.js +41 -1
- package/dist-cjs/protocols/Aws_json1_1.js +103 -253
- package/dist-es/index.js +1 -0
- package/dist-es/models/HealthServiceException.js +12 -0
- package/dist-es/models/models_0.js +38 -1
- package/dist-es/protocols/Aws_json1_1.js +216 -286
- package/dist-types/index.d.ts +1 -0
- package/dist-types/models/HealthServiceException.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +23 -13
- package/dist-types/ts3.4/Health.d.ts +70 -0
- package/dist-types/ts3.4/HealthClient.d.ts +86 -0
- package/dist-types/ts3.4/commands/DescribeAffectedAccountsForOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeAffectedEntitiesForOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEntityAggregatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventAggregatesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventDetailsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventDetailsForOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventTypesCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeEventsForOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeHealthServiceStatusForOrganizationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DisableHealthServiceAccessForOrganizationCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/EnableHealthServiceAccessForOrganizationCommand.d.ts +16 -0
- package/dist-types/ts3.4/commands/index.d.ts +13 -0
- package/dist-types/ts3.4/endpoints.d.ts +2 -0
- package/dist-types/ts3.4/index.d.ts +6 -0
- package/dist-types/ts3.4/models/HealthServiceException.d.ts +6 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +601 -0
- package/dist-types/ts3.4/pagination/DescribeAffectedAccountsForOrganizationPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesForOrganizationPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeAffectedEntitiesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEventAggregatesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEventTypesPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEventsForOrganizationPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/DescribeEventsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/index.d.ts +8 -0
- package/dist-types/ts3.4/protocols/Aws_json1_1.d.ts +41 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
- package/package.json +33 -33
|
@@ -0,0 +1,601 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { HealthServiceException as __BaseException } from "./HealthServiceException";
|
|
3
|
+
export declare enum EntityStatusCode {
|
|
4
|
+
IMPAIRED = "IMPAIRED",
|
|
5
|
+
UNIMPAIRED = "UNIMPAIRED",
|
|
6
|
+
UNKNOWN = "UNKNOWN"
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
export interface AffectedEntity {
|
|
10
|
+
|
|
11
|
+
entityArn?: string;
|
|
12
|
+
|
|
13
|
+
eventArn?: string;
|
|
14
|
+
|
|
15
|
+
entityValue?: string;
|
|
16
|
+
|
|
17
|
+
entityUrl?: string;
|
|
18
|
+
|
|
19
|
+
awsAccountId?: string;
|
|
20
|
+
|
|
21
|
+
lastUpdatedTime?: Date;
|
|
22
|
+
|
|
23
|
+
statusCode?: EntityStatusCode | string;
|
|
24
|
+
|
|
25
|
+
tags?: {
|
|
26
|
+
[key: string]: string;
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export declare namespace AffectedEntity {
|
|
30
|
+
|
|
31
|
+
const filterSensitiveLog: (obj: AffectedEntity) => any;
|
|
32
|
+
}
|
|
33
|
+
export interface DescribeAffectedAccountsForOrganizationRequest {
|
|
34
|
+
|
|
35
|
+
eventArn: string | undefined;
|
|
36
|
+
|
|
37
|
+
nextToken?: string;
|
|
38
|
+
|
|
39
|
+
maxResults?: number;
|
|
40
|
+
}
|
|
41
|
+
export declare namespace DescribeAffectedAccountsForOrganizationRequest {
|
|
42
|
+
|
|
43
|
+
const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationRequest) => any;
|
|
44
|
+
}
|
|
45
|
+
export declare enum EventScopeCode {
|
|
46
|
+
ACCOUNT_SPECIFIC = "ACCOUNT_SPECIFIC",
|
|
47
|
+
NONE = "NONE",
|
|
48
|
+
PUBLIC = "PUBLIC"
|
|
49
|
+
}
|
|
50
|
+
export interface DescribeAffectedAccountsForOrganizationResponse {
|
|
51
|
+
|
|
52
|
+
affectedAccounts?: string[];
|
|
53
|
+
|
|
54
|
+
eventScopeCode?: EventScopeCode | string;
|
|
55
|
+
|
|
56
|
+
nextToken?: string;
|
|
57
|
+
}
|
|
58
|
+
export declare namespace DescribeAffectedAccountsForOrganizationResponse {
|
|
59
|
+
|
|
60
|
+
const filterSensitiveLog: (obj: DescribeAffectedAccountsForOrganizationResponse) => any;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export declare class InvalidPaginationToken extends __BaseException {
|
|
64
|
+
readonly name: "InvalidPaginationToken";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
|
|
67
|
+
constructor(opts: __ExceptionOptionType<InvalidPaginationToken, __BaseException>);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export interface DateTimeRange {
|
|
71
|
+
|
|
72
|
+
from?: Date;
|
|
73
|
+
|
|
74
|
+
to?: Date;
|
|
75
|
+
}
|
|
76
|
+
export declare namespace DateTimeRange {
|
|
77
|
+
|
|
78
|
+
const filterSensitiveLog: (obj: DateTimeRange) => any;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
export interface EntityFilter {
|
|
82
|
+
|
|
83
|
+
eventArns: string[] | undefined;
|
|
84
|
+
|
|
85
|
+
entityArns?: string[];
|
|
86
|
+
|
|
87
|
+
entityValues?: string[];
|
|
88
|
+
|
|
89
|
+
lastUpdatedTimes?: DateTimeRange[];
|
|
90
|
+
|
|
91
|
+
tags?: {
|
|
92
|
+
[key: string]: string;
|
|
93
|
+
}[];
|
|
94
|
+
|
|
95
|
+
statusCodes?: (EntityStatusCode | string)[];
|
|
96
|
+
}
|
|
97
|
+
export declare namespace EntityFilter {
|
|
98
|
+
|
|
99
|
+
const filterSensitiveLog: (obj: EntityFilter) => any;
|
|
100
|
+
}
|
|
101
|
+
export interface DescribeAffectedEntitiesRequest {
|
|
102
|
+
|
|
103
|
+
filter: EntityFilter | undefined;
|
|
104
|
+
|
|
105
|
+
locale?: string;
|
|
106
|
+
|
|
107
|
+
nextToken?: string;
|
|
108
|
+
|
|
109
|
+
maxResults?: number;
|
|
110
|
+
}
|
|
111
|
+
export declare namespace DescribeAffectedEntitiesRequest {
|
|
112
|
+
|
|
113
|
+
const filterSensitiveLog: (obj: DescribeAffectedEntitiesRequest) => any;
|
|
114
|
+
}
|
|
115
|
+
export interface DescribeAffectedEntitiesResponse {
|
|
116
|
+
|
|
117
|
+
entities?: AffectedEntity[];
|
|
118
|
+
|
|
119
|
+
nextToken?: string;
|
|
120
|
+
}
|
|
121
|
+
export declare namespace DescribeAffectedEntitiesResponse {
|
|
122
|
+
|
|
123
|
+
const filterSensitiveLog: (obj: DescribeAffectedEntitiesResponse) => any;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
export declare class UnsupportedLocale extends __BaseException {
|
|
127
|
+
readonly name: "UnsupportedLocale";
|
|
128
|
+
readonly $fault: "client";
|
|
129
|
+
|
|
130
|
+
constructor(opts: __ExceptionOptionType<UnsupportedLocale, __BaseException>);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface EventAccountFilter {
|
|
134
|
+
|
|
135
|
+
eventArn: string | undefined;
|
|
136
|
+
|
|
137
|
+
awsAccountId?: string;
|
|
138
|
+
}
|
|
139
|
+
export declare namespace EventAccountFilter {
|
|
140
|
+
|
|
141
|
+
const filterSensitiveLog: (obj: EventAccountFilter) => any;
|
|
142
|
+
}
|
|
143
|
+
export interface DescribeAffectedEntitiesForOrganizationRequest {
|
|
144
|
+
|
|
145
|
+
organizationEntityFilters: EventAccountFilter[] | undefined;
|
|
146
|
+
|
|
147
|
+
locale?: string;
|
|
148
|
+
|
|
149
|
+
nextToken?: string;
|
|
150
|
+
|
|
151
|
+
maxResults?: number;
|
|
152
|
+
}
|
|
153
|
+
export declare namespace DescribeAffectedEntitiesForOrganizationRequest {
|
|
154
|
+
|
|
155
|
+
const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationRequest) => any;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
export interface OrganizationAffectedEntitiesErrorItem {
|
|
159
|
+
|
|
160
|
+
awsAccountId?: string;
|
|
161
|
+
|
|
162
|
+
eventArn?: string;
|
|
163
|
+
|
|
164
|
+
errorName?: string;
|
|
165
|
+
|
|
166
|
+
errorMessage?: string;
|
|
167
|
+
}
|
|
168
|
+
export declare namespace OrganizationAffectedEntitiesErrorItem {
|
|
169
|
+
|
|
170
|
+
const filterSensitiveLog: (obj: OrganizationAffectedEntitiesErrorItem) => any;
|
|
171
|
+
}
|
|
172
|
+
export interface DescribeAffectedEntitiesForOrganizationResponse {
|
|
173
|
+
|
|
174
|
+
entities?: AffectedEntity[];
|
|
175
|
+
|
|
176
|
+
failedSet?: OrganizationAffectedEntitiesErrorItem[];
|
|
177
|
+
|
|
178
|
+
nextToken?: string;
|
|
179
|
+
}
|
|
180
|
+
export declare namespace DescribeAffectedEntitiesForOrganizationResponse {
|
|
181
|
+
|
|
182
|
+
const filterSensitiveLog: (obj: DescribeAffectedEntitiesForOrganizationResponse) => any;
|
|
183
|
+
}
|
|
184
|
+
export interface DescribeEntityAggregatesRequest {
|
|
185
|
+
|
|
186
|
+
eventArns?: string[];
|
|
187
|
+
}
|
|
188
|
+
export declare namespace DescribeEntityAggregatesRequest {
|
|
189
|
+
|
|
190
|
+
const filterSensitiveLog: (obj: DescribeEntityAggregatesRequest) => any;
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export interface EntityAggregate {
|
|
194
|
+
|
|
195
|
+
eventArn?: string;
|
|
196
|
+
|
|
197
|
+
count?: number;
|
|
198
|
+
}
|
|
199
|
+
export declare namespace EntityAggregate {
|
|
200
|
+
|
|
201
|
+
const filterSensitiveLog: (obj: EntityAggregate) => any;
|
|
202
|
+
}
|
|
203
|
+
export interface DescribeEntityAggregatesResponse {
|
|
204
|
+
|
|
205
|
+
entityAggregates?: EntityAggregate[];
|
|
206
|
+
}
|
|
207
|
+
export declare namespace DescribeEntityAggregatesResponse {
|
|
208
|
+
|
|
209
|
+
const filterSensitiveLog: (obj: DescribeEntityAggregatesResponse) => any;
|
|
210
|
+
}
|
|
211
|
+
export declare enum EventAggregateField {
|
|
212
|
+
EventTypeCategory = "eventTypeCategory"
|
|
213
|
+
}
|
|
214
|
+
export declare enum EventStatusCode {
|
|
215
|
+
CLOSED = "closed",
|
|
216
|
+
OPEN = "open",
|
|
217
|
+
UPCOMING = "upcoming"
|
|
218
|
+
}
|
|
219
|
+
export declare enum EventTypeCategory {
|
|
220
|
+
ACCOUNT_NOTIFICATION = "accountNotification",
|
|
221
|
+
INVESTIGATION = "investigation",
|
|
222
|
+
ISSUE = "issue",
|
|
223
|
+
SCHEDULED_CHANGE = "scheduledChange"
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
export interface EventFilter {
|
|
227
|
+
|
|
228
|
+
eventArns?: string[];
|
|
229
|
+
|
|
230
|
+
eventTypeCodes?: string[];
|
|
231
|
+
|
|
232
|
+
services?: string[];
|
|
233
|
+
|
|
234
|
+
regions?: string[];
|
|
235
|
+
|
|
236
|
+
availabilityZones?: string[];
|
|
237
|
+
|
|
238
|
+
startTimes?: DateTimeRange[];
|
|
239
|
+
|
|
240
|
+
endTimes?: DateTimeRange[];
|
|
241
|
+
|
|
242
|
+
lastUpdatedTimes?: DateTimeRange[];
|
|
243
|
+
|
|
244
|
+
entityArns?: string[];
|
|
245
|
+
|
|
246
|
+
entityValues?: string[];
|
|
247
|
+
|
|
248
|
+
eventTypeCategories?: (EventTypeCategory | string)[];
|
|
249
|
+
|
|
250
|
+
tags?: {
|
|
251
|
+
[key: string]: string;
|
|
252
|
+
}[];
|
|
253
|
+
|
|
254
|
+
eventStatusCodes?: (EventStatusCode | string)[];
|
|
255
|
+
}
|
|
256
|
+
export declare namespace EventFilter {
|
|
257
|
+
|
|
258
|
+
const filterSensitiveLog: (obj: EventFilter) => any;
|
|
259
|
+
}
|
|
260
|
+
export interface DescribeEventAggregatesRequest {
|
|
261
|
+
|
|
262
|
+
filter?: EventFilter;
|
|
263
|
+
|
|
264
|
+
aggregateField: EventAggregateField | string | undefined;
|
|
265
|
+
|
|
266
|
+
maxResults?: number;
|
|
267
|
+
|
|
268
|
+
nextToken?: string;
|
|
269
|
+
}
|
|
270
|
+
export declare namespace DescribeEventAggregatesRequest {
|
|
271
|
+
|
|
272
|
+
const filterSensitiveLog: (obj: DescribeEventAggregatesRequest) => any;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
export interface EventAggregate {
|
|
276
|
+
|
|
277
|
+
aggregateValue?: string;
|
|
278
|
+
|
|
279
|
+
count?: number;
|
|
280
|
+
}
|
|
281
|
+
export declare namespace EventAggregate {
|
|
282
|
+
|
|
283
|
+
const filterSensitiveLog: (obj: EventAggregate) => any;
|
|
284
|
+
}
|
|
285
|
+
export interface DescribeEventAggregatesResponse {
|
|
286
|
+
|
|
287
|
+
eventAggregates?: EventAggregate[];
|
|
288
|
+
|
|
289
|
+
nextToken?: string;
|
|
290
|
+
}
|
|
291
|
+
export declare namespace DescribeEventAggregatesResponse {
|
|
292
|
+
|
|
293
|
+
const filterSensitiveLog: (obj: DescribeEventAggregatesResponse) => any;
|
|
294
|
+
}
|
|
295
|
+
export interface DescribeEventDetailsRequest {
|
|
296
|
+
|
|
297
|
+
eventArns: string[] | undefined;
|
|
298
|
+
|
|
299
|
+
locale?: string;
|
|
300
|
+
}
|
|
301
|
+
export declare namespace DescribeEventDetailsRequest {
|
|
302
|
+
|
|
303
|
+
const filterSensitiveLog: (obj: DescribeEventDetailsRequest) => any;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export interface EventDetailsErrorItem {
|
|
307
|
+
|
|
308
|
+
eventArn?: string;
|
|
309
|
+
|
|
310
|
+
errorName?: string;
|
|
311
|
+
|
|
312
|
+
errorMessage?: string;
|
|
313
|
+
}
|
|
314
|
+
export declare namespace EventDetailsErrorItem {
|
|
315
|
+
|
|
316
|
+
const filterSensitiveLog: (obj: EventDetailsErrorItem) => any;
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
export interface Event {
|
|
320
|
+
|
|
321
|
+
arn?: string;
|
|
322
|
+
|
|
323
|
+
service?: string;
|
|
324
|
+
|
|
325
|
+
eventTypeCode?: string;
|
|
326
|
+
|
|
327
|
+
eventTypeCategory?: EventTypeCategory | string;
|
|
328
|
+
|
|
329
|
+
region?: string;
|
|
330
|
+
|
|
331
|
+
availabilityZone?: string;
|
|
332
|
+
|
|
333
|
+
startTime?: Date;
|
|
334
|
+
|
|
335
|
+
endTime?: Date;
|
|
336
|
+
|
|
337
|
+
lastUpdatedTime?: Date;
|
|
338
|
+
|
|
339
|
+
statusCode?: EventStatusCode | string;
|
|
340
|
+
|
|
341
|
+
eventScopeCode?: EventScopeCode | string;
|
|
342
|
+
}
|
|
343
|
+
export declare namespace Event {
|
|
344
|
+
|
|
345
|
+
const filterSensitiveLog: (obj: Event) => any;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
export interface EventDescription {
|
|
349
|
+
|
|
350
|
+
latestDescription?: string;
|
|
351
|
+
}
|
|
352
|
+
export declare namespace EventDescription {
|
|
353
|
+
|
|
354
|
+
const filterSensitiveLog: (obj: EventDescription) => any;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
export interface EventDetails {
|
|
358
|
+
|
|
359
|
+
event?: Event;
|
|
360
|
+
|
|
361
|
+
eventDescription?: EventDescription;
|
|
362
|
+
|
|
363
|
+
eventMetadata?: {
|
|
364
|
+
[key: string]: string;
|
|
365
|
+
};
|
|
366
|
+
}
|
|
367
|
+
export declare namespace EventDetails {
|
|
368
|
+
|
|
369
|
+
const filterSensitiveLog: (obj: EventDetails) => any;
|
|
370
|
+
}
|
|
371
|
+
export interface DescribeEventDetailsResponse {
|
|
372
|
+
|
|
373
|
+
successfulSet?: EventDetails[];
|
|
374
|
+
|
|
375
|
+
failedSet?: EventDetailsErrorItem[];
|
|
376
|
+
}
|
|
377
|
+
export declare namespace DescribeEventDetailsResponse {
|
|
378
|
+
|
|
379
|
+
const filterSensitiveLog: (obj: DescribeEventDetailsResponse) => any;
|
|
380
|
+
}
|
|
381
|
+
export interface DescribeEventDetailsForOrganizationRequest {
|
|
382
|
+
|
|
383
|
+
organizationEventDetailFilters: EventAccountFilter[] | undefined;
|
|
384
|
+
|
|
385
|
+
locale?: string;
|
|
386
|
+
}
|
|
387
|
+
export declare namespace DescribeEventDetailsForOrganizationRequest {
|
|
388
|
+
|
|
389
|
+
const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationRequest) => any;
|
|
390
|
+
}
|
|
391
|
+
|
|
392
|
+
export interface OrganizationEventDetailsErrorItem {
|
|
393
|
+
|
|
394
|
+
awsAccountId?: string;
|
|
395
|
+
|
|
396
|
+
eventArn?: string;
|
|
397
|
+
|
|
398
|
+
errorName?: string;
|
|
399
|
+
|
|
400
|
+
errorMessage?: string;
|
|
401
|
+
}
|
|
402
|
+
export declare namespace OrganizationEventDetailsErrorItem {
|
|
403
|
+
|
|
404
|
+
const filterSensitiveLog: (obj: OrganizationEventDetailsErrorItem) => any;
|
|
405
|
+
}
|
|
406
|
+
|
|
407
|
+
export interface OrganizationEventDetails {
|
|
408
|
+
|
|
409
|
+
awsAccountId?: string;
|
|
410
|
+
|
|
411
|
+
event?: Event;
|
|
412
|
+
|
|
413
|
+
eventDescription?: EventDescription;
|
|
414
|
+
|
|
415
|
+
eventMetadata?: {
|
|
416
|
+
[key: string]: string;
|
|
417
|
+
};
|
|
418
|
+
}
|
|
419
|
+
export declare namespace OrganizationEventDetails {
|
|
420
|
+
|
|
421
|
+
const filterSensitiveLog: (obj: OrganizationEventDetails) => any;
|
|
422
|
+
}
|
|
423
|
+
export interface DescribeEventDetailsForOrganizationResponse {
|
|
424
|
+
|
|
425
|
+
successfulSet?: OrganizationEventDetails[];
|
|
426
|
+
|
|
427
|
+
failedSet?: OrganizationEventDetailsErrorItem[];
|
|
428
|
+
}
|
|
429
|
+
export declare namespace DescribeEventDetailsForOrganizationResponse {
|
|
430
|
+
|
|
431
|
+
const filterSensitiveLog: (obj: DescribeEventDetailsForOrganizationResponse) => any;
|
|
432
|
+
}
|
|
433
|
+
export interface DescribeEventsRequest {
|
|
434
|
+
|
|
435
|
+
filter?: EventFilter;
|
|
436
|
+
|
|
437
|
+
nextToken?: string;
|
|
438
|
+
|
|
439
|
+
maxResults?: number;
|
|
440
|
+
|
|
441
|
+
locale?: string;
|
|
442
|
+
}
|
|
443
|
+
export declare namespace DescribeEventsRequest {
|
|
444
|
+
|
|
445
|
+
const filterSensitiveLog: (obj: DescribeEventsRequest) => any;
|
|
446
|
+
}
|
|
447
|
+
export interface DescribeEventsResponse {
|
|
448
|
+
|
|
449
|
+
events?: Event[];
|
|
450
|
+
|
|
451
|
+
nextToken?: string;
|
|
452
|
+
}
|
|
453
|
+
export declare namespace DescribeEventsResponse {
|
|
454
|
+
|
|
455
|
+
const filterSensitiveLog: (obj: DescribeEventsResponse) => any;
|
|
456
|
+
}
|
|
457
|
+
|
|
458
|
+
export interface OrganizationEventFilter {
|
|
459
|
+
|
|
460
|
+
eventTypeCodes?: string[];
|
|
461
|
+
|
|
462
|
+
awsAccountIds?: string[];
|
|
463
|
+
|
|
464
|
+
services?: string[];
|
|
465
|
+
|
|
466
|
+
regions?: string[];
|
|
467
|
+
|
|
468
|
+
startTime?: DateTimeRange;
|
|
469
|
+
|
|
470
|
+
endTime?: DateTimeRange;
|
|
471
|
+
|
|
472
|
+
lastUpdatedTime?: DateTimeRange;
|
|
473
|
+
|
|
474
|
+
entityArns?: string[];
|
|
475
|
+
|
|
476
|
+
entityValues?: string[];
|
|
477
|
+
|
|
478
|
+
eventTypeCategories?: (EventTypeCategory | string)[];
|
|
479
|
+
|
|
480
|
+
eventStatusCodes?: (EventStatusCode | string)[];
|
|
481
|
+
}
|
|
482
|
+
export declare namespace OrganizationEventFilter {
|
|
483
|
+
|
|
484
|
+
const filterSensitiveLog: (obj: OrganizationEventFilter) => any;
|
|
485
|
+
}
|
|
486
|
+
export interface DescribeEventsForOrganizationRequest {
|
|
487
|
+
|
|
488
|
+
filter?: OrganizationEventFilter;
|
|
489
|
+
|
|
490
|
+
nextToken?: string;
|
|
491
|
+
|
|
492
|
+
maxResults?: number;
|
|
493
|
+
|
|
494
|
+
locale?: string;
|
|
495
|
+
}
|
|
496
|
+
export declare namespace DescribeEventsForOrganizationRequest {
|
|
497
|
+
|
|
498
|
+
const filterSensitiveLog: (obj: DescribeEventsForOrganizationRequest) => any;
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
export interface OrganizationEvent {
|
|
502
|
+
|
|
503
|
+
arn?: string;
|
|
504
|
+
|
|
505
|
+
service?: string;
|
|
506
|
+
|
|
507
|
+
eventTypeCode?: string;
|
|
508
|
+
|
|
509
|
+
eventTypeCategory?: EventTypeCategory | string;
|
|
510
|
+
|
|
511
|
+
eventScopeCode?: EventScopeCode | string;
|
|
512
|
+
|
|
513
|
+
region?: string;
|
|
514
|
+
|
|
515
|
+
startTime?: Date;
|
|
516
|
+
|
|
517
|
+
endTime?: Date;
|
|
518
|
+
|
|
519
|
+
lastUpdatedTime?: Date;
|
|
520
|
+
|
|
521
|
+
statusCode?: EventStatusCode | string;
|
|
522
|
+
}
|
|
523
|
+
export declare namespace OrganizationEvent {
|
|
524
|
+
|
|
525
|
+
const filterSensitiveLog: (obj: OrganizationEvent) => any;
|
|
526
|
+
}
|
|
527
|
+
export interface DescribeEventsForOrganizationResponse {
|
|
528
|
+
|
|
529
|
+
events?: OrganizationEvent[];
|
|
530
|
+
|
|
531
|
+
nextToken?: string;
|
|
532
|
+
}
|
|
533
|
+
export declare namespace DescribeEventsForOrganizationResponse {
|
|
534
|
+
|
|
535
|
+
const filterSensitiveLog: (obj: DescribeEventsForOrganizationResponse) => any;
|
|
536
|
+
}
|
|
537
|
+
|
|
538
|
+
export interface EventTypeFilter {
|
|
539
|
+
|
|
540
|
+
eventTypeCodes?: string[];
|
|
541
|
+
|
|
542
|
+
services?: string[];
|
|
543
|
+
|
|
544
|
+
eventTypeCategories?: (EventTypeCategory | string)[];
|
|
545
|
+
}
|
|
546
|
+
export declare namespace EventTypeFilter {
|
|
547
|
+
|
|
548
|
+
const filterSensitiveLog: (obj: EventTypeFilter) => any;
|
|
549
|
+
}
|
|
550
|
+
export interface DescribeEventTypesRequest {
|
|
551
|
+
|
|
552
|
+
filter?: EventTypeFilter;
|
|
553
|
+
|
|
554
|
+
locale?: string;
|
|
555
|
+
|
|
556
|
+
nextToken?: string;
|
|
557
|
+
|
|
558
|
+
maxResults?: number;
|
|
559
|
+
}
|
|
560
|
+
export declare namespace DescribeEventTypesRequest {
|
|
561
|
+
|
|
562
|
+
const filterSensitiveLog: (obj: DescribeEventTypesRequest) => any;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
export interface EventType {
|
|
566
|
+
|
|
567
|
+
service?: string;
|
|
568
|
+
|
|
569
|
+
code?: string;
|
|
570
|
+
|
|
571
|
+
category?: EventTypeCategory | string;
|
|
572
|
+
}
|
|
573
|
+
export declare namespace EventType {
|
|
574
|
+
|
|
575
|
+
const filterSensitiveLog: (obj: EventType) => any;
|
|
576
|
+
}
|
|
577
|
+
export interface DescribeEventTypesResponse {
|
|
578
|
+
|
|
579
|
+
eventTypes?: EventType[];
|
|
580
|
+
|
|
581
|
+
nextToken?: string;
|
|
582
|
+
}
|
|
583
|
+
export declare namespace DescribeEventTypesResponse {
|
|
584
|
+
|
|
585
|
+
const filterSensitiveLog: (obj: DescribeEventTypesResponse) => any;
|
|
586
|
+
}
|
|
587
|
+
export interface DescribeHealthServiceStatusForOrganizationResponse {
|
|
588
|
+
|
|
589
|
+
healthServiceAccessStatusForOrganization?: string;
|
|
590
|
+
}
|
|
591
|
+
export declare namespace DescribeHealthServiceStatusForOrganizationResponse {
|
|
592
|
+
|
|
593
|
+
const filterSensitiveLog: (obj: DescribeHealthServiceStatusForOrganizationResponse) => any;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
export declare class ConcurrentModificationException extends __BaseException {
|
|
597
|
+
readonly name: "ConcurrentModificationException";
|
|
598
|
+
readonly $fault: "client";
|
|
599
|
+
|
|
600
|
+
constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
|
|
601
|
+
}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeAffectedAccountsForOrganizationCommandInput, DescribeAffectedAccountsForOrganizationCommandOutput } from "../commands/DescribeAffectedAccountsForOrganizationCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeAffectedAccountsForOrganization(config: HealthPaginationConfiguration, input: DescribeAffectedAccountsForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedAccountsForOrganizationCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeAffectedEntitiesForOrganizationCommandInput, DescribeAffectedEntitiesForOrganizationCommandOutput } from "../commands/DescribeAffectedEntitiesForOrganizationCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeAffectedEntitiesForOrganization(config: HealthPaginationConfiguration, input: DescribeAffectedEntitiesForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedEntitiesForOrganizationCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeAffectedEntitiesCommandInput, DescribeAffectedEntitiesCommandOutput } from "../commands/DescribeAffectedEntitiesCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeAffectedEntities(config: HealthPaginationConfiguration, input: DescribeAffectedEntitiesCommandInput, ...additionalArguments: any): Paginator<DescribeAffectedEntitiesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeEventAggregatesCommandInput, DescribeEventAggregatesCommandOutput } from "../commands/DescribeEventAggregatesCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeEventAggregates(config: HealthPaginationConfiguration, input: DescribeEventAggregatesCommandInput, ...additionalArguments: any): Paginator<DescribeEventAggregatesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeEventTypesCommandInput, DescribeEventTypesCommandOutput } from "../commands/DescribeEventTypesCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeEventTypes(config: HealthPaginationConfiguration, input: DescribeEventTypesCommandInput, ...additionalArguments: any): Paginator<DescribeEventTypesCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeEventsForOrganizationCommandInput, DescribeEventsForOrganizationCommandOutput } from "../commands/DescribeEventsForOrganizationCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeEventsForOrganization(config: HealthPaginationConfiguration, input: DescribeEventsForOrganizationCommandInput, ...additionalArguments: any): Paginator<DescribeEventsForOrganizationCommandOutput>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { DescribeEventsCommandInput, DescribeEventsCommandOutput } from "../commands/DescribeEventsCommand";
|
|
3
|
+
import { HealthPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateDescribeEvents(config: HealthPaginationConfiguration, input: DescribeEventsCommandInput, ...additionalArguments: any): Paginator<DescribeEventsCommandOutput>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from "./DescribeAffectedAccountsForOrganizationPaginator";
|
|
2
|
+
export * from "./DescribeAffectedEntitiesForOrganizationPaginator";
|
|
3
|
+
export * from "./DescribeAffectedEntitiesPaginator";
|
|
4
|
+
export * from "./DescribeEventAggregatesPaginator";
|
|
5
|
+
export * from "./DescribeEventTypesPaginator";
|
|
6
|
+
export * from "./DescribeEventsForOrganizationPaginator";
|
|
7
|
+
export * from "./DescribeEventsPaginator";
|
|
8
|
+
export * from "./Interfaces";
|