interface VpcProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.EC2.VpcProps |
Java | software.amazon.awscdk.services.ec2.VpcProps |
Python | aws_cdk.aws_ec2.VpcProps |
TypeScript (source) | @aws-cdk/aws-ec2 » VpcProps |
Configuration for Vpc.
Example
import * as ec2 from '@aws-cdk/aws-ec2';
const vpc = new ec2.Vpc(this, 'Vpc', {
cidr: '10.0.0.0/16',
});
const vpcConnector = new apprunner.VpcConnector(this, 'VpcConnector', {
vpc,
vpcSubnets: vpc.selectSubnets({ subnetType: ec2.SubnetType.PUBLIC }),
vpcConnectorName: 'MyVpcConnector',
});
new apprunner.Service(this, 'Service', {
source: apprunner.Source.fromEcrPublic({
imageConfiguration: { port: 8000 },
imageIdentifier: 'public.ecr.aws/aws-containers/hello-app-runner:latest',
}),
vpcConnector,
});
Properties
Name | Type | Description |
---|---|---|
cidr? | string | The CIDR range to use for the VPC, e.g. '10.0.0.0/16'. |
default | Default | The default tenancy of instances launched into the VPC. |
enable | boolean | Indicates whether the instances launched in the VPC get public DNS hostnames. |
enable | boolean | Indicates whether the DNS resolution is supported for the VPC. |
flow | { [string]: Flow } | Flow logs to add to this VPC. |
gateway | { [string]: Gateway } | Gateway endpoints to add to this VPC. |
max | number | Define the maximum number of AZs to use in this region. |
nat | Nat | What type of NAT provider to use. |
nat | Subnet | Configures the subnets which will have NAT Gateways/Instances. |
nat | number | The number of NAT Gateways/Instances to create. |
subnet | Subnet [] | Configure the subnets to build for each AZ. |
vpc | string | The VPC name. |
vpn | { [string]: Vpn } | VPN connections to this VPC. |
vpn | boolean | Indicates whether a VPN gateway should be created and attached to this VPC. |
vpn | number | The private Autonomous System Number (ASN) for the VPN gateway. |
vpn | Subnet [] | Where to propagate VPN routes. |
cidr?
Type:
string
(optional, default: Vpc.DEFAULT_CIDR_RANGE)
The CIDR range to use for the VPC, e.g. '10.0.0.0/16'.
Should be a minimum of /28 and maximum size of /16. The range will be split across all subnets per Availability Zone.
defaultInstanceTenancy?
Type:
Default
(optional, default: DefaultInstanceTenancy.Default (shared) tenancy)
The default tenancy of instances launched into the VPC.
By setting this to dedicated tenancy, instances will be launched on hardware dedicated to a single AWS customer, unless specifically specified at instance launch time. Please note, not all instance types are usable with Dedicated tenancy.
enableDnsHostnames?
Type:
boolean
(optional, default: true)
Indicates whether the instances launched in the VPC get public DNS hostnames.
If this attribute is true, instances in the VPC get public DNS hostnames, but only if the enableDnsSupport attribute is also set to true.
enableDnsSupport?
Type:
boolean
(optional, default: true)
Indicates whether the DNS resolution is supported for the VPC.
If this attribute is false, the Amazon-provided DNS server in the VPC that resolves public DNS hostnames to IP addresses is not enabled. If this attribute is true, queries to the Amazon provided DNS server at the 169.254.169.253 IP address, or the reserved IP address at the base of the VPC IPv4 network range plus two will succeed.
flowLogs?
Type:
{ [string]:
Flow
}
(optional, default: No flow logs.)
Flow logs to add to this VPC.
gatewayEndpoints?
Type:
{ [string]:
Gateway
}
(optional, default: None.)
Gateway endpoints to add to this VPC.
maxAzs?
Type:
number
(optional, default: 3)
Define the maximum number of AZs to use in this region.
If the region has more AZs than you want to use (for example, because of EIP limits), pick a lower number here. The AZs will be sorted and picked from the start of the list.
If you pick a higher number than the number of AZs in the region, all AZs in the region will be selected. To use "all AZs" available to your account, use a high number (such as 99).
Be aware that environment-agnostic stacks will be created with access to only 2 AZs, so to use more than 2 AZs, be sure to specify the account and region on your stack.
natGatewayProvider?
Type:
Nat
(optional, default: NatProvider.gateway())
What type of NAT provider to use.
Select between NAT gateways or NAT instances. NAT gateways may not be available in all AWS regions.
natGatewaySubnets?
Type:
Subnet
(optional, default: All public subnets.)
Configures the subnets which will have NAT Gateways/Instances.
You can pick a specific group of subnets by specifying the group name; the picked subnets must be public subnets.
Only necessary if you have more than one public subnet group.
natGateways?
Type:
number
(optional, default: One NAT gateway/instance per Availability Zone)
The number of NAT Gateways/Instances to create.
The type of NAT gateway or instance will be determined by the
natGatewayProvider
parameter.
You can set this number lower than the number of Availability Zones in your VPC in order to save on NAT cost. Be aware you may be charged for cross-AZ data traffic instead.
subnetConfiguration?
Type:
Subnet
[]
(optional, default: The VPC CIDR will be evenly divided between 1 public and 1
private subnet per AZ.)
Configure the subnets to build for each AZ.
Each entry in this list configures a Subnet Group; each group will contain a subnet for each Availability Zone.
For example, if you want 1 public subnet, 1 private subnet, and 1 isolated subnet in each AZ provide the following:
new ec2.Vpc(this, 'VPC', {
subnetConfiguration: [
{
cidrMask: 24,
name: 'ingress',
subnetType: ec2.SubnetType.PUBLIC,
},
{
cidrMask: 24,
name: 'application',
subnetType: ec2.SubnetType.PRIVATE_WITH_NAT,
},
{
cidrMask: 28,
name: 'rds',
subnetType: ec2.SubnetType.PRIVATE_ISOLATED,
}
]
});
vpcName?
Type:
string
(optional, default: this.node.path)
The VPC name.
Since the VPC resource doesn't support providing a physical name, the value provided here will be recorded in the Name
tag
vpnConnections?
Type:
{ [string]:
Vpn
}
(optional, default: No connections.)
VPN connections to this VPC.
vpnGateway?
Type:
boolean
(optional, default: true when vpnGatewayAsn or vpnConnections is specified)
Indicates whether a VPN gateway should be created and attached to this VPC.
vpnGatewayAsn?
Type:
number
(optional, default: Amazon default ASN.)
The private Autonomous System Number (ASN) for the VPN gateway.
vpnRoutePropagation?
Type:
Subnet
[]
(optional, default: On the route tables associated with private subnets. If no
private subnets exists, isolated subnets are used. If no isolated subnets
exists, public subnets are used.)
Where to propagate VPN routes.