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

ConnectorProfile

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

Describes an instance of a connector. This includes the provided name, credentials ARN, connection-mode, and so on. To keep the API intuitive and extensible, the fields that are common to all types of connector profiles are explicitly specified at the top level. The rest of the connector-specific properties are available via the connectorProfileProperties field.

interface ConnectorProfile {
connectionMode?: ConnectionMode | null;
connectorLabel?: string | null;
connectorProfileArn?: string | null;
connectorProfileName?: string | null;
connectorProfileProperties?: ConnectorProfileProperties | null;
connectorType?: ConnectorType | null;
createdAt?: Date | number | null;
credentialsArn?: string | null;
lastUpdatedAt?: Date | number | null;
privateConnectionProvisioningState?: PrivateConnectionProvisioningState | null;
}

§Properties

§
connectionMode?: ConnectionMode | null
[src]

Indicates the connection mode and if it is public or private.

§
connectorLabel?: string | null
[src]

The label for the connector profile being created.

§
connectorProfileArn?: string | null
[src]

The Amazon Resource Name (ARN) of the connector profile.

§
connectorProfileName?: string | null
[src]

The name of the connector profile. The name is unique for each ConnectorProfile in the Amazon Web Services account.

§
connectorProfileProperties?: ConnectorProfileProperties | null
[src]

The connector-specific properties of the profile configuration.

§
connectorType?: ConnectorType | null
[src]

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

§
createdAt?: Date | number | null
[src]

Specifies when the connector profile was created.

§
credentialsArn?: string | null
[src]

The Amazon Resource Name (ARN) of the connector profile credentials.

§
lastUpdatedAt?: Date | number | null
[src]

Specifies when the connector profile was last updated.

§
privateConnectionProvisioningState?: PrivateConnectionProvisioningState | null
[src]

Specifies the private connection provisioning state.