@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
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { CodestarNotifications } from "../CodestarNotifications";
3
- import { CodestarNotificationsClient } from "../CodestarNotificationsClient";
4
- export interface CodestarNotificationsPaginationConfiguration extends PaginationConfiguration {
5
- client: CodestarNotifications | CodestarNotificationsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CodestarNotifications } from "../CodestarNotifications";
3
+ import { CodestarNotificationsClient } from "../CodestarNotificationsClient";
4
+ export interface CodestarNotificationsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: CodestarNotifications | CodestarNotificationsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListEventTypesCommandInput, ListEventTypesCommandOutput } from "../commands/ListEventTypesCommand";
3
- import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListEventTypes(config: CodestarNotificationsPaginationConfiguration, input: ListEventTypesCommandInput, ...additionalArguments: any): Paginator<ListEventTypesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListEventTypesCommandInput,
4
+ ListEventTypesCommandOutput,
5
+ } from "../commands/ListEventTypesCommand";
6
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListEventTypes(
8
+ config: CodestarNotificationsPaginationConfiguration,
9
+ input: ListEventTypesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListEventTypesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListNotificationRulesCommandInput, ListNotificationRulesCommandOutput } from "../commands/ListNotificationRulesCommand";
3
- import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListNotificationRules(config: CodestarNotificationsPaginationConfiguration, input: ListNotificationRulesCommandInput, ...additionalArguments: any): Paginator<ListNotificationRulesCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListNotificationRulesCommandInput,
4
+ ListNotificationRulesCommandOutput,
5
+ } from "../commands/ListNotificationRulesCommand";
6
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListNotificationRules(
8
+ config: CodestarNotificationsPaginationConfiguration,
9
+ input: ListNotificationRulesCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListNotificationRulesCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListTargetsCommandInput, ListTargetsCommandOutput } from "../commands/ListTargetsCommand";
3
- import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListTargets(config: CodestarNotificationsPaginationConfiguration, input: ListTargetsCommandInput, ...additionalArguments: any): Paginator<ListTargetsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListTargetsCommandInput,
4
+ ListTargetsCommandOutput,
5
+ } from "../commands/ListTargetsCommand";
6
+ import { CodestarNotificationsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListTargets(
8
+ config: CodestarNotificationsPaginationConfiguration,
9
+ input: ListTargetsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListTargetsCommandOutput>;
@@ -1,4 +1,4 @@
1
- export * from "./Interfaces";
2
- export * from "./ListEventTypesPaginator";
3
- export * from "./ListNotificationRulesPaginator";
4
- export * from "./ListTargetsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListEventTypesPaginator";
3
+ export * from "./ListNotificationRulesPaginator";
4
+ export * from "./ListTargetsPaginator";
@@ -1,41 +1,161 @@
1
- import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@aws-sdk/protocol-http";
2
- import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
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
- export declare const serializeAws_restJson1CreateNotificationRuleCommand: (input: CreateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
- export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (input: DeleteNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
18
- export declare const serializeAws_restJson1DeleteTargetCommand: (input: DeleteTargetCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
- export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (input: DescribeNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
20
- export declare const serializeAws_restJson1ListEventTypesCommand: (input: ListEventTypesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
21
- export declare const serializeAws_restJson1ListNotificationRulesCommand: (input: ListNotificationRulesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
22
- export declare const serializeAws_restJson1ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
- export declare const serializeAws_restJson1ListTargetsCommand: (input: ListTargetsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
24
- export declare const serializeAws_restJson1SubscribeCommand: (input: SubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
- export declare const serializeAws_restJson1TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
26
- export declare const serializeAws_restJson1UnsubscribeCommand: (input: UnsubscribeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
- export declare const serializeAws_restJson1UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
28
- export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (input: UpdateNotificationRuleCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
- export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateNotificationRuleCommandOutput>;
30
- export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteNotificationRuleCommandOutput>;
31
- export declare const deserializeAws_restJson1DeleteTargetCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteTargetCommandOutput>;
32
- export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeNotificationRuleCommandOutput>;
33
- export declare const deserializeAws_restJson1ListEventTypesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEventTypesCommandOutput>;
34
- export declare const deserializeAws_restJson1ListNotificationRulesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListNotificationRulesCommandOutput>;
35
- export declare const deserializeAws_restJson1ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
36
- export declare const deserializeAws_restJson1ListTargetsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTargetsCommandOutput>;
37
- export declare const deserializeAws_restJson1SubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubscribeCommandOutput>;
38
- export declare const deserializeAws_restJson1TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
39
- export declare const deserializeAws_restJson1UnsubscribeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UnsubscribeCommandOutput>;
40
- export declare const deserializeAws_restJson1UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
41
- export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UpdateNotificationRuleCommandOutput>;
1
+ import {
2
+ HttpRequest as __HttpRequest,
3
+ HttpResponse as __HttpResponse,
4
+ } from "@aws-sdk/protocol-http";
5
+ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
6
+ import {
7
+ CreateNotificationRuleCommandInput,
8
+ CreateNotificationRuleCommandOutput,
9
+ } from "../commands/CreateNotificationRuleCommand";
10
+ import {
11
+ DeleteNotificationRuleCommandInput,
12
+ DeleteNotificationRuleCommandOutput,
13
+ } from "../commands/DeleteNotificationRuleCommand";
14
+ import {
15
+ DeleteTargetCommandInput,
16
+ DeleteTargetCommandOutput,
17
+ } from "../commands/DeleteTargetCommand";
18
+ import {
19
+ DescribeNotificationRuleCommandInput,
20
+ DescribeNotificationRuleCommandOutput,
21
+ } from "../commands/DescribeNotificationRuleCommand";
22
+ import {
23
+ ListEventTypesCommandInput,
24
+ ListEventTypesCommandOutput,
25
+ } from "../commands/ListEventTypesCommand";
26
+ import {
27
+ ListNotificationRulesCommandInput,
28
+ ListNotificationRulesCommandOutput,
29
+ } from "../commands/ListNotificationRulesCommand";
30
+ import {
31
+ ListTagsForResourceCommandInput,
32
+ ListTagsForResourceCommandOutput,
33
+ } from "../commands/ListTagsForResourceCommand";
34
+ import {
35
+ ListTargetsCommandInput,
36
+ ListTargetsCommandOutput,
37
+ } from "../commands/ListTargetsCommand";
38
+ import {
39
+ SubscribeCommandInput,
40
+ SubscribeCommandOutput,
41
+ } from "../commands/SubscribeCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "../commands/TagResourceCommand";
46
+ import {
47
+ UnsubscribeCommandInput,
48
+ UnsubscribeCommandOutput,
49
+ } from "../commands/UnsubscribeCommand";
50
+ import {
51
+ UntagResourceCommandInput,
52
+ UntagResourceCommandOutput,
53
+ } from "../commands/UntagResourceCommand";
54
+ import {
55
+ UpdateNotificationRuleCommandInput,
56
+ UpdateNotificationRuleCommandOutput,
57
+ } from "../commands/UpdateNotificationRuleCommand";
58
+ export declare const serializeAws_restJson1CreateNotificationRuleCommand: (
59
+ input: CreateNotificationRuleCommandInput,
60
+ context: __SerdeContext
61
+ ) => Promise<__HttpRequest>;
62
+ export declare const serializeAws_restJson1DeleteNotificationRuleCommand: (
63
+ input: DeleteNotificationRuleCommandInput,
64
+ context: __SerdeContext
65
+ ) => Promise<__HttpRequest>;
66
+ export declare const serializeAws_restJson1DeleteTargetCommand: (
67
+ input: DeleteTargetCommandInput,
68
+ context: __SerdeContext
69
+ ) => Promise<__HttpRequest>;
70
+ export declare const serializeAws_restJson1DescribeNotificationRuleCommand: (
71
+ input: DescribeNotificationRuleCommandInput,
72
+ context: __SerdeContext
73
+ ) => Promise<__HttpRequest>;
74
+ export declare const serializeAws_restJson1ListEventTypesCommand: (
75
+ input: ListEventTypesCommandInput,
76
+ context: __SerdeContext
77
+ ) => Promise<__HttpRequest>;
78
+ export declare const serializeAws_restJson1ListNotificationRulesCommand: (
79
+ input: ListNotificationRulesCommandInput,
80
+ context: __SerdeContext
81
+ ) => Promise<__HttpRequest>;
82
+ export declare const serializeAws_restJson1ListTagsForResourceCommand: (
83
+ input: ListTagsForResourceCommandInput,
84
+ context: __SerdeContext
85
+ ) => Promise<__HttpRequest>;
86
+ export declare const serializeAws_restJson1ListTargetsCommand: (
87
+ input: ListTargetsCommandInput,
88
+ context: __SerdeContext
89
+ ) => Promise<__HttpRequest>;
90
+ export declare const serializeAws_restJson1SubscribeCommand: (
91
+ input: SubscribeCommandInput,
92
+ context: __SerdeContext
93
+ ) => Promise<__HttpRequest>;
94
+ export declare const serializeAws_restJson1TagResourceCommand: (
95
+ input: TagResourceCommandInput,
96
+ context: __SerdeContext
97
+ ) => Promise<__HttpRequest>;
98
+ export declare const serializeAws_restJson1UnsubscribeCommand: (
99
+ input: UnsubscribeCommandInput,
100
+ context: __SerdeContext
101
+ ) => Promise<__HttpRequest>;
102
+ export declare const serializeAws_restJson1UntagResourceCommand: (
103
+ input: UntagResourceCommandInput,
104
+ context: __SerdeContext
105
+ ) => Promise<__HttpRequest>;
106
+ export declare const serializeAws_restJson1UpdateNotificationRuleCommand: (
107
+ input: UpdateNotificationRuleCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
110
+ export declare const deserializeAws_restJson1CreateNotificationRuleCommand: (
111
+ output: __HttpResponse,
112
+ context: __SerdeContext
113
+ ) => Promise<CreateNotificationRuleCommandOutput>;
114
+ export declare const deserializeAws_restJson1DeleteNotificationRuleCommand: (
115
+ output: __HttpResponse,
116
+ context: __SerdeContext
117
+ ) => Promise<DeleteNotificationRuleCommandOutput>;
118
+ export declare const deserializeAws_restJson1DeleteTargetCommand: (
119
+ output: __HttpResponse,
120
+ context: __SerdeContext
121
+ ) => Promise<DeleteTargetCommandOutput>;
122
+ export declare const deserializeAws_restJson1DescribeNotificationRuleCommand: (
123
+ output: __HttpResponse,
124
+ context: __SerdeContext
125
+ ) => Promise<DescribeNotificationRuleCommandOutput>;
126
+ export declare const deserializeAws_restJson1ListEventTypesCommand: (
127
+ output: __HttpResponse,
128
+ context: __SerdeContext
129
+ ) => Promise<ListEventTypesCommandOutput>;
130
+ export declare const deserializeAws_restJson1ListNotificationRulesCommand: (
131
+ output: __HttpResponse,
132
+ context: __SerdeContext
133
+ ) => Promise<ListNotificationRulesCommandOutput>;
134
+ export declare const deserializeAws_restJson1ListTagsForResourceCommand: (
135
+ output: __HttpResponse,
136
+ context: __SerdeContext
137
+ ) => Promise<ListTagsForResourceCommandOutput>;
138
+ export declare const deserializeAws_restJson1ListTargetsCommand: (
139
+ output: __HttpResponse,
140
+ context: __SerdeContext
141
+ ) => Promise<ListTargetsCommandOutput>;
142
+ export declare const deserializeAws_restJson1SubscribeCommand: (
143
+ output: __HttpResponse,
144
+ context: __SerdeContext
145
+ ) => Promise<SubscribeCommandOutput>;
146
+ export declare const deserializeAws_restJson1TagResourceCommand: (
147
+ output: __HttpResponse,
148
+ context: __SerdeContext
149
+ ) => Promise<TagResourceCommandOutput>;
150
+ export declare const deserializeAws_restJson1UnsubscribeCommand: (
151
+ output: __HttpResponse,
152
+ context: __SerdeContext
153
+ ) => Promise<UnsubscribeCommandOutput>;
154
+ export declare const deserializeAws_restJson1UntagResourceCommand: (
155
+ output: __HttpResponse,
156
+ context: __SerdeContext
157
+ ) => Promise<UntagResourceCommandOutput>;
158
+ export declare const deserializeAws_restJson1UpdateNotificationRuleCommand: (
159
+ output: __HttpResponse,
160
+ context: __SerdeContext
161
+ ) => Promise<UpdateNotificationRuleCommandOutput>;
@@ -1,38 +1,68 @@
1
- import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
- import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
-
4
- export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<any>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { FetchHttpHandler as RequestHandler } from "@aws-sdk/fetch-http-handler";
2
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: CodestarNotificationsClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<any>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,38 +1,68 @@
1
- import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
- import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
-
4
- export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
5
- runtime: string;
6
- defaultsMode: import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").ResolvedDefaultsMode>;
7
- base64Decoder: import("@aws-sdk/types").Decoder;
8
- base64Encoder: import("@aws-sdk/types").Encoder;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
11
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
12
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
13
- region: string | import("@aws-sdk/types").Provider<string>;
14
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | RequestHandler;
15
- retryMode: string | import("@aws-sdk/types").Provider<string>;
16
- sha256: import("@aws-sdk/types").HashConstructor;
17
- streamCollector: import("@aws-sdk/types").StreamCollector;
18
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
19
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- utf8Decoder: import("@aws-sdk/types").Decoder;
21
- utf8Encoder: import("@aws-sdk/types").Encoder;
22
- apiVersion: string;
23
- urlParser: import("@aws-sdk/types").UrlParser;
24
- disableHostPrefix: boolean;
25
- logger: import("@aws-sdk/types").Logger;
26
- serviceId: string;
27
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
28
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
29
- tls?: boolean | undefined;
30
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
31
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
32
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
33
- signingEscapePath?: boolean | undefined;
34
- systemClockOffset?: number | undefined;
35
- signingRegion?: string | undefined;
36
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
37
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
38
- };
1
+ import { NodeHttpHandler as RequestHandler } from "@aws-sdk/node-http-handler";
2
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
3
+
4
+ export declare const getRuntimeConfig: (
5
+ config: CodestarNotificationsClientConfig
6
+ ) => {
7
+ runtime: string;
8
+ defaultsMode: import("@aws-sdk/types").Provider<
9
+ import("@aws-sdk/smithy-client").ResolvedDefaultsMode
10
+ >;
11
+ base64Decoder: import("@aws-sdk/types").Decoder;
12
+ base64Encoder: import("@aws-sdk/types").Encoder;
13
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
14
+ credentialDefaultProvider: (
15
+ input: any
16
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
17
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
18
+ import("@aws-sdk/types").UserAgent
19
+ >;
20
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
21
+ region: string | import("@aws-sdk/types").Provider<string>;
22
+ requestHandler:
23
+ | (import("@aws-sdk/types").RequestHandler<
24
+ any,
25
+ any,
26
+ import("@aws-sdk/types").HttpHandlerOptions
27
+ > &
28
+ import("@aws-sdk/protocol-http").HttpHandler)
29
+ | RequestHandler;
30
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
31
+ sha256: import("@aws-sdk/types").HashConstructor;
32
+ streamCollector: import("@aws-sdk/types").StreamCollector;
33
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
34
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
35
+ utf8Decoder: import("@aws-sdk/types").Decoder;
36
+ utf8Encoder: import("@aws-sdk/types").Encoder;
37
+ apiVersion: string;
38
+ urlParser: import("@aws-sdk/types").UrlParser;
39
+ disableHostPrefix: boolean;
40
+ logger: import("@aws-sdk/types").Logger;
41
+ serviceId: string;
42
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
43
+ endpoint?:
44
+ | string
45
+ | import("@aws-sdk/types").Endpoint
46
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
47
+ | undefined;
48
+ tls?: boolean | undefined;
49
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
50
+ credentials?:
51
+ | import("@aws-sdk/types").Credentials
52
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
53
+ | undefined;
54
+ signer?:
55
+ | import("@aws-sdk/types").RequestSigner
56
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
57
+ | undefined;
58
+ signingEscapePath?: boolean | undefined;
59
+ systemClockOffset?: number | undefined;
60
+ signingRegion?: string | undefined;
61
+ signerConstructor?:
62
+ | (new (
63
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
64
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
65
+ ) => import("@aws-sdk/types").RequestSigner)
66
+ | undefined;
67
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
68
+ };
@@ -1,37 +1,69 @@
1
- import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
2
-
3
- export declare const getRuntimeConfig: (config: CodestarNotificationsClientConfig) => {
4
- runtime: string;
5
- sha256: import("@aws-sdk/types").HashConstructor;
6
- requestHandler: (import("@aws-sdk/types").RequestHandler<any, any, import("@aws-sdk/types").HttpHandlerOptions> & import("@aws-sdk/protocol-http").HttpHandler) | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
7
- apiVersion: string;
8
- urlParser: import("@aws-sdk/types").UrlParser;
9
- bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
10
- streamCollector: import("@aws-sdk/types").StreamCollector;
11
- base64Decoder: import("@aws-sdk/types").Decoder;
12
- base64Encoder: import("@aws-sdk/types").Encoder;
13
- utf8Decoder: import("@aws-sdk/types").Decoder;
14
- utf8Encoder: import("@aws-sdk/types").Encoder;
15
- disableHostPrefix: boolean;
16
- maxAttempts: number | import("@aws-sdk/types").Provider<number>;
17
- retryMode: string | import("@aws-sdk/types").Provider<string>;
18
- logger: import("@aws-sdk/types").Logger;
19
- useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
20
- useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
21
- serviceId: string;
22
- region: string | import("@aws-sdk/types").Provider<any>;
23
- credentialDefaultProvider: (input: any) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
24
- regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
25
- defaultUserAgentProvider: import("@aws-sdk/types").Provider<import("@aws-sdk/types").UserAgent>;
26
- defaultsMode: import("@aws-sdk/smithy-client").DefaultsMode | import("@aws-sdk/types").Provider<import("@aws-sdk/smithy-client").DefaultsMode>;
27
- endpoint?: string | import("@aws-sdk/types").Endpoint | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint> | undefined;
28
- tls?: boolean | undefined;
29
- retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
30
- credentials?: import("@aws-sdk/types").Credentials | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials> | undefined;
31
- signer?: import("@aws-sdk/types").RequestSigner | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner> | undefined;
32
- signingEscapePath?: boolean | undefined;
33
- systemClockOffset?: number | undefined;
34
- signingRegion?: string | undefined;
35
- signerConstructor?: (new (options: import("@aws-sdk/signature-v4").SignatureV4Init & import("@aws-sdk/signature-v4").SignatureV4CryptoInit) => import("@aws-sdk/types").RequestSigner) | undefined;
36
- customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
37
- };
1
+ import { CodestarNotificationsClientConfig } from "./CodestarNotificationsClient";
2
+
3
+ export declare const getRuntimeConfig: (
4
+ config: CodestarNotificationsClientConfig
5
+ ) => {
6
+ runtime: string;
7
+ sha256: import("@aws-sdk/types").HashConstructor;
8
+ requestHandler:
9
+ | (import("@aws-sdk/types").RequestHandler<
10
+ any,
11
+ any,
12
+ import("@aws-sdk/types").HttpHandlerOptions
13
+ > &
14
+ import("@aws-sdk/protocol-http").HttpHandler)
15
+ | import("@aws-sdk/fetch-http-handler").FetchHttpHandler;
16
+ apiVersion: string;
17
+ urlParser: import("@aws-sdk/types").UrlParser;
18
+ bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
19
+ streamCollector: import("@aws-sdk/types").StreamCollector;
20
+ base64Decoder: import("@aws-sdk/types").Decoder;
21
+ base64Encoder: import("@aws-sdk/types").Encoder;
22
+ utf8Decoder: import("@aws-sdk/types").Decoder;
23
+ utf8Encoder: import("@aws-sdk/types").Encoder;
24
+ disableHostPrefix: boolean;
25
+ maxAttempts: number | import("@aws-sdk/types").Provider<number>;
26
+ retryMode: string | import("@aws-sdk/types").Provider<string>;
27
+ logger: import("@aws-sdk/types").Logger;
28
+ useDualstackEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
29
+ useFipsEndpoint: boolean | import("@aws-sdk/types").Provider<boolean>;
30
+ serviceId: string;
31
+ region: string | import("@aws-sdk/types").Provider<any>;
32
+ credentialDefaultProvider: (
33
+ input: any
34
+ ) => import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>;
35
+ regionInfoProvider: import("@aws-sdk/types").RegionInfoProvider;
36
+ defaultUserAgentProvider: import("@aws-sdk/types").Provider<
37
+ import("@aws-sdk/types").UserAgent
38
+ >;
39
+ defaultsMode:
40
+ | import("@aws-sdk/smithy-client").DefaultsMode
41
+ | import("@aws-sdk/types").Provider<
42
+ import("@aws-sdk/smithy-client").DefaultsMode
43
+ >;
44
+ endpoint?:
45
+ | string
46
+ | import("@aws-sdk/types").Endpoint
47
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Endpoint>
48
+ | undefined;
49
+ tls?: boolean | undefined;
50
+ retryStrategy?: import("@aws-sdk/types").RetryStrategy | undefined;
51
+ credentials?:
52
+ | import("@aws-sdk/types").Credentials
53
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").Credentials>
54
+ | undefined;
55
+ signer?:
56
+ | import("@aws-sdk/types").RequestSigner
57
+ | import("@aws-sdk/types").Provider<import("@aws-sdk/types").RequestSigner>
58
+ | undefined;
59
+ signingEscapePath?: boolean | undefined;
60
+ systemClockOffset?: number | undefined;
61
+ signingRegion?: string | undefined;
62
+ signerConstructor?:
63
+ | (new (
64
+ options: import("@aws-sdk/signature-v4").SignatureV4Init &
65
+ import("@aws-sdk/signature-v4").SignatureV4CryptoInit
66
+ ) => import("@aws-sdk/types").RequestSigner)
67
+ | undefined;
68
+ customUserAgent?: string | import("@aws-sdk/types").UserAgent | undefined;
69
+ };