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

VpcConnector

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

Describes an App Runner VPC connector resource. A VPC connector describes the Amazon Virtual Private Cloud (Amazon VPC) that an App Runner service is associated with, and the subnets and security group that are used.

Multiple revisions of a connector might have the same Name and different Revision values.

Note: At this time, App Runner supports only one revision per name.

interface VpcConnector {
CreatedAt?: Date | number | null;
DeletedAt?: Date | number | null;
SecurityGroups?: string[] | null;
Status?: VpcConnectorStatus | null;
Subnets?: string[] | null;
VpcConnectorArn?: string | null;
VpcConnectorName?: string | null;
VpcConnectorRevision?: number | null;
}

§Properties

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

The time when the VPC connector was created. It's in Unix time stamp format.

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

The time when the VPC connector was deleted. It's in Unix time stamp format.

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

A list of IDs of security groups that App Runner uses for access to Amazon Web Services resources under the specified subnets. If not specified, App Runner uses the default security group of the Amazon VPC. The default security group allows all outbound traffic.

§
Status?: VpcConnectorStatus | null
[src]

The current state of the VPC connector. If the status of a connector revision is INACTIVE, it was deleted and can't be used. Inactive connector revisions are permanently removed some time after they are deleted.

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

A list of IDs of subnets that App Runner uses for your service. All IDs are of subnets of a single Amazon VPC.

§
VpcConnectorArn?: string | null
[src]

The Amazon Resource Name (ARN) of this VPC connector.

§
VpcConnectorName?: string | null
[src]

The customer-provided VPC connector name.

§
VpcConnectorRevision?: number | null
[src]

The revision of this VPC connector. It's unique among all the active connectors ("Status": "ACTIVE") that share the same Name.

Note: At this time, App Runner supports only one revision per name.