Class: Aws::ECS::Types::VolumeFrom
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::VolumeFrom
- 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
-
#read_only ⇒ Boolean
If this value is
true, the container has read-only access to the volume. -
#source_container ⇒ String
The name of another container within the same task definition to mount volumes from.
Instance Attribute Details
#read_only ⇒ Boolean
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.
16775 16776 16777 16778 16779 16780 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 16775 class VolumeFrom < Struct.new( :source_container, :read_only) SENSITIVE = [] include Aws::Structure end |
#source_container ⇒ String
The name of another container within the same task definition to mount volumes from.
16775 16776 16777 16778 16779 16780 |
# File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 16775 class VolumeFrom < Struct.new( :source_container, :read_only) SENSITIVE = [] include Aws::Structure end |