Class: Aws::XRay::Types::DeleteSamplingRuleRequest

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 DeleteSamplingRuleRequest data as a hash:

{
  rule_name: "String",
  rule_arn: "String",
}

Instance Attribute Summary collapse

Instance Attribute Details

#rule_arnString

The ARN of the sampling rule. Specify a rule by either name or ARN, but not both.

Returns:

  • (String)


289
290
291
292
293
# File 'lib/aws-sdk-xray/types.rb', line 289

class DeleteSamplingRuleRequest < Struct.new(
  :rule_name,
  :rule_arn)
  include Aws::Structure
end

#rule_nameString

The name of the sampling rule. Specify a rule by either name or ARN, but not both.

Returns:

  • (String)


289
290
291
292
293
# File 'lib/aws-sdk-xray/types.rb', line 289

class DeleteSamplingRuleRequest < Struct.new(
  :rule_name,
  :rule_arn)
  include Aws::Structure
end