@aws-sdk/client-codestar-notifications 3.169.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 +8 -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
package/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-codestar-notifications
9
+
10
+
11
+
12
+
13
+
6
14
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
15
 
8
16
  **Note:** Version bump only for package @aws-sdk/client-codestar-notifications
@@ -1,70 +1,238 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { CodestarNotificationsClient } from "./CodestarNotificationsClient";
3
- import { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
4
- import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
5
- import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
6
- import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "./commands/DescribeNotificationRuleCommand";
7
- import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "./commands/ListEventTypesCommand";
8
- import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "./commands/ListNotificationRulesCommand";
9
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
10
- import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/ListTargetsCommand";
11
- import { SubscribeCommandInput, SubscribeCommandOutput } from "./commands/SubscribeCommand";
12
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
13
- import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "./commands/UnsubscribeCommand";
14
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
15
- import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "./commands/UpdateNotificationRuleCommand";
16
-
17
- export declare class CodestarNotifications extends CodestarNotificationsClient {
18
-
19
- createNotificationRule(args: CreateNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<CreateNotificationRuleCommandOutput>;
20
- createNotificationRule(args: CreateNotificationRuleCommandInput, cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void): void;
21
- createNotificationRule(args: CreateNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void): void;
22
-
23
- deleteNotificationRule(args: DeleteNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<DeleteNotificationRuleCommandOutput>;
24
- deleteNotificationRule(args: DeleteNotificationRuleCommandInput, cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void): void;
25
- deleteNotificationRule(args: DeleteNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void): void;
26
-
27
- deleteTarget(args: DeleteTargetCommandInput, options?: __HttpHandlerOptions): Promise<DeleteTargetCommandOutput>;
28
- deleteTarget(args: DeleteTargetCommandInput, cb: (err: any, data?: DeleteTargetCommandOutput) => void): void;
29
- deleteTarget(args: DeleteTargetCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteTargetCommandOutput) => void): void;
30
-
31
- describeNotificationRule(args: DescribeNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<DescribeNotificationRuleCommandOutput>;
32
- describeNotificationRule(args: DescribeNotificationRuleCommandInput, cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void): void;
33
- describeNotificationRule(args: DescribeNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void): void;
34
-
35
- listEventTypes(args: ListEventTypesCommandInput, options?: __HttpHandlerOptions): Promise<ListEventTypesCommandOutput>;
36
- listEventTypes(args: ListEventTypesCommandInput, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
37
- listEventTypes(args: ListEventTypesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEventTypesCommandOutput) => void): void;
38
-
39
- listNotificationRules(args: ListNotificationRulesCommandInput, options?: __HttpHandlerOptions): Promise<ListNotificationRulesCommandOutput>;
40
- listNotificationRules(args: ListNotificationRulesCommandInput, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
41
- listNotificationRules(args: ListNotificationRulesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListNotificationRulesCommandOutput) => void): void;
42
-
43
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
44
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
45
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
46
-
47
- listTargets(args: ListTargetsCommandInput, options?: __HttpHandlerOptions): Promise<ListTargetsCommandOutput>;
48
- listTargets(args: ListTargetsCommandInput, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
49
- listTargets(args: ListTargetsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTargetsCommandOutput) => void): void;
50
-
51
- subscribe(args: SubscribeCommandInput, options?: __HttpHandlerOptions): Promise<SubscribeCommandOutput>;
52
- subscribe(args: SubscribeCommandInput, cb: (err: any, data?: SubscribeCommandOutput) => void): void;
53
- subscribe(args: SubscribeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubscribeCommandOutput) => void): void;
54
-
55
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
56
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
57
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
58
-
59
- unsubscribe(args: UnsubscribeCommandInput, options?: __HttpHandlerOptions): Promise<UnsubscribeCommandOutput>;
60
- unsubscribe(args: UnsubscribeCommandInput, cb: (err: any, data?: UnsubscribeCommandOutput) => void): void;
61
- unsubscribe(args: UnsubscribeCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnsubscribeCommandOutput) => void): void;
62
-
63
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
64
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
65
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
66
-
67
- updateNotificationRule(args: UpdateNotificationRuleCommandInput, options?: __HttpHandlerOptions): Promise<UpdateNotificationRuleCommandOutput>;
68
- updateNotificationRule(args: UpdateNotificationRuleCommandInput, cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void): void;
69
- updateNotificationRule(args: UpdateNotificationRuleCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void): void;
70
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { CodestarNotificationsClient } from "./CodestarNotificationsClient";
3
+ import {
4
+ CreateNotificationRuleCommandInput,
5
+ CreateNotificationRuleCommandOutput,
6
+ } from "./commands/CreateNotificationRuleCommand";
7
+ import {
8
+ DeleteNotificationRuleCommandInput,
9
+ DeleteNotificationRuleCommandOutput,
10
+ } from "./commands/DeleteNotificationRuleCommand";
11
+ import {
12
+ DeleteTargetCommandInput,
13
+ DeleteTargetCommandOutput,
14
+ } from "./commands/DeleteTargetCommand";
15
+ import {
16
+ DescribeNotificationRuleCommandInput,
17
+ DescribeNotificationRuleCommandOutput,
18
+ } from "./commands/DescribeNotificationRuleCommand";
19
+ import {
20
+ ListEventTypesCommandInput,
21
+ ListEventTypesCommandOutput,
22
+ } from "./commands/ListEventTypesCommand";
23
+ import {
24
+ ListNotificationRulesCommandInput,
25
+ ListNotificationRulesCommandOutput,
26
+ } from "./commands/ListNotificationRulesCommand";
27
+ import {
28
+ ListTagsForResourceCommandInput,
29
+ ListTagsForResourceCommandOutput,
30
+ } from "./commands/ListTagsForResourceCommand";
31
+ import {
32
+ ListTargetsCommandInput,
33
+ ListTargetsCommandOutput,
34
+ } from "./commands/ListTargetsCommand";
35
+ import {
36
+ SubscribeCommandInput,
37
+ SubscribeCommandOutput,
38
+ } from "./commands/SubscribeCommand";
39
+ import {
40
+ TagResourceCommandInput,
41
+ TagResourceCommandOutput,
42
+ } from "./commands/TagResourceCommand";
43
+ import {
44
+ UnsubscribeCommandInput,
45
+ UnsubscribeCommandOutput,
46
+ } from "./commands/UnsubscribeCommand";
47
+ import {
48
+ UntagResourceCommandInput,
49
+ UntagResourceCommandOutput,
50
+ } from "./commands/UntagResourceCommand";
51
+ import {
52
+ UpdateNotificationRuleCommandInput,
53
+ UpdateNotificationRuleCommandOutput,
54
+ } from "./commands/UpdateNotificationRuleCommand";
55
+
56
+ export declare class CodestarNotifications extends CodestarNotificationsClient {
57
+ createNotificationRule(
58
+ args: CreateNotificationRuleCommandInput,
59
+ options?: __HttpHandlerOptions
60
+ ): Promise<CreateNotificationRuleCommandOutput>;
61
+ createNotificationRule(
62
+ args: CreateNotificationRuleCommandInput,
63
+ cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void
64
+ ): void;
65
+ createNotificationRule(
66
+ args: CreateNotificationRuleCommandInput,
67
+ options: __HttpHandlerOptions,
68
+ cb: (err: any, data?: CreateNotificationRuleCommandOutput) => void
69
+ ): void;
70
+
71
+ deleteNotificationRule(
72
+ args: DeleteNotificationRuleCommandInput,
73
+ options?: __HttpHandlerOptions
74
+ ): Promise<DeleteNotificationRuleCommandOutput>;
75
+ deleteNotificationRule(
76
+ args: DeleteNotificationRuleCommandInput,
77
+ cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void
78
+ ): void;
79
+ deleteNotificationRule(
80
+ args: DeleteNotificationRuleCommandInput,
81
+ options: __HttpHandlerOptions,
82
+ cb: (err: any, data?: DeleteNotificationRuleCommandOutput) => void
83
+ ): void;
84
+
85
+ deleteTarget(
86
+ args: DeleteTargetCommandInput,
87
+ options?: __HttpHandlerOptions
88
+ ): Promise<DeleteTargetCommandOutput>;
89
+ deleteTarget(
90
+ args: DeleteTargetCommandInput,
91
+ cb: (err: any, data?: DeleteTargetCommandOutput) => void
92
+ ): void;
93
+ deleteTarget(
94
+ args: DeleteTargetCommandInput,
95
+ options: __HttpHandlerOptions,
96
+ cb: (err: any, data?: DeleteTargetCommandOutput) => void
97
+ ): void;
98
+
99
+ describeNotificationRule(
100
+ args: DescribeNotificationRuleCommandInput,
101
+ options?: __HttpHandlerOptions
102
+ ): Promise<DescribeNotificationRuleCommandOutput>;
103
+ describeNotificationRule(
104
+ args: DescribeNotificationRuleCommandInput,
105
+ cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void
106
+ ): void;
107
+ describeNotificationRule(
108
+ args: DescribeNotificationRuleCommandInput,
109
+ options: __HttpHandlerOptions,
110
+ cb: (err: any, data?: DescribeNotificationRuleCommandOutput) => void
111
+ ): void;
112
+
113
+ listEventTypes(
114
+ args: ListEventTypesCommandInput,
115
+ options?: __HttpHandlerOptions
116
+ ): Promise<ListEventTypesCommandOutput>;
117
+ listEventTypes(
118
+ args: ListEventTypesCommandInput,
119
+ cb: (err: any, data?: ListEventTypesCommandOutput) => void
120
+ ): void;
121
+ listEventTypes(
122
+ args: ListEventTypesCommandInput,
123
+ options: __HttpHandlerOptions,
124
+ cb: (err: any, data?: ListEventTypesCommandOutput) => void
125
+ ): void;
126
+
127
+ listNotificationRules(
128
+ args: ListNotificationRulesCommandInput,
129
+ options?: __HttpHandlerOptions
130
+ ): Promise<ListNotificationRulesCommandOutput>;
131
+ listNotificationRules(
132
+ args: ListNotificationRulesCommandInput,
133
+ cb: (err: any, data?: ListNotificationRulesCommandOutput) => void
134
+ ): void;
135
+ listNotificationRules(
136
+ args: ListNotificationRulesCommandInput,
137
+ options: __HttpHandlerOptions,
138
+ cb: (err: any, data?: ListNotificationRulesCommandOutput) => void
139
+ ): void;
140
+
141
+ listTagsForResource(
142
+ args: ListTagsForResourceCommandInput,
143
+ options?: __HttpHandlerOptions
144
+ ): Promise<ListTagsForResourceCommandOutput>;
145
+ listTagsForResource(
146
+ args: ListTagsForResourceCommandInput,
147
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
148
+ ): void;
149
+ listTagsForResource(
150
+ args: ListTagsForResourceCommandInput,
151
+ options: __HttpHandlerOptions,
152
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
153
+ ): void;
154
+
155
+ listTargets(
156
+ args: ListTargetsCommandInput,
157
+ options?: __HttpHandlerOptions
158
+ ): Promise<ListTargetsCommandOutput>;
159
+ listTargets(
160
+ args: ListTargetsCommandInput,
161
+ cb: (err: any, data?: ListTargetsCommandOutput) => void
162
+ ): void;
163
+ listTargets(
164
+ args: ListTargetsCommandInput,
165
+ options: __HttpHandlerOptions,
166
+ cb: (err: any, data?: ListTargetsCommandOutput) => void
167
+ ): void;
168
+
169
+ subscribe(
170
+ args: SubscribeCommandInput,
171
+ options?: __HttpHandlerOptions
172
+ ): Promise<SubscribeCommandOutput>;
173
+ subscribe(
174
+ args: SubscribeCommandInput,
175
+ cb: (err: any, data?: SubscribeCommandOutput) => void
176
+ ): void;
177
+ subscribe(
178
+ args: SubscribeCommandInput,
179
+ options: __HttpHandlerOptions,
180
+ cb: (err: any, data?: SubscribeCommandOutput) => void
181
+ ): void;
182
+
183
+ tagResource(
184
+ args: TagResourceCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<TagResourceCommandOutput>;
187
+ tagResource(
188
+ args: TagResourceCommandInput,
189
+ cb: (err: any, data?: TagResourceCommandOutput) => void
190
+ ): void;
191
+ tagResource(
192
+ args: TagResourceCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: TagResourceCommandOutput) => void
195
+ ): void;
196
+
197
+ unsubscribe(
198
+ args: UnsubscribeCommandInput,
199
+ options?: __HttpHandlerOptions
200
+ ): Promise<UnsubscribeCommandOutput>;
201
+ unsubscribe(
202
+ args: UnsubscribeCommandInput,
203
+ cb: (err: any, data?: UnsubscribeCommandOutput) => void
204
+ ): void;
205
+ unsubscribe(
206
+ args: UnsubscribeCommandInput,
207
+ options: __HttpHandlerOptions,
208
+ cb: (err: any, data?: UnsubscribeCommandOutput) => void
209
+ ): void;
210
+
211
+ untagResource(
212
+ args: UntagResourceCommandInput,
213
+ options?: __HttpHandlerOptions
214
+ ): Promise<UntagResourceCommandOutput>;
215
+ untagResource(
216
+ args: UntagResourceCommandInput,
217
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
218
+ ): void;
219
+ untagResource(
220
+ args: UntagResourceCommandInput,
221
+ options: __HttpHandlerOptions,
222
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
223
+ ): void;
224
+
225
+ updateNotificationRule(
226
+ args: UpdateNotificationRuleCommandInput,
227
+ options?: __HttpHandlerOptions
228
+ ): Promise<UpdateNotificationRuleCommandOutput>;
229
+ updateNotificationRule(
230
+ args: UpdateNotificationRuleCommandInput,
231
+ cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void
232
+ ): void;
233
+ updateNotificationRule(
234
+ args: UpdateNotificationRuleCommandInput,
235
+ options: __HttpHandlerOptions,
236
+ cb: (err: any, data?: UpdateNotificationRuleCommandOutput) => void
237
+ ): void;
238
+ }
@@ -1,86 +1,208 @@
1
- import { EndpointsInputConfig, EndpointsResolvedConfig, RegionInputConfig, RegionResolvedConfig } from "@aws-sdk/config-resolver";
2
- import { HostHeaderInputConfig, HostHeaderResolvedConfig } from "@aws-sdk/middleware-host-header";
3
- import { RetryInputConfig, RetryResolvedConfig } from "@aws-sdk/middleware-retry";
4
- import { AwsAuthInputConfig, AwsAuthResolvedConfig } from "@aws-sdk/middleware-signing";
5
- import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middleware-user-agent";
6
- import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
7
- import { Client as __Client, DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
8
- import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, RegionInfoProvider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
9
- import { CreateNotificationRuleCommandInput, CreateNotificationRuleCommandOutput } from "./commands/CreateNotificationRuleCommand";
10
- import { DeleteNotificationRuleCommandInput, DeleteNotificationRuleCommandOutput } from "./commands/DeleteNotificationRuleCommand";
11
- import { DeleteTargetCommandInput, DeleteTargetCommandOutput } from "./commands/DeleteTargetCommand";
12
- import { DescribeNotificationRuleCommandInput, DescribeNotificationRuleCommandOutput } from "./commands/DescribeNotificationRuleCommand";
13
- import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "./commands/ListEventTypesCommand";
14
- import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "./commands/ListNotificationRulesCommand";
15
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
16
- import { ListTargetsCommandInput, ListTargetsCommandOutput } from "./commands/ListTargetsCommand";
17
- import { SubscribeCommandInput, SubscribeCommandOutput } from "./commands/SubscribeCommand";
18
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
19
- import { UnsubscribeCommandInput, UnsubscribeCommandOutput } from "./commands/UnsubscribeCommand";
20
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
21
- import { UpdateNotificationRuleCommandInput, UpdateNotificationRuleCommandOutput } from "./commands/UpdateNotificationRuleCommand";
22
- export declare type ServiceInputTypes = CreateNotificationRuleCommandInput | DeleteNotificationRuleCommandInput | DeleteTargetCommandInput | DescribeNotificationRuleCommandInput | ListEventTypesCommandInput | ListNotificationRulesCommandInput | ListTagsForResourceCommandInput | ListTargetsCommandInput | SubscribeCommandInput | TagResourceCommandInput | UnsubscribeCommandInput | UntagResourceCommandInput | UpdateNotificationRuleCommandInput;
23
- export declare type ServiceOutputTypes = CreateNotificationRuleCommandOutput | DeleteNotificationRuleCommandOutput | DeleteTargetCommandOutput | DescribeNotificationRuleCommandOutput | ListEventTypesCommandOutput | ListNotificationRulesCommandOutput | ListTagsForResourceCommandOutput | ListTargetsCommandOutput | SubscribeCommandOutput | TagResourceCommandOutput | UnsubscribeCommandOutput | UntagResourceCommandOutput | UpdateNotificationRuleCommandOutput;
24
- export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
25
-
26
- requestHandler?: __HttpHandler;
27
-
28
- sha256?: __HashConstructor;
29
-
30
- urlParser?: __UrlParser;
31
-
32
- bodyLengthChecker?: __BodyLengthCalculator;
33
-
34
- streamCollector?: __StreamCollector;
35
-
36
- base64Decoder?: __Decoder;
37
-
38
- base64Encoder?: __Encoder;
39
-
40
- utf8Decoder?: __Decoder;
41
-
42
- utf8Encoder?: __Encoder;
43
-
44
- runtime?: string;
45
-
46
- disableHostPrefix?: boolean;
47
-
48
- maxAttempts?: number | __Provider<number>;
49
-
50
- retryMode?: string | __Provider<string>;
51
-
52
- logger?: __Logger;
53
-
54
- useDualstackEndpoint?: boolean | __Provider<boolean>;
55
-
56
- useFipsEndpoint?: boolean | __Provider<boolean>;
57
-
58
- serviceId?: string;
59
-
60
- region?: string | __Provider<string>;
61
-
62
- credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
63
-
64
- regionInfoProvider?: RegionInfoProvider;
65
-
66
- defaultUserAgentProvider?: Provider<__UserAgent>;
67
-
68
- defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
69
- }
70
- declare type CodestarNotificationsClientConfigType = Partial<__SmithyConfiguration<__HttpHandlerOptions>> & ClientDefaults & RegionInputConfig & EndpointsInputConfig & RetryInputConfig & HostHeaderInputConfig & AwsAuthInputConfig & UserAgentInputConfig;
71
-
72
- export interface CodestarNotificationsClientConfig extends CodestarNotificationsClientConfigType {
73
- }
74
- declare type CodestarNotificationsClientResolvedConfigType = __SmithyResolvedConfiguration<__HttpHandlerOptions> & Required<ClientDefaults> & RegionResolvedConfig & EndpointsResolvedConfig & RetryResolvedConfig & HostHeaderResolvedConfig & AwsAuthResolvedConfig & UserAgentResolvedConfig;
75
-
76
- export interface CodestarNotificationsClientResolvedConfig extends CodestarNotificationsClientResolvedConfigType {
77
- }
78
-
79
- export declare class CodestarNotificationsClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, CodestarNotificationsClientResolvedConfig> {
80
-
81
- readonly config: CodestarNotificationsClientResolvedConfig;
82
- constructor(configuration: CodestarNotificationsClientConfig);
83
-
84
- destroy(): void;
85
- }
86
- export {};
1
+ import {
2
+ EndpointsInputConfig,
3
+ EndpointsResolvedConfig,
4
+ RegionInputConfig,
5
+ RegionResolvedConfig,
6
+ } from "@aws-sdk/config-resolver";
7
+ import {
8
+ HostHeaderInputConfig,
9
+ HostHeaderResolvedConfig,
10
+ } from "@aws-sdk/middleware-host-header";
11
+ import {
12
+ RetryInputConfig,
13
+ RetryResolvedConfig,
14
+ } from "@aws-sdk/middleware-retry";
15
+ import {
16
+ AwsAuthInputConfig,
17
+ AwsAuthResolvedConfig,
18
+ } from "@aws-sdk/middleware-signing";
19
+ import {
20
+ UserAgentInputConfig,
21
+ UserAgentResolvedConfig,
22
+ } from "@aws-sdk/middleware-user-agent";
23
+ import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
24
+ import {
25
+ Client as __Client,
26
+ DefaultsMode,
27
+ SmithyConfiguration as __SmithyConfiguration,
28
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
29
+ } from "@aws-sdk/smithy-client";
30
+ import {
31
+ BodyLengthCalculator as __BodyLengthCalculator,
32
+ Credentials as __Credentials,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ RegionInfoProvider,
41
+ StreamCollector as __StreamCollector,
42
+ UrlParser as __UrlParser,
43
+ UserAgent as __UserAgent,
44
+ } from "@aws-sdk/types";
45
+ import {
46
+ CreateNotificationRuleCommandInput,
47
+ CreateNotificationRuleCommandOutput,
48
+ } from "./commands/CreateNotificationRuleCommand";
49
+ import {
50
+ DeleteNotificationRuleCommandInput,
51
+ DeleteNotificationRuleCommandOutput,
52
+ } from "./commands/DeleteNotificationRuleCommand";
53
+ import {
54
+ DeleteTargetCommandInput,
55
+ DeleteTargetCommandOutput,
56
+ } from "./commands/DeleteTargetCommand";
57
+ import {
58
+ DescribeNotificationRuleCommandInput,
59
+ DescribeNotificationRuleCommandOutput,
60
+ } from "./commands/DescribeNotificationRuleCommand";
61
+ import {
62
+ ListEventTypesCommandInput,
63
+ ListEventTypesCommandOutput,
64
+ } from "./commands/ListEventTypesCommand";
65
+ import {
66
+ ListNotificationRulesCommandInput,
67
+ ListNotificationRulesCommandOutput,
68
+ } from "./commands/ListNotificationRulesCommand";
69
+ import {
70
+ ListTagsForResourceCommandInput,
71
+ ListTagsForResourceCommandOutput,
72
+ } from "./commands/ListTagsForResourceCommand";
73
+ import {
74
+ ListTargetsCommandInput,
75
+ ListTargetsCommandOutput,
76
+ } from "./commands/ListTargetsCommand";
77
+ import {
78
+ SubscribeCommandInput,
79
+ SubscribeCommandOutput,
80
+ } from "./commands/SubscribeCommand";
81
+ import {
82
+ TagResourceCommandInput,
83
+ TagResourceCommandOutput,
84
+ } from "./commands/TagResourceCommand";
85
+ import {
86
+ UnsubscribeCommandInput,
87
+ UnsubscribeCommandOutput,
88
+ } from "./commands/UnsubscribeCommand";
89
+ import {
90
+ UntagResourceCommandInput,
91
+ UntagResourceCommandOutput,
92
+ } from "./commands/UntagResourceCommand";
93
+ import {
94
+ UpdateNotificationRuleCommandInput,
95
+ UpdateNotificationRuleCommandOutput,
96
+ } from "./commands/UpdateNotificationRuleCommand";
97
+ export declare type ServiceInputTypes =
98
+ | CreateNotificationRuleCommandInput
99
+ | DeleteNotificationRuleCommandInput
100
+ | DeleteTargetCommandInput
101
+ | DescribeNotificationRuleCommandInput
102
+ | ListEventTypesCommandInput
103
+ | ListNotificationRulesCommandInput
104
+ | ListTagsForResourceCommandInput
105
+ | ListTargetsCommandInput
106
+ | SubscribeCommandInput
107
+ | TagResourceCommandInput
108
+ | UnsubscribeCommandInput
109
+ | UntagResourceCommandInput
110
+ | UpdateNotificationRuleCommandInput;
111
+ export declare type ServiceOutputTypes =
112
+ | CreateNotificationRuleCommandOutput
113
+ | DeleteNotificationRuleCommandOutput
114
+ | DeleteTargetCommandOutput
115
+ | DescribeNotificationRuleCommandOutput
116
+ | ListEventTypesCommandOutput
117
+ | ListNotificationRulesCommandOutput
118
+ | ListTagsForResourceCommandOutput
119
+ | ListTargetsCommandOutput
120
+ | SubscribeCommandOutput
121
+ | TagResourceCommandOutput
122
+ | UnsubscribeCommandOutput
123
+ | UntagResourceCommandOutput
124
+ | UpdateNotificationRuleCommandOutput;
125
+ export interface ClientDefaults
126
+ extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
127
+ requestHandler?: __HttpHandler;
128
+
129
+ sha256?: __HashConstructor;
130
+
131
+ urlParser?: __UrlParser;
132
+
133
+ bodyLengthChecker?: __BodyLengthCalculator;
134
+
135
+ streamCollector?: __StreamCollector;
136
+
137
+ base64Decoder?: __Decoder;
138
+
139
+ base64Encoder?: __Encoder;
140
+
141
+ utf8Decoder?: __Decoder;
142
+
143
+ utf8Encoder?: __Encoder;
144
+
145
+ runtime?: string;
146
+
147
+ disableHostPrefix?: boolean;
148
+
149
+ maxAttempts?: number | __Provider<number>;
150
+
151
+ retryMode?: string | __Provider<string>;
152
+
153
+ logger?: __Logger;
154
+
155
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
156
+
157
+ useFipsEndpoint?: boolean | __Provider<boolean>;
158
+
159
+ serviceId?: string;
160
+
161
+ region?: string | __Provider<string>;
162
+
163
+ credentialDefaultProvider?: (input: any) => __Provider<__Credentials>;
164
+
165
+ regionInfoProvider?: RegionInfoProvider;
166
+
167
+ defaultUserAgentProvider?: Provider<__UserAgent>;
168
+
169
+ defaultsMode?: DefaultsMode | Provider<DefaultsMode>;
170
+ }
171
+ declare type CodestarNotificationsClientConfigType = Partial<
172
+ __SmithyConfiguration<__HttpHandlerOptions>
173
+ > &
174
+ ClientDefaults &
175
+ RegionInputConfig &
176
+ EndpointsInputConfig &
177
+ RetryInputConfig &
178
+ HostHeaderInputConfig &
179
+ AwsAuthInputConfig &
180
+ UserAgentInputConfig;
181
+
182
+ export interface CodestarNotificationsClientConfig
183
+ extends CodestarNotificationsClientConfigType {}
184
+ declare type CodestarNotificationsClientResolvedConfigType =
185
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
186
+ Required<ClientDefaults> &
187
+ RegionResolvedConfig &
188
+ EndpointsResolvedConfig &
189
+ RetryResolvedConfig &
190
+ HostHeaderResolvedConfig &
191
+ AwsAuthResolvedConfig &
192
+ UserAgentResolvedConfig;
193
+
194
+ export interface CodestarNotificationsClientResolvedConfig
195
+ extends CodestarNotificationsClientResolvedConfigType {}
196
+
197
+ export declare class CodestarNotificationsClient extends __Client<
198
+ __HttpHandlerOptions,
199
+ ServiceInputTypes,
200
+ ServiceOutputTypes,
201
+ CodestarNotificationsClientResolvedConfig
202
+ > {
203
+ readonly config: CodestarNotificationsClientResolvedConfig;
204
+ constructor(configuration: CodestarNotificationsClientConfig);
205
+
206
+ destroy(): void;
207
+ }
208
+ export {};