|
18 | 18 | "ListFlows": "<p> Lists all of the flows associated with your account. </p>",
|
19 | 19 | "ListTagsForResource": "<p> Retrieves the tags that are associated with a specified flow. </p>",
|
20 | 20 | "RegisterConnector": "<p>Registers 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.</p>",
|
| 21 | + "ResetConnectorMetadataCache": "<p>Resets 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.</p> <p>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.</p>", |
21 | 22 | "StartFlow": "<p> Activates an existing flow. For on-demand flows, this operation runs the flow immediately. For schedule and event-triggered flows, this operation activates the flow. </p>",
|
22 | 23 | "StopFlow": "<p> Deactivates the existing flow. For on-demand flows, this operation returns an <code>unsupportedOperationException</code> error message. For schedule and event-triggered flows, this operation deactivates the flow. </p>",
|
23 | 24 | "TagResource": "<p> Applies a tag to the specified flow. </p>",
|
|
149 | 150 | "DescribeConnectorEntityRequest$apiVersion": "<p>The version of the API that's used by the connector.</p>",
|
150 | 151 | "DestinationFlowConfig$apiVersion": "<p>The API version that the destination connector uses.</p>",
|
151 | 152 | "ListConnectorEntitiesRequest$apiVersion": "<p>The version of the API that's used by the connector.</p>",
|
| 153 | + "ResetConnectorMetadataCacheRequest$apiVersion": "<p>The API version that you specified in the connector profile that you’re resetting cached metadata for. You must use this parameter only if the connector supports multiple API versions or if the connector type is CustomConnector.</p> <p>To look up how many versions a connector supports, use the DescribeConnectors action. In the response, find the value that Amazon AppFlow returns for the connectorVersion parameter.</p> <p>To look up the connector type, use the DescribeConnectorProfiles action. In the response, find the value that Amazon AppFlow returns for the connectorType parameter.</p> <p>To look up the API version that you specified in a connector profile, use the DescribeConnectorProfiles action.</p>", |
152 | 154 | "SourceFlowConfig$apiVersion": "<p>The API version of the connector when it's used as a source in the flow.</p>"
|
153 | 155 | }
|
154 | 156 | },
|
|
563 | 565 | "DescribeConnectorEntityRequest$connectorProfileName": "<p> The name of the connector profile. The name is unique for each <code>ConnectorProfile</code> in the Amazon Web Services account. </p>",
|
564 | 566 | "DestinationFlowConfig$connectorProfileName": "<p> The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account. </p>",
|
565 | 567 | "ListConnectorEntitiesRequest$connectorProfileName": "<p> The name of the connector profile. The name is unique for each <code>ConnectorProfile</code> in the Amazon Web Services account, and is used to query the downstream connector. </p>",
|
| 568 | + "ResetConnectorMetadataCacheRequest$connectorProfileName": "<p>The name of the connector profile that you want to reset cached metadata for.</p> <p>You can omit this parameter if you're resetting the cache for any of the following connectors: Amazon Connect, Amazon EventBridge, Amazon Lookout for Metrics, Amazon S3, or Upsolver. If you're resetting the cache for any other connector, you must include this parameter in your request.</p>", |
566 | 569 | "SourceFlowConfig$connectorProfileName": "<p> The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account. </p>",
|
567 | 570 | "UpdateConnectorProfileRequest$connectorProfileName": "<p> The name of the connector profile and is unique for each <code>ConnectorProfile</code> in the Amazon Web Services account. </p>"
|
568 | 571 | }
|
|
661 | 664 | "FlowDefinition$sourceConnectorType": "<p> Specifies the source connector type, such as Salesforce, Amazon S3, Amplitude, and so on. </p>",
|
662 | 665 | "FlowDefinition$destinationConnectorType": "<p> Specifies the destination connector type, such as Salesforce, Amazon S3, Amplitude, and so on. </p>",
|
663 | 666 | "ListConnectorEntitiesRequest$connectorType": "<p> The type of connector, such as Salesforce, Amplitude, and so on. </p>",
|
| 667 | + "ResetConnectorMetadataCacheRequest$connectorType": "<p>The type of connector to reset cached metadata for.</p> <p>You must include this parameter in your request if you're resetting the cache for any of the following connectors: Amazon Connect, Amazon EventBridge, Amazon Lookout for Metrics, Amazon S3, or Upsolver. If you're resetting the cache for any other connector, you can omit this parameter from your request. </p>", |
664 | 668 | "SourceFlowConfig$connectorType": "<p> The type of connector, such as Salesforce, Amplitude, and so on. </p>"
|
665 | 669 | }
|
666 | 670 | },
|
|
1081 | 1085 | "EntitiesPath": {
|
1082 | 1086 | "base": null,
|
1083 | 1087 | "refs": {
|
1084 |
| - "ListConnectorEntitiesRequest$entitiesPath": "<p> This optional parameter is specific to connector implementation. Some connectors support multiple levels or categories of entities. You can find out the list of roots for such providers by sending a request without the <code>entitiesPath</code> parameter. If the connector supports entities at different roots, this initial request returns the list of roots. Otherwise, this request returns all entities supported by the provider. </p>" |
| 1088 | + "ListConnectorEntitiesRequest$entitiesPath": "<p> This optional parameter is specific to connector implementation. Some connectors support multiple levels or categories of entities. You can find out the list of roots for such providers by sending a request without the <code>entitiesPath</code> parameter. If the connector supports entities at different roots, this initial request returns the list of roots. Otherwise, this request returns all entities supported by the provider. </p>", |
| 1089 | + "ResetConnectorMetadataCacheRequest$entitiesPath": "<p>Use this parameter only if you’re resetting the cached metadata about a nested entity. Only some connectors support nested entities. A nested entity is one that has another entity as a parent. To use this parameter, specify the name of the parent entity.</p> <p>To look up the parent-child relationship of entities, you can send a ListConnectorEntities request that omits the entitiesPath parameter. Amazon AppFlow will return a list of top-level entities. For each one, it indicates whether the entity has nested entities. Then, in a subsequent ListConnectorEntities request, you can specify a parent entity name for the entitiesPath parameter. Amazon AppFlow will return a list of the child entities for that parent.</p>" |
1085 | 1090 | }
|
1086 | 1091 | },
|
1087 | 1092 | "EntityName": {
|
1088 | 1093 | "base": null,
|
1089 | 1094 | "refs": {
|
1090 | 1095 | "CustomConnectorDestinationProperties$entityName": "<p>The entity specified in the custom connector as a destination in the flow.</p>",
|
1091 | 1096 | "CustomConnectorSourceProperties$entityName": "<p>The entity specified in the custom connector as a source in the flow.</p>",
|
1092 |
| - "DescribeConnectorEntityRequest$connectorEntityName": "<p> The entity name for that connector. </p>" |
| 1097 | + "DescribeConnectorEntityRequest$connectorEntityName": "<p> The entity name for that connector. </p>", |
| 1098 | + "ResetConnectorMetadataCacheRequest$connectorEntityName": "<p>Use this parameter if you want to reset cached metadata about the details for an individual entity.</p> <p>If you don't include this parameter in your request, Amazon AppFlow only resets cached metadata about entity names, not entity details.</p>" |
1093 | 1099 | }
|
1094 | 1100 | },
|
1095 | 1101 | "ErrorHandlingConfig": {
|
|
2012 | 2018 | "MetadataCatalogDetail$partitionRegistrationOutput": "<p>Describes the status of the attempt from Amazon AppFlow to register the data partitions with the metadata catalog. The data partitions organize the flow output into a hierarchical path, such as a folder path in an S3 bucket. Amazon AppFlow creates the partitions (if they don't already exist) based on your flow configuration.</p>"
|
2013 | 2019 | }
|
2014 | 2020 | },
|
| 2021 | + "ResetConnectorMetadataCacheRequest": { |
| 2022 | + "base": null, |
| 2023 | + "refs": { |
| 2024 | + } |
| 2025 | + }, |
| 2026 | + "ResetConnectorMetadataCacheResponse": { |
| 2027 | + "base": null, |
| 2028 | + "refs": { |
| 2029 | + } |
| 2030 | + }, |
2015 | 2031 | "ResourceNotFoundException": {
|
2016 | 2032 | "base": "<p> The resource specified in the request (such as the source or destination connector profile) is not found. </p>",
|
2017 | 2033 | "refs": {
|
|
0 commit comments