Class: Aws::CloudTrail::Types::LookupAttribute
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CloudTrail::Types::LookupAttribute
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-cloudtrail/types.rb
 
Overview
Specifies an attribute and value that filter the events returned.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #attribute_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies an attribute on which to filter the events returned.
 - 
  
    
      #attribute_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies a value for the specified ‘AttributeKey`.
 
Instance Attribute Details
#attribute_key ⇒ String
Specifies an attribute on which to filter the events returned.
      3639 3640 3641 3642 3643 3644  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 3639 class LookupAttribute < Struct.new( :attribute_key, :attribute_value) SENSITIVE = [] include Aws::Structure end  | 
  
#attribute_value ⇒ String
Specifies a value for the specified ‘AttributeKey`.
The maximum length for the ‘AttributeValue` is 2000 characters. The following characters (’‘_`’, ‘` `’, ‘`,`’, ‘`\n`’) count as two characters towards the 2000 character limit.
      3639 3640 3641 3642 3643 3644  | 
    
      # File 'lib/aws-sdk-cloudtrail/types.rb', line 3639 class LookupAttribute < Struct.new( :attribute_key, :attribute_value) SENSITIVE = [] include Aws::Structure end  |