FunctionVpcConfig constructor

const FunctionVpcConfig({
  1. Input<bool?>? ipv6AllowedForDualStack,
  2. required Input<List<String>> securityGroupIds,
  3. required Input<List<String>> subnetIds,
  4. Input<String?>? vpcId,
})

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,
});