@aws-sdk/client-appflow 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 (44) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist-types/ts3.4/Appflow.d.ts +378 -115
  3. package/dist-types/ts3.4/AppflowClient.d.ts +236 -95
  4. package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +39 -17
  5. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +32 -17
  6. package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +39 -17
  7. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +32 -17
  8. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +36 -17
  9. package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +39 -17
  10. package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +39 -17
  11. package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +36 -17
  12. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +32 -17
  13. package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +39 -17
  14. package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +39 -17
  15. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +35 -17
  16. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +32 -17
  17. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +36 -17
  18. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +36 -17
  19. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +32 -17
  20. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +32 -17
  21. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +32 -17
  22. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +36 -17
  23. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -17
  24. package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +39 -17
  25. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +32 -17
  26. package/dist-types/ts3.4/commands/index.d.ts +22 -22
  27. package/dist-types/ts3.4/endpoints.d.ts +2 -2
  28. package/dist-types/ts3.4/index.d.ts +6 -6
  29. package/dist-types/ts3.4/models/AppflowServiceException.d.ts +7 -6
  30. package/dist-types/ts3.4/models/index.d.ts +1 -1
  31. package/dist-types/ts3.4/models/models_0.d.ts +1982 -2551
  32. package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +11 -4
  33. package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +11 -4
  34. package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +11 -4
  35. package/dist-types/ts3.4/pagination/Interfaces.d.ts +7 -6
  36. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -4
  37. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +11 -4
  38. package/dist-types/ts3.4/pagination/index.d.ts +6 -6
  39. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +269 -68
  40. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +65 -38
  41. package/dist-types/ts3.4/runtimeConfig.d.ts +65 -38
  42. package/dist-types/ts3.4/runtimeConfig.native.d.ts +66 -37
  43. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +10 -11
  44. package/package.json +34 -34
package/CHANGELOG.md CHANGED
@@ -3,6 +3,22 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.171.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.170.0...v3.171.0) (2022-09-14)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/client-appflow
9
+
10
+
11
+
12
+
13
+
14
+ # [3.170.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.169.0...v3.170.0) (2022-09-13)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/client-appflow
17
+
18
+
19
+
20
+
21
+
6
22
  # [3.169.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.168.0...v3.169.0) (2022-09-12)
7
23
 
8
24
  **Note:** Version bump only for package @aws-sdk/client-appflow
