raindancers-network
Version:
Extensions to the ec2.Vpc Constructs
19 lines (18 loc) • 755 B
TypeScript
import { custom_resources as cr } from 'aws-cdk-lib';
import * as constructs from 'constructs';
export interface CrossRegionParameterReaderProps {
readonly parameterName: string;
readonly region: string;
}
export declare class CrossRegionParameterReader extends cr.AwsCustomResource {
constructor(scope: constructs.Construct, name: string, props: CrossRegionParameterReaderProps);
parameterValue(): string;
}
export interface CrossRegionParameterWriterProps {
readonly parameterName: string;
readonly value: string;
readonly description: string;
}
export declare class CrossRegionParameterWriter extends constructs.Construct {
constructor(scope: constructs.Construct, id: string, props: CrossRegionParameterWriterProps);
}