14 lines
705 B
TypeScript
14 lines
705 B
TypeScript
import { Construct } from "constructs";
|
|
import { CustomResourceProviderBase, CustomResourceProviderOptions } from "../../../core";
|
|
export declare class CrossRegionStringParamReaderProvider extends CustomResourceProviderBase {
|
|
/**
|
|
* Returns a stack-level singleton ARN (service token) for the custom resource provider.
|
|
*/
|
|
static getOrCreate(scope: Construct, uniqueid: string, props?: CustomResourceProviderOptions): string;
|
|
/**
|
|
* Returns a stack-level singleton for the custom resource provider.
|
|
*/
|
|
static getOrCreateProvider(scope: Construct, uniqueid: string, props?: CustomResourceProviderOptions): CrossRegionStringParamReaderProvider;
|
|
private constructor();
|
|
}
|