@aws-sdk/client-appflow 3.323.0 → 3.326.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/README.md +15 -7
- package/dist-cjs/Appflow.js +2 -0
- package/dist-cjs/commands/CancelFlowExecutionsCommand.js +45 -0
- package/dist-cjs/commands/index.js +1 -0
- package/dist-cjs/models/models_0.js +56 -54
- package/dist-cjs/protocols/Aws_restJson1.js +69 -1
- package/dist-es/Appflow.js +2 -0
- package/dist-es/commands/CancelFlowExecutionsCommand.js +41 -0
- package/dist-es/commands/index.js +1 -0
- package/dist-es/models/models_0.js +50 -48
- package/dist-es/protocols/Aws_restJson1.js +66 -0
- package/dist-types/Appflow.d.ts +7 -0
- package/dist-types/AppflowClient.d.ts +3 -2
- package/dist-types/commands/CancelFlowExecutionsCommand.d.ts +101 -0
- package/dist-types/commands/CreateConnectorProfileCommand.d.ts +6 -0
- package/dist-types/commands/CreateFlowCommand.d.ts +7 -0
- package/dist-types/commands/DeleteConnectorProfileCommand.d.ts +4 -0
- package/dist-types/commands/DeleteFlowCommand.d.ts +4 -0
- package/dist-types/commands/DescribeConnectorCommand.d.ts +163 -0
- package/dist-types/commands/DescribeConnectorEntityCommand.d.ts +55 -0
- package/dist-types/commands/DescribeConnectorProfilesCommand.d.ts +111 -0
- package/dist-types/commands/DescribeConnectorsCommand.d.ts +183 -0
- package/dist-types/commands/DescribeFlowCommand.d.ts +303 -0
- package/dist-types/commands/DescribeFlowExecutionRecordsCommand.d.ts +41 -0
- package/dist-types/commands/ListConnectorEntitiesCommand.d.ts +15 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +23 -0
- package/dist-types/commands/ListFlowsCommand.d.ts +31 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
- package/dist-types/commands/RegisterConnectorCommand.d.ts +6 -0
- package/dist-types/commands/StartFlowCommand.d.ts +8 -0
- package/dist-types/commands/StopFlowCommand.d.ts +7 -0
- package/dist-types/commands/TagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UnregisterConnectorCommand.d.ts +4 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
- package/dist-types/commands/UpdateConnectorProfileCommand.d.ts +6 -0
- package/dist-types/commands/UpdateConnectorRegistrationCommand.d.ts +6 -0
- package/dist-types/commands/UpdateFlowCommand.d.ts +6 -0
- package/dist-types/commands/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +79 -51
- package/dist-types/protocols/Aws_restJson1.d.ts +9 -0
- package/dist-types/ts3.4/Appflow.d.ts +17 -0
- package/dist-types/ts3.4/AppflowClient.d.ts +6 -0
- package/dist-types/ts3.4/commands/CancelFlowExecutionsCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +37 -28
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +12 -0
- package/package.json +16 -16
package/dist-types/Appflow.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@aws-sdk/types";
|
|
2
2
|
import { AppflowClient } from "./AppflowClient";
|
|
3
|
+
import { CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput } from "./commands/CancelFlowExecutionsCommand";
|
|
3
4
|
import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
|
|
4
5
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
5
6
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
@@ -24,6 +25,12 @@ import { UpdateConnectorProfileCommandInput, UpdateConnectorProfileCommandOutput
|
|
|
24
25
|
import { UpdateConnectorRegistrationCommandInput, UpdateConnectorRegistrationCommandOutput } from "./commands/UpdateConnectorRegistrationCommand";
|
|
25
26
|
import { UpdateFlowCommandInput, UpdateFlowCommandOutput } from "./commands/UpdateFlowCommand";
|
|
26
27
|
export interface Appflow {
|
|
28
|
+
/**
|
|
29
|
+
* @see {@link CancelFlowExecutionsCommand}
|
|
30
|
+
*/
|
|
31
|
+
cancelFlowExecutions(args: CancelFlowExecutionsCommandInput, options?: __HttpHandlerOptions): Promise<CancelFlowExecutionsCommandOutput>;
|
|
32
|
+
cancelFlowExecutions(args: CancelFlowExecutionsCommandInput, cb: (err: any, data?: CancelFlowExecutionsCommandOutput) => void): void;
|
|
33
|
+
cancelFlowExecutions(args: CancelFlowExecutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CancelFlowExecutionsCommandOutput) => void): void;
|
|
27
34
|
/**
|
|
28
35
|
* @see {@link CreateConnectorProfileCommand}
|
|
29
36
|
*/
|
|
@@ -7,6 +7,7 @@ import { UserAgentInputConfig, UserAgentResolvedConfig } from "@aws-sdk/middlewa
|
|
|
7
7
|
import { HttpHandler as __HttpHandler } from "@aws-sdk/protocol-http";
|
|
8
8
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@aws-sdk/smithy-client";
|
|
9
9
|
import { BodyLengthCalculator as __BodyLengthCalculator, ChecksumConstructor as __ChecksumConstructor, Credentials as __Credentials, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@aws-sdk/types";
|
|
10
|
+
import { CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput } from "./commands/CancelFlowExecutionsCommand";
|
|
10
11
|
import { CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput } from "./commands/CreateConnectorProfileCommand";
|
|
11
12
|
import { CreateFlowCommandInput, CreateFlowCommandOutput } from "./commands/CreateFlowCommand";
|
|
12
13
|
import { DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput } from "./commands/DeleteConnectorProfileCommand";
|
|
@@ -34,11 +35,11 @@ import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, Endpoi
|
|
|
34
35
|
/**
|
|
35
36
|
* @public
|
|
36
37
|
*/
|
|
37
|
-
export type ServiceInputTypes = CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListConnectorsCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | RegisterConnectorCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UnregisterConnectorCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateConnectorRegistrationCommandInput | UpdateFlowCommandInput;
|
|
38
|
+
export type ServiceInputTypes = CancelFlowExecutionsCommandInput | CreateConnectorProfileCommandInput | CreateFlowCommandInput | DeleteConnectorProfileCommandInput | DeleteFlowCommandInput | DescribeConnectorCommandInput | DescribeConnectorEntityCommandInput | DescribeConnectorProfilesCommandInput | DescribeConnectorsCommandInput | DescribeFlowCommandInput | DescribeFlowExecutionRecordsCommandInput | ListConnectorEntitiesCommandInput | ListConnectorsCommandInput | ListFlowsCommandInput | ListTagsForResourceCommandInput | RegisterConnectorCommandInput | StartFlowCommandInput | StopFlowCommandInput | TagResourceCommandInput | UnregisterConnectorCommandInput | UntagResourceCommandInput | UpdateConnectorProfileCommandInput | UpdateConnectorRegistrationCommandInput | UpdateFlowCommandInput;
|
|
38
39
|
/**
|
|
39
40
|
* @public
|
|
40
41
|
*/
|
|
41
|
-
export type ServiceOutputTypes = CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListConnectorsCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | RegisterConnectorCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UnregisterConnectorCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateConnectorRegistrationCommandOutput | UpdateFlowCommandOutput;
|
|
42
|
+
export type ServiceOutputTypes = CancelFlowExecutionsCommandOutput | CreateConnectorProfileCommandOutput | CreateFlowCommandOutput | DeleteConnectorProfileCommandOutput | DeleteFlowCommandOutput | DescribeConnectorCommandOutput | DescribeConnectorEntityCommandOutput | DescribeConnectorProfilesCommandOutput | DescribeConnectorsCommandOutput | DescribeFlowCommandOutput | DescribeFlowExecutionRecordsCommandOutput | ListConnectorEntitiesCommandOutput | ListConnectorsCommandOutput | ListFlowsCommandOutput | ListTagsForResourceCommandOutput | RegisterConnectorCommandOutput | StartFlowCommandOutput | StopFlowCommandOutput | TagResourceCommandOutput | UnregisterConnectorCommandOutput | UntagResourceCommandOutput | UpdateConnectorProfileCommandOutput | UpdateConnectorRegistrationCommandOutput | UpdateFlowCommandOutput;
|
|
42
43
|
/**
|
|
43
44
|
* @public
|
|
44
45
|
*/
|
|
@@ -0,0 +1,101 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
4
|
+
import { AppflowClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppflowClient";
|
|
5
|
+
import { CancelFlowExecutionsRequest, CancelFlowExecutionsResponse } from "../models/models_0";
|
|
6
|
+
/**
|
|
7
|
+
* @public
|
|
8
|
+
*
|
|
9
|
+
* The input for {@link CancelFlowExecutionsCommand}.
|
|
10
|
+
*/
|
|
11
|
+
export interface CancelFlowExecutionsCommandInput extends CancelFlowExecutionsRequest {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @public
|
|
15
|
+
*
|
|
16
|
+
* The output of {@link CancelFlowExecutionsCommand}.
|
|
17
|
+
*/
|
|
18
|
+
export interface CancelFlowExecutionsCommandOutput extends CancelFlowExecutionsResponse, __MetadataBearer {
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* @public
|
|
22
|
+
* <p>Cancels active runs for a flow.</p>
|
|
23
|
+
* <p>You can cancel all of the active runs for a flow, or you can cancel specific runs by
|
|
24
|
+
* providing their IDs.</p>
|
|
25
|
+
* <p>You can cancel a flow run only when the run is in progress. You can't cancel a run that
|
|
26
|
+
* has already completed or failed. You also can't cancel a run that's scheduled to occur but
|
|
27
|
+
* hasn't started yet. To prevent a scheduled run, you can deactivate the flow with the
|
|
28
|
+
* <code>StopFlow</code> action.</p>
|
|
29
|
+
* <p>You cannot resume a run after you cancel it.</p>
|
|
30
|
+
* <p>When you send your request, the status for each run becomes <code>CancelStarted</code>.
|
|
31
|
+
* When the cancellation completes, the status becomes <code>Canceled</code>.</p>
|
|
32
|
+
* <note>
|
|
33
|
+
* <p>When you cancel a run, you still incur charges for any data that the run already
|
|
34
|
+
* processed before the cancellation. If the run had already written some data to the flow
|
|
35
|
+
* destination, then that data remains in the destination. If you configured the flow to use a
|
|
36
|
+
* batch API (such as the Salesforce Bulk API 2.0), then the run will finish reading or writing
|
|
37
|
+
* its entire batch of data after the cancellation. For these operations, the data processing
|
|
38
|
+
* charges for Amazon AppFlow apply. For the pricing information, see <a href="http://aws.amazon.com/appflow/pricing/">Amazon AppFlow pricing</a>.</p>
|
|
39
|
+
* </note>
|
|
40
|
+
* @example
|
|
41
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
42
|
+
* ```javascript
|
|
43
|
+
* import { AppflowClient, CancelFlowExecutionsCommand } from "@aws-sdk/client-appflow"; // ES Modules import
|
|
44
|
+
* // const { AppflowClient, CancelFlowExecutionsCommand } = require("@aws-sdk/client-appflow"); // CommonJS import
|
|
45
|
+
* const client = new AppflowClient(config);
|
|
46
|
+
* const input = { // CancelFlowExecutionsRequest
|
|
47
|
+
* flowName: "STRING_VALUE", // required
|
|
48
|
+
* executionIds: [ // ExecutionIds
|
|
49
|
+
* "STRING_VALUE",
|
|
50
|
+
* ],
|
|
51
|
+
* };
|
|
52
|
+
* const command = new CancelFlowExecutionsCommand(input);
|
|
53
|
+
* const response = await client.send(command);
|
|
54
|
+
* ```
|
|
55
|
+
*
|
|
56
|
+
* @param CancelFlowExecutionsCommandInput - {@link CancelFlowExecutionsCommandInput}
|
|
57
|
+
* @returns {@link CancelFlowExecutionsCommandOutput}
|
|
58
|
+
* @see {@link CancelFlowExecutionsCommandInput} for command's `input` shape.
|
|
59
|
+
* @see {@link CancelFlowExecutionsCommandOutput} for command's `response` shape.
|
|
60
|
+
* @see {@link AppflowClientResolvedConfig | config} for AppflowClient's `config` shape.
|
|
61
|
+
*
|
|
62
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
63
|
+
* <p>AppFlow/Requester has invalid or missing permissions.</p>
|
|
64
|
+
*
|
|
65
|
+
* @throws {@link InternalServerException} (server fault)
|
|
66
|
+
* <p> An internal service error occurred during the processing of your request. Try again
|
|
67
|
+
* later. </p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p> The resource specified in the request (such as the source or destination connector
|
|
71
|
+
* profile) is not found. </p>
|
|
72
|
+
*
|
|
73
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
74
|
+
* <p>API calls have exceeded the maximum allowed API request rate per account and per Region.
|
|
75
|
+
* </p>
|
|
76
|
+
*
|
|
77
|
+
* @throws {@link ValidationException} (client fault)
|
|
78
|
+
* <p> The request has invalid or missing parameters. </p>
|
|
79
|
+
*
|
|
80
|
+
*
|
|
81
|
+
*/
|
|
82
|
+
export declare class CancelFlowExecutionsCommand extends $Command<CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput, AppflowClientResolvedConfig> {
|
|
83
|
+
readonly input: CancelFlowExecutionsCommandInput;
|
|
84
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
85
|
+
/**
|
|
86
|
+
* @public
|
|
87
|
+
*/
|
|
88
|
+
constructor(input: CancelFlowExecutionsCommandInput);
|
|
89
|
+
/**
|
|
90
|
+
* @internal
|
|
91
|
+
*/
|
|
92
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppflowClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CancelFlowExecutionsCommandInput, CancelFlowExecutionsCommandOutput>;
|
|
93
|
+
/**
|
|
94
|
+
* @internal
|
|
95
|
+
*/
|
|
96
|
+
private serialize;
|
|
97
|
+
/**
|
|
98
|
+
* @internal
|
|
99
|
+
*/
|
|
100
|
+
private deserialize;
|
|
101
|
+
}
|
|
@@ -267,6 +267,10 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf
|
|
|
267
267
|
* };
|
|
268
268
|
* const command = new CreateConnectorProfileCommand(input);
|
|
269
269
|
* const response = await client.send(command);
|
|
270
|
+
* // { // CreateConnectorProfileResponse
|
|
271
|
+
* // connectorProfileArn: "STRING_VALUE",
|
|
272
|
+
* // };
|
|
273
|
+
*
|
|
270
274
|
* ```
|
|
271
275
|
*
|
|
272
276
|
* @param CreateConnectorProfileCommandInput - {@link CreateConnectorProfileCommandInput}
|
|
@@ -293,6 +297,8 @@ export interface CreateConnectorProfileCommandOutput extends CreateConnectorProf
|
|
|
293
297
|
* @throws {@link ValidationException} (client fault)
|
|
294
298
|
* <p> The request has invalid or missing parameters. </p>
|
|
295
299
|
*
|
|
300
|
+
* @throws {@link AppflowServiceException}
|
|
301
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
296
302
|
*
|
|
297
303
|
*/
|
|
298
304
|
export declare class CreateConnectorProfileCommand extends $Command<CreateConnectorProfileCommandInput, CreateConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -304,6 +304,11 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
304
304
|
* };
|
|
305
305
|
* const command = new CreateFlowCommand(input);
|
|
306
306
|
* const response = await client.send(command);
|
|
307
|
+
* // { // CreateFlowResponse
|
|
308
|
+
* // flowArn: "STRING_VALUE",
|
|
309
|
+
* // flowStatus: "Active" || "Deprecated" || "Deleted" || "Draft" || "Errored" || "Suspended",
|
|
310
|
+
* // };
|
|
311
|
+
*
|
|
307
312
|
* ```
|
|
308
313
|
*
|
|
309
314
|
* @param CreateFlowCommandInput - {@link CreateFlowCommandInput}
|
|
@@ -337,6 +342,8 @@ export interface CreateFlowCommandOutput extends CreateFlowResponse, __MetadataB
|
|
|
337
342
|
* @throws {@link ValidationException} (client fault)
|
|
338
343
|
* <p> The request has invalid or missing parameters. </p>
|
|
339
344
|
*
|
|
345
|
+
* @throws {@link AppflowServiceException}
|
|
346
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
340
347
|
*
|
|
341
348
|
*/
|
|
342
349
|
export declare class CreateFlowCommand extends $Command<CreateFlowCommandInput, CreateFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -32,6 +32,8 @@ export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProf
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new DeleteConnectorProfileCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // {};
|
|
36
|
+
*
|
|
35
37
|
* ```
|
|
36
38
|
*
|
|
37
39
|
* @param DeleteConnectorProfileCommandInput - {@link DeleteConnectorProfileCommandInput}
|
|
@@ -52,6 +54,8 @@ export interface DeleteConnectorProfileCommandOutput extends DeleteConnectorProf
|
|
|
52
54
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
53
55
|
* profile) is not found. </p>
|
|
54
56
|
*
|
|
57
|
+
* @throws {@link AppflowServiceException}
|
|
58
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
55
59
|
*
|
|
56
60
|
*/
|
|
57
61
|
export declare class DeleteConnectorProfileCommand extends $Command<DeleteConnectorProfileCommandInput, DeleteConnectorProfileCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DeleteFlowCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param DeleteFlowCommandInput - {@link DeleteFlowCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface DeleteFlowCommandOutput extends DeleteFlowResponse, __MetadataB
|
|
|
53
55
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
54
56
|
* profile) is not found. </p>
|
|
55
57
|
*
|
|
58
|
+
* @throws {@link AppflowServiceException}
|
|
59
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
56
60
|
*
|
|
57
61
|
*/
|
|
58
62
|
export declare class DeleteFlowCommand extends $Command<DeleteFlowCommandInput, DeleteFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -34,6 +34,167 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new DescribeConnectorCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // DescribeConnectorResponse
|
|
38
|
+
* // connectorConfiguration: { // ConnectorConfiguration
|
|
39
|
+
* // canUseAsSource: true || false,
|
|
40
|
+
* // canUseAsDestination: true || false,
|
|
41
|
+
* // supportedDestinationConnectors: [ // ConnectorTypeList
|
|
42
|
+
* // "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot",
|
|
43
|
+
* // ],
|
|
44
|
+
* // supportedSchedulingFrequencies: [ // SchedulingFrequencyTypeList
|
|
45
|
+
* // "BYMINUTE" || "HOURLY" || "DAILY" || "WEEKLY" || "MONTHLY" || "ONCE",
|
|
46
|
+
* // ],
|
|
47
|
+
* // isPrivateLinkEnabled: true || false,
|
|
48
|
+
* // isPrivateLinkEndpointUrlRequired: true || false,
|
|
49
|
+
* // supportedTriggerTypes: [ // TriggerTypeList
|
|
50
|
+
* // "Scheduled" || "Event" || "OnDemand",
|
|
51
|
+
* // ],
|
|
52
|
+
* // connectorMetadata: { // ConnectorMetadata
|
|
53
|
+
* // Amplitude: {},
|
|
54
|
+
* // Datadog: {},
|
|
55
|
+
* // Dynatrace: {},
|
|
56
|
+
* // GoogleAnalytics: { // GoogleAnalyticsMetadata
|
|
57
|
+
* // oAuthScopes: [ // OAuthScopeList
|
|
58
|
+
* // "STRING_VALUE",
|
|
59
|
+
* // ],
|
|
60
|
+
* // },
|
|
61
|
+
* // InforNexus: {},
|
|
62
|
+
* // Marketo: {},
|
|
63
|
+
* // Redshift: {},
|
|
64
|
+
* // S3: {},
|
|
65
|
+
* // Salesforce: { // SalesforceMetadata
|
|
66
|
+
* // oAuthScopes: [
|
|
67
|
+
* // "STRING_VALUE",
|
|
68
|
+
* // ],
|
|
69
|
+
* // dataTransferApis: [ // SalesforceDataTransferApiList
|
|
70
|
+
* // "AUTOMATIC" || "BULKV2" || "REST_SYNC",
|
|
71
|
+
* // ],
|
|
72
|
+
* // oauth2GrantTypesSupported: [ // OAuth2GrantTypeSupportedList
|
|
73
|
+
* // "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "JWT_BEARER",
|
|
74
|
+
* // ],
|
|
75
|
+
* // },
|
|
76
|
+
* // ServiceNow: {},
|
|
77
|
+
* // Singular: {},
|
|
78
|
+
* // Slack: { // SlackMetadata
|
|
79
|
+
* // oAuthScopes: [
|
|
80
|
+
* // "STRING_VALUE",
|
|
81
|
+
* // ],
|
|
82
|
+
* // },
|
|
83
|
+
* // Snowflake: { // SnowflakeMetadata
|
|
84
|
+
* // supportedRegions: [ // RegionList
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // },
|
|
88
|
+
* // Trendmicro: {},
|
|
89
|
+
* // Veeva: {},
|
|
90
|
+
* // Zendesk: { // ZendeskMetadata
|
|
91
|
+
* // oAuthScopes: [
|
|
92
|
+
* // "STRING_VALUE",
|
|
93
|
+
* // ],
|
|
94
|
+
* // },
|
|
95
|
+
* // EventBridge: {},
|
|
96
|
+
* // Upsolver: {},
|
|
97
|
+
* // CustomerProfiles: {},
|
|
98
|
+
* // Honeycode: { // HoneycodeMetadata
|
|
99
|
+
* // oAuthScopes: [
|
|
100
|
+
* // "STRING_VALUE",
|
|
101
|
+
* // ],
|
|
102
|
+
* // },
|
|
103
|
+
* // SAPOData: {},
|
|
104
|
+
* // Pardot: {},
|
|
105
|
+
* // },
|
|
106
|
+
* // connectorType: "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot",
|
|
107
|
+
* // connectorLabel: "STRING_VALUE",
|
|
108
|
+
* // connectorDescription: "STRING_VALUE",
|
|
109
|
+
* // connectorOwner: "STRING_VALUE",
|
|
110
|
+
* // connectorName: "STRING_VALUE",
|
|
111
|
+
* // connectorVersion: "STRING_VALUE",
|
|
112
|
+
* // connectorArn: "STRING_VALUE",
|
|
113
|
+
* // connectorModes: [ // ConnectorModeList
|
|
114
|
+
* // "STRING_VALUE",
|
|
115
|
+
* // ],
|
|
116
|
+
* // authenticationConfig: { // AuthenticationConfig
|
|
117
|
+
* // isBasicAuthSupported: true || false,
|
|
118
|
+
* // isApiKeyAuthSupported: true || false,
|
|
119
|
+
* // isOAuth2Supported: true || false,
|
|
120
|
+
* // isCustomAuthSupported: true || false,
|
|
121
|
+
* // oAuth2Defaults: { // OAuth2Defaults
|
|
122
|
+
* // oauthScopes: "<OAuthScopeList>",
|
|
123
|
+
* // tokenUrls: [ // TokenUrlList
|
|
124
|
+
* // "STRING_VALUE",
|
|
125
|
+
* // ],
|
|
126
|
+
* // authCodeUrls: [ // AuthCodeUrlList
|
|
127
|
+
* // "STRING_VALUE",
|
|
128
|
+
* // ],
|
|
129
|
+
* // oauth2GrantTypesSupported: [
|
|
130
|
+
* // "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "JWT_BEARER",
|
|
131
|
+
* // ],
|
|
132
|
+
* // oauth2CustomProperties: [ // OAuth2CustomPropertiesList
|
|
133
|
+
* // { // OAuth2CustomParameter
|
|
134
|
+
* // key: "STRING_VALUE",
|
|
135
|
+
* // isRequired: true || false,
|
|
136
|
+
* // label: "STRING_VALUE",
|
|
137
|
+
* // description: "STRING_VALUE",
|
|
138
|
+
* // isSensitiveField: true || false,
|
|
139
|
+
* // connectorSuppliedValues: [ // ConnectorSuppliedValueList
|
|
140
|
+
* // "STRING_VALUE",
|
|
141
|
+
* // ],
|
|
142
|
+
* // type: "TOKEN_URL" || "AUTH_URL",
|
|
143
|
+
* // },
|
|
144
|
+
* // ],
|
|
145
|
+
* // },
|
|
146
|
+
* // customAuthConfigs: [ // CustomAuthConfigList
|
|
147
|
+
* // { // CustomAuthConfig
|
|
148
|
+
* // customAuthenticationType: "STRING_VALUE",
|
|
149
|
+
* // authParameters: [ // AuthParameterList
|
|
150
|
+
* // { // AuthParameter
|
|
151
|
+
* // key: "STRING_VALUE",
|
|
152
|
+
* // isRequired: true || false,
|
|
153
|
+
* // label: "STRING_VALUE",
|
|
154
|
+
* // description: "STRING_VALUE",
|
|
155
|
+
* // isSensitiveField: true || false,
|
|
156
|
+
* // connectorSuppliedValues: [
|
|
157
|
+
* // "STRING_VALUE",
|
|
158
|
+
* // ],
|
|
159
|
+
* // },
|
|
160
|
+
* // ],
|
|
161
|
+
* // },
|
|
162
|
+
* // ],
|
|
163
|
+
* // },
|
|
164
|
+
* // connectorRuntimeSettings: [ // ConnectorRuntimeSettingList
|
|
165
|
+
* // { // ConnectorRuntimeSetting
|
|
166
|
+
* // key: "STRING_VALUE",
|
|
167
|
+
* // dataType: "STRING_VALUE",
|
|
168
|
+
* // isRequired: true || false,
|
|
169
|
+
* // label: "STRING_VALUE",
|
|
170
|
+
* // description: "STRING_VALUE",
|
|
171
|
+
* // scope: "STRING_VALUE",
|
|
172
|
+
* // connectorSuppliedValueOptions: [ // ConnectorSuppliedValueOptionList
|
|
173
|
+
* // "STRING_VALUE",
|
|
174
|
+
* // ],
|
|
175
|
+
* // },
|
|
176
|
+
* // ],
|
|
177
|
+
* // supportedApiVersions: [ // SupportedApiVersionList
|
|
178
|
+
* // "STRING_VALUE",
|
|
179
|
+
* // ],
|
|
180
|
+
* // supportedOperators: [ // SupportedOperatorList
|
|
181
|
+
* // "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "CONTAINS" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
|
|
182
|
+
* // ],
|
|
183
|
+
* // supportedWriteOperations: [ // SupportedWriteOperationList
|
|
184
|
+
* // "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
185
|
+
* // ],
|
|
186
|
+
* // connectorProvisioningType: "LAMBDA",
|
|
187
|
+
* // connectorProvisioningConfig: { // ConnectorProvisioningConfig
|
|
188
|
+
* // lambda: { // LambdaConnectorProvisioningConfig
|
|
189
|
+
* // lambdaArn: "STRING_VALUE", // required
|
|
190
|
+
* // },
|
|
191
|
+
* // },
|
|
192
|
+
* // logoURL: "STRING_VALUE",
|
|
193
|
+
* // registeredAt: new Date("TIMESTAMP"),
|
|
194
|
+
* // registeredBy: "STRING_VALUE",
|
|
195
|
+
* // },
|
|
196
|
+
* // };
|
|
197
|
+
*
|
|
37
198
|
* ```
|
|
38
199
|
*
|
|
39
200
|
* @param DescribeConnectorCommandInput - {@link DescribeConnectorCommandInput}
|
|
@@ -53,6 +214,8 @@ export interface DescribeConnectorCommandOutput extends DescribeConnectorRespons
|
|
|
53
214
|
* @throws {@link ValidationException} (client fault)
|
|
54
215
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
216
|
*
|
|
217
|
+
* @throws {@link AppflowServiceException}
|
|
218
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
56
219
|
*
|
|
57
220
|
*/
|
|
58
221
|
export declare class DescribeConnectorCommand extends $Command<DescribeConnectorCommandInput, DescribeConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -35,6 +35,59 @@ export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorE
|
|
|
35
35
|
* };
|
|
36
36
|
* const command = new DescribeConnectorEntityCommand(input);
|
|
37
37
|
* const response = await client.send(command);
|
|
38
|
+
* // { // DescribeConnectorEntityResponse
|
|
39
|
+
* // connectorEntityFields: [ // ConnectorEntityFieldList // required
|
|
40
|
+
* // { // ConnectorEntityField
|
|
41
|
+
* // identifier: "STRING_VALUE", // required
|
|
42
|
+
* // parentIdentifier: "STRING_VALUE",
|
|
43
|
+
* // label: "STRING_VALUE",
|
|
44
|
+
* // isPrimaryKey: true || false,
|
|
45
|
+
* // defaultValue: "STRING_VALUE",
|
|
46
|
+
* // isDeprecated: true || false,
|
|
47
|
+
* // supportedFieldTypeDetails: { // SupportedFieldTypeDetails
|
|
48
|
+
* // v1: { // FieldTypeDetails
|
|
49
|
+
* // fieldType: "STRING_VALUE", // required
|
|
50
|
+
* // filterOperators: [ // FilterOperatorList // required
|
|
51
|
+
* // "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "CONTAINS" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "EQUAL_TO" || "NOT_EQUAL_TO" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC" || "NO_OP",
|
|
52
|
+
* // ],
|
|
53
|
+
* // supportedValues: [ // SupportedValueList
|
|
54
|
+
* // "STRING_VALUE",
|
|
55
|
+
* // ],
|
|
56
|
+
* // valueRegexPattern: "STRING_VALUE",
|
|
57
|
+
* // supportedDateFormat: "STRING_VALUE",
|
|
58
|
+
* // fieldValueRange: { // Range
|
|
59
|
+
* // maximum: Number("double"),
|
|
60
|
+
* // minimum: Number("double"),
|
|
61
|
+
* // },
|
|
62
|
+
* // fieldLengthRange: {
|
|
63
|
+
* // maximum: Number("double"),
|
|
64
|
+
* // minimum: Number("double"),
|
|
65
|
+
* // },
|
|
66
|
+
* // },
|
|
67
|
+
* // },
|
|
68
|
+
* // description: "STRING_VALUE",
|
|
69
|
+
* // sourceProperties: { // SourceFieldProperties
|
|
70
|
+
* // isRetrievable: true || false,
|
|
71
|
+
* // isQueryable: true || false,
|
|
72
|
+
* // isTimestampFieldForIncrementalQueries: true || false,
|
|
73
|
+
* // },
|
|
74
|
+
* // destinationProperties: { // DestinationFieldProperties
|
|
75
|
+
* // isCreatable: true || false,
|
|
76
|
+
* // isNullable: true || false,
|
|
77
|
+
* // isUpsertable: true || false,
|
|
78
|
+
* // isUpdatable: true || false,
|
|
79
|
+
* // isDefaultedOnCreate: true || false,
|
|
80
|
+
* // supportedWriteOperations: [ // SupportedWriteOperationList
|
|
81
|
+
* // "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
82
|
+
* // ],
|
|
83
|
+
* // },
|
|
84
|
+
* // customProperties: { // CustomProperties
|
|
85
|
+
* // "<keys>": "STRING_VALUE",
|
|
86
|
+
* // },
|
|
87
|
+
* // },
|
|
88
|
+
* // ],
|
|
89
|
+
* // };
|
|
90
|
+
*
|
|
38
91
|
* ```
|
|
39
92
|
*
|
|
40
93
|
* @param DescribeConnectorEntityCommandInput - {@link DescribeConnectorEntityCommandInput}
|
|
@@ -60,6 +113,8 @@ export interface DescribeConnectorEntityCommandOutput extends DescribeConnectorE
|
|
|
60
113
|
* @throws {@link ValidationException} (client fault)
|
|
61
114
|
* <p> The request has invalid or missing parameters. </p>
|
|
62
115
|
*
|
|
116
|
+
* @throws {@link AppflowServiceException}
|
|
117
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
63
118
|
*
|
|
64
119
|
*/
|
|
65
120
|
export declare class DescribeConnectorEntityCommand extends $Command<DescribeConnectorEntityCommandInput, DescribeConnectorEntityCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -41,6 +41,115 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new DescribeConnectorProfilesCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // DescribeConnectorProfilesResponse
|
|
45
|
+
* // connectorProfileDetails: [ // ConnectorProfileDetailList
|
|
46
|
+
* // { // ConnectorProfile
|
|
47
|
+
* // connectorProfileArn: "STRING_VALUE",
|
|
48
|
+
* // connectorProfileName: "STRING_VALUE",
|
|
49
|
+
* // connectorType: "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot",
|
|
50
|
+
* // connectorLabel: "STRING_VALUE",
|
|
51
|
+
* // connectionMode: "Public" || "Private",
|
|
52
|
+
* // credentialsArn: "STRING_VALUE",
|
|
53
|
+
* // connectorProfileProperties: { // ConnectorProfileProperties
|
|
54
|
+
* // Amplitude: {},
|
|
55
|
+
* // Datadog: { // DatadogConnectorProfileProperties
|
|
56
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // Dynatrace: { // DynatraceConnectorProfileProperties
|
|
59
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // GoogleAnalytics: {},
|
|
62
|
+
* // Honeycode: {},
|
|
63
|
+
* // InforNexus: { // InforNexusConnectorProfileProperties
|
|
64
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
65
|
+
* // },
|
|
66
|
+
* // Marketo: { // MarketoConnectorProfileProperties
|
|
67
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
68
|
+
* // },
|
|
69
|
+
* // Redshift: { // RedshiftConnectorProfileProperties
|
|
70
|
+
* // databaseUrl: "STRING_VALUE",
|
|
71
|
+
* // bucketName: "STRING_VALUE", // required
|
|
72
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
73
|
+
* // roleArn: "STRING_VALUE", // required
|
|
74
|
+
* // dataApiRoleArn: "STRING_VALUE",
|
|
75
|
+
* // isRedshiftServerless: true || false,
|
|
76
|
+
* // clusterIdentifier: "STRING_VALUE",
|
|
77
|
+
* // workgroupName: "STRING_VALUE",
|
|
78
|
+
* // databaseName: "STRING_VALUE",
|
|
79
|
+
* // },
|
|
80
|
+
* // Salesforce: { // SalesforceConnectorProfileProperties
|
|
81
|
+
* // instanceUrl: "STRING_VALUE",
|
|
82
|
+
* // isSandboxEnvironment: true || false,
|
|
83
|
+
* // usePrivateLinkForMetadataAndAuthorization: true || false,
|
|
84
|
+
* // },
|
|
85
|
+
* // ServiceNow: { // ServiceNowConnectorProfileProperties
|
|
86
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
87
|
+
* // },
|
|
88
|
+
* // Singular: {},
|
|
89
|
+
* // Slack: { // SlackConnectorProfileProperties
|
|
90
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
91
|
+
* // },
|
|
92
|
+
* // Snowflake: { // SnowflakeConnectorProfileProperties
|
|
93
|
+
* // warehouse: "STRING_VALUE", // required
|
|
94
|
+
* // stage: "STRING_VALUE", // required
|
|
95
|
+
* // bucketName: "STRING_VALUE", // required
|
|
96
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
97
|
+
* // privateLinkServiceName: "STRING_VALUE",
|
|
98
|
+
* // accountName: "STRING_VALUE",
|
|
99
|
+
* // region: "STRING_VALUE",
|
|
100
|
+
* // },
|
|
101
|
+
* // Trendmicro: {},
|
|
102
|
+
* // Veeva: { // VeevaConnectorProfileProperties
|
|
103
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
104
|
+
* // },
|
|
105
|
+
* // Zendesk: { // ZendeskConnectorProfileProperties
|
|
106
|
+
* // instanceUrl: "STRING_VALUE", // required
|
|
107
|
+
* // },
|
|
108
|
+
* // SAPOData: { // SAPODataConnectorProfileProperties
|
|
109
|
+
* // applicationHostUrl: "STRING_VALUE", // required
|
|
110
|
+
* // applicationServicePath: "STRING_VALUE", // required
|
|
111
|
+
* // portNumber: Number("int"), // required
|
|
112
|
+
* // clientNumber: "STRING_VALUE", // required
|
|
113
|
+
* // logonLanguage: "STRING_VALUE",
|
|
114
|
+
* // privateLinkServiceName: "STRING_VALUE",
|
|
115
|
+
* // oAuthProperties: { // OAuthProperties
|
|
116
|
+
* // tokenUrl: "STRING_VALUE", // required
|
|
117
|
+
* // authCodeUrl: "STRING_VALUE", // required
|
|
118
|
+
* // oAuthScopes: [ // OAuthScopeList // required
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // },
|
|
122
|
+
* // },
|
|
123
|
+
* // CustomConnector: { // CustomConnectorProfileProperties
|
|
124
|
+
* // profileProperties: { // ProfilePropertiesMap
|
|
125
|
+
* // "<keys>": "STRING_VALUE",
|
|
126
|
+
* // },
|
|
127
|
+
* // oAuth2Properties: { // OAuth2Properties
|
|
128
|
+
* // tokenUrl: "STRING_VALUE", // required
|
|
129
|
+
* // oAuth2GrantType: "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "JWT_BEARER", // required
|
|
130
|
+
* // tokenUrlCustomProperties: { // TokenUrlCustomProperties
|
|
131
|
+
* // "<keys>": "STRING_VALUE",
|
|
132
|
+
* // },
|
|
133
|
+
* // },
|
|
134
|
+
* // },
|
|
135
|
+
* // Pardot: { // PardotConnectorProfileProperties
|
|
136
|
+
* // instanceUrl: "STRING_VALUE",
|
|
137
|
+
* // isSandboxEnvironment: true || false,
|
|
138
|
+
* // businessUnitId: "STRING_VALUE",
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
142
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
143
|
+
* // privateConnectionProvisioningState: { // PrivateConnectionProvisioningState
|
|
144
|
+
* // status: "FAILED" || "PENDING" || "CREATED",
|
|
145
|
+
* // failureMessage: "STRING_VALUE",
|
|
146
|
+
* // failureCause: "CONNECTOR_AUTHENTICATION" || "CONNECTOR_SERVER" || "INTERNAL_SERVER" || "ACCESS_DENIED" || "VALIDATION",
|
|
147
|
+
* // },
|
|
148
|
+
* // },
|
|
149
|
+
* // ],
|
|
150
|
+
* // nextToken: "STRING_VALUE",
|
|
151
|
+
* // };
|
|
152
|
+
*
|
|
44
153
|
* ```
|
|
45
154
|
*
|
|
46
155
|
* @param DescribeConnectorProfilesCommandInput - {@link DescribeConnectorProfilesCommandInput}
|
|
@@ -56,6 +165,8 @@ export interface DescribeConnectorProfilesCommandOutput extends DescribeConnecto
|
|
|
56
165
|
* @throws {@link ValidationException} (client fault)
|
|
57
166
|
* <p> The request has invalid or missing parameters. </p>
|
|
58
167
|
*
|
|
168
|
+
* @throws {@link AppflowServiceException}
|
|
169
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
59
170
|
*
|
|
60
171
|
*/
|
|
61
172
|
export declare class DescribeConnectorProfilesCommand extends $Command<DescribeConnectorProfilesCommandInput, DescribeConnectorProfilesCommandOutput, AppflowClientResolvedConfig> {
|