@aws-sdk/client-codeconnections 3.545.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 (211) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +500 -0
  3. package/dist-cjs/CodeConnections.js +65 -0
  4. package/dist-cjs/CodeConnectionsClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateConnectionCommand.js +28 -0
  8. package/dist-cjs/commands/CreateHostCommand.js +28 -0
  9. package/dist-cjs/commands/CreateRepositoryLinkCommand.js +28 -0
  10. package/dist-cjs/commands/CreateSyncConfigurationCommand.js +28 -0
  11. package/dist-cjs/commands/DeleteConnectionCommand.js +28 -0
  12. package/dist-cjs/commands/DeleteHostCommand.js +28 -0
  13. package/dist-cjs/commands/DeleteRepositoryLinkCommand.js +28 -0
  14. package/dist-cjs/commands/DeleteSyncConfigurationCommand.js +28 -0
  15. package/dist-cjs/commands/GetConnectionCommand.js +28 -0
  16. package/dist-cjs/commands/GetHostCommand.js +28 -0
  17. package/dist-cjs/commands/GetRepositoryLinkCommand.js +28 -0
  18. package/dist-cjs/commands/GetRepositorySyncStatusCommand.js +28 -0
  19. package/dist-cjs/commands/GetResourceSyncStatusCommand.js +28 -0
  20. package/dist-cjs/commands/GetSyncBlockerSummaryCommand.js +28 -0
  21. package/dist-cjs/commands/GetSyncConfigurationCommand.js +28 -0
  22. package/dist-cjs/commands/ListConnectionsCommand.js +28 -0
  23. package/dist-cjs/commands/ListHostsCommand.js +28 -0
  24. package/dist-cjs/commands/ListRepositoryLinksCommand.js +28 -0
  25. package/dist-cjs/commands/ListRepositorySyncDefinitionsCommand.js +28 -0
  26. package/dist-cjs/commands/ListSyncConfigurationsCommand.js +28 -0
  27. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  28. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  29. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  30. package/dist-cjs/commands/UpdateHostCommand.js +28 -0
  31. package/dist-cjs/commands/UpdateRepositoryLinkCommand.js +28 -0
  32. package/dist-cjs/commands/UpdateSyncBlockerCommand.js +28 -0
  33. package/dist-cjs/commands/UpdateSyncConfigurationCommand.js +28 -0
  34. package/dist-cjs/commands/index.js +30 -0
  35. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  36. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  37. package/dist-cjs/endpoint/ruleset.js +7 -0
  38. package/dist-cjs/extensionConfiguration.js +2 -0
  39. package/dist-cjs/index.js +11 -0
  40. package/dist-cjs/models/CodeConnectionsServiceException.js +12 -0
  41. package/dist-cjs/models/index.js +4 -0
  42. package/dist-cjs/models/models_0.js +285 -0
  43. package/dist-cjs/pagination/Interfaces.js +2 -0
  44. package/dist-cjs/pagination/ListConnectionsPaginator.js +7 -0
  45. package/dist-cjs/pagination/ListHostsPaginator.js +7 -0
  46. package/dist-cjs/pagination/ListRepositoryLinksPaginator.js +7 -0
  47. package/dist-cjs/pagination/ListSyncConfigurationsPaginator.js +7 -0
  48. package/dist-cjs/pagination/index.js +8 -0
  49. package/dist-cjs/protocols/Aws_json1_0.js +928 -0
  50. package/dist-cjs/runtimeConfig.browser.js +39 -0
  51. package/dist-cjs/runtimeConfig.js +49 -0
  52. package/dist-cjs/runtimeConfig.native.js +15 -0
  53. package/dist-cjs/runtimeConfig.shared.js +34 -0
  54. package/dist-cjs/runtimeExtensions.js +25 -0
  55. package/dist-es/CodeConnections.js +61 -0
  56. package/dist-es/CodeConnectionsClient.js +52 -0
  57. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  58. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  59. package/dist-es/commands/CreateConnectionCommand.js +24 -0
  60. package/dist-es/commands/CreateHostCommand.js +24 -0
  61. package/dist-es/commands/CreateRepositoryLinkCommand.js +24 -0
  62. package/dist-es/commands/CreateSyncConfigurationCommand.js +24 -0
  63. package/dist-es/commands/DeleteConnectionCommand.js +24 -0
  64. package/dist-es/commands/DeleteHostCommand.js +24 -0
  65. package/dist-es/commands/DeleteRepositoryLinkCommand.js +24 -0
  66. package/dist-es/commands/DeleteSyncConfigurationCommand.js +24 -0
  67. package/dist-es/commands/GetConnectionCommand.js +24 -0
  68. package/dist-es/commands/GetHostCommand.js +24 -0
  69. package/dist-es/commands/GetRepositoryLinkCommand.js +24 -0
  70. package/dist-es/commands/GetRepositorySyncStatusCommand.js +24 -0
  71. package/dist-es/commands/GetResourceSyncStatusCommand.js +24 -0
  72. package/dist-es/commands/GetSyncBlockerSummaryCommand.js +24 -0
  73. package/dist-es/commands/GetSyncConfigurationCommand.js +24 -0
  74. package/dist-es/commands/ListConnectionsCommand.js +24 -0
  75. package/dist-es/commands/ListHostsCommand.js +24 -0
  76. package/dist-es/commands/ListRepositoryLinksCommand.js +24 -0
  77. package/dist-es/commands/ListRepositorySyncDefinitionsCommand.js +24 -0
  78. package/dist-es/commands/ListSyncConfigurationsCommand.js +24 -0
  79. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  80. package/dist-es/commands/TagResourceCommand.js +24 -0
  81. package/dist-es/commands/UntagResourceCommand.js +24 -0
  82. package/dist-es/commands/UpdateHostCommand.js +24 -0
  83. package/dist-es/commands/UpdateRepositoryLinkCommand.js +24 -0
  84. package/dist-es/commands/UpdateSyncBlockerCommand.js +24 -0
  85. package/dist-es/commands/UpdateSyncConfigurationCommand.js +24 -0
  86. package/dist-es/commands/index.js +27 -0
  87. package/dist-es/endpoint/EndpointParameters.js +14 -0
  88. package/dist-es/endpoint/endpointResolver.js +10 -0
  89. package/dist-es/endpoint/ruleset.js +4 -0
  90. package/dist-es/extensionConfiguration.js +1 -0
  91. package/dist-es/index.js +6 -0
  92. package/dist-es/models/CodeConnectionsServiceException.js +8 -0
  93. package/dist-es/models/index.js +1 -0
  94. package/dist-es/models/models_0.js +265 -0
  95. package/dist-es/pagination/Interfaces.js +1 -0
  96. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  97. package/dist-es/pagination/ListHostsPaginator.js +4 -0
  98. package/dist-es/pagination/ListRepositoryLinksPaginator.js +4 -0
  99. package/dist-es/pagination/ListSyncConfigurationsPaginator.js +4 -0
  100. package/dist-es/pagination/index.js +5 -0
  101. package/dist-es/protocols/Aws_json1_0.js +870 -0
  102. package/dist-es/runtimeConfig.browser.js +34 -0
  103. package/dist-es/runtimeConfig.js +44 -0
  104. package/dist-es/runtimeConfig.native.js +11 -0
  105. package/dist-es/runtimeConfig.shared.js +30 -0
  106. package/dist-es/runtimeExtensions.js +21 -0
  107. package/dist-types/CodeConnections.d.ts +280 -0
  108. package/dist-types/CodeConnectionsClient.d.ts +276 -0
  109. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  110. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  111. package/dist-types/commands/CreateConnectionCommand.d.ts +84 -0
  112. package/dist-types/commands/CreateHostCommand.d.ts +93 -0
  113. package/dist-types/commands/CreateRepositoryLinkCommand.d.ts +97 -0
  114. package/dist-types/commands/CreateSyncConfigurationCommand.d.ts +101 -0
  115. package/dist-types/commands/DeleteConnectionCommand.d.ts +60 -0
  116. package/dist-types/commands/DeleteHostCommand.d.ts +66 -0
  117. package/dist-types/commands/DeleteRepositoryLinkCommand.d.ts +81 -0
  118. package/dist-types/commands/DeleteSyncConfigurationCommand.d.ts +76 -0
  119. package/dist-types/commands/GetConnectionCommand.d.ts +72 -0
  120. package/dist-types/commands/GetHostCommand.d.ts +79 -0
  121. package/dist-types/commands/GetRepositoryLinkCommand.d.ts +86 -0
  122. package/dist-types/commands/GetRepositorySyncStatusCommand.d.ts +88 -0
  123. package/dist-types/commands/GetResourceSyncStatusCommand.d.ts +141 -0
  124. package/dist-types/commands/GetSyncBlockerSummaryCommand.d.ts +95 -0
  125. package/dist-types/commands/GetSyncConfigurationCommand.d.ts +87 -0
  126. package/dist-types/commands/ListConnectionsCommand.d.ts +75 -0
  127. package/dist-types/commands/ListHostsCommand.d.ts +80 -0
  128. package/dist-types/commands/ListRepositoryLinksCommand.d.ts +89 -0
  129. package/dist-types/commands/ListRepositorySyncDefinitionsCommand.d.ts +83 -0
  130. package/dist-types/commands/ListSyncConfigurationsCommand.d.ts +92 -0
  131. package/dist-types/commands/ListTagsForResourceCommand.d.ts +67 -0
  132. package/dist-types/commands/TagResourceCommand.d.ts +70 -0
  133. package/dist-types/commands/UntagResourceCommand.d.ts +63 -0
  134. package/dist-types/commands/UpdateHostCommand.d.ts +80 -0
  135. package/dist-types/commands/UpdateRepositoryLinkCommand.d.ts +92 -0
  136. package/dist-types/commands/UpdateSyncBlockerCommand.d.ts +99 -0
  137. package/dist-types/commands/UpdateSyncConfigurationCommand.d.ts +99 -0
  138. package/dist-types/commands/index.d.ts +27 -0
  139. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  140. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  141. package/dist-types/endpoint/ruleset.d.ts +2 -0
  142. package/dist-types/extensionConfiguration.d.ts +9 -0
  143. package/dist-types/index.d.ts +92 -0
  144. package/dist-types/models/CodeConnectionsServiceException.d.ts +13 -0
  145. package/dist-types/models/index.d.ts +1 -0
  146. package/dist-types/models/models_0.d.ts +1735 -0
  147. package/dist-types/pagination/Interfaces.d.ts +8 -0
  148. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  149. package/dist-types/pagination/ListHostsPaginator.d.ts +7 -0
  150. package/dist-types/pagination/ListRepositoryLinksPaginator.d.ts +7 -0
  151. package/dist-types/pagination/ListSyncConfigurationsPaginator.d.ts +7 -0
  152. package/dist-types/pagination/index.d.ts +5 -0
  153. package/dist-types/protocols/Aws_json1_0.d.ts +245 -0
  154. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  155. package/dist-types/runtimeConfig.d.ts +45 -0
  156. package/dist-types/runtimeConfig.native.d.ts +44 -0
  157. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  158. package/dist-types/runtimeExtensions.d.ts +17 -0
  159. package/dist-types/ts3.4/CodeConnections.d.ts +469 -0
  160. package/dist-types/ts3.4/CodeConnectionsClient.d.ts +283 -0
  161. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  162. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  163. package/dist-types/ts3.4/commands/CreateConnectionCommand.d.ts +38 -0
  164. package/dist-types/ts3.4/commands/CreateHostCommand.d.ts +35 -0
  165. package/dist-types/ts3.4/commands/CreateRepositoryLinkCommand.d.ts +39 -0
  166. package/dist-types/ts3.4/commands/CreateSyncConfigurationCommand.d.ts +39 -0
  167. package/dist-types/ts3.4/commands/DeleteConnectionCommand.d.ts +38 -0
  168. package/dist-types/ts3.4/commands/DeleteHostCommand.d.ts +35 -0
  169. package/dist-types/ts3.4/commands/DeleteRepositoryLinkCommand.d.ts +39 -0
  170. package/dist-types/ts3.4/commands/DeleteSyncConfigurationCommand.d.ts +39 -0
  171. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +35 -0
  172. package/dist-types/ts3.4/commands/GetHostCommand.d.ts +29 -0
  173. package/dist-types/ts3.4/commands/GetRepositoryLinkCommand.d.ts +38 -0
  174. package/dist-types/ts3.4/commands/GetRepositorySyncStatusCommand.d.ts +39 -0
  175. package/dist-types/ts3.4/commands/GetResourceSyncStatusCommand.d.ts +39 -0
  176. package/dist-types/ts3.4/commands/GetSyncBlockerSummaryCommand.d.ts +39 -0
  177. package/dist-types/ts3.4/commands/GetSyncConfigurationCommand.d.ts +39 -0
  178. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +38 -0
  179. package/dist-types/ts3.4/commands/ListHostsCommand.d.ts +35 -0
  180. package/dist-types/ts3.4/commands/ListRepositoryLinksCommand.d.ts +39 -0
  181. package/dist-types/ts3.4/commands/ListRepositorySyncDefinitionsCommand.d.ts +39 -0
  182. package/dist-types/ts3.4/commands/ListSyncConfigurationsCommand.d.ts +39 -0
  183. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  184. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  185. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  186. package/dist-types/ts3.4/commands/UpdateHostCommand.d.ts +35 -0
  187. package/dist-types/ts3.4/commands/UpdateRepositoryLinkCommand.d.ts +39 -0
  188. package/dist-types/ts3.4/commands/UpdateSyncBlockerCommand.d.ts +38 -0
  189. package/dist-types/ts3.4/commands/UpdateSyncConfigurationCommand.d.ts +39 -0
  190. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  191. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  192. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  193. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  194. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  195. package/dist-types/ts3.4/index.d.ts +9 -0
  196. package/dist-types/ts3.4/models/CodeConnectionsServiceException.d.ts +8 -0
  197. package/dist-types/ts3.4/models/index.d.ts +1 -0
  198. package/dist-types/ts3.4/models/models_0.d.ts +531 -0
  199. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  200. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  201. package/dist-types/ts3.4/pagination/ListHostsPaginator.d.ts +11 -0
  202. package/dist-types/ts3.4/pagination/ListRepositoryLinksPaginator.d.ts +11 -0
  203. package/dist-types/ts3.4/pagination/ListSyncConfigurationsPaginator.d.ts +11 -0
  204. package/dist-types/ts3.4/pagination/index.d.ts +5 -0
  205. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +329 -0
  206. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  207. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  208. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  209. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  210. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  211. package/package.json +101 -0
