Files
2026-05-06 18:55:16 -05:00

18 lines
609 B
TypeScript

import type { Construct } from 'constructs';
import type { LogDriverConfig } from './log-driver';
import { LogDriver } from './log-driver';
import type { ContainerDefinition } from '../container-definition';
/**
* A log driver that sets the log driver to `none` (no logs collected).
*/
export declare class NoneLogDriver extends LogDriver {
/**
* Constructs a new instance of the NoneLogDriver class.
*/
constructor();
/**
* Called when the log driver is configured on a container
*/
bind(_scope: Construct, _containerDefinition: ContainerDefinition): LogDriverConfig;
}