Class: Aws::RDS::Types::DescribeDBLogFilesDetails
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::DescribeDBLogFilesDetails
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
This data type is used as a response element to ‘DescribeDBLogFiles`.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #last_written  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A POSIX timestamp when the last log entry was written. 
- 
  
    
      #log_file_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the log file for the specified DB instance. 
- 
  
    
      #size  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The size, in bytes, of the log file for the specified DB instance. 
Instance Attribute Details
#last_written ⇒ Integer
A POSIX timestamp when the last log entry was written.
| 12841 12842 12843 12844 12845 12846 12847 | # File 'lib/aws-sdk-rds/types.rb', line 12841 class DescribeDBLogFilesDetails < Struct.new( :log_file_name, :last_written, :size) SENSITIVE = [] include Aws::Structure end | 
#log_file_name ⇒ String
The name of the log file for the specified DB instance.
| 12841 12842 12843 12844 12845 12846 12847 | # File 'lib/aws-sdk-rds/types.rb', line 12841 class DescribeDBLogFilesDetails < Struct.new( :log_file_name, :last_written, :size) SENSITIVE = [] include Aws::Structure end | 
#size ⇒ Integer
The size, in bytes, of the log file for the specified DB instance.
| 12841 12842 12843 12844 12845 12846 12847 | # File 'lib/aws-sdk-rds/types.rb', line 12841 class DescribeDBLogFilesDetails < Struct.new( :log_file_name, :last_written, :size) SENSITIVE = [] include Aws::Structure end |