Class: Aws::ApplicationSignals::Types::AuditTarget
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ApplicationSignals::Types::AuditTarget
 
- Defined in:
- gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb
Overview
Specifies a target resource for auditing, such as a service, SLO, or operation.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #data  ⇒ Types::AuditTargetEntity 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The specific data or entity information for the audit target, containing details needed to identify and examine the resource. 
- 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of resource being targeted for audit, such as "Service", "SLO", "ServiceOperation", or "Canary". 
Instance Attribute Details
#data ⇒ Types::AuditTargetEntity
The specific data or entity information for the audit target, containing details needed to identify and examine the resource.
| 113 114 115 116 117 118 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 113 class AuditTarget < Struct.new( :type, :data) SENSITIVE = [] include Aws::Structure end | 
#type ⇒ String
The type of resource being targeted for audit, such as "Service", "SLO", "ServiceOperation", or "Canary".
| 113 114 115 116 117 118 | # File 'gems/aws-sdk-applicationsignals/lib/aws-sdk-applicationsignals/types.rb', line 113 class AuditTarget < Struct.new( :type, :data) SENSITIVE = [] include Aws::Structure end |