Class: Aws::XRay::Types::IndexingRuleValueUpdate
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::XRay::Types::IndexingRuleValueUpdate
 
 
- Includes:
 - Structure, Structure::Union
 
- Defined in:
 - lib/aws-sdk-xray/types.rb
 
Overview
    Note:
    
  
IndexingRuleValueUpdate is a union - when making an API calls you must set exactly one of the members.
Update to an indexing rule.
Direct Known Subclasses
Defined Under Namespace
Classes: Probabilistic, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #probabilistic  ⇒ Types::ProbabilisticRuleValueUpdate 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indexing rule configuration that is used to probabilistically sample traceIds.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#probabilistic ⇒ Types::ProbabilisticRuleValueUpdate
Indexing rule configuration that is used to probabilistically sample traceIds.
      1692 1693 1694 1695 1696 1697 1698 1699 1700 1701  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1692 class IndexingRuleValueUpdate < Struct.new( :probabilistic, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Probabilistic < IndexingRuleValueUpdate; end class Unknown < IndexingRuleValueUpdate; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      1692 1693 1694  | 
    
      # File 'lib/aws-sdk-xray/types.rb', line 1692 def unknown @unknown end  |