Show / Hide Table of Contents

Namespace Pulumi.Aws.Xray

Classes

SamplingRule

Creates and manages an AWS XRay Sampling Rule.

Example Usage

using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.Xray.SamplingRule("example", new Aws.Xray.SamplingRuleArgs
    {
        Attributes = 
        {
            { "Hello", "Tris" },
        },
        FixedRate = 0.05,
        Host = "*",
        HttpMethod = "*",
        Priority = 10000,
        ReservoirSize = 1,
        ResourceArn = "*",
        RuleName = "example",
        ServiceName = "*",
        ServiceType = "*",
        UrlPath = "*",
        Version = 1,
    });
}

}

SamplingRuleArgs

SamplingRuleState

Back to top Copyright 2016-2020, Pulumi Corporation.