@aws-sdk/client-codestar-notifications 3.168.0 → 3.170.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.
Files changed (33) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodestarNotifications.d.ts +238 -70
  3. package/dist-types/ts3.4/CodestarNotificationsClient.d.ts +208 -86
  4. package/dist-types/ts3.4/commands/CreateNotificationRuleCommand.d.ts +41 -17
  5. package/dist-types/ts3.4/commands/DeleteNotificationRuleCommand.d.ts +41 -17
  6. package/dist-types/ts3.4/commands/DeleteTargetCommand.d.ts +34 -17
  7. package/dist-types/ts3.4/commands/DescribeNotificationRuleCommand.d.ts +41 -17
  8. package/dist-types/ts3.4/commands/ListEventTypesCommand.d.ts +37 -17
  9. package/dist-types/ts3.4/commands/ListNotificationRulesCommand.d.ts +41 -17
  10. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +38 -17
  11. package/dist-types/ts3.4/commands/ListTargetsCommand.d.ts +34 -17
  12. package/dist-types/ts3.4/commands/SubscribeCommand.d.ts +34 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -17
  14. package/dist-types/ts3.4/commands/UnsubscribeCommand.d.ts +34 -17
  15. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -17
  16. package/dist-types/ts3.4/commands/UpdateNotificationRuleCommand.d.ts +41 -17
  17. package/dist-types/ts3.4/commands/index.d.ts +13 -13
  18. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  19. package/dist-types/ts3.4/index.d.ts +6 -6
  20. package/dist-types/ts3.4/models/CodestarNotificationsServiceException.d.ts +8 -6
  21. package/dist-types/ts3.4/models/index.d.ts +1 -1
  22. package/dist-types/ts3.4/models/models_0.d.ts +439 -389
  23. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  24. package/dist-types/ts3.4/pagination/ListEventTypesPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/ListNotificationRulesPaginator.d.ts +11 -4
  26. package/dist-types/ts3.4/pagination/ListTargetsPaginator.d.ts +11 -4
  27. package/dist-types/ts3.4/pagination/index.d.ts +4 -4
  28. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +161 -41
  29. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +68 -38
  30. package/dist-types/ts3.4/runtimeConfig.d.ts +68 -38
  31. package/dist-types/ts3.4/runtimeConfig.native.d.ts +69 -37
  32. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +13 -11
  33. package/package.json +34 -34
@@ -1,389 +1,439 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
3
-
4
- export declare class AccessDeniedException extends __BaseException {
5
- readonly name: "AccessDeniedException";
6
- readonly $fault: "client";
7
- Message?: string;
8
-
9
- constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
10
- }
11
-
12
- export declare class ConcurrentModificationException extends __BaseException {
13
- readonly name: "ConcurrentModificationException";
14
- readonly $fault: "client";
15
- Message?: string;
16
-
17
- constructor(opts: __ExceptionOptionType<ConcurrentModificationException, __BaseException>);
18
- }
19
-
20
- export declare class ConfigurationException extends __BaseException {
21
- readonly name: "ConfigurationException";
22
- readonly $fault: "client";
23
- Message?: string;
24
-
25
- constructor(opts: __ExceptionOptionType<ConfigurationException, __BaseException>);
26
- }
27
- export declare enum DetailType {
28
- BASIC = "BASIC",
29
- FULL = "FULL"
30
- }
31
- export declare enum NotificationRuleStatus {
32
- DISABLED = "DISABLED",
33
- ENABLED = "ENABLED"
34
- }
35
-
36
- export interface Target {
37
-
38
- TargetType?: string;
39
-
40
- TargetAddress?: string;
41
- }
42
- export interface CreateNotificationRuleRequest {
43
-
44
- Name: string | undefined;
45
-
46
- EventTypeIds: string[] | undefined;
47
-
48
- Resource: string | undefined;
49
-
50
- Targets: Target[] | undefined;
51
-
52
- DetailType: DetailType | string | undefined;
53
-
54
- ClientRequestToken?: string;
55
-
56
- Tags?: Record<string, string>;
57
-
58
- Status?: NotificationRuleStatus | string;
59
- }
60
- export interface CreateNotificationRuleResult {
61
-
62
- Arn?: string;
63
- }
64
-
65
- export declare class LimitExceededException extends __BaseException {
66
- readonly name: "LimitExceededException";
67
- readonly $fault: "client";
68
- Message?: string;
69
-
70
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
71
- }
72
-
73
- export declare class ResourceAlreadyExistsException extends __BaseException {
74
- readonly name: "ResourceAlreadyExistsException";
75
- readonly $fault: "client";
76
- Message?: string;
77
-
78
- constructor(opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>);
79
- }
80
-
81
- export declare class ValidationException extends __BaseException {
82
- readonly name: "ValidationException";
83
- readonly $fault: "client";
84
- Message?: string;
85
-
86
- constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
87
- }
88
- export interface DeleteNotificationRuleRequest {
89
-
90
- Arn: string | undefined;
91
- }
92
- export interface DeleteNotificationRuleResult {
93
-
94
- Arn?: string;
95
- }
96
- export interface DeleteTargetRequest {
97
-
98
- TargetAddress: string | undefined;
99
-
100
- ForceUnsubscribeAll?: boolean;
101
- }
102
- export interface DeleteTargetResult {
103
- }
104
- export interface DescribeNotificationRuleRequest {
105
-
106
- Arn: string | undefined;
107
- }
108
-
109
- export interface EventTypeSummary {
110
-
111
- EventTypeId?: string;
112
-
113
- ServiceName?: string;
114
-
115
- EventTypeName?: string;
116
-
117
- ResourceType?: string;
118
- }
119
- export declare enum TargetStatus {
120
- ACTIVE = "ACTIVE",
121
- DEACTIVATED = "DEACTIVATED",
122
- INACTIVE = "INACTIVE",
123
- PENDING = "PENDING",
124
- UNREACHABLE = "UNREACHABLE"
125
- }
126
-
127
- export interface TargetSummary {
128
-
129
- TargetAddress?: string;
130
-
131
- TargetType?: string;
132
-
133
- TargetStatus?: TargetStatus | string;
134
- }
135
- export interface DescribeNotificationRuleResult {
136
-
137
- Arn: string | undefined;
138
-
139
- Name?: string;
140
-
141
- EventTypes?: EventTypeSummary[];
142
-
143
- Resource?: string;
144
-
145
- Targets?: TargetSummary[];
146
-
147
- DetailType?: DetailType | string;
148
-
149
- CreatedBy?: string;
150
-
151
- Status?: NotificationRuleStatus | string;
152
-
153
- CreatedTimestamp?: Date;
154
-
155
- LastModifiedTimestamp?: Date;
156
-
157
- Tags?: Record<string, string>;
158
- }
159
-
160
- export declare class ResourceNotFoundException extends __BaseException {
161
- readonly name: "ResourceNotFoundException";
162
- readonly $fault: "client";
163
- Message?: string;
164
-
165
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
166
- }
167
-
168
- export declare class InvalidNextTokenException extends __BaseException {
169
- readonly name: "InvalidNextTokenException";
170
- readonly $fault: "client";
171
- Message?: string;
172
-
173
- constructor(opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>);
174
- }
175
- export declare enum ListEventTypesFilterName {
176
- RESOURCE_TYPE = "RESOURCE_TYPE",
177
- SERVICE_NAME = "SERVICE_NAME"
178
- }
179
-
180
- export interface ListEventTypesFilter {
181
-
182
- Name: ListEventTypesFilterName | string | undefined;
183
-
184
- Value: string | undefined;
185
- }
186
- export interface ListEventTypesRequest {
187
-
188
- Filters?: ListEventTypesFilter[];
189
-
190
- NextToken?: string;
191
-
192
- MaxResults?: number;
193
- }
194
- export interface ListEventTypesResult {
195
-
196
- EventTypes?: EventTypeSummary[];
197
-
198
- NextToken?: string;
199
- }
200
- export declare enum ListNotificationRulesFilterName {
201
- CREATED_BY = "CREATED_BY",
202
- EVENT_TYPE_ID = "EVENT_TYPE_ID",
203
- RESOURCE = "RESOURCE",
204
- TARGET_ADDRESS = "TARGET_ADDRESS"
205
- }
206
-
207
- export interface ListNotificationRulesFilter {
208
-
209
- Name: ListNotificationRulesFilterName | string | undefined;
210
-
211
- Value: string | undefined;
212
- }
213
- export interface ListNotificationRulesRequest {
214
-
215
- Filters?: ListNotificationRulesFilter[];
216
-
217
- NextToken?: string;
218
-
219
- MaxResults?: number;
220
- }
221
-
222
- export interface NotificationRuleSummary {
223
-
224
- Id?: string;
225
-
226
- Arn?: string;
227
- }
228
- export interface ListNotificationRulesResult {
229
-
230
- NextToken?: string;
231
-
232
- NotificationRules?: NotificationRuleSummary[];
233
- }
234
- export interface ListTagsForResourceRequest {
235
-
236
- Arn: string | undefined;
237
- }
238
- export interface ListTagsForResourceResult {
239
-
240
- Tags?: Record<string, string>;
241
- }
242
- export declare enum ListTargetsFilterName {
243
- TARGET_ADDRESS = "TARGET_ADDRESS",
244
- TARGET_STATUS = "TARGET_STATUS",
245
- TARGET_TYPE = "TARGET_TYPE"
246
- }
247
-
248
- export interface ListTargetsFilter {
249
-
250
- Name: ListTargetsFilterName | string | undefined;
251
-
252
- Value: string | undefined;
253
- }
254
- export interface ListTargetsRequest {
255
-
256
- Filters?: ListTargetsFilter[];
257
-
258
- NextToken?: string;
259
-
260
- MaxResults?: number;
261
- }
262
- export interface ListTargetsResult {
263
-
264
- Targets?: TargetSummary[];
265
-
266
- NextToken?: string;
267
- }
268
- export interface SubscribeRequest {
269
-
270
- Arn: string | undefined;
271
-
272
- Target: Target | undefined;
273
-
274
- ClientRequestToken?: string;
275
- }
276
- export interface SubscribeResult {
277
-
278
- Arn?: string;
279
- }
280
- export interface TagResourceRequest {
281
-
282
- Arn: string | undefined;
283
-
284
- Tags: Record<string, string> | undefined;
285
- }
286
- export interface TagResourceResult {
287
-
288
- Tags?: Record<string, string>;
289
- }
290
- export interface UnsubscribeRequest {
291
-
292
- Arn: string | undefined;
293
-
294
- TargetAddress: string | undefined;
295
- }
296
- export interface UnsubscribeResult {
297
-
298
- Arn: string | undefined;
299
- }
300
- export interface UntagResourceRequest {
301
-
302
- Arn: string | undefined;
303
-
304
- TagKeys: string[] | undefined;
305
- }
306
- export interface UntagResourceResult {
307
- }
308
- export interface UpdateNotificationRuleRequest {
309
-
310
- Arn: string | undefined;
311
-
312
- Name?: string;
313
-
314
- Status?: NotificationRuleStatus | string;
315
-
316
- EventTypeIds?: string[];
317
-
318
- Targets?: Target[];
319
-
320
- DetailType?: DetailType | string;
321
- }
322
- export interface UpdateNotificationRuleResult {
323
- }
324
-
325
- export declare const TargetFilterSensitiveLog: (obj: Target) => any;
326
-
327
- export declare const CreateNotificationRuleRequestFilterSensitiveLog: (obj: CreateNotificationRuleRequest) => any;
328
-
329
- export declare const CreateNotificationRuleResultFilterSensitiveLog: (obj: CreateNotificationRuleResult) => any;
330
-
331
- export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (obj: DeleteNotificationRuleRequest) => any;
332
-
333
- export declare const DeleteNotificationRuleResultFilterSensitiveLog: (obj: DeleteNotificationRuleResult) => any;
334
-
335
- export declare const DeleteTargetRequestFilterSensitiveLog: (obj: DeleteTargetRequest) => any;
336
-
337
- export declare const DeleteTargetResultFilterSensitiveLog: (obj: DeleteTargetResult) => any;
338
-
339
- export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (obj: DescribeNotificationRuleRequest) => any;
340
-
341
- export declare const EventTypeSummaryFilterSensitiveLog: (obj: EventTypeSummary) => any;
342
-
343
- export declare const TargetSummaryFilterSensitiveLog: (obj: TargetSummary) => any;
344
-
345
- export declare const DescribeNotificationRuleResultFilterSensitiveLog: (obj: DescribeNotificationRuleResult) => any;
346
-
347
- export declare const ListEventTypesFilterFilterSensitiveLog: (obj: ListEventTypesFilter) => any;
348
-
349
- export declare const ListEventTypesRequestFilterSensitiveLog: (obj: ListEventTypesRequest) => any;
350
-
351
- export declare const ListEventTypesResultFilterSensitiveLog: (obj: ListEventTypesResult) => any;
352
-
353
- export declare const ListNotificationRulesFilterFilterSensitiveLog: (obj: ListNotificationRulesFilter) => any;
354
-
355
- export declare const ListNotificationRulesRequestFilterSensitiveLog: (obj: ListNotificationRulesRequest) => any;
356
-
357
- export declare const NotificationRuleSummaryFilterSensitiveLog: (obj: NotificationRuleSummary) => any;
358
-
359
- export declare const ListNotificationRulesResultFilterSensitiveLog: (obj: ListNotificationRulesResult) => any;
360
-
361
- export declare const ListTagsForResourceRequestFilterSensitiveLog: (obj: ListTagsForResourceRequest) => any;
362
-
363
- export declare const ListTagsForResourceResultFilterSensitiveLog: (obj: ListTagsForResourceResult) => any;
364
-
365
- export declare const ListTargetsFilterFilterSensitiveLog: (obj: ListTargetsFilter) => any;
366
-
367
- export declare const ListTargetsRequestFilterSensitiveLog: (obj: ListTargetsRequest) => any;
368
-
369
- export declare const ListTargetsResultFilterSensitiveLog: (obj: ListTargetsResult) => any;
370
-
371
- export declare const SubscribeRequestFilterSensitiveLog: (obj: SubscribeRequest) => any;
372
-
373
- export declare const SubscribeResultFilterSensitiveLog: (obj: SubscribeResult) => any;
374
-
375
- export declare const TagResourceRequestFilterSensitiveLog: (obj: TagResourceRequest) => any;
376
-
377
- export declare const TagResourceResultFilterSensitiveLog: (obj: TagResourceResult) => any;
378
-
379
- export declare const UnsubscribeRequestFilterSensitiveLog: (obj: UnsubscribeRequest) => any;
380
-
381
- export declare const UnsubscribeResultFilterSensitiveLog: (obj: UnsubscribeResult) => any;
382
-
383
- export declare const UntagResourceRequestFilterSensitiveLog: (obj: UntagResourceRequest) => any;
384
-
385
- export declare const UntagResourceResultFilterSensitiveLog: (obj: UntagResourceResult) => any;
386
-
387
- export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (obj: UpdateNotificationRuleRequest) => any;
388
-
389
- export declare const UpdateNotificationRuleResultFilterSensitiveLog: (obj: UpdateNotificationRuleResult) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodestarNotificationsServiceException as __BaseException } from "./CodestarNotificationsServiceException";
3
+
4
+ export declare class AccessDeniedException extends __BaseException {
5
+ readonly name: "AccessDeniedException";
6
+ readonly $fault: "client";
7
+ Message?: string;
8
+
9
+ constructor(
10
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
11
+ );
12
+ }
13
+
14
+ export declare class ConcurrentModificationException extends __BaseException {
15
+ readonly name: "ConcurrentModificationException";
16
+ readonly $fault: "client";
17
+ Message?: string;
18
+
19
+ constructor(
20
+ opts: __ExceptionOptionType<
21
+ ConcurrentModificationException,
22
+ __BaseException
23
+ >
24
+ );
25
+ }
26
+
27
+ export declare class ConfigurationException extends __BaseException {
28
+ readonly name: "ConfigurationException";
29
+ readonly $fault: "client";
30
+ Message?: string;
31
+
32
+ constructor(
33
+ opts: __ExceptionOptionType<ConfigurationException, __BaseException>
34
+ );
35
+ }
36
+ export declare enum DetailType {
37
+ BASIC = "BASIC",
38
+ FULL = "FULL",
39
+ }
40
+ export declare enum NotificationRuleStatus {
41
+ DISABLED = "DISABLED",
42
+ ENABLED = "ENABLED",
43
+ }
44
+
45
+ export interface Target {
46
+ TargetType?: string;
47
+
48
+ TargetAddress?: string;
49
+ }
50
+ export interface CreateNotificationRuleRequest {
51
+ Name: string | undefined;
52
+
53
+ EventTypeIds: string[] | undefined;
54
+
55
+ Resource: string | undefined;
56
+
57
+ Targets: Target[] | undefined;
58
+
59
+ DetailType: DetailType | string | undefined;
60
+
61
+ ClientRequestToken?: string;
62
+
63
+ Tags?: Record<string, string>;
64
+
65
+ Status?: NotificationRuleStatus | string;
66
+ }
67
+ export interface CreateNotificationRuleResult {
68
+ Arn?: string;
69
+ }
70
+
71
+ export declare class LimitExceededException extends __BaseException {
72
+ readonly name: "LimitExceededException";
73
+ readonly $fault: "client";
74
+ Message?: string;
75
+
76
+ constructor(
77
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
78
+ );
79
+ }
80
+
81
+ export declare class ResourceAlreadyExistsException extends __BaseException {
82
+ readonly name: "ResourceAlreadyExistsException";
83
+ readonly $fault: "client";
84
+ Message?: string;
85
+
86
+ constructor(
87
+ opts: __ExceptionOptionType<ResourceAlreadyExistsException, __BaseException>
88
+ );
89
+ }
90
+
91
+ export declare class ValidationException extends __BaseException {
92
+ readonly name: "ValidationException";
93
+ readonly $fault: "client";
94
+ Message?: string;
95
+
96
+ constructor(
97
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
98
+ );
99
+ }
100
+ export interface DeleteNotificationRuleRequest {
101
+ Arn: string | undefined;
102
+ }
103
+ export interface DeleteNotificationRuleResult {
104
+ Arn?: string;
105
+ }
106
+ export interface DeleteTargetRequest {
107
+ TargetAddress: string | undefined;
108
+
109
+ ForceUnsubscribeAll?: boolean;
110
+ }
111
+ export interface DeleteTargetResult {}
112
+ export interface DescribeNotificationRuleRequest {
113
+ Arn: string | undefined;
114
+ }
115
+
116
+ export interface EventTypeSummary {
117
+ EventTypeId?: string;
118
+
119
+ ServiceName?: string;
120
+
121
+ EventTypeName?: string;
122
+
123
+ ResourceType?: string;
124
+ }
125
+ export declare enum TargetStatus {
126
+ ACTIVE = "ACTIVE",
127
+ DEACTIVATED = "DEACTIVATED",
128
+ INACTIVE = "INACTIVE",
129
+ PENDING = "PENDING",
130
+ UNREACHABLE = "UNREACHABLE",
131
+ }
132
+
133
+ export interface TargetSummary {
134
+ TargetAddress?: string;
135
+
136
+ TargetType?: string;
137
+
138
+ TargetStatus?: TargetStatus | string;
139
+ }
140
+ export interface DescribeNotificationRuleResult {
141
+ Arn: string | undefined;
142
+
143
+ Name?: string;
144
+
145
+ EventTypes?: EventTypeSummary[];
146
+
147
+ Resource?: string;
148
+
149
+ Targets?: TargetSummary[];
150
+
151
+ DetailType?: DetailType | string;
152
+
153
+ CreatedBy?: string;
154
+
155
+ Status?: NotificationRuleStatus | string;
156
+
157
+ CreatedTimestamp?: Date;
158
+
159
+ LastModifiedTimestamp?: Date;
160
+
161
+ Tags?: Record<string, string>;
162
+ }
163
+
164
+ export declare class ResourceNotFoundException extends __BaseException {
165
+ readonly name: "ResourceNotFoundException";
166
+ readonly $fault: "client";
167
+ Message?: string;
168
+
169
+ constructor(
170
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
171
+ );
172
+ }
173
+
174
+ export declare class InvalidNextTokenException extends __BaseException {
175
+ readonly name: "InvalidNextTokenException";
176
+ readonly $fault: "client";
177
+ Message?: string;
178
+
179
+ constructor(
180
+ opts: __ExceptionOptionType<InvalidNextTokenException, __BaseException>
181
+ );
182
+ }
183
+ export declare enum ListEventTypesFilterName {
184
+ RESOURCE_TYPE = "RESOURCE_TYPE",
185
+ SERVICE_NAME = "SERVICE_NAME",
186
+ }
187
+
188
+ export interface ListEventTypesFilter {
189
+ Name: ListEventTypesFilterName | string | undefined;
190
+
191
+ Value: string | undefined;
192
+ }
193
+ export interface ListEventTypesRequest {
194
+ Filters?: ListEventTypesFilter[];
195
+
196
+ NextToken?: string;
197
+
198
+ MaxResults?: number;
199
+ }
200
+ export interface ListEventTypesResult {
201
+ EventTypes?: EventTypeSummary[];
202
+
203
+ NextToken?: string;
204
+ }
205
+ export declare enum ListNotificationRulesFilterName {
206
+ CREATED_BY = "CREATED_BY",
207
+ EVENT_TYPE_ID = "EVENT_TYPE_ID",
208
+ RESOURCE = "RESOURCE",
209
+ TARGET_ADDRESS = "TARGET_ADDRESS",
210
+ }
211
+
212
+ export interface ListNotificationRulesFilter {
213
+ Name: ListNotificationRulesFilterName | string | undefined;
214
+
215
+ Value: string | undefined;
216
+ }
217
+ export interface ListNotificationRulesRequest {
218
+ Filters?: ListNotificationRulesFilter[];
219
+
220
+ NextToken?: string;
221
+
222
+ MaxResults?: number;
223
+ }
224
+
225
+ export interface NotificationRuleSummary {
226
+ Id?: string;
227
+
228
+ Arn?: string;
229
+ }
230
+ export interface ListNotificationRulesResult {
231
+ NextToken?: string;
232
+
233
+ NotificationRules?: NotificationRuleSummary[];
234
+ }
235
+ export interface ListTagsForResourceRequest {
236
+ Arn: string | undefined;
237
+ }
238
+ export interface ListTagsForResourceResult {
239
+ Tags?: Record<string, string>;
240
+ }
241
+ export declare enum ListTargetsFilterName {
242
+ TARGET_ADDRESS = "TARGET_ADDRESS",
243
+ TARGET_STATUS = "TARGET_STATUS",
244
+ TARGET_TYPE = "TARGET_TYPE",
245
+ }
246
+
247
+ export interface ListTargetsFilter {
248
+ Name: ListTargetsFilterName | string | undefined;
249
+
250
+ Value: string | undefined;
251
+ }
252
+ export interface ListTargetsRequest {
253
+ Filters?: ListTargetsFilter[];
254
+
255
+ NextToken?: string;
256
+
257
+ MaxResults?: number;
258
+ }
259
+ export interface ListTargetsResult {
260
+ Targets?: TargetSummary[];
261
+
262
+ NextToken?: string;
263
+ }
264
+ export interface SubscribeRequest {
265
+ Arn: string | undefined;
266
+
267
+ Target: Target | undefined;
268
+
269
+ ClientRequestToken?: string;
270
+ }
271
+ export interface SubscribeResult {
272
+ Arn?: string;
273
+ }
274
+ export interface TagResourceRequest {
275
+ Arn: string | undefined;
276
+
277
+ Tags: Record<string, string> | undefined;
278
+ }
279
+ export interface TagResourceResult {
280
+ Tags?: Record<string, string>;
281
+ }
282
+ export interface UnsubscribeRequest {
283
+ Arn: string | undefined;
284
+
285
+ TargetAddress: string | undefined;
286
+ }
287
+ export interface UnsubscribeResult {
288
+ Arn: string | undefined;
289
+ }
290
+ export interface UntagResourceRequest {
291
+ Arn: string | undefined;
292
+
293
+ TagKeys: string[] | undefined;
294
+ }
295
+ export interface UntagResourceResult {}
296
+ export interface UpdateNotificationRuleRequest {
297
+ Arn: string | undefined;
298
+
299
+ Name?: string;
300
+
301
+ Status?: NotificationRuleStatus | string;
302
+
303
+ EventTypeIds?: string[];
304
+
305
+ Targets?: Target[];
306
+
307
+ DetailType?: DetailType | string;
308
+ }
309
+ export interface UpdateNotificationRuleResult {}
310
+
311
+ export declare const TargetFilterSensitiveLog: (obj: Target) => any;
312
+
313
+ export declare const CreateNotificationRuleRequestFilterSensitiveLog: (
314
+ obj: CreateNotificationRuleRequest
315
+ ) => any;
316
+
317
+ export declare const CreateNotificationRuleResultFilterSensitiveLog: (
318
+ obj: CreateNotificationRuleResult
319
+ ) => any;
320
+
321
+ export declare const DeleteNotificationRuleRequestFilterSensitiveLog: (
322
+ obj: DeleteNotificationRuleRequest
323
+ ) => any;
324
+
325
+ export declare const DeleteNotificationRuleResultFilterSensitiveLog: (
326
+ obj: DeleteNotificationRuleResult
327
+ ) => any;
328
+
329
+ export declare const DeleteTargetRequestFilterSensitiveLog: (
330
+ obj: DeleteTargetRequest
331
+ ) => any;
332
+
333
+ export declare const DeleteTargetResultFilterSensitiveLog: (
334
+ obj: DeleteTargetResult
335
+ ) => any;
336
+
337
+ export declare const DescribeNotificationRuleRequestFilterSensitiveLog: (
338
+ obj: DescribeNotificationRuleRequest
339
+ ) => any;
340
+
341
+ export declare const EventTypeSummaryFilterSensitiveLog: (
342
+ obj: EventTypeSummary
343
+ ) => any;
344
+
345
+ export declare const TargetSummaryFilterSensitiveLog: (
346
+ obj: TargetSummary
347
+ ) => any;
348
+
349
+ export declare const DescribeNotificationRuleResultFilterSensitiveLog: (
350
+ obj: DescribeNotificationRuleResult
351
+ ) => any;
352
+
353
+ export declare const ListEventTypesFilterFilterSensitiveLog: (
354
+ obj: ListEventTypesFilter
355
+ ) => any;
356
+
357
+ export declare const ListEventTypesRequestFilterSensitiveLog: (
358
+ obj: ListEventTypesRequest
359
+ ) => any;
360
+
361
+ export declare const ListEventTypesResultFilterSensitiveLog: (
362
+ obj: ListEventTypesResult
363
+ ) => any;
364
+
365
+ export declare const ListNotificationRulesFilterFilterSensitiveLog: (
366
+ obj: ListNotificationRulesFilter
367
+ ) => any;
368
+
369
+ export declare const ListNotificationRulesRequestFilterSensitiveLog: (
370
+ obj: ListNotificationRulesRequest
371
+ ) => any;
372
+
373
+ export declare const NotificationRuleSummaryFilterSensitiveLog: (
374
+ obj: NotificationRuleSummary
375
+ ) => any;
376
+
377
+ export declare const ListNotificationRulesResultFilterSensitiveLog: (
378
+ obj: ListNotificationRulesResult
379
+ ) => any;
380
+
381
+ export declare const ListTagsForResourceRequestFilterSensitiveLog: (
382
+ obj: ListTagsForResourceRequest
383
+ ) => any;
384
+
385
+ export declare const ListTagsForResourceResultFilterSensitiveLog: (
386
+ obj: ListTagsForResourceResult
387
+ ) => any;
388
+
389
+ export declare const ListTargetsFilterFilterSensitiveLog: (
390
+ obj: ListTargetsFilter
391
+ ) => any;
392
+
393
+ export declare const ListTargetsRequestFilterSensitiveLog: (
394
+ obj: ListTargetsRequest
395
+ ) => any;
396
+
397
+ export declare const ListTargetsResultFilterSensitiveLog: (
398
+ obj: ListTargetsResult
399
+ ) => any;
400
+
401
+ export declare const SubscribeRequestFilterSensitiveLog: (
402
+ obj: SubscribeRequest
403
+ ) => any;
404
+
405
+ export declare const SubscribeResultFilterSensitiveLog: (
406
+ obj: SubscribeResult
407
+ ) => any;
408
+
409
+ export declare const TagResourceRequestFilterSensitiveLog: (
410
+ obj: TagResourceRequest
411
+ ) => any;
412
+
413
+ export declare const TagResourceResultFilterSensitiveLog: (
414
+ obj: TagResourceResult
415
+ ) => any;
416
+
417
+ export declare const UnsubscribeRequestFilterSensitiveLog: (
418
+ obj: UnsubscribeRequest
419
+ ) => any;
420
+
421
+ export declare const UnsubscribeResultFilterSensitiveLog: (
422
+ obj: UnsubscribeResult
423
+ ) => any;
424
+
425
+ export declare const UntagResourceRequestFilterSensitiveLog: (
426
+ obj: UntagResourceRequest
427
+ ) => any;
428
+
429
+ export declare const UntagResourceResultFilterSensitiveLog: (
430
+ obj: UntagResourceResult
431
+ ) => any;
432
+
433
+ export declare const UpdateNotificationRuleRequestFilterSensitiveLog: (
434
+ obj: UpdateNotificationRuleRequest
435
+ ) => any;
436
+
437
+ export declare const UpdateNotificationRuleResultFilterSensitiveLog: (
438
+ obj: UpdateNotificationRuleResult
439
+ ) => any;