Class: Aws::XRay::Types::IndexingRuleValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::IndexingRuleValue
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
    Note:
    
  
IndexingRuleValue is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of IndexingRuleValue corresponding to the set member.
The indexing rule configuration.
Direct Known Subclasses
Defined Under Namespace
Classes: Probabilistic, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #probabilistic  ⇒ Types::ProbabilisticRuleValue 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indexing rule configuration that is used to probabilistically sample traceIds.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#probabilistic ⇒ Types::ProbabilisticRuleValue
Indexing rule configuration that is used to probabilistically sample traceIds.
      1670 1671 1672 1673 1674 1675 1676 1677 1678 1679  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1670 class IndexingRuleValue < Struct.new( :probabilistic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Probabilistic < IndexingRuleValue; end class Unknown < IndexingRuleValue; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      1670 1671 1672  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1670 def unknown @unknown end  |