@@ -1,115 +1,378 @@
1
- import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
- import { AppflowClient } from "./AppflowClient";
3
- import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
4
- import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
5
- import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
6
- import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
7
- import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
8
- import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
9
- import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
10
- import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
11
- import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
12
- import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
13
- import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
14
- import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
15
- import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
16
- import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
17
- import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
18
- import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
19
- import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
20
- import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
21
- import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
22
- import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
23
- import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
24
- import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
25
-
26
- export declare class Appflow extends AppflowClient {
27
-
28
- createConnectorProfile(args: CreateConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorProfileCommandOutput>;
29
- createConnectorProfile(args: CreateConnectorProfileCommandInput, cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void): void;
30
- createConnectorProfile(args: CreateConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void): void;
31
-
32
- createFlow(args: CreateFlowCommandInput, options?: __HttpHandlerOptions): Promise<CreateFlowCommandOutput>;
33
- createFlow(args: CreateFlowCommandInput, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
34
- createFlow(args: CreateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateFlowCommandOutput) => void): void;
35
-
36
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<DeleteConnectorProfileCommandOutput>;
37
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void): void;
38
- deleteConnectorProfile(args: DeleteConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void): void;
39
-
40
- deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
41
- deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
42
- deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
43
-
44
- describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
45
- describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
46
- describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
47
-
48
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorEntityCommandOutput>;
49
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
50
- describeConnectorEntity(args: DescribeConnectorEntityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void): void;
51
-
52
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorProfilesCommandOutput>;
53
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
54
- describeConnectorProfiles(args: DescribeConnectorProfilesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void): void;
55
-
56
- describeConnectors(args: DescribeConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorsCommandOutput>;
57
- describeConnectors(args: DescribeConnectorsCommandInput, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
58
- describeConnectors(args: DescribeConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorsCommandOutput) => void): void;
59
-
60
- describeFlow(args: DescribeFlowCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowCommandOutput>;
61
- describeFlow(args: DescribeFlowCommandInput, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
62
- describeFlow(args: DescribeFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowCommandOutput) => void): void;
63
-
64
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, options?: __HttpHandlerOptions): Promise<DescribeFlowExecutionRecordsCommandOutput>;
65
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void): void;
66
- describeFlowExecutionRecords(args: DescribeFlowExecutionRecordsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void): void;
67
-
68
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorEntitiesCommandOutput>;
69
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
70
- listConnectorEntities(args: ListConnectorEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
71
-
72
- listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
73
- listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
74
- listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
75
-
76
- listFlows(args: ListFlowsCommandInput, options?: __HttpHandlerOptions): Promise<ListFlowsCommandOutput>;
77
- listFlows(args: ListFlowsCommandInput, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
78
- listFlows(args: ListFlowsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListFlowsCommandOutput) => void): void;
79
-
80
- listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
81
- listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
82
- listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
83
-
84
- registerConnector(args: RegisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<RegisterConnectorCommandOutput>;
85
- registerConnector(args: RegisterConnectorCommandInput, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
86
- registerConnector(args: RegisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
87
-
88
- startFlow(args: StartFlowCommandInput, options?: __HttpHandlerOptions): Promise<StartFlowCommandOutput>;
89
- startFlow(args: StartFlowCommandInput, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
90
- startFlow(args: StartFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartFlowCommandOutput) => void): void;
91
-
92
- stopFlow(args: StopFlowCommandInput, options?: __HttpHandlerOptions): Promise<StopFlowCommandOutput>;
93
- stopFlow(args: StopFlowCommandInput, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
94
- stopFlow(args: StopFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopFlowCommandOutput) => void): void;
95
-
96
- tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
97
- tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
98
- tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
99
-
100
- unregisterConnector(args: UnregisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UnregisterConnectorCommandOutput>;
101
- unregisterConnector(args: UnregisterConnectorCommandInput, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
102
- unregisterConnector(args: UnregisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
103
-
104
- untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
105
- untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
106
- untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
107
-
108
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<UpdateConnectorProfileCommandOutput>;
109
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void): void;
110
- updateConnectorProfile(args: UpdateConnectorProfileCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void): void;
111
-
112
- updateFlow(args: UpdateFlowCommandInput, options?: __HttpHandlerOptions): Promise<UpdateFlowCommandOutput>;
113
- updateFlow(args: UpdateFlowCommandInput, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
114
- updateFlow(args: UpdateFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateFlowCommandOutput) => void): void;
115
- }
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
2
+ import { AppflowClient } from "./AppflowClient";
3
+ import {
4
+ CreateConnectorProfileCommandInput,
5
+ CreateConnectorProfileCommandOutput,
6
+ } from "./commands/CreateConnectorProfileCommand";
7
+ import {
8
+ CreateFlowCommandInput,
9
+ CreateFlowCommandOutput,
10
+ } from "./commands/CreateFlowCommand";
11
+ import {
12
+ DeleteConnectorProfileCommandInput,
13
+ DeleteConnectorProfileCommandOutput,
14
+ } from "./commands/DeleteConnectorProfileCommand";
15
+ import {
16
+ DeleteFlowCommandInput,
17
+ DeleteFlowCommandOutput,
18
+ } from "./commands/DeleteFlowCommand";
19
+ import {
20
+ DescribeConnectorCommandInput,
21
+ DescribeConnectorCommandOutput,
22
+ } from "./commands/DescribeConnectorCommand";
23
+ import {
24
+ DescribeConnectorEntityCommandInput,
25
+ DescribeConnectorEntityCommandOutput,
26
+ } from "./commands/DescribeConnectorEntityCommand";
27
+ import {
28
+ DescribeConnectorProfilesCommandInput,
29
+ DescribeConnectorProfilesCommandOutput,
30
+ } from "./commands/DescribeConnectorProfilesCommand";
31
+ import {
32
+ DescribeConnectorsCommandInput,
33
+ DescribeConnectorsCommandOutput,
34
+ } from "./commands/DescribeConnectorsCommand";
35
+ import {
36
+ DescribeFlowCommandInput,
37
+ DescribeFlowCommandOutput,
38
+ } from "./commands/DescribeFlowCommand";
39
+ import {
40
+ DescribeFlowExecutionRecordsCommandInput,
41
+ DescribeFlowExecutionRecordsCommandOutput,
42
+ } from "./commands/DescribeFlowExecutionRecordsCommand";
43
+ import {
44
+ ListConnectorEntitiesCommandInput,
45
+ ListConnectorEntitiesCommandOutput,
46
+ } from "./commands/ListConnectorEntitiesCommand";
47
+ import {
48
+ ListConnectorsCommandInput,
49
+ ListConnectorsCommandOutput,
50
+ } from "./commands/ListConnectorsCommand";
51
+ import {
52
+ ListFlowsCommandInput,
53
+ ListFlowsCommandOutput,
54
+ } from "./commands/ListFlowsCommand";
55
+ import {
56
+ ListTagsForResourceCommandInput,
57
+ ListTagsForResourceCommandOutput,
58
+ } from "./commands/ListTagsForResourceCommand";
59
+ import {
60
+ RegisterConnectorCommandInput,
61
+ RegisterConnectorCommandOutput,
62
+ } from "./commands/RegisterConnectorCommand";
63
+ import {
64
+ StartFlowCommandInput,
65
+ StartFlowCommandOutput,
66
+ } from "./commands/StartFlowCommand";
67
+ import {
68
+ StopFlowCommandInput,
69
+ StopFlowCommandOutput,
70
+ } from "./commands/StopFlowCommand";
71
+ import {
72
+ TagResourceCommandInput,
73
+ TagResourceCommandOutput,
74
+ } from "./commands/TagResourceCommand";
75
+ import {
76
+ UnregisterConnectorCommandInput,
77
+ UnregisterConnectorCommandOutput,
78
+ } from "./commands/UnregisterConnectorCommand";
79
+ import {
80
+ UntagResourceCommandInput,
81
+ UntagResourceCommandOutput,
82
+ } from "./commands/UntagResourceCommand";
83
+ import {
84
+ UpdateConnectorProfileCommandInput,
85
+ UpdateConnectorProfileCommandOutput,
86
+ } from "./commands/UpdateConnectorProfileCommand";
87
+ import {
88
+ UpdateFlowCommandInput,
89
+ UpdateFlowCommandOutput,
90
+ } from "./commands/UpdateFlowCommand";
91
+ export declare class Appflow extends AppflowClient {
92
+ createConnectorProfile(
93
+ args: CreateConnectorProfileCommandInput,
94
+ options?: __HttpHandlerOptions
95
+ ): Promise<CreateConnectorProfileCommandOutput>;
96
+ createConnectorProfile(
97
+ args: CreateConnectorProfileCommandInput,
98
+ cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void
99
+ ): void;
100
+ createConnectorProfile(
101
+ args: CreateConnectorProfileCommandInput,
102
+ options: __HttpHandlerOptions,
103
+ cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void
104
+ ): void;
105
+ createFlow(
106
+ args: CreateFlowCommandInput,
107
+ options?: __HttpHandlerOptions
108
+ ): Promise<CreateFlowCommandOutput>;
109
+ createFlow(
110
+ args: CreateFlowCommandInput,
111
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
112
+ ): void;
113
+ createFlow(
114
+ args: CreateFlowCommandInput,
115
+ options: __HttpHandlerOptions,
116
+ cb: (err: any, data?: CreateFlowCommandOutput) => void
117
+ ): void;
118
+ deleteConnectorProfile(
119
+ args: DeleteConnectorProfileCommandInput,
120
+ options?: __HttpHandlerOptions
121
+ ): Promise<DeleteConnectorProfileCommandOutput>;
122
+ deleteConnectorProfile(
123
+ args: DeleteConnectorProfileCommandInput,
124
+ cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void
125
+ ): void;
126
+ deleteConnectorProfile(
127
+ args: DeleteConnectorProfileCommandInput,
128
+ options: __HttpHandlerOptions,
129
+ cb: (err: any, data?: DeleteConnectorProfileCommandOutput) => void
130
+ ): void;
131
+ deleteFlow(
132
+ args: DeleteFlowCommandInput,
133
+ options?: __HttpHandlerOptions
134
+ ): Promise<DeleteFlowCommandOutput>;
135
+ deleteFlow(
136
+ args: DeleteFlowCommandInput,
137
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
138
+ ): void;
139
+ deleteFlow(
140
+ args: DeleteFlowCommandInput,
141
+ options: __HttpHandlerOptions,
142
+ cb: (err: any, data?: DeleteFlowCommandOutput) => void
143
+ ): void;
144
+ describeConnector(
145
+ args: DescribeConnectorCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<DescribeConnectorCommandOutput>;
148
+ describeConnector(
149
+ args: DescribeConnectorCommandInput,
150
+ cb: (err: any, data?: DescribeConnectorCommandOutput) => void
151
+ ): void;
152
+ describeConnector(
153
+ args: DescribeConnectorCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: DescribeConnectorCommandOutput) => void
156
+ ): void;
157
+ describeConnectorEntity(
158
+ args: DescribeConnectorEntityCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<DescribeConnectorEntityCommandOutput>;
161
+ describeConnectorEntity(
162
+ args: DescribeConnectorEntityCommandInput,
163
+ cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void
164
+ ): void;
165
+ describeConnectorEntity(
166
+ args: DescribeConnectorEntityCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: DescribeConnectorEntityCommandOutput) => void
169
+ ): void;
170
+ describeConnectorProfiles(
171
+ args: DescribeConnectorProfilesCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<DescribeConnectorProfilesCommandOutput>;
174
+ describeConnectorProfiles(
175
+ args: DescribeConnectorProfilesCommandInput,
176
+ cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void
177
+ ): void;
178
+ describeConnectorProfiles(
179
+ args: DescribeConnectorProfilesCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: DescribeConnectorProfilesCommandOutput) => void
182
+ ): void;
183
+ describeConnectors(
184
+ args: DescribeConnectorsCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<DescribeConnectorsCommandOutput>;
187
+ describeConnectors(
188
+ args: DescribeConnectorsCommandInput,
189
+ cb: (err: any, data?: DescribeConnectorsCommandOutput) => void
190
+ ): void;
191
+ describeConnectors(
192
+ args: DescribeConnectorsCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: DescribeConnectorsCommandOutput) => void
195
+ ): void;
196
+ describeFlow(
197
+ args: DescribeFlowCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<DescribeFlowCommandOutput>;
200
+ describeFlow(
201
+ args: DescribeFlowCommandInput,
202
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
203
+ ): void;
204
+ describeFlow(
205
+ args: DescribeFlowCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: DescribeFlowCommandOutput) => void
208
+ ): void;
209
+ describeFlowExecutionRecords(
210
+ args: DescribeFlowExecutionRecordsCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<DescribeFlowExecutionRecordsCommandOutput>;
213
+ describeFlowExecutionRecords(
214
+ args: DescribeFlowExecutionRecordsCommandInput,
215
+ cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void
216
+ ): void;
217
+ describeFlowExecutionRecords(
218
+ args: DescribeFlowExecutionRecordsCommandInput,
219
+ options: __HttpHandlerOptions,
220
+ cb: (err: any, data?: DescribeFlowExecutionRecordsCommandOutput) => void
221
+ ): void;
222
+ listConnectorEntities(
223
+ args: ListConnectorEntitiesCommandInput,
224
+ options?: __HttpHandlerOptions
225
+ ): Promise<ListConnectorEntitiesCommandOutput>;
226
+ listConnectorEntities(
227
+ args: ListConnectorEntitiesCommandInput,
228
+ cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void
229
+ ): void;
230
+ listConnectorEntities(
231
+ args: ListConnectorEntitiesCommandInput,
232
+ options: __HttpHandlerOptions,
233
+ cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void
234
+ ): void;
235
+ listConnectors(
236
+ args: ListConnectorsCommandInput,
237
+ options?: __HttpHandlerOptions
238
+ ): Promise<ListConnectorsCommandOutput>;
239
+ listConnectors(
240
+ args: ListConnectorsCommandInput,
241
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
242
+ ): void;
243
+ listConnectors(
244
+ args: ListConnectorsCommandInput,
245
+ options: __HttpHandlerOptions,
246
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
247
+ ): void;
248
+ listFlows(
249
+ args: ListFlowsCommandInput,
250
+ options?: __HttpHandlerOptions
251
+ ): Promise<ListFlowsCommandOutput>;
252
+ listFlows(
253
+ args: ListFlowsCommandInput,
254
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
255
+ ): void;
256
+ listFlows(
257
+ args: ListFlowsCommandInput,
258
+ options: __HttpHandlerOptions,
259
+ cb: (err: any, data?: ListFlowsCommandOutput) => void
260
+ ): void;
261
+ listTagsForResource(
262
+ args: ListTagsForResourceCommandInput,
263
+ options?: __HttpHandlerOptions
264
+ ): Promise<ListTagsForResourceCommandOutput>;
265
+ listTagsForResource(
266
+ args: ListTagsForResourceCommandInput,
267
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
268
+ ): void;
269
+ listTagsForResource(
270
+ args: ListTagsForResourceCommandInput,
271
+ options: __HttpHandlerOptions,
272
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
273
+ ): void;
274
+ registerConnector(
275
+ args: RegisterConnectorCommandInput,
276
+ options?: __HttpHandlerOptions
277
+ ): Promise<RegisterConnectorCommandOutput>;
278
+ registerConnector(
279
+ args: RegisterConnectorCommandInput,
280
+ cb: (err: any, data?: RegisterConnectorCommandOutput) => void
281
+ ): void;
282
+ registerConnector(
283
+ args: RegisterConnectorCommandInput,
284
+ options: __HttpHandlerOptions,
285
+ cb: (err: any, data?: RegisterConnectorCommandOutput) => void
286
+ ): void;
287
+ startFlow(
288
+ args: StartFlowCommandInput,
289
+ options?: __HttpHandlerOptions
290
+ ): Promise<StartFlowCommandOutput>;
291
+ startFlow(
292
+ args: StartFlowCommandInput,
293
+ cb: (err: any, data?: StartFlowCommandOutput) => void
294
+ ): void;
295
+ startFlow(
296
+ args: StartFlowCommandInput,
297
+ options: __HttpHandlerOptions,
298
+ cb: (err: any, data?: StartFlowCommandOutput) => void
299
+ ): void;
300
+ stopFlow(
301
+ args: StopFlowCommandInput,
302
+ options?: __HttpHandlerOptions
303
+ ): Promise<StopFlowCommandOutput>;
304
+ stopFlow(
305
+ args: StopFlowCommandInput,
306
+ cb: (err: any, data?: StopFlowCommandOutput) => void
307
+ ): void;
308
+ stopFlow(
309
+ args: StopFlowCommandInput,
310
+ options: __HttpHandlerOptions,
311
+ cb: (err: any, data?: StopFlowCommandOutput) => void
312
+ ): void;
313
+ tagResource(
314
+ args: TagResourceCommandInput,
315
+ options?: __HttpHandlerOptions
316
+ ): Promise<TagResourceCommandOutput>;
317
+ tagResource(
318
+ args: TagResourceCommandInput,
319
+ cb: (err: any, data?: TagResourceCommandOutput) => void
320
+ ): void;
321
+ tagResource(
322
+ args: TagResourceCommandInput,
323
+ options: __HttpHandlerOptions,
324
+ cb: (err: any, data?: TagResourceCommandOutput) => void
325
+ ): void;
326
+ unregisterConnector(
327
+ args: UnregisterConnectorCommandInput,
328
+ options?: __HttpHandlerOptions
329
+ ): Promise<UnregisterConnectorCommandOutput>;
330
+ unregisterConnector(
331
+ args: UnregisterConnectorCommandInput,
332
+ cb: (err: any, data?: UnregisterConnectorCommandOutput) => void
333
+ ): void;
334
+ unregisterConnector(
335
+ args: UnregisterConnectorCommandInput,
336
+ options: __HttpHandlerOptions,
337
+ cb: (err: any, data?: UnregisterConnectorCommandOutput) => void
338
+ ): void;
339
+ untagResource(
340
+ args: UntagResourceCommandInput,
341
+ options?: __HttpHandlerOptions
342
+ ): Promise<UntagResourceCommandOutput>;
343
+ untagResource(
344
+ args: UntagResourceCommandInput,
345
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
346
+ ): void;
347
+ untagResource(
348
+ args: UntagResourceCommandInput,
349
+ options: __HttpHandlerOptions,
350
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
351
+ ): void;
352
+ updateConnectorProfile(
353
+ args: UpdateConnectorProfileCommandInput,
354
+ options?: __HttpHandlerOptions
355
+ ): Promise<UpdateConnectorProfileCommandOutput>;
356
+ updateConnectorProfile(
357
+ args: UpdateConnectorProfileCommandInput,
358
+ cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void
359
+ ): void;
360
+ updateConnectorProfile(
361
+ args: UpdateConnectorProfileCommandInput,
362
+ options: __HttpHandlerOptions,
363
+ cb: (err: any, data?: UpdateConnectorProfileCommandOutput) => void
364
+ ): void;
365
+ updateFlow(
366
+ args: UpdateFlowCommandInput,
367
+ options?: __HttpHandlerOptions
368
+ ): Promise<UpdateFlowCommandOutput>;
369
+ updateFlow(
370
+ args: UpdateFlowCommandInput,
371
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
372
+ ): void;
373
+ updateFlow(
374
+ args: UpdateFlowCommandInput,
375
+ options: __HttpHandlerOptions,
376
+ cb: (err: any, data?: UpdateFlowCommandOutput) => void
377
+ ): void;
378
+ }