Skip to main content

connector_entities

Creates, updates, deletes, gets or lists a connector_entities resource.

Overview

Nameconnector_entities
TypeResource
Idaws.appflow.connector_entities

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
connector_entity_fieldsarrayDescribes the fields for that connector entity. For example, for an account entity, the fields would be account name, account ID, and so on.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_connector_entityselectregionProvides details regarding the entity used with the connector, with a description of the data model for each field in that entity.
list_connector_entitiesselectregionReturns 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.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Provides details regarding the entity used with the connector, with a description of the data model for each field in that entity.

SELECT
connector_entity_fields
FROM aws.appflow.connector_entities
WHERE region = '{{ region }}' -- required
;