@aws-sdk/client-appflow 3.50.0 → 3.53.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 (55) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/dist-cjs/index.js +3 -0
  3. package/dist-cjs/models/AppflowServiceException.js +11 -0
  4. package/dist-cjs/models/models_0.js +149 -5
  5. package/dist-cjs/protocols/Aws_restJson1.js +346 -829
  6. package/dist-es/index.js +1 -0
  7. package/dist-es/models/AppflowServiceException.js +12 -0
  8. package/dist-es/models/models_0.js +131 -1
  9. package/dist-es/protocols/Aws_restJson1.js +580 -930
  10. package/dist-types/index.d.ts +1 -0
  11. package/dist-types/models/AppflowServiceException.d.ts +10 -0
  12. package/dist-types/models/models_0.d.ts +140 -41
  13. package/dist-types/ts3.4/Appflow.d.ts +115 -0
  14. package/dist-types/ts3.4/AppflowClient.d.ts +95 -0
  15. package/dist-types/ts3.4/commands/CreateConnectorProfileCommand.d.ts +17 -0
  16. package/dist-types/ts3.4/commands/CreateFlowCommand.d.ts +17 -0
  17. package/dist-types/ts3.4/commands/DeleteConnectorProfileCommand.d.ts +17 -0
  18. package/dist-types/ts3.4/commands/DeleteFlowCommand.d.ts +17 -0
  19. package/dist-types/ts3.4/commands/DescribeConnectorCommand.d.ts +17 -0
  20. package/dist-types/ts3.4/commands/DescribeConnectorEntityCommand.d.ts +17 -0
  21. package/dist-types/ts3.4/commands/DescribeConnectorProfilesCommand.d.ts +17 -0
  22. package/dist-types/ts3.4/commands/DescribeConnectorsCommand.d.ts +17 -0
  23. package/dist-types/ts3.4/commands/DescribeFlowCommand.d.ts +17 -0
  24. package/dist-types/ts3.4/commands/DescribeFlowExecutionRecordsCommand.d.ts +17 -0
  25. package/dist-types/ts3.4/commands/ListConnectorEntitiesCommand.d.ts +17 -0
  26. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +17 -0
  27. package/dist-types/ts3.4/commands/ListFlowsCommand.d.ts +17 -0
  28. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +17 -0
  29. package/dist-types/ts3.4/commands/RegisterConnectorCommand.d.ts +17 -0
  30. package/dist-types/ts3.4/commands/StartFlowCommand.d.ts +17 -0
  31. package/dist-types/ts3.4/commands/StopFlowCommand.d.ts +17 -0
  32. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +17 -0
  33. package/dist-types/ts3.4/commands/UnregisterConnectorCommand.d.ts +17 -0
  34. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +17 -0
  35. package/dist-types/ts3.4/commands/UpdateConnectorProfileCommand.d.ts +17 -0
  36. package/dist-types/ts3.4/commands/UpdateFlowCommand.d.ts +17 -0
  37. package/dist-types/ts3.4/commands/index.d.ts +22 -0
  38. package/dist-types/ts3.4/endpoints.d.ts +2 -0
  39. package/dist-types/ts3.4/index.d.ts +6 -0
  40. package/dist-types/ts3.4/models/AppflowServiceException.d.ts +6 -0
  41. package/dist-types/ts3.4/models/index.d.ts +1 -0
  42. package/dist-types/ts3.4/models/models_0.d.ts +2897 -0
  43. package/dist-types/ts3.4/pagination/DescribeConnectorProfilesPaginator.d.ts +4 -0
  44. package/dist-types/ts3.4/pagination/DescribeConnectorsPaginator.d.ts +4 -0
  45. package/dist-types/ts3.4/pagination/DescribeFlowExecutionRecordsPaginator.d.ts +4 -0
  46. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  47. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +4 -0
  48. package/dist-types/ts3.4/pagination/ListFlowsPaginator.d.ts +4 -0
  49. package/dist-types/ts3.4/pagination/index.d.ts +6 -0
  50. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +68 -0
  51. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +38 -0
  52. package/dist-types/ts3.4/runtimeConfig.d.ts +38 -0
  53. package/dist-types/ts3.4/runtimeConfig.native.d.ts +37 -0
  54. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +11 -0
  55. package/package.json +33 -33
