You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ECS::Types::VolumeFrom

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing VolumeFrom as input to an Aws::Client method, you can use a vanilla Hash:

{
  source_container: "String",
  read_only: false,
}

Details on a data volume from another container in the same task definition.

Instance Attribute Summary collapse

Instance Attribute Details

#read_onlyBoolean

If this value is true, the container has read-only access to the volume. If this value is false, then the container can write to the volume. The default value is false.

Returns:

  • (Boolean)

    If this value is true, the container has read-only access to the volume.

#source_containerString

The name of another container within the same task definition from which to mount volumes.

Returns:

  • (String)

    The name of another container within the same task definition from which to mount volumes.