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

AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails

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

For tasks that use the awsvpc networking mode, the VPC subnet and security group configuration.

interface AwsEcsServiceNetworkConfigurationAwsVpcConfigurationDetails {
AssignPublicIp?: string | null;
SecurityGroups?: string[] | null;
Subnets?: string[] | null;
}

§Properties

§
AssignPublicIp?: string | null
[src]

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

Valid values: ENABLED | DISABLED

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

The IDs of the security groups associated with the task or service.

You can provide up to five security groups.

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

The IDs of the subnets associated with the task or service.

You can provide up to 16 subnets.