AwsLambdaFunctionVpcConfig.fromJson constructor
Implementation
factory AwsLambdaFunctionVpcConfig.fromJson(Map<String, dynamic> json) {
return AwsLambdaFunctionVpcConfig(
securityGroupIds: (json['SecurityGroupIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
subnetIds: (json['SubnetIds'] as List?)
?.whereNotNull()
.map((e) => e as String)
.toList(),
vpcId: json['VpcId'] as String?,
);
}