lap-amazon-appflow

Amazon Appflow API skill. Use when working with Amazon Appflow for cancel-flow-executions, create-connector-profile, create-flow. Covers 25 endpoints.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "lap-amazon-appflow" with this command: npx skills add mickmicksh/lap-amazon-appflow

Amazon Appflow

API version: 2020-08-23

Auth

AWS SigV4

Base URL

Not specified.

Setup

  1. Configure auth: AWS SigV4
  2. GET /tags/{resourceArn} -- verify access
  3. POST /cancel-flow-executions -- create first cancel-flow-executions

Endpoints

25 endpoints across 23 groups. See references/api-spec.lap for full details.

cancel-flow-executions

MethodPathDescription
POST/cancel-flow-executionsCancels active runs for a flow. You can cancel all of the active runs for a flow, or you can cancel specific runs by providing their IDs. You can cancel a flow run only when the run is in progress. You can't cancel a run that has already completed or failed. You also can't cancel a run that's scheduled to occur but hasn't started yet. To prevent a scheduled run, you can deactivate the flow with the StopFlow action. You cannot resume a run after you cancel it. When you send your request, the status for each run becomes CancelStarted. When the cancellation completes, the status becomes Canceled. When you cancel a run, you still incur charges for any data that the run already processed before the cancellation. If the run had already written some data to the flow destination, then that data remains in the destination. If you configured the flow to use a batch API (such as the Salesforce Bulk API 2.0), then the run will finish reading or writing its entire batch of data after the cancellation. For these operations, the data processing charges for Amazon AppFlow apply. For the pricing information, see Amazon AppFlow pricing.

create-connector-profile

MethodPathDescription
POST/create-connector-profileCreates a new connector profile associated with your Amazon Web Services account. There is a soft quota of 100 connector profiles per Amazon Web Services account. If you need more connector profiles than this quota allows, you can submit a request to the Amazon AppFlow team through the Amazon AppFlow support channel. In each connector profile that you create, you can provide the credentials and properties for only one connector.

create-flow

MethodPathDescription
POST/create-flowEnables your application to create a new flow using Amazon AppFlow. You must create a connector profile before calling this API. Please note that the Request Syntax below shows syntax for multiple destinations, however, you can only transfer data to one item in this list at a time. Amazon AppFlow does not currently support flows to multiple destinations at once.

delete-connector-profile

MethodPathDescription
POST/delete-connector-profileEnables you to delete an existing connector profile.

delete-flow

MethodPathDescription
POST/delete-flowEnables your application to delete an existing flow. Before deleting the flow, Amazon AppFlow validates the request by checking the flow configuration and status. You can delete flows one at a time.

describe-connector

MethodPathDescription
POST/describe-connectorDescribes the given custom connector registered in your Amazon Web Services account. This API can be used for custom connectors that are registered in your account and also for Amazon authored connectors.

describe-connector-entity

MethodPathDescription
POST/describe-connector-entityProvides details regarding the entity used with the connector, with a description of the data model for each field in that entity.

describe-connector-profiles

MethodPathDescription
POST/describe-connector-profilesReturns a list of connector-profile details matching the provided connector-profile names and connector-types. Both input lists are optional, and you can use them to filter the result. If no names or connector-types are provided, returns all connector profiles in a paginated form. If there is no match, this operation returns an empty list.

describe-connectors

MethodPathDescription
POST/describe-connectorsDescribes the connectors vended by Amazon AppFlow for specified connector types. If you don't specify a connector type, this operation describes all connectors vended by Amazon AppFlow. If there are more connectors than can be returned in one page, the response contains a nextToken object, which can be be passed in to the next call to the DescribeConnectors API operation to retrieve the next page.

describe-flow

MethodPathDescription
POST/describe-flowProvides a description of the specified flow.

describe-flow-execution-records

MethodPathDescription
POST/describe-flow-execution-recordsFetches the execution history of the flow.

list-connector-entities

MethodPathDescription
POST/list-connector-entitiesReturns the list of available connector entities supported by Amazon AppFlow. For example, you can query Salesforce for Account and Opportunity entities, or query ServiceNow for the Incident entity.

list-connectors

MethodPathDescription
POST/list-connectorsReturns the list of all registered custom connectors in your Amazon Web Services account. This API lists only custom connectors registered in this account, not the Amazon Web Services authored connectors.

list-flows

MethodPathDescription
POST/list-flowsLists all of the flows associated with your account.

tags

MethodPathDescription
GET/tags/{resourceArn}Retrieves the tags that are associated with a specified flow.
POST/tags/{resourceArn}Applies a tag to the specified flow.
DELETE/tags/{resourceArn}Removes a tag from the specified flow.

register-connector

MethodPathDescription
POST/register-connectorRegisters a new custom connector with your Amazon Web Services account. Before you can register the connector, you must deploy the associated AWS lambda function in your account.

reset-connector-metadata-cache

