1 | import { ContainerDefinition } from '../container-definition';
|
2 | import { BaseLogDriverProps } from './base-log-driver';
|
3 | import { LogDriver, LogDriverConfig } from './log-driver';
|
4 | import { Construct as CoreConstruct } from '@aws-cdk/core';
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export interface JournaldLogDriverProps extends BaseLogDriverProps {
|
11 | }
|
12 |
|
13 |
|
14 |
|
15 | export declare class JournaldLogDriver extends LogDriver {
|
16 | private readonly props;
|
17 | |
18 |
|
19 |
|
20 |
|
21 |
|
22 | constructor(props?: JournaldLogDriverProps);
|
23 | /**
|
24 | * Called when the log driver is configured on a container
|
25 | */
|
26 | bind(_scope: CoreConstruct, _containerDefinition: ContainerDefinition): LogDriverConfig;
|
27 | }
|