aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
18 lines (17 loc) • 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;
}