Interface CfnSamplingRule.SamplingRuleUpdateProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnSamplingRule.SamplingRuleUpdateProperty.Jsii$Proxy
Enclosing class:
CfnSamplingRule

@Stability(Stable) public static interface CfnSamplingRule.SamplingRuleUpdateProperty extends software.amazon.jsii.JsiiSerializable
Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.xray.*;
 SamplingRuleUpdateProperty samplingRuleUpdateProperty = SamplingRuleUpdateProperty.builder()
         .attributes(Map.of(
                 "attributesKey", "attributes"))
         .fixedRate(123)
         .host("host")
         .httpMethod("httpMethod")
         .priority(123)
         .reservoirSize(123)
         .resourceArn("resourceArn")
         .ruleArn("ruleArn")
         .ruleName("ruleName")
         .serviceName("serviceName")
         .serviceType("serviceType")
         .urlPath("urlPath")
         .build();
 

See Also: