GetFunctionVpcConfig constructor

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

Creates a new GetFunctionVpcConfig. ipv6AllowedForDualStack Whether IPv6 is allowed for dual-stack VPC. 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 GetFunctionVpcConfig({
  required this.ipv6AllowedForDualStack,
  required this.securityGroupIds,
  required this.subnetIds,
  required this.vpcId,
});