Class: Aws::AuditManager::Types::ChangeLog
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::AuditManager::Types::ChangeLog
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-auditmanager/types.rb
Overview
The record of a change within Audit Manager. For example, this could be the status change of an assessment or the delegation of a control set.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The action that was performed. 
- 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time when the action was performed and the changelog record was created. 
- 
  
    
      #created_by  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The user or role that performed the action. 
- 
  
    
      #object_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the object that changed. 
- 
  
    
      #object_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The object that was changed, such as an assessment, control, or control set. 
Instance Attribute Details
#action ⇒ String
The action that was performed.
| 1107 1108 1109 1110 1111 1112 1113 1114 1115 | # File 'lib/aws-sdk-auditmanager/types.rb', line 1107 class ChangeLog < Struct.new( :object_type, :object_name, :action, :created_at, :created_by) SENSITIVE = [] include Aws::Structure end | 
#created_at ⇒ Time
The time when the action was performed and the changelog record was created.
| 1107 1108 1109 1110 1111 1112 1113 1114 1115 | # File 'lib/aws-sdk-auditmanager/types.rb', line 1107 class ChangeLog < Struct.new( :object_type, :object_name, :action, :created_at, :created_by) SENSITIVE = [] include Aws::Structure end | 
#created_by ⇒ String
The user or role that performed the action.
| 1107 1108 1109 1110 1111 1112 1113 1114 1115 | # File 'lib/aws-sdk-auditmanager/types.rb', line 1107 class ChangeLog < Struct.new( :object_type, :object_name, :action, :created_at, :created_by) SENSITIVE = [] include Aws::Structure end | 
#object_name ⇒ String
The name of the object that changed. This could be the name of an assessment, control, or control set.
| 1107 1108 1109 1110 1111 1112 1113 1114 1115 | # File 'lib/aws-sdk-auditmanager/types.rb', line 1107 class ChangeLog < Struct.new( :object_type, :object_name, :action, :created_at, :created_by) SENSITIVE = [] include Aws::Structure end | 
#object_type ⇒ String
The object that was changed, such as an assessment, control, or control set.
| 1107 1108 1109 1110 1111 1112 1113 1114 1115 | # File 'lib/aws-sdk-auditmanager/types.rb', line 1107 class ChangeLog < Struct.new( :object_type, :object_name, :action, :created_at, :created_by) SENSITIVE = [] include Aws::Structure end |