Struct rusoto_ecs::LogConfiguration [] [src]

pub struct LogConfiguration {
    pub log_driver: LogDriver,
    pub options: Option<LogConfigurationOptionsMap>,
}

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

Fields

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 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 provide support for running modified copies of this software.

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 into your container instance and run the following command: sudo docker version | grep "Server API version"

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 into your container instance and run the following command: sudo docker version | grep "Server API version"

Trait Implementations

impl Default for LogConfiguration
[src]

Returns the "default value" for a type. Read more

impl Debug for LogConfiguration
[src]

Formats the value using the given formatter.

impl Clone for LogConfiguration
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more