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

AwsVpcConfiguration

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

An object representing the networking details for a task or service.

interface AwsVpcConfiguration {
assignPublicIp?: AssignPublicIp | null;
securityGroups?: string[] | null;
subnets: string[];
}

§Properties

§
assignPublicIp?: AssignPublicIp | null
[src]

Whether the task's elastic network interface receives a public IP address. The default value is DISABLED.

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

The IDs of the security groups associated with the task or service. If you don't specify a security group, the default security group for the VPC is used. There's a limit of 5 security groups that can be specified per AwsVpcConfiguration.

Note: All specified security groups must be from the same VPC.

§
subnets: string[]
[src]

The IDs of the subnets associated with the task or service. There's a limit of 16 subnets that can be specified per AwsVpcConfiguration.

Note: All specified subnets must be from the same VPC.