Class: Aws::XRay::Types::SamplingStrategy

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-xray/types.rb

Overview

Note:

When making an API call, you may pass SamplingStrategy data as a hash:

{
  name: "PartialScan", # accepts PartialScan, FixedRate
  value: 1.0,
}

The name and value of a sampling rule to apply to a trace summary.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#nameString

The name of a sampling rule.

Returns:

  • (String)


2700
2701
2702
2703
2704
2705
# File 'lib/aws-sdk-xray/types.rb', line 2700

class SamplingStrategy < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end

#valueFloat

The value of a sampling rule.

Returns:

  • (Float)


2700
2701
2702
2703
2704
2705
# File 'lib/aws-sdk-xray/types.rb', line 2700

class SamplingStrategy < Struct.new(
  :name,
  :value)
  SENSITIVE = []
  include Aws::Structure
end