FunctionVpcConfig constructor
const
FunctionVpcConfig({})
Creates a new FunctionVpcConfig.
ipv6AllowedForDualStack Whether to allow outbound IPv6 traffic on VPC functions connected to dual-stack subnets. Default: false.
securityGroupIds List of security group IDs associated with the Lambda function.
subnetIds List of subnet IDs associated with the Lambda function.
vpcId ID of the VPC.
Implementation
const FunctionVpcConfig({
this.ipv6AllowedForDualStack,
required this.securityGroupIds,
required this.subnetIds,
this.vpcId,
});