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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

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)


12709
12710
12711
12712
12713
12714
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12709

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

#source_containerString

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

Returns:

  • (String)


12709
12710
12711
12712
12713
12714
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 12709

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