Show / Hide Table of Contents

Interface ILogDriverConfig

The configuration to use when creating a log driver.

Namespace: Amazon.CDK.AWS.ECS
Assembly: Amazon.CDK.AWS.ECS.dll
Syntax (csharp)
public interface ILogDriverConfig
Syntax (vb)
Public Interface ILogDriverConfig
Remarks

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.ECS;

var logDriverConfig = new LogDriverConfig {
    LogDriver = "logDriver",

    // the properties below are optional
    Options = new Dictionary<string, string> {
        { "optionsKey", "options" }
    },
    SecretOptions = new [] { new SecretProperty {
        Name = "name",
        ValueFrom = "valueFrom"
    } }
};

Synopsis

Properties

LogDriver

The log driver to use for the container.

Options

The configuration options to send to the log driver.

SecretOptions

The secrets to pass to the log configuration.

Properties

LogDriver

The log driver to use for the container.

string LogDriver { get; }
Property Value

System.String

Remarks

The valid values listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default.

For tasks using the Fargate launch type, the supported log drivers are awslogs, splunk, and awsfirelens. For tasks using the EC2 launch type, the supported log drivers are awslogs, fluentd, gelf, json-file, journald, logentries,syslog, splunk, and awsfirelens.

For more information about using the awslogs log driver, see Using the awslogs Log Driver in the Amazon Elastic Container Service Developer Guide.

For more information about using the awsfirelens log driver, see Custom Log Routing in the Amazon Elastic Container Service Developer Guide.

Options

The configuration options to send to the log driver.

virtual IDictionary<string, string> Options { get; }
Property Value

System.Collections.Generic.IDictionary<System.String, System.String>

SecretOptions

The secrets to pass to the log configuration.

virtual CfnTaskDefinition.ISecretProperty[] SecretOptions { get; }
Property Value

CfnTaskDefinition.ISecretProperty[]

Remarks

Default: - No secret options provided.

Back to top Generated by DocFX