Class: Aws::ECS::Types::VolumeFrom
- Inherits:
-
Struct
- Object
- Struct
- Aws::ECS::Types::VolumeFrom
- Includes:
- Structure
- Defined in:
- 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`.
13680 13681 13682 13683 13684 13685 |
# File 'lib/aws-sdk-ecs/types.rb', line 13680 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.
13680 13681 13682 13683 13684 13685 |
# File 'lib/aws-sdk-ecs/types.rb', line 13680 class VolumeFrom < Struct.new( :source_container, :read_only) SENSITIVE = [] include Aws::Structure end |