Class: Aws::XRay::Types::IndexingRuleValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::XRay::Types::IndexingRuleValue
- Defined in:
- gems/aws-sdk-xray/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.
1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1686 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
1686 1687 1688 |
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1686 def unknown @unknown end |