@@ -0,0 +1,17 @@
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 { DescribeConnectorsRequest, DescribeConnectorsResponse } from "../models/models_0";
5
+ export interface DescribeConnectorsCommandInput extends DescribeConnectorsRequest {
6
+ }
7
+ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeConnectorsCommand extends $Command<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: DescribeConnectorsCommandInput;
12
+ constructor(input: DescribeConnectorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DescribeFlowRequest, DescribeFlowResponse } from "../models/models_0";
5
+ export interface DescribeFlowCommandInput extends DescribeFlowRequest {
6
+ }
7
+ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: DescribeFlowCommandInput;
12
+ constructor(input: DescribeFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlowCommandInput, DescribeFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { DescribeFlowExecutionRecordsRequest, DescribeFlowExecutionRecordsResponse } from "../models/models_0";
5
+ export interface DescribeFlowExecutionRecordsCommandInput extends DescribeFlowExecutionRecordsRequest {
6
+ }
7
+ export interface DescribeFlowExecutionRecordsCommandOutput extends DescribeFlowExecutionRecordsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class DescribeFlowExecutionRecordsCommand extends $Command<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: DescribeFlowExecutionRecordsCommandInput;
12
+ constructor(input: DescribeFlowExecutionRecordsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListConnectorEntitiesRequest, ListConnectorEntitiesResponse } from "../models/models_0";
5
+ export interface ListConnectorEntitiesCommandInput extends ListConnectorEntitiesRequest {
6
+ }
7
+ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitiesResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListConnectorEntitiesCommand extends $Command<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: ListConnectorEntitiesCommandInput;
12
+ constructor(input: ListConnectorEntitiesCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: ListConnectorsCommandInput;
12
+ constructor(input: ListConnectorsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListConnectorsCommandInput, ListConnectorsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListFlowsRequest, ListFlowsResponse } from "../models/models_0";
5
+ export interface ListFlowsCommandInput extends ListFlowsRequest {
6
+ }
7
+ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: ListFlowsCommandInput;
12
+ constructor(input: ListFlowsCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListFlowsCommandInput, ListFlowsCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { ListTagsForResourceRequest, ListTagsForResourceResponse } from "../models/models_0";
5
+ export interface ListTagsForResourceCommandInput extends ListTagsForResourceRequest {
6
+ }
7
+ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: ListTagsForResourceCommandInput;
12
+ constructor(input: ListTagsForResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class RegisterConnectorCommand extends $Command<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: RegisterConnectorCommandInput;
12
+ constructor(input: RegisterConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<RegisterConnectorCommandInput, RegisterConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { StartFlowRequest, StartFlowResponse } from "../models/models_0";
5
+ export interface StartFlowCommandInput extends StartFlowRequest {
6
+ }
7
+ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: StartFlowCommandInput;
12
+ constructor(input: StartFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StartFlowCommandInput, StartFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { StopFlowRequest, StopFlowResponse } from "../models/models_0";
5
+ export interface StopFlowCommandInput extends StopFlowRequest {
6
+ }
7
+ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: StopFlowCommandInput;
12
+ constructor(input: StopFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<StopFlowCommandInput, StopFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { TagResourceRequest, TagResourceResponse } from "../models/models_0";
5
+ export interface TagResourceCommandInput extends TagResourceRequest {
6
+ }
7
+ export interface TagResourceCommandOutput extends TagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: TagResourceCommandInput;
12
+ constructor(input: TagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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
+ export declare class UnregisterConnectorCommand extends $Command<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: UnregisterConnectorCommandInput;
12
+ constructor(input: UnregisterConnectorCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UntagResourceRequest, UntagResourceResponse } from "../models/models_0";
5
+ export interface UntagResourceCommandInput extends UntagResourceRequest {
6
+ }
7
+ export interface UntagResourceCommandOutput extends UntagResourceResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: UntagResourceCommandInput;
12
+ constructor(input: UntagResourceCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UpdateConnectorProfileRequest, UpdateConnectorProfileResponse } from "../models/models_0";
5
+ export interface UpdateConnectorProfileCommandInput extends UpdateConnectorProfileRequest {
6
+ }
7
+ export interface UpdateConnectorProfileCommandOutput extends UpdateConnectorProfileResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateConnectorProfileCommand extends $Command<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: UpdateConnectorProfileCommandInput;
12
+ constructor(input: UpdateConnectorProfileCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,17 @@
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 { UpdateFlowRequest, UpdateFlowResponse } from "../models/models_0";
5
+ export interface UpdateFlowCommandInput extends UpdateFlowRequest {
6
+ }
7
+ export interface UpdateFlowCommandOutput extends UpdateFlowResponse, __MetadataBearer {
8
+ }
9
+
10
+ export declare class UpdateFlowCommand extends $Command<UpdateFlowCommandInput, UpdateFlowCommandOutput, AppflowClientResolvedConfig> {
11
+ readonly input: UpdateFlowCommandInput;
12
+ constructor(input: UpdateFlowCommandInput);
13
+
14
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<UpdateFlowCommandInput, UpdateFlowCommandOutput>;
15
+ private serialize;
16
+ private deserialize;
17
+ }
@@ -0,0 +1,22 @@
1
+ export * from "./CreateConnectorProfileCommand";
2
+ export * from "./CreateFlowCommand";
3
+ export * from "./DeleteConnectorProfileCommand";
4
+ export * from "./DeleteFlowCommand";
5
+ export * from "./DescribeConnectorCommand";
6
+ export * from "./DescribeConnectorEntityCommand";
7
+ export * from "./DescribeConnectorProfilesCommand";
8
+ export * from "./DescribeConnectorsCommand";
9
+ export * from "./DescribeFlowCommand";
10
+ export * from "./DescribeFlowExecutionRecordsCommand";
11
+ export * from "./ListConnectorEntitiesCommand";
12
+ export * from "./ListConnectorsCommand";
13
+ export * from "./ListFlowsCommand";
14
+ export * from "./ListTagsForResourceCommand";
15
+ export * from "./RegisterConnectorCommand";
16
+ export * from "./StartFlowCommand";
17
+ export * from "./StopFlowCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UnregisterConnectorCommand";
20
+ export * from "./UntagResourceCommand";
21
+ export * from "./UpdateConnectorProfileCommand";
22
+ export * from "./UpdateFlowCommand";
@@ -0,0 +1,2 @@
1
+ import { RegionInfoProvider } from "@aws-sdk/types";
2
+ export declare const defaultRegionInfoProvider: RegionInfoProvider;
@@ -0,0 +1,6 @@
1
+ export * from "./Appflow";
2
+ export * from "./AppflowClient";
3
+ export * from "./commands";
4
+ export * from "./models";
5
+ export * from "./pagination";
6
+ export { AppflowServiceException } from "./models/AppflowServiceException";
@@ -0,0 +1,6 @@
1
+ import { ServiceException as __ServiceException, ServiceExceptionOptions as __ServiceExceptionOptions } from "@aws-sdk/smithy-client";
2
+
3
+ export declare class AppflowServiceException extends __ServiceException {
4
+
5
+ constructor(options: __ServiceExceptionOptions);
6
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";