Class: Aws::Transfer::Types::FileLocation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Transfer::Types::FileLocation
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-transfer/types.rb
 
Overview
Specifies the Amazon S3 or EFS file details to be used in the step.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #efs_file_location  ⇒ Types::EfsFileLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the Amazon EFS identifier and the path for the file being used.
 - 
  
    
      #s3_file_location  ⇒ Types::S3FileLocation 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.
 
Instance Attribute Details
#efs_file_location ⇒ Types::EfsFileLocation
Specifies the Amazon EFS identifier and the path for the file being used.
      3204 3205 3206 3207 3208 3209  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3204 class FileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end  | 
  
#s3_file_location ⇒ Types::S3FileLocation
Specifies the S3 details for the file being used, such as bucket, ETag, and so forth.
      3204 3205 3206 3207 3208 3209  | 
    
      # File 'lib/aws-sdk-transfer/types.rb', line 3204 class FileLocation < Struct.new( :s3_file_location, :efs_file_location) SENSITIVE = [] include Aws::Structure end  |