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