@spensireli/cdk-guardduty
Version:
Enables AWS GuardDuty with all features.
12 lines (11 loc) • 408 B
TypeScript
import { Construct } from 'constructs';
export interface GuardDutyConstructProps {
readonly enableGuardDuty?: boolean;
readonly kubernetesAuditLogs?: boolean;
readonly malwareProtection?: boolean;
readonly s3Logs?: boolean;
}
export declare class GuardDutyConstruct extends Construct {
detectorId: string;
constructor(scope: Construct, id: string, props?: GuardDutyConstructProps);
}