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

ConnectorConfiguration

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

The configuration settings related to a given connector.

interface ConnectorConfiguration {
authenticationConfig?: AuthenticationConfig | null;
canUseAsDestination?: boolean | null;
canUseAsSource?: boolean | null;
connectorArn?: string | null;
connectorDescription?: string | null;
connectorLabel?: string | null;
connectorMetadata?: ConnectorMetadata | null;
connectorModes?: string[] | null;
connectorName?: string | null;
connectorOwner?: string | null;
connectorProvisioningConfig?: ConnectorProvisioningConfig | null;
connectorProvisioningType?: ConnectorProvisioningType | null;
connectorRuntimeSettings?: ConnectorRuntimeSetting[] | null;
connectorType?: ConnectorType | null;
connectorVersion?: string | null;
isPrivateLinkEnabled?: boolean | null;
isPrivateLinkEndpointUrlRequired?: boolean | null;
logoURL?: string | null;
registeredAt?: Date | number | null;
registeredBy?: string | null;
supportedApiVersions?: string[] | null;
supportedDestinationConnectors?: ConnectorType[] | null;
supportedOperators?: Operators[] | null;
supportedSchedulingFrequencies?: ScheduleFrequencyType[] | null;
supportedTriggerTypes?: TriggerType[] | null;
supportedWriteOperations?: WriteOperationType[] | null;
}

§Properties

§
authenticationConfig?: AuthenticationConfig | null
[src]

The authentication config required for the connector.

§
canUseAsDestination?: boolean | null
[src]

Specifies whether the connector can be used as a destination.

§
canUseAsSource?: boolean | null
[src]

Specifies whether the connector can be used as a source.

§
connectorArn?: string | null
[src]

The Amazon Resource Name (ARN) for the registered connector.

§
connectorDescription?: string | null
[src]

A description about the connector.

§
connectorLabel?: string | null
[src]

The label used for registering the connector.

§
connectorMetadata?: ConnectorMetadata | null
[src]

Specifies connector-specific metadata such as oAuthScopes, supportedRegions, privateLinkServiceUrl, and so on.

§
connectorModes?: string[] | null
[src]

The connection modes that the connector supports.

§
connectorName?: string | null
[src]

The connector name.

§
connectorOwner?: string | null
[src]

The owner who developed the connector.

§
connectorProvisioningConfig?: ConnectorProvisioningConfig | null
[src]

The configuration required for registering the connector.

§
connectorProvisioningType?: ConnectorProvisioningType | null
[src]

The provisioning type used to register the connector.

§
connectorRuntimeSettings?: ConnectorRuntimeSetting[] | null
[src]

The required connector runtime settings.

§
connectorType?: ConnectorType | null
[src]

The connector type.

§
connectorVersion?: string | null
[src]

The connector version.

§
isPrivateLinkEnabled?: boolean | null
[src]

Specifies if PrivateLink is enabled for that connector.

§
isPrivateLinkEndpointUrlRequired?: boolean | null
[src]

Specifies if a PrivateLink endpoint URL is required.

§
logoURL?: string | null
[src]

Logo URL of the connector.

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

The date on which the connector was registered.

§
registeredBy?: string | null
[src]

Information about who registered the connector.

§
supportedApiVersions?: string[] | null
[src]

A list of API versions that are supported by the connector.

§
supportedDestinationConnectors?: ConnectorType[] | null
[src]

Lists the connectors that are available for use as destinations.

§
supportedOperators?: Operators[] | null
[src]

A list of operators supported by the connector.

§
supportedSchedulingFrequencies?: ScheduleFrequencyType[] | null
[src]

Specifies the supported flow frequency for that connector.

§
supportedTriggerTypes?: TriggerType[] | null
[src]

Specifies the supported trigger types for the flow.

§
supportedWriteOperations?: WriteOperationType[] | null
[src]

A list of write operations supported by the connector.