UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

12 lines (11 loc) 595 B
import { ScheduleTargetBase, ScheduleTargetBaseProps } from './target'; import { IRole } from '../../aws-iam'; import { IScheduleTarget } from '../../aws-scheduler'; import { IAssessmentTemplateRef } from '../../interfaces/generated/aws-inspector-interfaces.generated'; /** * Use an Amazon Inspector as a target for AWS EventBridge Scheduler. */ export declare class InspectorStartAssessmentRun extends ScheduleTargetBase implements IScheduleTarget { constructor(template: IAssessmentTemplateRef, props?: ScheduleTargetBaseProps); protected addTargetActionToRole(role: IRole): void; }