/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the ecs-2014-11-13.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.ECS.Model
{
///
/// The log configuration for the container. This parameter maps to LogConfig
/// in the Create
/// a container section of the Docker
/// Remote API and the --log-driver
option to
/// docker run
.
///
///
///
/// By default, containers use the same logging driver that the Docker daemon uses. However,
/// the container might use a different logging driver than the Docker daemon by specifying
/// a log driver configuration in the container definition. For more information about
/// the options for different supported log drivers, see Configure
/// logging drivers in the Docker documentation.
///
///
///
/// Understand the following when specifying a log configuration for your containers.
///
/// -
///
/// Amazon ECS currently supports a subset of the logging drivers available to the Docker
/// daemon (shown in the valid values below). Additional log drivers may be available
/// in future releases of the Amazon ECS container agent.
///
///
-
///
/// This parameter requires version 1.18 of the Docker Remote API or greater on your container
/// instance.
///
///
-
///
/// For tasks that are hosted on Amazon EC2 instances, the Amazon ECS container agent
/// must register the available logging drivers with the
ECS_AVAILABLE_LOGGING_DRIVERS
/// environment variable before containers placed on that instance can use these log configuration
/// options. For more information, see Amazon
/// ECS container agent configuration in the Amazon Elastic Container Service Developer
/// Guide.
///
/// -
///
/// For tasks that are on Fargate, because you don't have access to the underlying infrastructure
/// your tasks are hosted on, any additional software needed must be installed outside
/// of the task. For example, the Fluentd output aggregators or a remote host running
/// Logstash to send Gelf logs to.
///
///
///
public partial class LogConfiguration
{
private LogDriver _logDriver;
private Dictionary _options = new Dictionary();
private List _secretOptions = new List();
///
/// Gets and sets the property LogDriver.
///
/// The log driver to use for the container.
///
///
///
/// For tasks on Fargate, the supported log drivers are awslogs
, splunk
,
/// and awsfirelens
.
///
///
///
/// For tasks hosted on Amazon EC2 instances, 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.
///
///
///
/// If you have a custom driver that isn't listed, you can fork the Amazon ECS container
/// agent project that's available on
/// GitHub and customize it to work with that driver. We encourage you to submit pull
/// requests for changes that you would like to have included. However, we don't currently
/// provide support for running modified copies of this software.
///
///
///
[AWSProperty(Required=true)]
public LogDriver LogDriver
{
get { return this._logDriver; }
set { this._logDriver = value; }
}
// Check to see if LogDriver property is set
internal bool IsSetLogDriver()
{
return this._logDriver != null;
}
///
/// Gets and sets the property Options.
///
/// The configuration options to send to the log driver. This parameter requires version
/// 1.19 of the Docker Remote API or greater on your container instance. To check the
/// Docker Remote API version on your container instance, log in to your container instance
/// and run the following command: sudo docker version --format '{{.Server.APIVersion}}'
///
///
///
public Dictionary Options
{
get { return this._options; }
set { this._options = value; }
}
// Check to see if Options property is set
internal bool IsSetOptions()
{
return this._options != null && this._options.Count > 0;
}
///
/// Gets and sets the property SecretOptions.
///
/// The secrets to pass to the log configuration. For more information, see Specifying
/// sensitive data in the Amazon Elastic Container Service Developer Guide.
///
///
public List SecretOptions
{
get { return this._secretOptions; }
set { this._secretOptions = value; }
}
// Check to see if SecretOptions property is set
internal bool IsSetSecretOptions()
{
return this._secretOptions != null && this._secretOptions.Count > 0;
}
}
}