@cloudcomponents/cdk-codepipeline-check-parameter-action
Version:
Cdk component that checks if system parameters are set correctly
17 lines (16 loc) • 512 B
TypeScript
import { IRole } from 'aws-cdk-lib/aws-iam';
import { Function } from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
export interface CheckParamterFunctionProps {
/**
* The name of the parameter.
*/
readonly parameterName: string;
/**
* Role for crossAccount permission
*/
readonly crossAccountRole?: IRole;
}
export declare class CheckParameterFunction extends Function {
constructor(scope: Construct, id: string, props: CheckParamterFunctionProps);
}