Class: Aws::CloudTrail::Types::TrailInfo
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudTrail::Types::TrailInfo
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudtrail/types.rb
 
Overview
Information about a CloudTrail trail, including the trail’s name, home Region, and Amazon Resource Name (ARN).
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #home_region  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The Amazon Web Services Region in which a trail was created.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of a trail.
 - 
  
    
      #trail_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of a trail.
 
Instance Attribute Details
#home_region ⇒ String
The Amazon Web Services Region in which a trail was created.
      4931 4932 4933 4934 4935 4936 4937  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 4931 class TrailInfo < Struct.new( :trail_arn, :name, :home_region) SENSITIVE = [] include Aws::Structure end  |