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`.
12718 12719 12720 12721 12722 12723 |
# File 'lib/aws-sdk-ecs/types.rb', line 12718 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.
12718 12719 12720 12721 12722 12723 |
# File 'lib/aws-sdk-ecs/types.rb', line 12718 class VolumeFrom < Struct.new( :source_container, :read_only) SENSITIVE = [] include Aws::Structure end |