UNPKG

raindancers-network

Version:
19 lines (18 loc) 755 B
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); }