@@ -0,0 +1,283 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
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
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateConnectionCommandInput,
50
+ CreateConnectionCommandOutput,
51
+ } from "./commands/CreateConnectionCommand";
52
+ import {
53
+ CreateHostCommandInput,
54
+ CreateHostCommandOutput,
55
+ } from "./commands/CreateHostCommand";
56
+ import {
57
+ CreateRepositoryLinkCommandInput,
58
+ CreateRepositoryLinkCommandOutput,
59
+ } from "./commands/CreateRepositoryLinkCommand";
60
+ import {
61
+ CreateSyncConfigurationCommandInput,
62
+ CreateSyncConfigurationCommandOutput,
63
+ } from "./commands/CreateSyncConfigurationCommand";
64
+ import {
65
+ DeleteConnectionCommandInput,
66
+ DeleteConnectionCommandOutput,
67
+ } from "./commands/DeleteConnectionCommand";
68
+ import {
69
+ DeleteHostCommandInput,
70
+ DeleteHostCommandOutput,
71
+ } from "./commands/DeleteHostCommand";
72
+ import {
73
+ DeleteRepositoryLinkCommandInput,
74
+ DeleteRepositoryLinkCommandOutput,
75
+ } from "./commands/DeleteRepositoryLinkCommand";
76
+ import {
77
+ DeleteSyncConfigurationCommandInput,
78
+ DeleteSyncConfigurationCommandOutput,
79
+ } from "./commands/DeleteSyncConfigurationCommand";
80
+ import {
81
+ GetConnectionCommandInput,
82
+ GetConnectionCommandOutput,
83
+ } from "./commands/GetConnectionCommand";
84
+ import {
85
+ GetHostCommandInput,
86
+ GetHostCommandOutput,
87
+ } from "./commands/GetHostCommand";
88
+ import {
89
+ GetRepositoryLinkCommandInput,
90
+ GetRepositoryLinkCommandOutput,
91
+ } from "./commands/GetRepositoryLinkCommand";
92
+ import {
93
+ GetRepositorySyncStatusCommandInput,
94
+ GetRepositorySyncStatusCommandOutput,
95
+ } from "./commands/GetRepositorySyncStatusCommand";
96
+ import {
97
+ GetResourceSyncStatusCommandInput,
98
+ GetResourceSyncStatusCommandOutput,
99
+ } from "./commands/GetResourceSyncStatusCommand";
100
+ import {
101
+ GetSyncBlockerSummaryCommandInput,
102
+ GetSyncBlockerSummaryCommandOutput,
103
+ } from "./commands/GetSyncBlockerSummaryCommand";
104
+ import {
105
+ GetSyncConfigurationCommandInput,
106
+ GetSyncConfigurationCommandOutput,
107
+ } from "./commands/GetSyncConfigurationCommand";
108
+ import {
109
+ ListConnectionsCommandInput,
110
+ ListConnectionsCommandOutput,
111
+ } from "./commands/ListConnectionsCommand";
112
+ import {
113
+ ListHostsCommandInput,
114
+ ListHostsCommandOutput,
115
+ } from "./commands/ListHostsCommand";
116
+ import {
117
+ ListRepositoryLinksCommandInput,
118
+ ListRepositoryLinksCommandOutput,
119
+ } from "./commands/ListRepositoryLinksCommand";
120
+ import {
121
+ ListRepositorySyncDefinitionsCommandInput,
122
+ ListRepositorySyncDefinitionsCommandOutput,
123
+ } from "./commands/ListRepositorySyncDefinitionsCommand";
124
+ import {
125
+ ListSyncConfigurationsCommandInput,
126
+ ListSyncConfigurationsCommandOutput,
127
+ } from "./commands/ListSyncConfigurationsCommand";
128
+ import {
129
+ ListTagsForResourceCommandInput,
130
+ ListTagsForResourceCommandOutput,
131
+ } from "./commands/ListTagsForResourceCommand";
132
+ import {
133
+ TagResourceCommandInput,
134
+ TagResourceCommandOutput,
135
+ } from "./commands/TagResourceCommand";
136
+ import {
137
+ UntagResourceCommandInput,
138
+ UntagResourceCommandOutput,
139
+ } from "./commands/UntagResourceCommand";
140
+ import {
141
+ UpdateHostCommandInput,
142
+ UpdateHostCommandOutput,
143
+ } from "./commands/UpdateHostCommand";
144
+ import {
145
+ UpdateRepositoryLinkCommandInput,
146
+ UpdateRepositoryLinkCommandOutput,
147
+ } from "./commands/UpdateRepositoryLinkCommand";
148
+ import {
149
+ UpdateSyncBlockerCommandInput,
150
+ UpdateSyncBlockerCommandOutput,
151
+ } from "./commands/UpdateSyncBlockerCommand";
152
+ import {
153
+ UpdateSyncConfigurationCommandInput,
154
+ UpdateSyncConfigurationCommandOutput,
155
+ } from "./commands/UpdateSyncConfigurationCommand";
156
+ import {
157
+ ClientInputEndpointParameters,
158
+ ClientResolvedEndpointParameters,
159
+ EndpointParameters,
160
+ } from "./endpoint/EndpointParameters";
161
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
162
+ export { __Client };
163
+ export type ServiceInputTypes =
164
+ | CreateConnectionCommandInput
165
+ | CreateHostCommandInput
166
+ | CreateRepositoryLinkCommandInput
167
+ | CreateSyncConfigurationCommandInput
168
+ | DeleteConnectionCommandInput
169
+ | DeleteHostCommandInput
170
+ | DeleteRepositoryLinkCommandInput
171
+ | DeleteSyncConfigurationCommandInput
172
+ | GetConnectionCommandInput
173
+ | GetHostCommandInput
174
+ | GetRepositoryLinkCommandInput
175
+ | GetRepositorySyncStatusCommandInput
176
+ | GetResourceSyncStatusCommandInput
177
+ | GetSyncBlockerSummaryCommandInput
178
+ | GetSyncConfigurationCommandInput
179
+ | ListConnectionsCommandInput
180
+ | ListHostsCommandInput
181
+ | ListRepositoryLinksCommandInput
182
+ | ListRepositorySyncDefinitionsCommandInput
183
+ | ListSyncConfigurationsCommandInput
184
+ | ListTagsForResourceCommandInput
185
+ | TagResourceCommandInput
186
+ | UntagResourceCommandInput
187
+ | UpdateHostCommandInput
188
+ | UpdateRepositoryLinkCommandInput
189
+ | UpdateSyncBlockerCommandInput
190
+ | UpdateSyncConfigurationCommandInput;
191
+ export type ServiceOutputTypes =
192
+ | CreateConnectionCommandOutput
193
+ | CreateHostCommandOutput
194
+ | CreateRepositoryLinkCommandOutput
195
+ | CreateSyncConfigurationCommandOutput
196
+ | DeleteConnectionCommandOutput
197
+ | DeleteHostCommandOutput
198
+ | DeleteRepositoryLinkCommandOutput
199
+ | DeleteSyncConfigurationCommandOutput
200
+ | GetConnectionCommandOutput
201
+ | GetHostCommandOutput
202
+ | GetRepositoryLinkCommandOutput
203
+ | GetRepositorySyncStatusCommandOutput
204
+ | GetResourceSyncStatusCommandOutput
205
+ | GetSyncBlockerSummaryCommandOutput
206
+ | GetSyncConfigurationCommandOutput
207
+ | ListConnectionsCommandOutput
208
+ | ListHostsCommandOutput
209
+ | ListRepositoryLinksCommandOutput
210
+ | ListRepositorySyncDefinitionsCommandOutput
211
+ | ListSyncConfigurationsCommandOutput
212
+ | ListTagsForResourceCommandOutput
213
+ | TagResourceCommandOutput
214
+ | UntagResourceCommandOutput
215
+ | UpdateHostCommandOutput
216
+ | UpdateRepositoryLinkCommandOutput
217
+ | UpdateSyncBlockerCommandOutput
218
+ | UpdateSyncConfigurationCommandOutput;
219
+ export interface ClientDefaults
220
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
221
+ requestHandler?: __HttpHandlerUserInput;
222
+ sha256?: __ChecksumConstructor | __HashConstructor;
223
+ urlParser?: __UrlParser;
224
+ bodyLengthChecker?: __BodyLengthCalculator;
225
+ streamCollector?: __StreamCollector;
226
+ base64Decoder?: __Decoder;
227
+ base64Encoder?: __Encoder;
228
+ utf8Decoder?: __Decoder;
229
+ utf8Encoder?: __Encoder;
230
+ runtime?: string;
231
+ disableHostPrefix?: boolean;
232
+ serviceId?: string;
233
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
234
+ useFipsEndpoint?: boolean | __Provider<boolean>;
235
+ defaultUserAgentProvider?: Provider<__UserAgent>;
236
+ region?: string | __Provider<string>;
237
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
238
+ maxAttempts?: number | __Provider<number>;
239
+ retryMode?: string | __Provider<string>;
240
+ logger?: __Logger;
241
+ extensions?: RuntimeExtension[];
242
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
243
+ }
244
+ export type CodeConnectionsClientConfigType = Partial<
245
+ __SmithyConfiguration<__HttpHandlerOptions>
246
+ > &
247
+ ClientDefaults &
248
+ RegionInputConfig &
249
+ EndpointInputConfig<EndpointParameters> &
250
+ RetryInputConfig &
251
+ HostHeaderInputConfig &
252
+ UserAgentInputConfig &
253
+ HttpAuthSchemeInputConfig &
254
+ ClientInputEndpointParameters;
255
+ export interface CodeConnectionsClientConfig
256
+ extends CodeConnectionsClientConfigType {}
257
+ export type CodeConnectionsClientResolvedConfigType =
258
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
259
+ Required<ClientDefaults> &
260
+ RuntimeExtensionsConfig &
261
+ RegionResolvedConfig &
262
+ EndpointResolvedConfig<EndpointParameters> &
263
+ RetryResolvedConfig &
264
+ HostHeaderResolvedConfig &
265
+ UserAgentResolvedConfig &
266
+ HttpAuthSchemeResolvedConfig &
267
+ ClientResolvedEndpointParameters;
268
+ export interface CodeConnectionsClientResolvedConfig
269
+ extends CodeConnectionsClientResolvedConfigType {}
270
+ export declare class CodeConnectionsClient extends __Client<
271
+ __HttpHandlerOptions,
272
+ ServiceInputTypes,
273
+ ServiceOutputTypes,
274
+ CodeConnectionsClientResolvedConfig
275
+ > {
276
+ readonly config: CodeConnectionsClientResolvedConfig;
277
+ constructor(
278
+ ...[configuration]: __CheckOptionalClientConfig<CodeConnectionsClientConfig>
279
+ );
280
+ destroy(): void;
281
+ private getDefaultHttpAuthSchemeParametersProvider;
282
+ private getIdentityProviderConfigProvider;
283
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { CodeConnectionsHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): CodeConnectionsHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { CodeConnectionsClientResolvedConfig } from "../CodeConnectionsClient";
14
+ export interface CodeConnectionsHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface CodeConnectionsHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ CodeConnectionsClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ CodeConnectionsHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultCodeConnectionsHttpAuthSchemeParametersProvider: (
26
+ config: CodeConnectionsClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<CodeConnectionsHttpAuthSchemeParameters>;
30
+ export interface CodeConnectionsHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<CodeConnectionsHttpAuthSchemeParameters> {}
32
+ export declare const defaultCodeConnectionsHttpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: CodeConnectionsHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: CodeConnectionsHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ CreateConnectionInput,
10
+ CreateConnectionOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateConnectionCommandInput extends CreateConnectionInput {}
14
+ export interface CreateConnectionCommandOutput
15
+ extends CreateConnectionOutput,
16
+ __MetadataBearer {}
17
+ declare const CreateConnectionCommand_base: {
18
+ new (
19
+ input: CreateConnectionCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ CreateConnectionCommandInput,
22
+ CreateConnectionCommandOutput,
23
+ CodeConnectionsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: CreateConnectionCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ CreateConnectionCommandInput,
31
+ CreateConnectionCommandOutput,
32
+ CodeConnectionsClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class CreateConnectionCommand extends CreateConnectionCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import { CreateHostInput, CreateHostOutput } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface CreateHostCommandInput extends CreateHostInput {}
11
+ export interface CreateHostCommandOutput
12
+ extends CreateHostOutput,
13
+ __MetadataBearer {}
14
+ declare const CreateHostCommand_base: {
15
+ new (
16
+ input: CreateHostCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ CreateHostCommandInput,
19
+ CreateHostCommandOutput,
20
+ CodeConnectionsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: CreateHostCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ CreateHostCommandInput,
28
+ CreateHostCommandOutput,
29
+ CodeConnectionsClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class CreateHostCommand extends CreateHostCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ CreateRepositoryLinkInput,
10
+ CreateRepositoryLinkOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateRepositoryLinkCommandInput
14
+ extends CreateRepositoryLinkInput {}
15
+ export interface CreateRepositoryLinkCommandOutput
16
+ extends CreateRepositoryLinkOutput,
17
+ __MetadataBearer {}
18
+ declare const CreateRepositoryLinkCommand_base: {
19
+ new (
20
+ input: CreateRepositoryLinkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateRepositoryLinkCommandInput,
23
+ CreateRepositoryLinkCommandOutput,
24
+ CodeConnectionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateRepositoryLinkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateRepositoryLinkCommandInput,
32
+ CreateRepositoryLinkCommandOutput,
33
+ CodeConnectionsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateRepositoryLinkCommand extends CreateRepositoryLinkCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ CreateSyncConfigurationInput,
10
+ CreateSyncConfigurationOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface CreateSyncConfigurationCommandInput
14
+ extends CreateSyncConfigurationInput {}
15
+ export interface CreateSyncConfigurationCommandOutput
16
+ extends CreateSyncConfigurationOutput,
17
+ __MetadataBearer {}
18
+ declare const CreateSyncConfigurationCommand_base: {
19
+ new (
20
+ input: CreateSyncConfigurationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateSyncConfigurationCommandInput,
23
+ CreateSyncConfigurationCommandOutput,
24
+ CodeConnectionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateSyncConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateSyncConfigurationCommandInput,
32
+ CreateSyncConfigurationCommandOutput,
33
+ CodeConnectionsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateSyncConfigurationCommand extends CreateSyncConfigurationCommand_base {}
@@ -0,0 +1,38 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ DeleteConnectionInput,
10
+ DeleteConnectionOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteConnectionCommandInput extends DeleteConnectionInput {}
14
+ export interface DeleteConnectionCommandOutput
15
+ extends DeleteConnectionOutput,
16
+ __MetadataBearer {}
17
+ declare const DeleteConnectionCommand_base: {
18
+ new (
19
+ input: DeleteConnectionCommandInput
20
+ ): import("@smithy/smithy-client").CommandImpl<
21
+ DeleteConnectionCommandInput,
22
+ DeleteConnectionCommandOutput,
23
+ CodeConnectionsClientResolvedConfig,
24
+ ServiceInputTypes,
25
+ ServiceOutputTypes
26
+ >;
27
+ new (
28
+ __0_0: DeleteConnectionCommandInput
29
+ ): import("@smithy/smithy-client").CommandImpl<
30
+ DeleteConnectionCommandInput,
31
+ DeleteConnectionCommandOutput,
32
+ CodeConnectionsClientResolvedConfig,
33
+ ServiceInputTypes,
34
+ ServiceOutputTypes
35
+ >;
36
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
37
+ };
38
+ export declare class DeleteConnectionCommand extends DeleteConnectionCommand_base {}
@@ -0,0 +1,35 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import { DeleteHostInput, DeleteHostOutput } from "../models/models_0";
9
+ export { __MetadataBearer, $Command };
10
+ export interface DeleteHostCommandInput extends DeleteHostInput {}
11
+ export interface DeleteHostCommandOutput
12
+ extends DeleteHostOutput,
13
+ __MetadataBearer {}
14
+ declare const DeleteHostCommand_base: {
15
+ new (
16
+ input: DeleteHostCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ DeleteHostCommandInput,
19
+ DeleteHostCommandOutput,
20
+ CodeConnectionsClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: DeleteHostCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ DeleteHostCommandInput,
28
+ DeleteHostCommandOutput,
29
+ CodeConnectionsClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class DeleteHostCommand extends DeleteHostCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ DeleteRepositoryLinkInput,
10
+ DeleteRepositoryLinkOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteRepositoryLinkCommandInput
14
+ extends DeleteRepositoryLinkInput {}
15
+ export interface DeleteRepositoryLinkCommandOutput
16
+ extends DeleteRepositoryLinkOutput,
17
+ __MetadataBearer {}
18
+ declare const DeleteRepositoryLinkCommand_base: {
19
+ new (
20
+ input: DeleteRepositoryLinkCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteRepositoryLinkCommandInput,
23
+ DeleteRepositoryLinkCommandOutput,
24
+ CodeConnectionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteRepositoryLinkCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteRepositoryLinkCommandInput,
32
+ DeleteRepositoryLinkCommandOutput,
33
+ CodeConnectionsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteRepositoryLinkCommand extends DeleteRepositoryLinkCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CodeConnectionsClientResolvedConfig,
5
+ ServiceInputTypes,
6
+ ServiceOutputTypes,
7
+ } from "../CodeConnectionsClient";
8
+ import {
9
+ DeleteSyncConfigurationInput,
10
+ DeleteSyncConfigurationOutput,
11
+ } from "../models/models_0";
12
+ export { __MetadataBearer, $Command };
13
+ export interface DeleteSyncConfigurationCommandInput
14
+ extends DeleteSyncConfigurationInput {}
15
+ export interface DeleteSyncConfigurationCommandOutput
16
+ extends DeleteSyncConfigurationOutput,
17
+ __MetadataBearer {}
18
+ declare const DeleteSyncConfigurationCommand_base: {
19
+ new (
20
+ input: DeleteSyncConfigurationCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ DeleteSyncConfigurationCommandInput,
23
+ DeleteSyncConfigurationCommandOutput,
24
+ CodeConnectionsClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: DeleteSyncConfigurationCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ DeleteSyncConfigurationCommandInput,
32
+ DeleteSyncConfigurationCommandOutput,
33
+ CodeConnectionsClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class DeleteSyncConfigurationCommand extends DeleteSyncConfigurationCommand_base {}