Class: Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SecurityHub::Types::AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-securityhub/types.rb
 
Overview
A data volume to mount from another container.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #read_only  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Whether 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
Whether the container has read-only access to the volume.
      11157 11158 11159 11160 11161 11162  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 11157 class AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails < Struct.new( :read_only, :source_container) SENSITIVE = [] include Aws::Structure end  | 
  
#source_container ⇒ String
The name of another container within the same task definition from which to mount volumes.
      11157 11158 11159 11160 11161 11162  | 
    
      # File 'lib/aws-sdk-securityhub/types.rb', line 11157 class AwsEcsTaskDefinitionContainerDefinitionsVolumesFromDetails < Struct.new( :read_only, :source_container) SENSITIVE = [] include Aws::Structure end  |