@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
|
@@ -38,6 +38,187 @@ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsRespo
|
|
|
38
38
|
* };
|
|
39
39
|
* const command = new DescribeConnectorsCommand(input);
|
|
40
40
|
* const response = await client.send(command);
|
|
41
|
+
* // { // DescribeConnectorsResponse
|
|
42
|
+
* // connectorConfigurations: { // ConnectorConfigurationsMap
|
|
43
|
+
* // "<keys>": { // ConnectorConfiguration
|
|
44
|
+
* // canUseAsSource: true || false,
|
|
45
|
+
* // canUseAsDestination: true || false,
|
|
46
|
+
* // supportedDestinationConnectors: [ // ConnectorTypeList
|
|
47
|
+
* // "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot",
|
|
48
|
+
* // ],
|
|
49
|
+
* // supportedSchedulingFrequencies: [ // SchedulingFrequencyTypeList
|
|
50
|
+
* // "BYMINUTE" || "HOURLY" || "DAILY" || "WEEKLY" || "MONTHLY" || "ONCE",
|
|
51
|
+
* // ],
|
|
52
|
+
* // isPrivateLinkEnabled: true || false,
|
|
53
|
+
* // isPrivateLinkEndpointUrlRequired: true || false,
|
|
54
|
+
* // supportedTriggerTypes: [ // TriggerTypeList
|
|
55
|
+
* // "Scheduled" || "Event" || "OnDemand",
|
|
56
|
+
* // ],
|
|
57
|
+
* // connectorMetadata: { // ConnectorMetadata
|
|
58
|
+
* // Amplitude: {},
|
|
59
|
+
* // Datadog: {},
|
|
60
|
+
* // Dynatrace: {},
|
|
61
|
+
* // GoogleAnalytics: { // GoogleAnalyticsMetadata
|
|
62
|
+
* // oAuthScopes: [ // OAuthScopeList
|
|
63
|
+
* // "STRING_VALUE",
|
|
64
|
+
* // ],
|
|
65
|
+
* // },
|
|
66
|
+
* // InforNexus: {},
|
|
67
|
+
* // Marketo: {},
|
|
68
|
+
* // Redshift: {},
|
|
69
|
+
* // S3: {},
|
|
70
|
+
* // Salesforce: { // SalesforceMetadata
|
|
71
|
+
* // oAuthScopes: [
|
|
72
|
+
* // "STRING_VALUE",
|
|
73
|
+
* // ],
|
|
74
|
+
* // dataTransferApis: [ // SalesforceDataTransferApiList
|
|
75
|
+
* // "AUTOMATIC" || "BULKV2" || "REST_SYNC",
|
|
76
|
+
* // ],
|
|
77
|
+
* // oauth2GrantTypesSupported: [ // OAuth2GrantTypeSupportedList
|
|
78
|
+
* // "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "JWT_BEARER",
|
|
79
|
+
* // ],
|
|
80
|
+
* // },
|
|
81
|
+
* // ServiceNow: {},
|
|
82
|
+
* // Singular: {},
|
|
83
|
+
* // Slack: { // SlackMetadata
|
|
84
|
+
* // oAuthScopes: [
|
|
85
|
+
* // "STRING_VALUE",
|
|
86
|
+
* // ],
|
|
87
|
+
* // },
|
|
88
|
+
* // Snowflake: { // SnowflakeMetadata
|
|
89
|
+
* // supportedRegions: [ // RegionList
|
|
90
|
+
* // "STRING_VALUE",
|
|
91
|
+
* // ],
|
|
92
|
+
* // },
|
|
93
|
+
* // Trendmicro: {},
|
|
94
|
+
* // Veeva: {},
|
|
95
|
+
* // Zendesk: { // ZendeskMetadata
|
|
96
|
+
* // oAuthScopes: [
|
|
97
|
+
* // "STRING_VALUE",
|
|
98
|
+
* // ],
|
|
99
|
+
* // },
|
|
100
|
+
* // EventBridge: {},
|
|
101
|
+
* // Upsolver: {},
|
|
102
|
+
* // CustomerProfiles: {},
|
|
103
|
+
* // Honeycode: { // HoneycodeMetadata
|
|
104
|
+
* // oAuthScopes: [
|
|
105
|
+
* // "STRING_VALUE",
|
|
106
|
+
* // ],
|
|
107
|
+
* // },
|
|
108
|
+
* // SAPOData: {},
|
|
109
|
+
* // Pardot: {},
|
|
110
|
+
* // },
|
|
111
|
+
* // 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",
|
|
112
|
+
* // connectorLabel: "STRING_VALUE",
|
|
113
|
+
* // connectorDescription: "STRING_VALUE",
|
|
114
|
+
* // connectorOwner: "STRING_VALUE",
|
|
115
|
+
* // connectorName: "STRING_VALUE",
|
|
116
|
+
* // connectorVersion: "STRING_VALUE",
|
|
117
|
+
* // connectorArn: "STRING_VALUE",
|
|
118
|
+
* // connectorModes: [ // ConnectorModeList
|
|
119
|
+
* // "STRING_VALUE",
|
|
120
|
+
* // ],
|
|
121
|
+
* // authenticationConfig: { // AuthenticationConfig
|
|
122
|
+
* // isBasicAuthSupported: true || false,
|
|
123
|
+
* // isApiKeyAuthSupported: true || false,
|
|
124
|
+
* // isOAuth2Supported: true || false,
|
|
125
|
+
* // isCustomAuthSupported: true || false,
|
|
126
|
+
* // oAuth2Defaults: { // OAuth2Defaults
|
|
127
|
+
* // oauthScopes: "<OAuthScopeList>",
|
|
128
|
+
* // tokenUrls: [ // TokenUrlList
|
|
129
|
+
* // "STRING_VALUE",
|
|
130
|
+
* // ],
|
|
131
|
+
* // authCodeUrls: [ // AuthCodeUrlList
|
|
132
|
+
* // "STRING_VALUE",
|
|
133
|
+
* // ],
|
|
134
|
+
* // oauth2GrantTypesSupported: [
|
|
135
|
+
* // "CLIENT_CREDENTIALS" || "AUTHORIZATION_CODE" || "JWT_BEARER",
|
|
136
|
+
* // ],
|
|
137
|
+
* // oauth2CustomProperties: [ // OAuth2CustomPropertiesList
|
|
138
|
+
* // { // OAuth2CustomParameter
|
|
139
|
+
* // key: "STRING_VALUE",
|
|
140
|
+
* // isRequired: true || false,
|
|
141
|
+
* // label: "STRING_VALUE",
|
|
142
|
+
* // description: "STRING_VALUE",
|
|
143
|
+
* // isSensitiveField: true || false,
|
|
144
|
+
* // connectorSuppliedValues: [ // ConnectorSuppliedValueList
|
|
145
|
+
* // "STRING_VALUE",
|
|
146
|
+
* // ],
|
|
147
|
+
* // type: "TOKEN_URL" || "AUTH_URL",
|
|
148
|
+
* // },
|
|
149
|
+
* // ],
|
|
150
|
+
* // },
|
|
151
|
+
* // customAuthConfigs: [ // CustomAuthConfigList
|
|
152
|
+
* // { // CustomAuthConfig
|
|
153
|
+
* // customAuthenticationType: "STRING_VALUE",
|
|
154
|
+
* // authParameters: [ // AuthParameterList
|
|
155
|
+
* // { // AuthParameter
|
|
156
|
+
* // key: "STRING_VALUE",
|
|
157
|
+
* // isRequired: true || false,
|
|
158
|
+
* // label: "STRING_VALUE",
|
|
159
|
+
* // description: "STRING_VALUE",
|
|
160
|
+
* // isSensitiveField: true || false,
|
|
161
|
+
* // connectorSuppliedValues: [
|
|
162
|
+
* // "STRING_VALUE",
|
|
163
|
+
* // ],
|
|
164
|
+
* // },
|
|
165
|
+
* // ],
|
|
166
|
+
* // },
|
|
167
|
+
* // ],
|
|
168
|
+
* // },
|
|
169
|
+
* // connectorRuntimeSettings: [ // ConnectorRuntimeSettingList
|
|
170
|
+
* // { // ConnectorRuntimeSetting
|
|
171
|
+
* // key: "STRING_VALUE",
|
|
172
|
+
* // dataType: "STRING_VALUE",
|
|
173
|
+
* // isRequired: true || false,
|
|
174
|
+
* // label: "STRING_VALUE",
|
|
175
|
+
* // description: "STRING_VALUE",
|
|
176
|
+
* // scope: "STRING_VALUE",
|
|
177
|
+
* // connectorSuppliedValueOptions: [ // ConnectorSuppliedValueOptionList
|
|
178
|
+
* // "STRING_VALUE",
|
|
179
|
+
* // ],
|
|
180
|
+
* // },
|
|
181
|
+
* // ],
|
|
182
|
+
* // supportedApiVersions: [ // SupportedApiVersionList
|
|
183
|
+
* // "STRING_VALUE",
|
|
184
|
+
* // ],
|
|
185
|
+
* // supportedOperators: [ // SupportedOperatorList
|
|
186
|
+
* // "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",
|
|
187
|
+
* // ],
|
|
188
|
+
* // supportedWriteOperations: [ // SupportedWriteOperationList
|
|
189
|
+
* // "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
190
|
+
* // ],
|
|
191
|
+
* // connectorProvisioningType: "LAMBDA",
|
|
192
|
+
* // connectorProvisioningConfig: { // ConnectorProvisioningConfig
|
|
193
|
+
* // lambda: { // LambdaConnectorProvisioningConfig
|
|
194
|
+
* // lambdaArn: "STRING_VALUE", // required
|
|
195
|
+
* // },
|
|
196
|
+
* // },
|
|
197
|
+
* // logoURL: "STRING_VALUE",
|
|
198
|
+
* // registeredAt: new Date("TIMESTAMP"),
|
|
199
|
+
* // registeredBy: "STRING_VALUE",
|
|
200
|
+
* // },
|
|
201
|
+
* // },
|
|
202
|
+
* // connectors: [ // ConnectorList
|
|
203
|
+
* // { // ConnectorDetail
|
|
204
|
+
* // connectorDescription: "STRING_VALUE",
|
|
205
|
+
* // connectorName: "STRING_VALUE",
|
|
206
|
+
* // connectorOwner: "STRING_VALUE",
|
|
207
|
+
* // connectorVersion: "STRING_VALUE",
|
|
208
|
+
* // applicationType: "STRING_VALUE",
|
|
209
|
+
* // 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",
|
|
210
|
+
* // connectorLabel: "STRING_VALUE",
|
|
211
|
+
* // registeredAt: new Date("TIMESTAMP"),
|
|
212
|
+
* // registeredBy: "STRING_VALUE",
|
|
213
|
+
* // connectorProvisioningType: "LAMBDA",
|
|
214
|
+
* // connectorModes: [
|
|
215
|
+
* // "STRING_VALUE",
|
|
216
|
+
* // ],
|
|
217
|
+
* // },
|
|
218
|
+
* // ],
|
|
219
|
+
* // nextToken: "STRING_VALUE",
|
|
220
|
+
* // };
|
|
221
|
+
*
|
|
41
222
|
* ```
|
|
42
223
|
*
|
|
43
224
|
* @param DescribeConnectorsCommandInput - {@link DescribeConnectorsCommandInput}
|
|
@@ -53,6 +234,8 @@ export interface DescribeConnectorsCommandOutput extends DescribeConnectorsRespo
|
|
|
53
234
|
* @throws {@link ValidationException} (client fault)
|
|
54
235
|
* <p> The request has invalid or missing parameters. </p>
|
|
55
236
|
*
|
|
237
|
+
* @throws {@link AppflowServiceException}
|
|
238
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
56
239
|
*
|
|
57
240
|
*/
|
|
58
241
|
export declare class DescribeConnectorsCommand extends $Command<DescribeConnectorsCommandInput, DescribeConnectorsCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -31,6 +31,307 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new DescribeFlowCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // DescribeFlowResponse
|
|
35
|
+
* // flowArn: "STRING_VALUE",
|
|
36
|
+
* // description: "STRING_VALUE",
|
|
37
|
+
* // flowName: "STRING_VALUE",
|
|
38
|
+
* // kmsArn: "STRING_VALUE",
|
|
39
|
+
* // flowStatus: "Active" || "Deprecated" || "Deleted" || "Draft" || "Errored" || "Suspended",
|
|
40
|
+
* // flowStatusMessage: "STRING_VALUE",
|
|
41
|
+
* // sourceFlowConfig: { // SourceFlowConfig
|
|
42
|
+
* // 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", // required
|
|
43
|
+
* // apiVersion: "STRING_VALUE",
|
|
44
|
+
* // connectorProfileName: "STRING_VALUE",
|
|
45
|
+
* // sourceConnectorProperties: { // SourceConnectorProperties
|
|
46
|
+
* // Amplitude: { // AmplitudeSourceProperties
|
|
47
|
+
* // object: "STRING_VALUE", // required
|
|
48
|
+
* // },
|
|
49
|
+
* // Datadog: { // DatadogSourceProperties
|
|
50
|
+
* // object: "STRING_VALUE", // required
|
|
51
|
+
* // },
|
|
52
|
+
* // Dynatrace: { // DynatraceSourceProperties
|
|
53
|
+
* // object: "STRING_VALUE", // required
|
|
54
|
+
* // },
|
|
55
|
+
* // GoogleAnalytics: { // GoogleAnalyticsSourceProperties
|
|
56
|
+
* // object: "STRING_VALUE", // required
|
|
57
|
+
* // },
|
|
58
|
+
* // InforNexus: { // InforNexusSourceProperties
|
|
59
|
+
* // object: "STRING_VALUE", // required
|
|
60
|
+
* // },
|
|
61
|
+
* // Marketo: { // MarketoSourceProperties
|
|
62
|
+
* // object: "STRING_VALUE", // required
|
|
63
|
+
* // },
|
|
64
|
+
* // S3: { // S3SourceProperties
|
|
65
|
+
* // bucketName: "STRING_VALUE", // required
|
|
66
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
67
|
+
* // s3InputFormatConfig: { // S3InputFormatConfig
|
|
68
|
+
* // s3InputFileType: "CSV" || "JSON",
|
|
69
|
+
* // },
|
|
70
|
+
* // },
|
|
71
|
+
* // Salesforce: { // SalesforceSourceProperties
|
|
72
|
+
* // object: "STRING_VALUE", // required
|
|
73
|
+
* // enableDynamicFieldUpdate: true || false,
|
|
74
|
+
* // includeDeletedRecords: true || false,
|
|
75
|
+
* // dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
|
|
76
|
+
* // },
|
|
77
|
+
* // ServiceNow: { // ServiceNowSourceProperties
|
|
78
|
+
* // object: "STRING_VALUE", // required
|
|
79
|
+
* // },
|
|
80
|
+
* // Singular: { // SingularSourceProperties
|
|
81
|
+
* // object: "STRING_VALUE", // required
|
|
82
|
+
* // },
|
|
83
|
+
* // Slack: { // SlackSourceProperties
|
|
84
|
+
* // object: "STRING_VALUE", // required
|
|
85
|
+
* // },
|
|
86
|
+
* // Trendmicro: { // TrendmicroSourceProperties
|
|
87
|
+
* // object: "STRING_VALUE", // required
|
|
88
|
+
* // },
|
|
89
|
+
* // Veeva: { // VeevaSourceProperties
|
|
90
|
+
* // object: "STRING_VALUE", // required
|
|
91
|
+
* // documentType: "STRING_VALUE",
|
|
92
|
+
* // includeSourceFiles: true || false,
|
|
93
|
+
* // includeRenditions: true || false,
|
|
94
|
+
* // includeAllVersions: true || false,
|
|
95
|
+
* // },
|
|
96
|
+
* // Zendesk: { // ZendeskSourceProperties
|
|
97
|
+
* // object: "STRING_VALUE", // required
|
|
98
|
+
* // },
|
|
99
|
+
* // SAPOData: { // SAPODataSourceProperties
|
|
100
|
+
* // objectPath: "STRING_VALUE",
|
|
101
|
+
* // },
|
|
102
|
+
* // CustomConnector: { // CustomConnectorSourceProperties
|
|
103
|
+
* // entityName: "STRING_VALUE", // required
|
|
104
|
+
* // customProperties: { // CustomProperties
|
|
105
|
+
* // "<keys>": "STRING_VALUE",
|
|
106
|
+
* // },
|
|
107
|
+
* // },
|
|
108
|
+
* // Pardot: { // PardotSourceProperties
|
|
109
|
+
* // object: "STRING_VALUE", // required
|
|
110
|
+
* // },
|
|
111
|
+
* // },
|
|
112
|
+
* // incrementalPullConfig: { // IncrementalPullConfig
|
|
113
|
+
* // datetimeTypeFieldName: "STRING_VALUE",
|
|
114
|
+
* // },
|
|
115
|
+
* // },
|
|
116
|
+
* // destinationFlowConfigList: [ // DestinationFlowConfigList
|
|
117
|
+
* // { // DestinationFlowConfig
|
|
118
|
+
* // 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", // required
|
|
119
|
+
* // apiVersion: "STRING_VALUE",
|
|
120
|
+
* // connectorProfileName: "STRING_VALUE",
|
|
121
|
+
* // destinationConnectorProperties: { // DestinationConnectorProperties
|
|
122
|
+
* // Redshift: { // RedshiftDestinationProperties
|
|
123
|
+
* // object: "STRING_VALUE", // required
|
|
124
|
+
* // intermediateBucketName: "STRING_VALUE", // required
|
|
125
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
126
|
+
* // errorHandlingConfig: { // ErrorHandlingConfig
|
|
127
|
+
* // failOnFirstDestinationError: true || false,
|
|
128
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
129
|
+
* // bucketName: "STRING_VALUE",
|
|
130
|
+
* // },
|
|
131
|
+
* // },
|
|
132
|
+
* // S3: { // S3DestinationProperties
|
|
133
|
+
* // bucketName: "STRING_VALUE", // required
|
|
134
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
135
|
+
* // s3OutputFormatConfig: { // S3OutputFormatConfig
|
|
136
|
+
* // fileType: "CSV" || "JSON" || "PARQUET",
|
|
137
|
+
* // prefixConfig: { // PrefixConfig
|
|
138
|
+
* // prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
|
|
139
|
+
* // prefixFormat: "YEAR" || "MONTH" || "DAY" || "HOUR" || "MINUTE",
|
|
140
|
+
* // pathPrefixHierarchy: [ // PathPrefixHierarchy
|
|
141
|
+
* // "EXECUTION_ID" || "SCHEMA_VERSION",
|
|
142
|
+
* // ],
|
|
143
|
+
* // },
|
|
144
|
+
* // aggregationConfig: { // AggregationConfig
|
|
145
|
+
* // aggregationType: "None" || "SingleFile",
|
|
146
|
+
* // targetFileSize: Number("long"),
|
|
147
|
+
* // },
|
|
148
|
+
* // preserveSourceDataTyping: true || false,
|
|
149
|
+
* // },
|
|
150
|
+
* // },
|
|
151
|
+
* // Salesforce: { // SalesforceDestinationProperties
|
|
152
|
+
* // object: "STRING_VALUE", // required
|
|
153
|
+
* // idFieldNames: [ // IdFieldNameList
|
|
154
|
+
* // "STRING_VALUE",
|
|
155
|
+
* // ],
|
|
156
|
+
* // errorHandlingConfig: {
|
|
157
|
+
* // failOnFirstDestinationError: true || false,
|
|
158
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
159
|
+
* // bucketName: "STRING_VALUE",
|
|
160
|
+
* // },
|
|
161
|
+
* // writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
162
|
+
* // dataTransferApi: "AUTOMATIC" || "BULKV2" || "REST_SYNC",
|
|
163
|
+
* // },
|
|
164
|
+
* // Snowflake: { // SnowflakeDestinationProperties
|
|
165
|
+
* // object: "STRING_VALUE", // required
|
|
166
|
+
* // intermediateBucketName: "STRING_VALUE", // required
|
|
167
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
168
|
+
* // errorHandlingConfig: {
|
|
169
|
+
* // failOnFirstDestinationError: true || false,
|
|
170
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
171
|
+
* // bucketName: "STRING_VALUE",
|
|
172
|
+
* // },
|
|
173
|
+
* // },
|
|
174
|
+
* // EventBridge: { // EventBridgeDestinationProperties
|
|
175
|
+
* // object: "STRING_VALUE", // required
|
|
176
|
+
* // errorHandlingConfig: {
|
|
177
|
+
* // failOnFirstDestinationError: true || false,
|
|
178
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
179
|
+
* // bucketName: "STRING_VALUE",
|
|
180
|
+
* // },
|
|
181
|
+
* // },
|
|
182
|
+
* // LookoutMetrics: {},
|
|
183
|
+
* // Upsolver: { // UpsolverDestinationProperties
|
|
184
|
+
* // bucketName: "STRING_VALUE", // required
|
|
185
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
186
|
+
* // s3OutputFormatConfig: { // UpsolverS3OutputFormatConfig
|
|
187
|
+
* // fileType: "CSV" || "JSON" || "PARQUET",
|
|
188
|
+
* // prefixConfig: {
|
|
189
|
+
* // prefixType: "FILENAME" || "PATH" || "PATH_AND_FILENAME",
|
|
190
|
+
* // prefixFormat: "YEAR" || "MONTH" || "DAY" || "HOUR" || "MINUTE",
|
|
191
|
+
* // pathPrefixHierarchy: [
|
|
192
|
+
* // "EXECUTION_ID" || "SCHEMA_VERSION",
|
|
193
|
+
* // ],
|
|
194
|
+
* // },
|
|
195
|
+
* // aggregationConfig: {
|
|
196
|
+
* // aggregationType: "None" || "SingleFile",
|
|
197
|
+
* // targetFileSize: Number("long"),
|
|
198
|
+
* // },
|
|
199
|
+
* // },
|
|
200
|
+
* // },
|
|
201
|
+
* // Honeycode: { // HoneycodeDestinationProperties
|
|
202
|
+
* // object: "STRING_VALUE", // required
|
|
203
|
+
* // errorHandlingConfig: {
|
|
204
|
+
* // failOnFirstDestinationError: true || false,
|
|
205
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
206
|
+
* // bucketName: "STRING_VALUE",
|
|
207
|
+
* // },
|
|
208
|
+
* // },
|
|
209
|
+
* // CustomerProfiles: { // CustomerProfilesDestinationProperties
|
|
210
|
+
* // domainName: "STRING_VALUE", // required
|
|
211
|
+
* // objectTypeName: "STRING_VALUE",
|
|
212
|
+
* // },
|
|
213
|
+
* // Zendesk: { // ZendeskDestinationProperties
|
|
214
|
+
* // object: "STRING_VALUE", // required
|
|
215
|
+
* // idFieldNames: [
|
|
216
|
+
* // "STRING_VALUE",
|
|
217
|
+
* // ],
|
|
218
|
+
* // errorHandlingConfig: "<ErrorHandlingConfig>",
|
|
219
|
+
* // writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
220
|
+
* // },
|
|
221
|
+
* // Marketo: { // MarketoDestinationProperties
|
|
222
|
+
* // object: "STRING_VALUE", // required
|
|
223
|
+
* // errorHandlingConfig: "<ErrorHandlingConfig>",
|
|
224
|
+
* // },
|
|
225
|
+
* // CustomConnector: { // CustomConnectorDestinationProperties
|
|
226
|
+
* // entityName: "STRING_VALUE", // required
|
|
227
|
+
* // errorHandlingConfig: "<ErrorHandlingConfig>",
|
|
228
|
+
* // writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
229
|
+
* // idFieldNames: [
|
|
230
|
+
* // "STRING_VALUE",
|
|
231
|
+
* // ],
|
|
232
|
+
* // customProperties: {
|
|
233
|
+
* // "<keys>": "STRING_VALUE",
|
|
234
|
+
* // },
|
|
235
|
+
* // },
|
|
236
|
+
* // SAPOData: { // SAPODataDestinationProperties
|
|
237
|
+
* // objectPath: "STRING_VALUE", // required
|
|
238
|
+
* // successResponseHandlingConfig: { // SuccessResponseHandlingConfig
|
|
239
|
+
* // bucketPrefix: "STRING_VALUE",
|
|
240
|
+
* // bucketName: "STRING_VALUE",
|
|
241
|
+
* // },
|
|
242
|
+
* // idFieldNames: [
|
|
243
|
+
* // "STRING_VALUE",
|
|
244
|
+
* // ],
|
|
245
|
+
* // errorHandlingConfig: "<ErrorHandlingConfig>",
|
|
246
|
+
* // writeOperationType: "INSERT" || "UPSERT" || "UPDATE" || "DELETE",
|
|
247
|
+
* // },
|
|
248
|
+
* // },
|
|
249
|
+
* // },
|
|
250
|
+
* // ],
|
|
251
|
+
* // lastRunExecutionDetails: { // ExecutionDetails
|
|
252
|
+
* // mostRecentExecutionMessage: "STRING_VALUE",
|
|
253
|
+
* // mostRecentExecutionTime: new Date("TIMESTAMP"),
|
|
254
|
+
* // mostRecentExecutionStatus: "InProgress" || "Successful" || "Error",
|
|
255
|
+
* // },
|
|
256
|
+
* // triggerConfig: { // TriggerConfig
|
|
257
|
+
* // triggerType: "Scheduled" || "Event" || "OnDemand", // required
|
|
258
|
+
* // triggerProperties: { // TriggerProperties
|
|
259
|
+
* // Scheduled: { // ScheduledTriggerProperties
|
|
260
|
+
* // scheduleExpression: "STRING_VALUE", // required
|
|
261
|
+
* // dataPullMode: "Incremental" || "Complete",
|
|
262
|
+
* // scheduleStartTime: new Date("TIMESTAMP"),
|
|
263
|
+
* // scheduleEndTime: new Date("TIMESTAMP"),
|
|
264
|
+
* // timezone: "STRING_VALUE",
|
|
265
|
+
* // scheduleOffset: Number("long"),
|
|
266
|
+
* // firstExecutionFrom: new Date("TIMESTAMP"),
|
|
267
|
+
* // flowErrorDeactivationThreshold: Number("int"),
|
|
268
|
+
* // },
|
|
269
|
+
* // },
|
|
270
|
+
* // },
|
|
271
|
+
* // tasks: [ // Tasks
|
|
272
|
+
* // { // Task
|
|
273
|
+
* // sourceFields: [ // SourceFields // required
|
|
274
|
+
* // "STRING_VALUE",
|
|
275
|
+
* // ],
|
|
276
|
+
* // connectorOperator: { // ConnectorOperator
|
|
277
|
+
* // Amplitude: "BETWEEN",
|
|
278
|
+
* // Datadog: "PROJECTION" || "BETWEEN" || "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",
|
|
279
|
+
* // Dynatrace: "PROJECTION" || "BETWEEN" || "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",
|
|
280
|
+
* // GoogleAnalytics: "PROJECTION" || "BETWEEN",
|
|
281
|
+
* // InforNexus: "PROJECTION" || "BETWEEN" || "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",
|
|
282
|
+
* // Marketo: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "BETWEEN" || "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",
|
|
283
|
+
* // S3: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "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",
|
|
284
|
+
* // Salesforce: "PROJECTION" || "LESS_THAN" || "CONTAINS" || "GREATER_THAN" || "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",
|
|
285
|
+
* // ServiceNow: "PROJECTION" || "CONTAINS" || "LESS_THAN" || "GREATER_THAN" || "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",
|
|
286
|
+
* // Singular: "PROJECTION" || "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",
|
|
287
|
+
* // Slack: "PROJECTION" || "LESS_THAN" || "GREATER_THAN" || "BETWEEN" || "LESS_THAN_OR_EQUAL_TO" || "GREATER_THAN_OR_EQUAL_TO" || "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",
|
|
288
|
+
* // Trendmicro: "PROJECTION" || "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",
|
|
289
|
+
* // Veeva: "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",
|
|
290
|
+
* // Zendesk: "PROJECTION" || "GREATER_THAN" || "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",
|
|
291
|
+
* // SAPOData: "PROJECTION" || "LESS_THAN" || "CONTAINS" || "GREATER_THAN" || "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",
|
|
292
|
+
* // CustomConnector: "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",
|
|
293
|
+
* // Pardot: "PROJECTION" || "EQUAL_TO" || "NO_OP" || "ADDITION" || "MULTIPLICATION" || "DIVISION" || "SUBTRACTION" || "MASK_ALL" || "MASK_FIRST_N" || "MASK_LAST_N" || "VALIDATE_NON_NULL" || "VALIDATE_NON_ZERO" || "VALIDATE_NON_NEGATIVE" || "VALIDATE_NUMERIC",
|
|
294
|
+
* // },
|
|
295
|
+
* // destinationField: "STRING_VALUE",
|
|
296
|
+
* // taskType: "Arithmetic" || "Filter" || "Map" || "Map_all" || "Mask" || "Merge" || "Passthrough" || "Truncate" || "Validate" || "Partition", // required
|
|
297
|
+
* // taskProperties: { // TaskPropertiesMap
|
|
298
|
+
* // "<keys>": "STRING_VALUE",
|
|
299
|
+
* // },
|
|
300
|
+
* // },
|
|
301
|
+
* // ],
|
|
302
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
303
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
304
|
+
* // createdBy: "STRING_VALUE",
|
|
305
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
306
|
+
* // tags: { // TagMap
|
|
307
|
+
* // "<keys>": "STRING_VALUE",
|
|
308
|
+
* // },
|
|
309
|
+
* // metadataCatalogConfig: { // MetadataCatalogConfig
|
|
310
|
+
* // glueDataCatalog: { // GlueDataCatalogConfig
|
|
311
|
+
* // roleArn: "STRING_VALUE", // required
|
|
312
|
+
* // databaseName: "STRING_VALUE", // required
|
|
313
|
+
* // tablePrefix: "STRING_VALUE", // required
|
|
314
|
+
* // },
|
|
315
|
+
* // },
|
|
316
|
+
* // lastRunMetadataCatalogDetails: [ // MetadataCatalogDetails
|
|
317
|
+
* // { // MetadataCatalogDetail
|
|
318
|
+
* // catalogType: "GLUE",
|
|
319
|
+
* // tableName: "STRING_VALUE",
|
|
320
|
+
* // tableRegistrationOutput: { // RegistrationOutput
|
|
321
|
+
* // message: "STRING_VALUE",
|
|
322
|
+
* // result: "STRING_VALUE",
|
|
323
|
+
* // status: "InProgress" || "Successful" || "Error",
|
|
324
|
+
* // },
|
|
325
|
+
* // partitionRegistrationOutput: {
|
|
326
|
+
* // message: "STRING_VALUE",
|
|
327
|
+
* // result: "STRING_VALUE",
|
|
328
|
+
* // status: "InProgress" || "Successful" || "Error",
|
|
329
|
+
* // },
|
|
330
|
+
* // },
|
|
331
|
+
* // ],
|
|
332
|
+
* // schemaVersion: Number("long"),
|
|
333
|
+
* // };
|
|
334
|
+
*
|
|
34
335
|
* ```
|
|
35
336
|
*
|
|
36
337
|
* @param DescribeFlowCommandInput - {@link DescribeFlowCommandInput}
|
|
@@ -47,6 +348,8 @@ export interface DescribeFlowCommandOutput extends DescribeFlowResponse, __Metad
|
|
|
47
348
|
* <p> The resource specified in the request (such as the source or destination connector
|
|
48
349
|
* profile) is not found. </p>
|
|
49
350
|
*
|
|
351
|
+
* @throws {@link AppflowServiceException}
|
|
352
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
50
353
|
*
|
|
51
354
|
*/
|
|
52
355
|
export declare class DescribeFlowCommand extends $Command<DescribeFlowCommandInput, DescribeFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -33,6 +33,45 @@ export interface DescribeFlowExecutionRecordsCommandOutput extends DescribeFlowE
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new DescribeFlowExecutionRecordsCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // DescribeFlowExecutionRecordsResponse
|
|
37
|
+
* // flowExecutions: [ // FlowExecutionList
|
|
38
|
+
* // { // ExecutionRecord
|
|
39
|
+
* // executionId: "STRING_VALUE",
|
|
40
|
+
* // executionStatus: "InProgress" || "Successful" || "Error",
|
|
41
|
+
* // executionResult: { // ExecutionResult
|
|
42
|
+
* // errorInfo: { // ErrorInfo
|
|
43
|
+
* // putFailuresCount: Number("long"),
|
|
44
|
+
* // executionMessage: "STRING_VALUE",
|
|
45
|
+
* // },
|
|
46
|
+
* // bytesProcessed: Number("long"),
|
|
47
|
+
* // bytesWritten: Number("long"),
|
|
48
|
+
* // recordsProcessed: Number("long"),
|
|
49
|
+
* // },
|
|
50
|
+
* // startedAt: new Date("TIMESTAMP"),
|
|
51
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
52
|
+
* // dataPullStartTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // dataPullEndTime: new Date("TIMESTAMP"),
|
|
54
|
+
* // metadataCatalogDetails: [ // MetadataCatalogDetails
|
|
55
|
+
* // { // MetadataCatalogDetail
|
|
56
|
+
* // catalogType: "GLUE",
|
|
57
|
+
* // tableName: "STRING_VALUE",
|
|
58
|
+
* // tableRegistrationOutput: { // RegistrationOutput
|
|
59
|
+
* // message: "STRING_VALUE",
|
|
60
|
+
* // result: "STRING_VALUE",
|
|
61
|
+
* // status: "InProgress" || "Successful" || "Error",
|
|
62
|
+
* // },
|
|
63
|
+
* // partitionRegistrationOutput: {
|
|
64
|
+
* // message: "STRING_VALUE",
|
|
65
|
+
* // result: "STRING_VALUE",
|
|
66
|
+
* // status: "InProgress" || "Successful" || "Error",
|
|
67
|
+
* // },
|
|
68
|
+
* // },
|
|
69
|
+
* // ],
|
|
70
|
+
* // },
|
|
71
|
+
* // ],
|
|
72
|
+
* // nextToken: "STRING_VALUE",
|
|
73
|
+
* // };
|
|
74
|
+
*
|
|
36
75
|
* ```
|
|
37
76
|
*
|
|
38
77
|
* @param DescribeFlowExecutionRecordsCommandInput - {@link DescribeFlowExecutionRecordsCommandInput}
|
|
@@ -52,6 +91,8 @@ export interface DescribeFlowExecutionRecordsCommandOutput extends DescribeFlowE
|
|
|
52
91
|
* @throws {@link ValidationException} (client fault)
|
|
53
92
|
* <p> The request has invalid or missing parameters. </p>
|
|
54
93
|
*
|
|
94
|
+
* @throws {@link AppflowServiceException}
|
|
95
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
55
96
|
*
|
|
56
97
|
*/
|
|
57
98
|
export declare class DescribeFlowExecutionRecordsCommand extends $Command<DescribeFlowExecutionRecordsCommandInput, DescribeFlowExecutionRecordsCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -39,6 +39,19 @@ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitie
|
|
|
39
39
|
* };
|
|
40
40
|
* const command = new ListConnectorEntitiesCommand(input);
|
|
41
41
|
* const response = await client.send(command);
|
|
42
|
+
* // { // ListConnectorEntitiesResponse
|
|
43
|
+
* // connectorEntityMap: { // ConnectorEntityMap // required
|
|
44
|
+
* // "<keys>": [ // ConnectorEntityList
|
|
45
|
+
* // { // ConnectorEntity
|
|
46
|
+
* // name: "STRING_VALUE", // required
|
|
47
|
+
* // label: "STRING_VALUE",
|
|
48
|
+
* // hasNestedEntities: true || false,
|
|
49
|
+
* // },
|
|
50
|
+
* // ],
|
|
51
|
+
* // },
|
|
52
|
+
* // nextToken: "STRING_VALUE",
|
|
53
|
+
* // };
|
|
54
|
+
*
|
|
42
55
|
* ```
|
|
43
56
|
*
|
|
44
57
|
* @param ListConnectorEntitiesCommandInput - {@link ListConnectorEntitiesCommandInput}
|
|
@@ -64,6 +77,8 @@ export interface ListConnectorEntitiesCommandOutput extends ListConnectorEntitie
|
|
|
64
77
|
* @throws {@link ValidationException} (client fault)
|
|
65
78
|
* <p> The request has invalid or missing parameters. </p>
|
|
66
79
|
*
|
|
80
|
+
* @throws {@link AppflowServiceException}
|
|
81
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
67
82
|
*
|
|
68
83
|
*/
|
|
69
84
|
export declare class ListConnectorEntitiesCommand extends $Command<ListConnectorEntitiesCommandInput, ListConnectorEntitiesCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -34,6 +34,27 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListConnectorsCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // { // ListConnectorsResponse
|
|
38
|
+
* // connectors: [ // ConnectorList
|
|
39
|
+
* // { // ConnectorDetail
|
|
40
|
+
* // connectorDescription: "STRING_VALUE",
|
|
41
|
+
* // connectorName: "STRING_VALUE",
|
|
42
|
+
* // connectorOwner: "STRING_VALUE",
|
|
43
|
+
* // connectorVersion: "STRING_VALUE",
|
|
44
|
+
* // applicationType: "STRING_VALUE",
|
|
45
|
+
* // 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",
|
|
46
|
+
* // connectorLabel: "STRING_VALUE",
|
|
47
|
+
* // registeredAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // registeredBy: "STRING_VALUE",
|
|
49
|
+
* // connectorProvisioningType: "LAMBDA",
|
|
50
|
+
* // connectorModes: [ // ConnectorModeList
|
|
51
|
+
* // "STRING_VALUE",
|
|
52
|
+
* // ],
|
|
53
|
+
* // },
|
|
54
|
+
* // ],
|
|
55
|
+
* // nextToken: "STRING_VALUE",
|
|
56
|
+
* // };
|
|
57
|
+
*
|
|
37
58
|
* ```
|
|
38
59
|
*
|
|
39
60
|
* @param ListConnectorsCommandInput - {@link ListConnectorsCommandInput}
|
|
@@ -49,6 +70,8 @@ export interface ListConnectorsCommandOutput extends ListConnectorsResponse, __M
|
|
|
49
70
|
* @throws {@link ValidationException} (client fault)
|
|
50
71
|
* <p> The request has invalid or missing parameters. </p>
|
|
51
72
|
*
|
|
73
|
+
* @throws {@link AppflowServiceException}
|
|
74
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
52
75
|
*
|
|
53
76
|
*/
|
|
54
77
|
export declare class ListConnectorsCommand extends $Command<ListConnectorsCommandInput, ListConnectorsCommandOutput, AppflowClientResolvedConfig> {
|