Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ConnectorEntity

import type { ConnectorEntity } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

The high-level entity that can be queried in Amazon AppFlow. For example, a Salesforce entity might be an Account or Opportunity, whereas a ServiceNow entity might be an Incident.

interface ConnectorEntity {
hasNestedEntities?: boolean | null;
label?: string | null;
name: string;
}

§Properties

§
hasNestedEntities?: boolean | null
[src]

Specifies whether the connector entity is a parent or a category and has more entities nested underneath it. If another call is made with entitiesPath = "the_current_entity_name_with_hasNestedEntities_true", then it returns the nested entities underneath it. This provides a way to retrieve all supported entities in a recursive fashion.

§
label?: string | null
[src]

The label applied to the connector entity.

§
name: string
[src]

The name of the connector entity.