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.
| 15493 15494 15495 15496 15497 15498 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15493 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.
| 15493 15494 15495 15496 15497 15498 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 15493 class VolumeFrom < Struct.new( :source_container, :read_only) SENSITIVE = [] include Aws::Structure end |