Class: Aws::XRay::Types::IndexingRuleValue

Inherits:
Struct
  • Object
show all
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

Probabilistic, Unknown

Defined Under Namespace

Classes: Probabilistic, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#probabilisticTypes::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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1670
1671
1672
# File 'lib/aws-sdk-xray/types.rb', line 1670

def unknown
  @unknown
end