MethodPathDescription
POST/reset-connector-metadata-cacheResets metadata about your connector entities that Amazon AppFlow stored in its cache. Use this action when you want Amazon AppFlow to return the latest information about the data that you have in a source application. Amazon AppFlow returns metadata about your entities when you use the ListConnectorEntities or DescribeConnectorEntities actions. Following these actions, Amazon AppFlow caches the metadata to reduce the number of API requests that it must send to the source application. Amazon AppFlow automatically resets the cache once every hour, but you can use this action when you want to get the latest metadata right away.

start-flow

MethodPathDescription
POST/start-flowActivates an existing flow. For on-demand flows, this operation runs the flow immediately. For schedule and event-triggered flows, this operation activates the flow.

stop-flow

MethodPathDescription
POST/stop-flowDeactivates the existing flow. For on-demand flows, this operation returns an unsupportedOperationException error message. For schedule and event-triggered flows, this operation deactivates the flow.

unregister-connector

MethodPathDescription
POST/unregister-connectorUnregisters the custom connector registered in your account that matches the connector label provided in the request.

update-connector-profile

MethodPathDescription
POST/update-connector-profileUpdates a given connector profile associated with your account.

update-connector-registration

MethodPathDescription
POST/update-connector-registrationUpdates a custom connector that you've previously registered. This operation updates the connector with one of the following: The latest version of the AWS Lambda function that's assigned to the connector A new AWS Lambda function that you specify

update-flow

MethodPathDescription
POST/update-flowUpdates an existing flow.

Common Questions

Match user requests to endpoints in references/api-spec.lap. Key patterns:

  • "Create a cancel-flow-execution?" -> POST /cancel-flow-executions
  • "Create a create-connector-profile?" -> POST /create-connector-profile
  • "Create a create-flow?" -> POST /create-flow
  • "Create a delete-connector-profile?" -> POST /delete-connector-profile
  • "Create a delete-flow?" -> POST /delete-flow
  • "Create a describe-connector?" -> POST /describe-connector
  • "Create a describe-connector-entity?" -> POST /describe-connector-entity
  • "Create a describe-connector-profile?" -> POST /describe-connector-profiles
  • "Create a describe-connector?" -> POST /describe-connectors
  • "Create a describe-flow?" -> POST /describe-flow
  • "Create a describe-flow-execution-record?" -> POST /describe-flow-execution-records
  • "Create a list-connector-entity?" -> POST /list-connector-entities
  • "Create a list-connector?" -> POST /list-connectors
  • "Create a list-flow?" -> POST /list-flows
  • "Get tag details?" -> GET /tags/{resourceArn}
  • "Create a register-connector?" -> POST /register-connector
  • "Create a reset-connector-metadata-cache?" -> POST /reset-connector-metadata-cache
  • "Create a start-flow?" -> POST /start-flow
  • "Create a stop-flow?" -> POST /stop-flow
  • "Create a unregister-connector?" -> POST /unregister-connector
  • "Delete a tag?" -> DELETE /tags/{resourceArn}
  • "Create a update-connector-profile?" -> POST /update-connector-profile
  • "Create a update-connector-registration?" -> POST /update-connector-registration
  • "Create a update-flow?" -> POST /update-flow
  • "How to authenticate?" -> See Auth section

Response Tips

  • Check response schemas in references/api-spec.lap for field details
  • Create/update endpoints typically return the created/updated object

CLI

# Update this spec to the latest version
npx @lap-platform/lapsh get amazon-appflow -o references/api-spec.lap

# Search for related APIs
npx @lap-platform/lapsh search amazon-appflow

References

  • Full spec: See references/api-spec.lap for complete endpoint details, parameter tables, and response schemas

Generated from the official API spec by LAP

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

Hk Stock Morning Report

Generate HK stock market morning report (股市晨報) for bank trading desks. Triggers: "生成晨报","股市晨报","今日股市","港股晨報" 推送:微信個人 + 飛書群 | 數據:騰訊財經+stcn.com+格隆匯+實時搜索

Registry SourceRecently Updated
General

V19 Causal Dependency Analyzer

系统级跨域因果链溯源——输入事件序列,输出网状因果路径图谱并计算每条路径的风险权重。源自V19系统模块causal_path_engine.py,已在V89审计链中验证。

Registry SourceRecently Updated
General

上市公司董事会秘书专家系统

上市公司董事会秘书(董秘)四大职能全流程专家技能:信息披露合规、投资者关系、 公司治理(三会运作)、资本运作。支持沪深北交所+港交所。已更新2026年最新监管规则。

Registry SourceRecently Updated
General

Xhs Auto Publisher

小红书自动化内容生产与发布助手。通过对话收集账号定位(领域/人设/视觉偏好/发布节奏),自动完成「热点选题 → 9 图文案 → HTML 视觉模板 → 高清图片渲染 → 浏览器自动发布 → 定时任务调度」全链路,最终保留"用户手动点发布"一步防封号。支持随时通过对话调整视觉风格、文案语气、选题方向。触发关键词:小...

Registry SourceRecently Updated