UNPKG

@gammarers/aws-rds-database-running-schedule-stack

Version:
10 lines (9 loc) 420 B
import * as sns from 'aws-cdk-lib/aws-sns'; import * as sfn from 'aws-cdk-lib/aws-stepfunctions'; import { Construct } from 'constructs'; export interface RunningControlStateMachineProps extends sfn.StateMachineProps { notificationTopic: sns.ITopic; } export declare class RunningControlStateMachine extends sfn.StateMachine { constructor(scope: Construct, id: string, props: RunningControlStateMachineProps); }