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

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 VolumeFrom data as a 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)


7611
7612
7613
7614
7615
# File 'lib/aws-sdk-ecs/types.rb', line 7611

class VolumeFrom < Struct.new(
  :source_container,
  :read_only)
  include Aws::Structure
end

#source_containerString

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

Returns:

  • (String)


7611
7612
7613
7614
7615
# File 'lib/aws-sdk-ecs/types.rb', line 7611

class VolumeFrom < Struct.new(
  :source_container,
  :read_only)
  include Aws::Structure
end