@aws-sdk/client-appflow 3.325.0 → 3.327.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/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/package.json +7 -7
|
@@ -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> {
|
|
@@ -32,6 +32,35 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
32
32
|
* };
|
|
33
33
|
* const command = new ListFlowsCommand(input);
|
|
34
34
|
* const response = await client.send(command);
|
|
35
|
+
* // { // ListFlowsResponse
|
|
36
|
+
* // flows: [ // FlowList
|
|
37
|
+
* // { // FlowDefinition
|
|
38
|
+
* // flowArn: "STRING_VALUE",
|
|
39
|
+
* // description: "STRING_VALUE",
|
|
40
|
+
* // flowName: "STRING_VALUE",
|
|
41
|
+
* // flowStatus: "Active" || "Deprecated" || "Deleted" || "Draft" || "Errored" || "Suspended",
|
|
42
|
+
* // sourceConnectorType: "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
|
+
* // sourceConnectorLabel: "STRING_VALUE",
|
|
44
|
+
* // destinationConnectorType: "Salesforce" || "Singular" || "Slack" || "Redshift" || "S3" || "Marketo" || "Googleanalytics" || "Zendesk" || "Servicenow" || "Datadog" || "Trendmicro" || "Snowflake" || "Dynatrace" || "Infornexus" || "Amplitude" || "Veeva" || "EventBridge" || "LookoutMetrics" || "Upsolver" || "Honeycode" || "CustomerProfiles" || "SAPOData" || "CustomConnector" || "Pardot",
|
|
45
|
+
* // destinationConnectorLabel: "STRING_VALUE",
|
|
46
|
+
* // triggerType: "Scheduled" || "Event" || "OnDemand",
|
|
47
|
+
* // createdAt: new Date("TIMESTAMP"),
|
|
48
|
+
* // lastUpdatedAt: new Date("TIMESTAMP"),
|
|
49
|
+
* // createdBy: "STRING_VALUE",
|
|
50
|
+
* // lastUpdatedBy: "STRING_VALUE",
|
|
51
|
+
* // tags: { // TagMap
|
|
52
|
+
* // "<keys>": "STRING_VALUE",
|
|
53
|
+
* // },
|
|
54
|
+
* // lastRunExecutionDetails: { // ExecutionDetails
|
|
55
|
+
* // mostRecentExecutionMessage: "STRING_VALUE",
|
|
56
|
+
* // mostRecentExecutionTime: new Date("TIMESTAMP"),
|
|
57
|
+
* // mostRecentExecutionStatus: "InProgress" || "Successful" || "Error",
|
|
58
|
+
* // },
|
|
59
|
+
* // },
|
|
60
|
+
* // ],
|
|
61
|
+
* // nextToken: "STRING_VALUE",
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
35
64
|
* ```
|
|
36
65
|
*
|
|
37
66
|
* @param ListFlowsCommandInput - {@link ListFlowsCommandInput}
|
|
@@ -47,6 +76,8 @@ export interface ListFlowsCommandOutput extends ListFlowsResponse, __MetadataBea
|
|
|
47
76
|
* @throws {@link ValidationException} (client fault)
|
|
48
77
|
* <p> The request has invalid or missing parameters. </p>
|
|
49
78
|
*
|
|
79
|
+
* @throws {@link AppflowServiceException}
|
|
80
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
50
81
|
*
|
|
51
82
|
*/
|
|
52
83
|
export declare class ListFlowsCommand extends $Command<ListFlowsCommandInput, ListFlowsCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -31,6 +31,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
31
31
|
* };
|
|
32
32
|
* const command = new ListTagsForResourceCommand(input);
|
|
33
33
|
* const response = await client.send(command);
|
|
34
|
+
* // { // ListTagsForResourceResponse
|
|
35
|
+
* // tags: { // TagMap
|
|
36
|
+
* // "<keys>": "STRING_VALUE",
|
|
37
|
+
* // },
|
|
38
|
+
* // };
|
|
39
|
+
*
|
|
34
40
|
* ```
|
|
35
41
|
*
|
|
36
42
|
* @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
|
|
@@ -50,6 +56,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceRes
|
|
|
50
56
|
* @throws {@link ValidationException} (client fault)
|
|
51
57
|
* <p> The request has invalid or missing parameters. </p>
|
|
52
58
|
*
|
|
59
|
+
* @throws {@link AppflowServiceException}
|
|
60
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
53
61
|
*
|
|
54
62
|
*/
|
|
55
63
|
export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -41,6 +41,10 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons
|
|
|
41
41
|
* };
|
|
42
42
|
* const command = new RegisterConnectorCommand(input);
|
|
43
43
|
* const response = await client.send(command);
|
|
44
|
+
* // { // RegisterConnectorResponse
|
|
45
|
+
* // connectorArn: "STRING_VALUE",
|
|
46
|
+
* // };
|
|
47
|
+
*
|
|
44
48
|
* ```
|
|
45
49
|
*
|
|
46
50
|
* @param RegisterConnectorCommandInput - {@link RegisterConnectorCommandInput}
|
|
@@ -81,6 +85,8 @@ export interface RegisterConnectorCommandOutput extends RegisterConnectorRespons
|
|
|
81
85
|
* @throws {@link ValidationException} (client fault)
|
|
82
86
|
* <p> The request has invalid or missing parameters. </p>
|
|
83
87
|
*
|
|
88
|
+
* @throws {@link AppflowServiceException}
|
|
89
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
84
90
|
*
|
|
85
91
|
*/
|
|
86
92
|
export declare class RegisterConnectorCommand extends $Command<RegisterConnectorCommandInput, RegisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -33,6 +33,12 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StartFlowCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StartFlowResponse
|
|
37
|
+
* // flowArn: "STRING_VALUE",
|
|
38
|
+
* // flowStatus: "Active" || "Deprecated" || "Deleted" || "Draft" || "Errored" || "Suspended",
|
|
39
|
+
* // executionId: "STRING_VALUE",
|
|
40
|
+
* // };
|
|
41
|
+
*
|
|
36
42
|
* ```
|
|
37
43
|
*
|
|
38
44
|
* @param StartFlowCommandInput - {@link StartFlowCommandInput}
|
|
@@ -57,6 +63,8 @@ export interface StartFlowCommandOutput extends StartFlowResponse, __MetadataBea
|
|
|
57
63
|
* <p> The request would cause a service quota (such as the number of flows) to be exceeded.
|
|
58
64
|
* </p>
|
|
59
65
|
*
|
|
66
|
+
* @throws {@link AppflowServiceException}
|
|
67
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
60
68
|
*
|
|
61
69
|
*/
|
|
62
70
|
export declare class StartFlowCommand extends $Command<StartFlowCommandInput, StartFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -33,6 +33,11 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new StopFlowCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // { // StopFlowResponse
|
|
37
|
+
* // flowArn: "STRING_VALUE",
|
|
38
|
+
* // flowStatus: "Active" || "Deprecated" || "Deleted" || "Draft" || "Errored" || "Suspended",
|
|
39
|
+
* // };
|
|
40
|
+
*
|
|
36
41
|
* ```
|
|
37
42
|
*
|
|
38
43
|
* @param StopFlowCommandInput - {@link StopFlowCommandInput}
|
|
@@ -56,6 +61,8 @@ export interface StopFlowCommandOutput extends StopFlowResponse, __MetadataBeare
|
|
|
56
61
|
* @throws {@link UnsupportedOperationException} (client fault)
|
|
57
62
|
* <p> The requested operation is not supported for the current flow. </p>
|
|
58
63
|
*
|
|
64
|
+
* @throws {@link AppflowServiceException}
|
|
65
|
+
* <p>Base exception class for all service exceptions from Appflow service.</p>
|
|
59
66
|
*
|
|
60
67
|
*/
|
|
61
68
|
export declare class StopFlowCommand extends $Command<StopFlowCommandInput, StopFlowCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new TagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param TagResourceCommandInput - {@link TagResourceCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface TagResourceCommandOutput extends TagResourceResponse, __Metadat
|
|
|
53
55
|
* @throws {@link ValidationException} (client fault)
|
|
54
56
|
* <p> The request has invalid or missing parameters. </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 TagResourceCommand extends $Command<TagResourceCommandInput, TagResourceCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -33,6 +33,8 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes
|
|
|
33
33
|
* };
|
|
34
34
|
* const command = new UnregisterConnectorCommand(input);
|
|
35
35
|
* const response = await client.send(command);
|
|
36
|
+
* // {};
|
|
37
|
+
*
|
|
36
38
|
* ```
|
|
37
39
|
*
|
|
38
40
|
* @param UnregisterConnectorCommandInput - {@link UnregisterConnectorCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface UnregisterConnectorCommandOutput extends UnregisterConnectorRes
|
|
|
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 UnregisterConnectorCommand extends $Command<UnregisterConnectorCommandInput, UnregisterConnectorCommandOutput, AppflowClientResolvedConfig> {
|
|
@@ -34,6 +34,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
34
34
|
* };
|
|
35
35
|
* const command = new UntagResourceCommand(input);
|
|
36
36
|
* const response = await client.send(command);
|
|
37
|
+
* // {};
|
|
38
|
+
*
|
|
37
39
|
* ```
|
|
38
40
|
*
|
|
39
41
|
* @param UntagResourceCommandInput - {@link UntagResourceCommandInput}
|
|
@@ -53,6 +55,8 @@ export interface UntagResourceCommandOutput extends UntagResourceResponse, __Met
|
|
|
53
55
|
* @throws {@link ValidationException} (client fault)
|
|
54
56
|
* <p> The request has invalid or missing parameters. </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 UntagResourceCommand extends $Command<UntagResourceCommandInput, UntagResourceCommandOutput, AppflowClientResolvedConfig> {
|