Class: Aws::ECS::Types::Volume

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 Volume data as a hash:

{
  name: "String",
  host: {
    source_path: "String",
  },
  docker_volume_configuration: {
    scope: "task", # accepts task, shared
    autoprovision: false,
    driver: "String",
    driver_opts: {
      "String" => "String",
    },
    labels: {
      "String" => "String",
    },
  },
}

A data volume used in a task definition. For tasks that use a Docker volume, specify a ‘DockerVolumeConfiguration`. For tasks that use a bind mount host volume, specify a `host` and optional `sourcePath`. For more information, see [Using Data Volumes in Tasks].

[1]: docs.aws.amazon.com/AmazonECS/latest/developerguideusing_data_volumes.html

Instance Attribute Summary collapse

Instance Attribute Details

#docker_volume_configurationTypes::DockerVolumeConfiguration

The configuration for the Docker volume. This parameter is specified when using Docker volumes.



6055
6056
6057
6058
6059
6060
# File 'lib/aws-sdk-ecs/types.rb', line 6055

class Volume < Struct.new(
  :name,
  :host,
  :docker_volume_configuration)
  include Aws::Structure
end

#hostTypes::HostVolumeProperties

This parameter is specified when using bind mount host volumes. Bind mount host volumes are supported when using either the EC2 or Fargate launch types. The contents of the ‘host` parameter determine whether your bind mount host volume persists on the host container instance and where it is stored. If the `host` parameter is empty, then the Docker daemon assigns a host path for your data volume, but the data is not guaranteed to persist after the containers associated with it stop running.

Windows containers can mount whole directories on the same drive as ‘$env:ProgramData`. Windows containers cannot mount directories on a different drive, and mount point cannot be across drives. For example, you can mount `C:mypath:C:mypath` and `D::D:`, but not `D:mypath:C:mypath` or `D::C:mypath`.



6055
6056
6057
6058
6059
6060
# File 'lib/aws-sdk-ecs/types.rb', line 6055

class Volume < Struct.new(
  :name,
  :host,
  :docker_volume_configuration)
  include Aws::Structure
end

#nameString

The name of the volume. Up to 255 letters (uppercase and lowercase), numbers, hyphens, and underscores are allowed. This name is referenced in the ‘sourceVolume` parameter of container definition `mountPoints`.

Returns:

  • (String)


6055
6056
6057
6058
6059
6060
# File 'lib/aws-sdk-ecs/types.rb', line 6055

class Volume < Struct.new(
  :name,
  :host,
  :docker_volume_configuration)
  include Aws::Structure
end