Class: Aws::XRay::Types::IndexingRuleValueUpdate

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-xray/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

Probabilistic, Unknown

Defined Under Namespace

Classes: Probabilistic, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#probabilisticTypes::ProbabilisticRuleValueUpdate

Indexing rule configuration that is used to probabilistically sample traceIds.



1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
# File 'gems/aws-sdk-xray/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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1692
1693
1694
# File 'gems/aws-sdk-xray/lib/aws-sdk-xray/types.rb', line 1692

def unknown
  @unknown
end