interface BaseLogDriverProps
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.ECS.BaseLogDriverProps |
Java | software.amazon.awscdk.services.ecs.BaseLogDriverProps |
Python | aws_cdk.aws_ecs.BaseLogDriverProps |
TypeScript (source) | @aws-cdk/aws-ecs » BaseLogDriverProps |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as ecs from '@aws-cdk/aws-ecs';
const baseLogDriverProps: ecs.BaseLogDriverProps = {
env: ['env'],
envRegex: 'envRegex',
labels: ['labels'],
tag: 'tag',
};
Properties
Name | Type | Description |
---|---|---|
env? | string[] | The env option takes an array of keys. |
env | string | The env-regex option is similar to and compatible with env. |
labels? | string[] | The labels option takes an array of keys. |
tag? | string | By default, Docker uses the first 12 characters of the container ID to tag log messages. |
env?
Type:
string[]
(optional, default: No env)
The env option takes an array of keys.
If there is collision between label and env keys, the value of the env takes precedence. Adds additional fields to the extra attributes of a logging message.
envRegex?
Type:
string
(optional, default: No envRegex)
The env-regex option is similar to and compatible with env.
Its value is a regular expression to match logging-related environment variables. It is used for advanced log tag options.
labels?
Type:
string[]
(optional, default: No labels)
The labels option takes an array of keys.
If there is collision between label and env keys, the value of the env takes precedence. Adds additional fields to the extra attributes of a logging message.
tag?
Type:
string
(optional, default: The first 12 characters of the container ID)
By default, Docker uses the first 12 characters of the container ID to tag log messages.
Refer to the log tag option documentation for customizing the log tag format.