Class: Aws::AccessAnalyzer::Types::CloudTrailDetails
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::AccessAnalyzer::Types::CloudTrailDetails
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-accessanalyzer/types.rb
 
Overview
Contains information about CloudTrail access.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #access_role  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the service role that IAM Access Analyzer uses to access your CloudTrail trail and service last accessed information.
 - 
  
    
      #end_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The end of the time range for which IAM Access Analyzer reviews your CloudTrail events.
 - 
  
    
      #start_time  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The start of the time range for which IAM Access Analyzer reviews your CloudTrail events.
 - 
  
    
      #trails  ⇒ Array<Types::Trail> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A ‘Trail` object that contains settings for a trail.
 
Instance Attribute Details
#access_role ⇒ String
The ARN of the service role that IAM Access Analyzer uses to access your CloudTrail trail and service last accessed information.
      831 832 833 834 835 836 837 838  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 831 class CloudTrailDetails < Struct.new( :trails, :access_role, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end  | 
  
#end_time ⇒ Time
The end of the time range for which IAM Access Analyzer reviews your CloudTrail events. Events with a timestamp after this time are not considered to generate a policy. If this is not included in the request, the default value is the current time.
      831 832 833 834 835 836 837 838  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 831 class CloudTrailDetails < Struct.new( :trails, :access_role, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end  | 
  
#start_time ⇒ Time
The start of the time range for which IAM Access Analyzer reviews your CloudTrail events. Events with a timestamp before this time are not considered to generate a policy.
      831 832 833 834 835 836 837 838  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 831 class CloudTrailDetails < Struct.new( :trails, :access_role, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end  | 
  
#trails ⇒ Array<Types::Trail>
A ‘Trail` object that contains settings for a trail.
      831 832 833 834 835 836 837 838  | 
    
      # File 'lib/aws-sdk-accessanalyzer/types.rb', line 831 class CloudTrailDetails < Struct.new( :trails, :access_role, :start_time, :end_time) SENSITIVE = [] include Aws::Structure end  |