@gammarers/aws-rds-database-running-schedule-stack
Version:
AWS RDS Database Running Scheduler
10 lines (9 loc) • 420 B
TypeScript
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);
}