You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.
Class: Aws::ECS::Types::VolumeFrom
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ECS::Types::VolumeFrom
 
- Defined in:
- (unknown)
Overview
    Note:
    
  
When passing VolumeFrom as input to an Aws::Client method, you can use a vanilla Hash:
{
  source_container: "String",
  read_only: false,
}
Details on a data volume from another container in the same task definition.
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 from which to mount volumes. 
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.
#source_container ⇒ String
The name of another container within the same task definition from which to mount volumes.