This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Construct } from 'constructs'; | |
import * as customResources from 'aws-cdk-lib/custom-resources'; | |
import * as vpclattice from 'aws-cdk-lib/aws-vpclattice'; | |
export interface VPCLatticePrefixListsProps { | |
region: string; | |
serviceNetworkVpcAssociation: vpclattice.CfnServiceNetworkVpcAssociation; | |
} | |
export class VPCLatticePrefixLists extends Construct { |