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

SourceFlowConfig

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

Contains information about the configuration of the source connector used in the flow.

interface SourceFlowConfig {
apiVersion?: string | null;
connectorProfileName?: string | null;
connectorType: ConnectorType;
incrementalPullConfig?: IncrementalPullConfig | null;
sourceConnectorProperties: SourceConnectorProperties;
}

§Properties

§
apiVersion?: string | null
[src]

The API version of the connector when it's used as a source in the flow.

§
connectorProfileName?: string | null
[src]

The name of the connector profile. This name must be unique for each connector profile in the Amazon Web Services account.

§
connectorType: ConnectorType
[src]

The type of connector, such as Salesforce, Amplitude, and so on.

§
incrementalPullConfig?: IncrementalPullConfig | null
[src]

Defines the configuration for a scheduled incremental data pull. If a valid configuration is provided, the fields specified in the configuration are used when querying for the incremental data pull.

§
sourceConnectorProperties: SourceConnectorProperties
[src]

Specifies the information that is required to query a particular source connector.