Class: Aws::ECS::Types::LogConfiguration

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ecs/types.rb

Overview

Note:

When making an API call, you may pass LogConfiguration data as a hash:

{
  log_driver: "json-file", # required, accepts json-file, syslog, journald, gelf, fluentd, awslogs, splunk
  options: {
    "String" => "String",
  },
}

Log configuration options to send to a custom log driver for the container.

Instance Attribute Summary collapse

Instance Attribute Details

#log_driverString

The log driver to use for the container. The valid values listed for this parameter are log drivers that the Amazon ECS container agent can communicate with by default. If you are using the Fargate launch type, the only supported value is ‘awslogs`. For more information about using the `awslogs` driver, see [Using the awslogs Log Driver] in the *Amazon Elastic Container Service Developer Guide*.

<note markdown=“1”> If you have a custom driver that is not listed above that you would like to work with the Amazon ECS container agent, you can fork the Amazon ECS container agent project that is [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, Amazon Web Services does not currently support running modified copies of this software.

</note>

This parameter requires version 1.18 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 ’Aws::ECS::Types::LogConfiguration.{{.Server{.Server.APIVersion}‘`

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguide/using_awslogs.html [2]: github.com/aws/amazon-ecs-agent

Returns:

  • (String)


4080
4081
4082
4083
4084
# File 'lib/aws-sdk-ecs/types.rb', line 4080

class LogConfiguration < Struct.new(
  :log_driver,
  :options)
  include Aws::Structure
end

#optionsHash<String,String>

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 ’Aws::ECS::Types::LogConfiguration.{{.Server{.Server.APIVersion}‘`

Returns:

  • (Hash<String,String>)


4080
4081
4082
4083
4084
# File 'lib/aws-sdk-ecs/types.rb', line 4080

class LogConfiguration < Struct.new(
  :log_driver,
  :options)
  include Aws::Structure
end