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

Connection

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

A resource that is used to connect third-party source providers with services like AWS CodePipeline.

Note: A connection created through CloudFormation, the CLI, or the SDK is in PENDING status by default. You can make its status AVAILABLE by updating the connection in the console.

interface Connection {
ConnectionArn?: string | null;
ConnectionName?: string | null;
ConnectionStatus?: ConnectionStatus | null;
HostArn?: string | null;
OwnerAccountId?: string | null;
ProviderType?: ProviderType | null;
}

§Properties

§
ConnectionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the connection. The ARN is used as the connection reference when the connection is shared between AWS services.

Note: The ARN is never reused if the connection is deleted.

§
ConnectionName?: string | null
[src]

The name of the connection. Connection names must be unique in an AWS user account.

§
ConnectionStatus?: ConnectionStatus | null
[src]

The current status of the connection.

§
HostArn?: string | null
[src]

The Amazon Resource Name (ARN) of the host associated with the connection.

§
OwnerAccountId?: string | null
[src]

The identifier of the external provider where your third-party code repository is configured. For Bitbucket, this is the account ID of the owner of the Bitbucket repository.

§
ProviderType?: ProviderType | null
[src]

The name of the external provider where your third-party code repository is configured.