@aws-sdk/client-codestar-connections 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 (31) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/CodeStarConnections.d.ts +208 -65
  3. package/dist-types/ts3.4/CodeStarConnectionsClient.d.ts +177 -85
  4. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +35 -17
  5. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +35 -17
  7. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +32 -17
  9. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +30 -17
  10. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +35 -17
  11. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +32 -17
  12. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  13. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  14. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +32 -17
  15. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +32 -17
  16. package/dist-types/ts3.4/commands/index.d.ts +12 -12
  17. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  18. package/dist-types/ts3.4/index.d.ts +6 -6
  19. package/dist-types/ts3.4/models/CodeStarConnectionsServiceException.d.ts +7 -6
  20. package/dist-types/ts3.4/models/index.d.ts +1 -1
  21. package/dist-types/ts3.4/models/models_0.d.ts +238 -288
  22. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  23. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -4
  24. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -4
  25. package/dist-types/ts3.4/pagination/index.d.ts +3 -3
  26. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +149 -38
  27. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +67 -38
  28. package/dist-types/ts3.4/runtimeConfig.d.ts +67 -38
  29. package/dist-types/ts3.4/runtimeConfig.native.d.ts +68 -37
  30. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +12 -11
  31. package/package.json +34 -34
@@ -1,288 +1,238 @@
1
- import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
- import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
3
- export declare enum ProviderType {
4
- BITBUCKET = "Bitbucket",
5
- GITHUB = "GitHub",
6
- GITHUB_ENTERPRISE_SERVER = "GitHubEnterpriseServer"
7
- }
8
-
9
- export interface Tag {
10
-
11
- Key: string | undefined;
12
-
13
- Value: string | undefined;
14
- }
15
- export interface CreateConnectionInput {
16
-
17
- ProviderType?: ProviderType | string;
18
-
19
- ConnectionName: string | undefined;
20
-
21
- Tags?: Tag[];
22
-
23
- HostArn?: string;
24
- }
25
- export interface CreateConnectionOutput {
26
-
27
- ConnectionArn: string | undefined;
28
-
29
- Tags?: Tag[];
30
- }
31
-
32
- export declare class LimitExceededException extends __BaseException {
33
- readonly name: "LimitExceededException";
34
- readonly $fault: "client";
35
- Message?: string;
36
-
37
- constructor(opts: __ExceptionOptionType<LimitExceededException, __BaseException>);
38
- }
39
-
40
- export declare class ResourceNotFoundException extends __BaseException {
41
- readonly name: "ResourceNotFoundException";
42
- readonly $fault: "client";
43
- Message?: string;
44
-
45
- constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
46
- }
47
-
48
- export declare class ResourceUnavailableException extends __BaseException {
49
- readonly name: "ResourceUnavailableException";
50
- readonly $fault: "client";
51
- Message?: string;
52
-
53
- constructor(opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>);
54
- }
55
-
56
- export interface VpcConfiguration {
57
-
58
- VpcId: string | undefined;
59
-
60
- SubnetIds: string[] | undefined;
61
-
62
- SecurityGroupIds: string[] | undefined;
63
-
64
- TlsCertificate?: string;
65
- }
66
- export interface CreateHostInput {
67
-
68
- Name: string | undefined;
69
-
70
- ProviderType: ProviderType | string | undefined;
71
-
72
- ProviderEndpoint: string | undefined;
73
-
74
- VpcConfiguration?: VpcConfiguration;
75
- Tags?: Tag[];
76
- }
77
- export interface CreateHostOutput {
78
-
79
- HostArn?: string;
80
- Tags?: Tag[];
81
- }
82
- export interface DeleteConnectionInput {
83
-
84
- ConnectionArn: string | undefined;
85
- }
86
- export interface DeleteConnectionOutput {
87
- }
88
- export interface DeleteHostInput {
89
-
90
- HostArn: string | undefined;
91
- }
92
- export interface DeleteHostOutput {
93
- }
94
- export interface GetConnectionInput {
95
-
96
- ConnectionArn: string | undefined;
97
- }
98
- export declare enum ConnectionStatus {
99
- AVAILABLE = "AVAILABLE",
100
- ERROR = "ERROR",
101
- PENDING = "PENDING"
102
- }
103
-
104
- export interface Connection {
105
-
106
- ConnectionName?: string;
107
-
108
- ConnectionArn?: string;
109
-
110
- ProviderType?: ProviderType | string;
111
-
112
- OwnerAccountId?: string;
113
-
114
- ConnectionStatus?: ConnectionStatus | string;
115
-
116
- HostArn?: string;
117
- }
118
- export interface GetConnectionOutput {
119
-
120
- Connection?: Connection;
121
- }
122
- export interface GetHostInput {
123
-
124
- HostArn: string | undefined;
125
- }
126
- export interface GetHostOutput {
127
-
128
- Name?: string;
129
-
130
- Status?: string;
131
-
132
- ProviderType?: ProviderType | string;
133
-
134
- ProviderEndpoint?: string;
135
-
136
- VpcConfiguration?: VpcConfiguration;
137
- }
138
- export interface ListConnectionsInput {
139
-
140
- ProviderTypeFilter?: ProviderType | string;
141
-
142
- HostArnFilter?: string;
143
-
144
- MaxResults?: number;
145
-
146
- NextToken?: string;
147
- }
148
- export interface ListConnectionsOutput {
149
-
150
- Connections?: Connection[];
151
-
152
- NextToken?: string;
153
- }
154
- export interface ListHostsInput {
155
-
156
- MaxResults?: number;
157
-
158
- NextToken?: string;
159
- }
160
-
161
- export interface Host {
162
-
163
- Name?: string;
164
-
165
- HostArn?: string;
166
-
167
- ProviderType?: ProviderType | string;
168
-
169
- ProviderEndpoint?: string;
170
-
171
- VpcConfiguration?: VpcConfiguration;
172
-
173
- Status?: string;
174
-
175
- StatusMessage?: string;
176
- }
177
- export interface ListHostsOutput {
178
-
179
- Hosts?: Host[];
180
-
181
- NextToken?: string;
182
- }
183
- export interface ListTagsForResourceInput {
184
-
185
- ResourceArn: string | undefined;
186
- }
187
- export interface ListTagsForResourceOutput {
188
-
189
- Tags?: Tag[];
190
- }
191
- export interface TagResourceInput {
192
-
193
- ResourceArn: string | undefined;
194
-
195
- Tags: Tag[] | undefined;
196
- }
197
- export interface TagResourceOutput {
198
- }
199
- export interface UntagResourceInput {
200
-
201
- ResourceArn: string | undefined;
202
-
203
- TagKeys: string[] | undefined;
204
- }
205
- export interface UntagResourceOutput {
206
- }
207
-
208
- export declare class ConflictException extends __BaseException {
209
- readonly name: "ConflictException";
210
- readonly $fault: "client";
211
- Message?: string;
212
-
213
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
214
- }
215
-
216
- export declare class UnsupportedOperationException extends __BaseException {
217
- readonly name: "UnsupportedOperationException";
218
- readonly $fault: "client";
219
- Message?: string;
220
-
221
- constructor(opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>);
222
- }
223
- export interface UpdateHostInput {
224
-
225
- HostArn: string | undefined;
226
-
227
- ProviderEndpoint?: string;
228
-
229
- VpcConfiguration?: VpcConfiguration;
230
- }
231
- export interface UpdateHostOutput {
232
- }
233
-
234
- export declare const TagFilterSensitiveLog: (obj: Tag) => any;
235
-
236
- export declare const CreateConnectionInputFilterSensitiveLog: (obj: CreateConnectionInput) => any;
237
-
238
- export declare const CreateConnectionOutputFilterSensitiveLog: (obj: CreateConnectionOutput) => any;
239
-
240
- export declare const VpcConfigurationFilterSensitiveLog: (obj: VpcConfiguration) => any;
241
-
242
- export declare const CreateHostInputFilterSensitiveLog: (obj: CreateHostInput) => any;
243
-
244
- export declare const CreateHostOutputFilterSensitiveLog: (obj: CreateHostOutput) => any;
245
-
246
- export declare const DeleteConnectionInputFilterSensitiveLog: (obj: DeleteConnectionInput) => any;
247
-
248
- export declare const DeleteConnectionOutputFilterSensitiveLog: (obj: DeleteConnectionOutput) => any;
249
-
250
- export declare const DeleteHostInputFilterSensitiveLog: (obj: DeleteHostInput) => any;
251
-
252
- export declare const DeleteHostOutputFilterSensitiveLog: (obj: DeleteHostOutput) => any;
253
-
254
- export declare const GetConnectionInputFilterSensitiveLog: (obj: GetConnectionInput) => any;
255
-
256
- export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
257
-
258
- export declare const GetConnectionOutputFilterSensitiveLog: (obj: GetConnectionOutput) => any;
259
-
260
- export declare const GetHostInputFilterSensitiveLog: (obj: GetHostInput) => any;
261
-
262
- export declare const GetHostOutputFilterSensitiveLog: (obj: GetHostOutput) => any;
263
-
264
- export declare const ListConnectionsInputFilterSensitiveLog: (obj: ListConnectionsInput) => any;
265
-
266
- export declare const ListConnectionsOutputFilterSensitiveLog: (obj: ListConnectionsOutput) => any;
267
-
268
- export declare const ListHostsInputFilterSensitiveLog: (obj: ListHostsInput) => any;
269
-
270
- export declare const HostFilterSensitiveLog: (obj: Host) => any;
271
-
272
- export declare const ListHostsOutputFilterSensitiveLog: (obj: ListHostsOutput) => any;
273
-
274
- export declare const ListTagsForResourceInputFilterSensitiveLog: (obj: ListTagsForResourceInput) => any;
275
-
276
- export declare const ListTagsForResourceOutputFilterSensitiveLog: (obj: ListTagsForResourceOutput) => any;
277
-
278
- export declare const TagResourceInputFilterSensitiveLog: (obj: TagResourceInput) => any;
279
-
280
- export declare const TagResourceOutputFilterSensitiveLog: (obj: TagResourceOutput) => any;
281
-
282
- export declare const UntagResourceInputFilterSensitiveLog: (obj: UntagResourceInput) => any;
283
-
284
- export declare const UntagResourceOutputFilterSensitiveLog: (obj: UntagResourceOutput) => any;
285
-
286
- export declare const UpdateHostInputFilterSensitiveLog: (obj: UpdateHostInput) => any;
287
-
288
- export declare const UpdateHostOutputFilterSensitiveLog: (obj: UpdateHostOutput) => any;
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
+ import { CodeStarConnectionsServiceException as __BaseException } from "./CodeStarConnectionsServiceException";
3
+ export declare enum ProviderType {
4
+ BITBUCKET = "Bitbucket",
5
+ GITHUB = "GitHub",
6
+ GITHUB_ENTERPRISE_SERVER = "GitHubEnterpriseServer",
7
+ }
8
+ export interface Tag {
9
+ Key: string | undefined;
10
+ Value: string | undefined;
11
+ }
12
+ export interface CreateConnectionInput {
13
+ ProviderType?: ProviderType | string;
14
+ ConnectionName: string | undefined;
15
+ Tags?: Tag[];
16
+ HostArn?: string;
17
+ }
18
+ export interface CreateConnectionOutput {
19
+ ConnectionArn: string | undefined;
20
+ Tags?: Tag[];
21
+ }
22
+ export declare class LimitExceededException extends __BaseException {
23
+ readonly name: "LimitExceededException";
24
+ readonly $fault: "client";
25
+ Message?: string;
26
+ constructor(
27
+ opts: __ExceptionOptionType<LimitExceededException, __BaseException>
28
+ );
29
+ }
30
+ export declare class ResourceNotFoundException extends __BaseException {
31
+ readonly name: "ResourceNotFoundException";
32
+ readonly $fault: "client";
33
+ Message?: string;
34
+ constructor(
35
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
36
+ );
37
+ }
38
+ export declare class ResourceUnavailableException extends __BaseException {
39
+ readonly name: "ResourceUnavailableException";
40
+ readonly $fault: "client";
41
+ Message?: string;
42
+ constructor(
43
+ opts: __ExceptionOptionType<ResourceUnavailableException, __BaseException>
44
+ );
45
+ }
46
+ export interface VpcConfiguration {
47
+ VpcId: string | undefined;
48
+ SubnetIds: string[] | undefined;
49
+ SecurityGroupIds: string[] | undefined;
50
+ TlsCertificate?: string;
51
+ }
52
+ export interface CreateHostInput {
53
+ Name: string | undefined;
54
+ ProviderType: ProviderType | string | undefined;
55
+ ProviderEndpoint: string | undefined;
56
+ VpcConfiguration?: VpcConfiguration;
57
+ Tags?: Tag[];
58
+ }
59
+ export interface CreateHostOutput {
60
+ HostArn?: string;
61
+ Tags?: Tag[];
62
+ }
63
+ export interface DeleteConnectionInput {
64
+ ConnectionArn: string | undefined;
65
+ }
66
+ export interface DeleteConnectionOutput {}
67
+ export interface DeleteHostInput {
68
+ HostArn: string | undefined;
69
+ }
70
+ export interface DeleteHostOutput {}
71
+ export interface GetConnectionInput {
72
+ ConnectionArn: string | undefined;
73
+ }
74
+ export declare enum ConnectionStatus {
75
+ AVAILABLE = "AVAILABLE",
76
+ ERROR = "ERROR",
77
+ PENDING = "PENDING",
78
+ }
79
+ export interface Connection {
80
+ ConnectionName?: string;
81
+ ConnectionArn?: string;
82
+ ProviderType?: ProviderType | string;
83
+ OwnerAccountId?: string;
84
+ ConnectionStatus?: ConnectionStatus | string;
85
+ HostArn?: string;
86
+ }
87
+ export interface GetConnectionOutput {
88
+ Connection?: Connection;
89
+ }
90
+ export interface GetHostInput {
91
+ HostArn: string | undefined;
92
+ }
93
+ export interface GetHostOutput {
94
+ Name?: string;
95
+ Status?: string;
96
+ ProviderType?: ProviderType | string;
97
+ ProviderEndpoint?: string;
98
+ VpcConfiguration?: VpcConfiguration;
99
+ }
100
+ export interface ListConnectionsInput {
101
+ ProviderTypeFilter?: ProviderType | string;
102
+ HostArnFilter?: string;
103
+ MaxResults?: number;
104
+ NextToken?: string;
105
+ }
106
+ export interface ListConnectionsOutput {
107
+ Connections?: Connection[];
108
+ NextToken?: string;
109
+ }
110
+ export interface ListHostsInput {
111
+ MaxResults?: number;
112
+ NextToken?: string;
113
+ }
114
+ export interface Host {
115
+ Name?: string;
116
+ HostArn?: string;
117
+ ProviderType?: ProviderType | string;
118
+ ProviderEndpoint?: string;
119
+ VpcConfiguration?: VpcConfiguration;
120
+ Status?: string;
121
+ StatusMessage?: string;
122
+ }
123
+ export interface ListHostsOutput {
124
+ Hosts?: Host[];
125
+ NextToken?: string;
126
+ }
127
+ export interface ListTagsForResourceInput {
128
+ ResourceArn: string | undefined;
129
+ }
130
+ export interface ListTagsForResourceOutput {
131
+ Tags?: Tag[];
132
+ }
133
+ export interface TagResourceInput {
134
+ ResourceArn: string | undefined;
135
+ Tags: Tag[] | undefined;
136
+ }
137
+ export interface TagResourceOutput {}
138
+ export interface UntagResourceInput {
139
+ ResourceArn: string | undefined;
140
+ TagKeys: string[] | undefined;
141
+ }
142
+ export interface UntagResourceOutput {}
143
+ export declare class ConflictException extends __BaseException {
144
+ readonly name: "ConflictException";
145
+ readonly $fault: "client";
146
+ Message?: string;
147
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
148
+ }
149
+ export declare class UnsupportedOperationException extends __BaseException {
150
+ readonly name: "UnsupportedOperationException";
151
+ readonly $fault: "client";
152
+ Message?: string;
153
+ constructor(
154
+ opts: __ExceptionOptionType<UnsupportedOperationException, __BaseException>
155
+ );
156
+ }
157
+ export interface UpdateHostInput {
158
+ HostArn: string | undefined;
159
+ ProviderEndpoint?: string;
160
+ VpcConfiguration?: VpcConfiguration;
161
+ }
162
+ export interface UpdateHostOutput {}
163
+ export declare const TagFilterSensitiveLog: (obj: Tag) => any;
164
+ export declare const CreateConnectionInputFilterSensitiveLog: (
165
+ obj: CreateConnectionInput
166
+ ) => any;
167
+ export declare const CreateConnectionOutputFilterSensitiveLog: (
168
+ obj: CreateConnectionOutput
169
+ ) => any;
170
+ export declare const VpcConfigurationFilterSensitiveLog: (
171
+ obj: VpcConfiguration
172
+ ) => any;
173
+ export declare const CreateHostInputFilterSensitiveLog: (
174
+ obj: CreateHostInput
175
+ ) => any;
176
+ export declare const CreateHostOutputFilterSensitiveLog: (
177
+ obj: CreateHostOutput
178
+ ) => any;
179
+ export declare const DeleteConnectionInputFilterSensitiveLog: (
180
+ obj: DeleteConnectionInput
181
+ ) => any;
182
+ export declare const DeleteConnectionOutputFilterSensitiveLog: (
183
+ obj: DeleteConnectionOutput
184
+ ) => any;
185
+ export declare const DeleteHostInputFilterSensitiveLog: (
186
+ obj: DeleteHostInput
187
+ ) => any;
188
+ export declare const DeleteHostOutputFilterSensitiveLog: (
189
+ obj: DeleteHostOutput
190
+ ) => any;
191
+ export declare const GetConnectionInputFilterSensitiveLog: (
192
+ obj: GetConnectionInput
193
+ ) => any;
194
+ export declare const ConnectionFilterSensitiveLog: (obj: Connection) => any;
195
+ export declare const GetConnectionOutputFilterSensitiveLog: (
196
+ obj: GetConnectionOutput
197
+ ) => any;
198
+ export declare const GetHostInputFilterSensitiveLog: (obj: GetHostInput) => any;
199
+ export declare const GetHostOutputFilterSensitiveLog: (
200
+ obj: GetHostOutput
201
+ ) => any;
202
+ export declare const ListConnectionsInputFilterSensitiveLog: (
203
+ obj: ListConnectionsInput
204
+ ) => any;
205
+ export declare const ListConnectionsOutputFilterSensitiveLog: (
206
+ obj: ListConnectionsOutput
207
+ ) => any;
208
+ export declare const ListHostsInputFilterSensitiveLog: (
209
+ obj: ListHostsInput
210
+ ) => any;
211
+ export declare const HostFilterSensitiveLog: (obj: Host) => any;
212
+ export declare const ListHostsOutputFilterSensitiveLog: (
213
+ obj: ListHostsOutput
214
+ ) => any;
215
+ export declare const ListTagsForResourceInputFilterSensitiveLog: (
216
+ obj: ListTagsForResourceInput
217
+ ) => any;
218
+ export declare const ListTagsForResourceOutputFilterSensitiveLog: (
219
+ obj: ListTagsForResourceOutput
220
+ ) => any;
221
+ export declare const TagResourceInputFilterSensitiveLog: (
222
+ obj: TagResourceInput
223
+ ) => any;
224
+ export declare const TagResourceOutputFilterSensitiveLog: (
225
+ obj: TagResourceOutput
226
+ ) => any;
227
+ export declare const UntagResourceInputFilterSensitiveLog: (
228
+ obj: UntagResourceInput
229
+ ) => any;
230
+ export declare const UntagResourceOutputFilterSensitiveLog: (
231
+ obj: UntagResourceOutput
232
+ ) => any;
233
+ export declare const UpdateHostInputFilterSensitiveLog: (
234
+ obj: UpdateHostInput
235
+ ) => any;
236
+ export declare const UpdateHostOutputFilterSensitiveLog: (
237
+ obj: UpdateHostOutput
238
+ ) => any;
@@ -1,6 +1,7 @@
1
- import { PaginationConfiguration } from "@aws-sdk/types";
2
- import { CodeStarConnections } from "../CodeStarConnections";
3
- import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient";
4
- export interface CodeStarConnectionsPaginationConfiguration extends PaginationConfiguration {
5
- client: CodeStarConnections | CodeStarConnectionsClient;
6
- }
1
+ import { PaginationConfiguration } from "@aws-sdk/types";
2
+ import { CodeStarConnections } from "../CodeStarConnections";
3
+ import { CodeStarConnectionsClient } from "../CodeStarConnectionsClient";
4
+ export interface CodeStarConnectionsPaginationConfiguration
5
+ extends PaginationConfiguration {
6
+ client: CodeStarConnections | CodeStarConnectionsClient;
7
+ }
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
3
- import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListConnections(config: CodeStarConnectionsPaginationConfiguration, input: ListConnectionsCommandInput, ...additionalArguments: any): Paginator<ListConnectionsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListConnectionsCommandInput,
4
+ ListConnectionsCommandOutput,
5
+ } from "../commands/ListConnectionsCommand";
6
+ import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListConnections(
8
+ config: CodeStarConnectionsPaginationConfiguration,
9
+ input: ListConnectionsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListConnectionsCommandOutput>;
@@ -1,4 +1,11 @@
1
- import { Paginator } from "@aws-sdk/types";
2
- import { ListHostsCommandInput, ListHostsCommandOutput } from "../commands/ListHostsCommand";
3
- import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
4
- export declare function paginateListHosts(config: CodeStarConnectionsPaginationConfiguration, input: ListHostsCommandInput, ...additionalArguments: any): Paginator<ListHostsCommandOutput>;
1
+ import { Paginator } from "@aws-sdk/types";
2
+ import {
3
+ ListHostsCommandInput,
4
+ ListHostsCommandOutput,
5
+ } from "../commands/ListHostsCommand";
6
+ import { CodeStarConnectionsPaginationConfiguration } from "./Interfaces";
7
+ export declare function paginateListHosts(
8
+ config: CodeStarConnectionsPaginationConfiguration,
9
+ input: ListHostsCommandInput,
10
+ ...additionalArguments: any
11
+ ): Paginator<ListHostsCommandOutput>;
@@ -1,3 +1,3 @@
1
- export * from "./Interfaces";
2
- export * from "./ListConnectionsPaginator";
3
- export * from "./ListHostsPaginator";
1
+ export * from "./Interfaces";
2
+ export * from "./ListConnectionsPaginator";
3
+ export * from "./ListHostsPaginator";