raindancers-network
Version:
Extensions to the ec2.Vpc Constructs
12 lines (11 loc) • 385 B
TypeScript
import * as constructs from 'constructs';
export interface FindPrefixListProps {
readonly prefixListName: string;
}
/**
* Enforces the use of IMDSv2, without causing replacement of the Instance.
*/
export declare class FindPrefixList extends constructs.Construct {
prefixListId: string;
constructor(scope: constructs.Construct, id: string, props: FindPrefixListProps);
}