Class: Aws::IoTSiteWise::Types::File
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::IoTSiteWise::Types::File
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-iotsitewise/types.rb
 
Overview
The file in Amazon S3 where your data is saved.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the Amazon S3 bucket from which data is imported.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key of the Amazon S3 object that contains your data.
 - 
  
    
      #version_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version ID to identify a specific version of the Amazon S3 object that contains your data.
 
Instance Attribute Details
#bucket ⇒ String
The name of the Amazon S3 bucket from which data is imported.
      5384 5385 5386 5387 5388 5389 5390  | 
    
      # File 'lib/aws-sdk-iotsitewise/types.rb', line 5384 class File < Struct.new( :bucket, :key, :version_id) SENSITIVE = [] include Aws::Structure end  | 
  
#key ⇒ String
The key of the Amazon S3 object that contains your data. Each object has a key that is a unique identifier. Each object has exactly one key.
      5384 5385 5386 5387 5388 5389 5390  | 
    
      # File 'lib/aws-sdk-iotsitewise/types.rb', line 5384 class File < Struct.new( :bucket, :key, :version_id) SENSITIVE = [] include Aws::Structure end  |