@aws-sdk/client-appflow 3.47.2 → 3.51.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.
- package/CHANGELOG.md +35 -0
- package/dist-cjs/Appflow.js +60 -0
- package/dist-cjs/commands/DescribeConnectorCommand.js +36 -0
- package/dist-cjs/commands/ListConnectorsCommand.js +36 -0
- package/dist-cjs/commands/RegisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/UnregisterConnectorCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +226 -16
- package/dist-cjs/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-cjs/pagination/ListConnectorsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_restJson1.js +933 -1
- package/dist-es/Appflow.js +60 -0
- package/dist-es/commands/DescribeConnectorCommand.js +39 -0
- package/dist-es/commands/ListConnectorsCommand.js +39 -0
- package/dist-es/commands/RegisterConnectorCommand.js +39 -0
- package/dist-es/commands/UnregisterConnectorCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +159 -15
- package/dist-es/pagination/DescribeConnectorsPaginator.js +1 -0
- package/dist-es/pagination/ListConnectorsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_restJson1.js +961 -17
- package/dist-types/Appflow.d.ts +38 -4
- package/dist-types/AppflowClient.d.ts +6 -2
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +4 -4
- package/dist-types/commands/DescribeConnectorCommand.d.ts +37 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +37 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +36 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +887 -42
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +12 -0
- package/dist-types/ts3.4/Appflow.d.ts +20 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +491 -16
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +39 -33
package/dist-types/Appflow.d.ts
CHANGED
|
@@ -4,17 +4,21 @@ import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput
|
|
|
4
4
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
5
5
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
6
6
|
import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
7
|
+
import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
|
|
7
8
|
import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
|
|
8
9
|
import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
|
|
9
10
|
import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
|
|
10
11
|
import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
11
12
|
import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
|
|
12
13
|
import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
|
|
14
|
+
import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
|
|
13
15
|
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
14
16
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
17
|
+
import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
|
|
15
18
|
import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
16
19
|
import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
17
20
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
21
|
+
import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
|
|
18
22
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
19
23
|
import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
|
|
20
24
|
import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
@@ -63,10 +67,10 @@ import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/Upda
|
|
|
63
67
|
*/
|
|
64
68
|
export declare class Appflow extends AppflowClient {
|
|
65
69
|
/**
|
|
66
|
-
* <p> Creates a new connector profile associated with your Amazon Web Services account. There
|
|
67
|
-
* of 100 connector profiles per Amazon Web Services account. If you need more
|
|
68
|
-
* allows, you can submit a request to the Amazon AppFlow team
|
|
69
|
-
* channel. </p>
|
|
70
|
+
* <p> Creates a new connector profile associated with your Amazon Web Services account. There
|
|
71
|
+
* is a soft quota of 100 connector profiles per Amazon Web Services account. If you need more
|
|
72
|
+
* connector profiles than this quota allows, you can submit a request to the Amazon AppFlow team
|
|
73
|
+
* through the Amazon AppFlow support channel. </p>
|
|
70
74
|
*/
|
|
71
75
|
createConnectorProfile(args: CreateConnectorProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateConnectorProfileCommandOutput>;
|
|
72
76
|
createConnectorProfile(args: CreateConnectorProfileCommandInput, cb: (err: any, data?: CreateConnectorProfileCommandOutput) => void): void;
|
|
@@ -94,6 +98,14 @@ export declare class Appflow extends AppflowClient {
|
|
|
94
98
|
deleteFlow(args: DeleteFlowCommandInput, options?: __HttpHandlerOptions): Promise<DeleteFlowCommandOutput>;
|
|
95
99
|
deleteFlow(args: DeleteFlowCommandInput, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
96
100
|
deleteFlow(args: DeleteFlowCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteFlowCommandOutput) => void): void;
|
|
101
|
+
/**
|
|
102
|
+
* <p>Describes the given custom connector registered in your Amazon Web Services account. This
|
|
103
|
+
* API can be used for custom connectors that are registered in your account and also for Amazon
|
|
104
|
+
* authored connectors.</p>
|
|
105
|
+
*/
|
|
106
|
+
describeConnector(args: DescribeConnectorCommandInput, options?: __HttpHandlerOptions): Promise<DescribeConnectorCommandOutput>;
|
|
107
|
+
describeConnector(args: DescribeConnectorCommandInput, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
108
|
+
describeConnector(args: DescribeConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeConnectorCommandOutput) => void): void;
|
|
97
109
|
/**
|
|
98
110
|
* <p> Provides details regarding the entity used with the connector, with a description of the
|
|
99
111
|
* data model for each entity. </p>
|
|
@@ -142,6 +154,14 @@ export declare class Appflow extends AppflowClient {
|
|
|
142
154
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorEntitiesCommandOutput>;
|
|
143
155
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
|
|
144
156
|
listConnectorEntities(args: ListConnectorEntitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorEntitiesCommandOutput) => void): void;
|
|
157
|
+
/**
|
|
158
|
+
* <p>Returns the list of all registered custom connectors in your Amazon Web Services account.
|
|
159
|
+
* This API lists only custom connectors registered in this account, not the Amazon Web Services
|
|
160
|
+
* authored connectors. </p>
|
|
161
|
+
*/
|
|
162
|
+
listConnectors(args: ListConnectorsCommandInput, options?: __HttpHandlerOptions): Promise<ListConnectorsCommandOutput>;
|
|
163
|
+
listConnectors(args: ListConnectorsCommandInput, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
164
|
+
listConnectors(args: ListConnectorsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectorsCommandOutput) => void): void;
|
|
145
165
|
/**
|
|
146
166
|
* <p> Lists all of the flows associated with your account. </p>
|
|
147
167
|
*/
|
|
@@ -154,6 +174,13 @@ export declare class Appflow extends AppflowClient {
|
|
|
154
174
|
listTagsForResource(args: ListTagsForResourceCommandInput, options?: __HttpHandlerOptions): Promise<ListTagsForResourceCommandOutput>;
|
|
155
175
|
listTagsForResource(args: ListTagsForResourceCommandInput, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
156
176
|
listTagsForResource(args: ListTagsForResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListTagsForResourceCommandOutput) => void): void;
|
|
177
|
+
/**
|
|
178
|
+
* <p>Registers a new connector with your Amazon Web Services account. Before you can register
|
|
179
|
+
* the connector, you must deploy lambda in your account.</p>
|
|
180
|
+
*/
|
|
181
|
+
registerConnector(args: RegisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<RegisterConnectorCommandOutput>;
|
|
182
|
+
registerConnector(args: RegisterConnectorCommandInput, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
|
|
183
|
+
registerConnector(args: RegisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: RegisterConnectorCommandOutput) => void): void;
|
|
157
184
|
/**
|
|
158
185
|
* <p> Activates an existing flow. For on-demand flows, this operation runs the flow
|
|
159
186
|
* immediately. For schedule and event-triggered flows, this operation activates the flow. </p>
|
|
@@ -175,6 +202,13 @@ export declare class Appflow extends AppflowClient {
|
|
|
175
202
|
tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
|
|
176
203
|
tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
177
204
|
tagResource(args: TagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
|
|
205
|
+
/**
|
|
206
|
+
* <p>Unregisters the custom connector registered in your account that matches the
|
|
207
|
+
* connectorLabel provided in the request.</p>
|
|
208
|
+
*/
|
|
209
|
+
unregisterConnector(args: UnregisterConnectorCommandInput, options?: __HttpHandlerOptions): Promise<UnregisterConnectorCommandOutput>;
|
|
210
|
+
unregisterConnector(args: UnregisterConnectorCommandInput, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
|
|
211
|
+
unregisterConnector(args: UnregisterConnectorCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UnregisterConnectorCommandOutput) => void): void;
|
|
178
212
|
/**
|
|
179
213
|
* <p> Removes a tag from the specified flow. </p>
|
|
180
214
|
*/
|
|
@@ -10,22 +10,26 @@ import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput
|
|
|
10
10
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
11
11
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
12
12
|
import { DeleteFlowCommandInput, DeleteFlowCommandOutput } from "./commands/DeleteFlowCommand";
|
|
13
|
+
import { DescribeConnectorCommandInput, DescribeConnectorCommandOutput } from "./commands/DescribeConnectorCommand";
|
|
13
14
|
import { DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput } from "./commands/DescribeConnectorEntityCommand";
|
|
14
15
|
import { DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput } from "./commands/DescribeConnectorProfilesCommand";
|
|
15
16
|
import { DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput } from "./commands/DescribeConnectorsCommand";
|
|
16
17
|
import { DescribeFlowCommandInput, DescribeFlowCommandOutput } from "./commands/DescribeFlowCommand";
|
|
17
18
|
import { DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput } from "./commands/DescribeFlowExecutionRecordsCommand";
|
|
18
19
|
import { ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput } from "./commands/ListConnectorEntitiesCommand";
|
|
20
|
+
import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "./commands/ListConnectorsCommand";
|
|
19
21
|
import { ListFlowsCommandInput, ListFlowsCommandOutput } from "./commands/ListFlowsCommand";
|
|
20
22
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
23
|
+
import { RegisterConnectorCommandInput, RegisterConnectorCommandOutput } from "./commands/RegisterConnectorCommand";
|
|
21
24
|
import { StartFlowCommandInput, StartFlowCommandOutput } from "./commands/StartFlowCommand";
|
|
22
25
|
import { StopFlowCommandInput, StopFlowCommandOutput } from "./commands/StopFlowCommand";
|
|
23
26
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
27
|
+
import { UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput } from "./commands/UnregisterConnectorCommand";
|
|
24
28
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
25
29
|
import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput } from "./commands/UpdateConnectorProfileCommand";
|
|
26
30
|
import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
27
|
-
export declare type ServiceInputTypes = CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateFlowCommandInput;
|
|
28
|
-
export declare type ServiceOutputTypes = CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateFlowCommandOutput;
|
|
31
|
+
export declare type ServiceInputTypes = CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListConnectorsCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | RegisterConnectorCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UnregisterConnectorCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateFlowCommandInput;
|
|
32
|
+
export declare type ServiceOutputTypes = CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListConnectorsCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | RegisterConnectorCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UnregisterConnectorCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateFlowCommandOutput;
|
|
29
33
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
30
34
|
/**
|
|
31
35
|
* The HTTP handler to use. Fetch in browser and Https in Nodejs.
|
|
@@ -7,10 +7,10 @@ export interface CreateConnectorProfileCommandInput extends CreateConnectorProfi
|
|
|
7
7
|
export interface CreateConnectorProfileCommandOutput extends CreateConnectorProfileResponse, __MetadataBearer {
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
|
-
* <p> Creates a new connector profile associated with your Amazon Web Services account. There
|
|
11
|
-
* of 100 connector profiles per Amazon Web Services account. If you need more
|
|
12
|
-
* allows, you can submit a request to the Amazon AppFlow team
|
|
13
|
-
* channel. </p>
|
|
10
|
+
* <p> Creates a new connector profile associated with your Amazon Web Services account. There
|
|
11
|
+
* is a soft quota of 100 connector profiles per Amazon Web Services account. If you need more
|
|
12
|
+
* connector profiles than this quota allows, you can submit a request to the Amazon AppFlow team
|
|
13
|
+
* through the Amazon AppFlow support channel. </p>
|
|
14
14
|
* @example
|
|
15
15
|
* Use a bare-bones client and the command you need to make an API call.
|
|
16
16
|
* ```javascript
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
|
|
4
|
+
import { DescribeConnectorRequest, DescribeConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeConnectorCommandInput extends DescribeConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeConnectorCommandOutput extends DescribeConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Describes the given custom connector registered in your Amazon Web Services account. This
|
|
11
|
+
* API can be used for custom connectors that are registered in your account and also for Amazon
|
|
12
|
+
* authored connectors.</p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { AppflowClient, DescribeConnectorCommand } from "@aws-sdk/client-appflow"; // ES Modules import
|
|
17
|
+
* // const { AppflowClient, DescribeConnectorCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
|
|
18
|
+
* const client = new AppflowClient(config);
|
|
19
|
+
* const command = new DescribeConnectorCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link DescribeConnectorCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link DescribeConnectorCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
29
|
+
readonly input: DescribeConnectorCommandInput;
|
|
30
|
+
constructor(input: DescribeConnectorCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorCommandInput, DescribeConnectorCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
|
|
4
|
+
import { ListConnectorsRequest, ListConnectorsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListConnectorsCommandInput extends ListConnectorsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Returns the list of all registered custom connectors in your Amazon Web Services account.
|
|
11
|
+
* This API lists only custom connectors registered in this account, not the Amazon Web Services
|
|
12
|
+
* authored connectors. </p>
|
|
13
|
+
* @example
|
|
14
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
15
|
+
* ```javascript
|
|
16
|
+
* import { AppflowClient, ListConnectorsCommand } from "@aws-sdk/client-appflow"; // ES Modules import
|
|
17
|
+
* // const { AppflowClient, ListConnectorsCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
|
|
18
|
+
* const client = new AppflowClient(config);
|
|
19
|
+
* const command = new ListConnectorsCommand(input);
|
|
20
|
+
* const response = await client.send(command);
|
|
21
|
+
* ```
|
|
22
|
+
*
|
|
23
|
+
* @see {@link ListConnectorsCommandInput} for command's `input` shape.
|
|
24
|
+
* @see {@link ListConnectorsCommandOutput} for command's `response` shape.
|
|
25
|
+
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig> {
|
|
29
|
+
readonly input: ListConnectorsCommandInput;
|
|
30
|
+
constructor(input: ListConnectorsCommandInput);
|
|
31
|
+
/**
|
|
32
|
+
* @internal
|
|
33
|
+
*/
|
|
34
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
|
|
4
|
+
import { RegisterConnectorRequest, RegisterConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface RegisterConnectorCommandInput extends RegisterConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface RegisterConnectorCommandOutput extends RegisterConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Registers a new connector with your Amazon Web Services account. Before you can register
|
|
11
|
+
* the connector, you must deploy lambda in your account.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { AppflowClient, RegisterConnectorCommand } from "@aws-sdk/client-appflow"; // ES Modules import
|
|
16
|
+
* // const { AppflowClient, RegisterConnectorCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
|
|
17
|
+
* const client = new AppflowClient(config);
|
|
18
|
+
* const command = new RegisterConnectorCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link RegisterConnectorCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link RegisterConnectorCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class RegisterConnectorCommand extends $Command<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
28
|
+
readonly input: RegisterConnectorCommandInput;
|
|
29
|
+
constructor(input: RegisterConnectorCommandInput);
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterConnectorCommandInput, RegisterConnectorCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
|
|
4
|
+
import { UnregisterConnectorRequest, UnregisterConnectorResponse } from "../models/models_0";
|
|
5
|
+
export interface UnregisterConnectorCommandInput extends UnregisterConnectorRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface UnregisterConnectorCommandOutput extends UnregisterConnectorResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* <p>Unregisters the custom connector registered in your account that matches the
|
|
11
|
+
* connectorLabel provided in the request.</p>
|
|
12
|
+
* @example
|
|
13
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
14
|
+
* ```javascript
|
|
15
|
+
* import { AppflowClient, UnregisterConnectorCommand } from "@aws-sdk/client-appflow"; // ES Modules import
|
|
16
|
+
* // const { AppflowClient, UnregisterConnectorCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
|
|
17
|
+
* const client = new AppflowClient(config);
|
|
18
|
+
* const command = new UnregisterConnectorCommand(input);
|
|
19
|
+
* const response = await client.send(command);
|
|
20
|
+
* ```
|
|
21
|
+
*
|
|
22
|
+
* @see {@link UnregisterConnectorCommandInput} for command's `input` shape.
|
|
23
|
+
* @see {@link UnregisterConnectorCommandOutput} for command's `response` shape.
|
|
24
|
+
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
export declare class UnregisterConnectorCommand extends $Command<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
28
|
+
readonly input: UnregisterConnectorCommandInput;
|
|
29
|
+
constructor(input: UnregisterConnectorCommandInput);
|
|
30
|
+
/**
|
|
31
|
+
* @internal
|
|
32
|
+
*/
|
|
33
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput>;
|
|
34
|
+
private serialize;
|
|
35
|
+
private deserialize;
|
|
36
|
+
}
|
|
@@ -2,17 +2,21 @@ export * from "./CreateConnectorProfileCommand";
|
|
|
2
2
|
export * from "./CreateFlowCommand";
|
|
3
3
|
export * from "./DeleteConnectorProfileCommand";
|
|
4
4
|
export * from "./DeleteFlowCommand";
|
|
5
|
+
export * from "./DescribeConnectorCommand";
|
|
5
6
|
export * from "./DescribeConnectorEntityCommand";
|
|
6
7
|
export * from "./DescribeConnectorProfilesCommand";
|
|
7
8
|
export * from "./DescribeConnectorsCommand";
|
|
8
9
|
export * from "./DescribeFlowCommand";
|
|
9
10
|
export * from "./DescribeFlowExecutionRecordsCommand";
|
|
10
11
|
export * from "./ListConnectorEntitiesCommand";
|
|
12
|
+
export * from "./ListConnectorsCommand";
|
|
11
13
|
export * from "./ListFlowsCommand";
|
|
12
14
|
export * from "./ListTagsForResourceCommand";
|
|
15
|
+
export * from "./RegisterConnectorCommand";
|
|
13
16
|
export * from "./StartFlowCommand";
|
|
14
17
|
export * from "./StopFlowCommand";
|
|
15
18
|
export * from "./TagResourceCommand";
|
|
19
|
+
export * from "./UnregisterConnectorCommand";
|
|
16
20
|
export * from "./UntagResourceCommand";
|
|
17
21
|
export * from "./UpdateConnectorProfileCommand";
|
|
18
22
|
export * from "./UpdateFlowCommand";
|