sumologic.AwsXraySource
Explore with Pulumi AI
Provides a Sumologic AWS XRay source to collect metrics derived from XRay traces.
IMPORTANT: The AWS credentials are stored in plain-text in the state. This is a potential security issue.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as sumologic from "@pulumi/sumologic";
const collector = new sumologic.Collector("collector", {
    name: "my-collector",
    description: "Just testing this",
});
const awsXraySource = new sumologic.AwsXraySource("aws_xray_source", {
    name: "AWS XRay Metrics",
    description: "My description",
    category: "aws/xray",
    contentType: "AwsXRay",
    scanInterval: 300000,
    paused: false,
    collectorId: collector.id,
    authentication: {
        type: "AWSRoleBasedAuthentication",
        roleArn: "arn:aws:iam::01234567890:role/sumo-role",
    },
    path: {
        type: "AwsXRayPath",
        limitToRegions: ["us-west-2"],
    },
});
import pulumi
import pulumi_sumologic as sumologic
collector = sumologic.Collector("collector",
    name="my-collector",
    description="Just testing this")
aws_xray_source = sumologic.AwsXraySource("aws_xray_source",
    name="AWS XRay Metrics",
    description="My description",
    category="aws/xray",
    content_type="AwsXRay",
    scan_interval=300000,
    paused=False,
    collector_id=collector.id,
    authentication={
        "type": "AWSRoleBasedAuthentication",
        "role_arn": "arn:aws:iam::01234567890:role/sumo-role",
    },
    path={
        "type": "AwsXRayPath",
        "limit_to_regions": ["us-west-2"],
    })
package main
import (
	"github.com/pulumi/pulumi-sumologic/sdk/go/sumologic"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		collector, err := sumologic.NewCollector(ctx, "collector", &sumologic.CollectorArgs{
			Name:        pulumi.String("my-collector"),
			Description: pulumi.String("Just testing this"),
		})
		if err != nil {
			return err
		}
		_, err = sumologic.NewAwsXraySource(ctx, "aws_xray_source", &sumologic.AwsXraySourceArgs{
			Name:         pulumi.String("AWS XRay Metrics"),
			Description:  pulumi.String("My description"),
			Category:     pulumi.String("aws/xray"),
			ContentType:  pulumi.String("AwsXRay"),
			ScanInterval: pulumi.Int(300000),
			Paused:       pulumi.Bool(false),
			CollectorId:  collector.ID(),
			Authentication: &sumologic.AwsXraySourceAuthenticationArgs{
				Type:    pulumi.String("AWSRoleBasedAuthentication"),
				RoleArn: pulumi.String("arn:aws:iam::01234567890:role/sumo-role"),
			},
			Path: &sumologic.AwsXraySourcePathArgs{
				Type: pulumi.String("AwsXRayPath"),
				LimitToRegions: pulumi.StringArray{
					pulumi.String("us-west-2"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SumoLogic = Pulumi.SumoLogic;
return await Deployment.RunAsync(() => 
{
    var collector = new SumoLogic.Collector("collector", new()
    {
        Name = "my-collector",
        Description = "Just testing this",
    });
    var awsXraySource = new SumoLogic.AwsXraySource("aws_xray_source", new()
    {
        Name = "AWS XRay Metrics",
        Description = "My description",
        Category = "aws/xray",
        ContentType = "AwsXRay",
        ScanInterval = 300000,
        Paused = false,
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.AwsXraySourceAuthenticationArgs
        {
            Type = "AWSRoleBasedAuthentication",
            RoleArn = "arn:aws:iam::01234567890:role/sumo-role",
        },
        Path = new SumoLogic.Inputs.AwsXraySourcePathArgs
        {
            Type = "AwsXRayPath",
            LimitToRegions = new[]
            {
                "us-west-2",
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.sumologic.Collector;
import com.pulumi.sumologic.CollectorArgs;
import com.pulumi.sumologic.AwsXraySource;
import com.pulumi.sumologic.AwsXraySourceArgs;
import com.pulumi.sumologic.inputs.AwsXraySourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.AwsXraySourcePathArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var collector = new Collector("collector", CollectorArgs.builder()
            .name("my-collector")
            .description("Just testing this")
            .build());
        var awsXraySource = new AwsXraySource("awsXraySource", AwsXraySourceArgs.builder()
            .name("AWS XRay Metrics")
            .description("My description")
            .category("aws/xray")
            .contentType("AwsXRay")
            .scanInterval(300000)
            .paused(false)
            .collectorId(collector.id())
            .authentication(AwsXraySourceAuthenticationArgs.builder()
                .type("AWSRoleBasedAuthentication")
                .roleArn("arn:aws:iam::01234567890:role/sumo-role")
                .build())
            .path(AwsXraySourcePathArgs.builder()
                .type("AwsXRayPath")
                .limitToRegions("us-west-2")
                .build())
            .build());
    }
}
resources:
  awsXraySource:
    type: sumologic:AwsXraySource
    name: aws_xray_source
    properties:
      name: AWS XRay Metrics
      description: My description
      category: aws/xray
      contentType: AwsXRay
      scanInterval: 300000
      paused: false
      collectorId: ${collector.id}
      authentication:
        type: AWSRoleBasedAuthentication
        roleArn: arn:aws:iam::01234567890:role/sumo-role
      path:
        type: AwsXRayPath
        limitToRegions:
          - us-west-2
  collector:
    type: sumologic:Collector
    properties:
      name: my-collector
      description: Just testing this
Create AwsXraySource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AwsXraySource(name: string, args: AwsXraySourceArgs, opts?: CustomResourceOptions);@overload
def AwsXraySource(resource_name: str,
                  args: AwsXraySourceArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def AwsXraySource(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  content_type: Optional[str] = None,
                  path: Optional[AwsXraySourcePathArgs] = None,
                  authentication: Optional[AwsXraySourceAuthenticationArgs] = None,
                  collector_id: Optional[int] = None,
                  filters: Optional[Sequence[AwsXraySourceFilterArgs]] = None,
                  host_name: Optional[str] = None,
                  cutoff_timestamp: Optional[int] = None,
                  default_date_formats: Optional[Sequence[AwsXraySourceDefaultDateFormatArgs]] = None,
                  description: Optional[str] = None,
                  fields: Optional[Mapping[str, str]] = None,
                  category: Optional[str] = None,
                  force_timezone: Optional[bool] = None,
                  hash_algorithm: Optional[str] = None,
                  cutoff_relative_time: Optional[str] = None,
                  manual_prefix_regexp: Optional[str] = None,
                  multiline_processing_enabled: Optional[bool] = None,
                  name: Optional[str] = None,
                  automatic_date_parsing: Optional[bool] = None,
                  paused: Optional[bool] = None,
                  scan_interval: Optional[int] = None,
                  timezone: Optional[str] = None,
                  use_autoline_matching: Optional[bool] = None)func NewAwsXraySource(ctx *Context, name string, args AwsXraySourceArgs, opts ...ResourceOption) (*AwsXraySource, error)public AwsXraySource(string name, AwsXraySourceArgs args, CustomResourceOptions? opts = null)
public AwsXraySource(String name, AwsXraySourceArgs args)
public AwsXraySource(String name, AwsXraySourceArgs args, CustomResourceOptions options)
type: sumologic:AwsXraySource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AwsXraySourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AwsXraySourceArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AwsXraySourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AwsXraySourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AwsXraySourceArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var awsXraySourceResource = new SumoLogic.AwsXraySource("awsXraySourceResource", new()
{
    ContentType = "string",
    Path = new SumoLogic.Inputs.AwsXraySourcePathArgs
    {
        Type = "string",
        LimitToServices = new[]
        {
            "string",
        },
        Namespace = "string",
        CustomServices = new[]
        {
            new SumoLogic.Inputs.AwsXraySourcePathCustomServiceArgs
            {
                Prefixes = new[]
                {
                    "string",
                },
                ServiceName = "string",
            },
        },
        Environment = "string",
        EventHubName = "string",
        LimitToNamespaces = new[]
        {
            "string",
        },
        ConsumerGroup = "string",
        AzureTagFilters = new[]
        {
            new SumoLogic.Inputs.AwsXraySourcePathAzureTagFilterArgs
            {
                Type = "string",
                Namespace = "string",
                Tags = new[]
                {
                    new SumoLogic.Inputs.AwsXraySourcePathAzureTagFilterTagArgs
                    {
                        Name = "string",
                        Values = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        LimitToRegions = new[]
        {
            "string",
        },
        PathExpression = "string",
        Region = "string",
        SnsTopicOrSubscriptionArns = new[]
        {
            new SumoLogic.Inputs.AwsXraySourcePathSnsTopicOrSubscriptionArnArgs
            {
                Arn = "string",
                IsSuccess = false,
            },
        },
        TagFilters = new[]
        {
            new SumoLogic.Inputs.AwsXraySourcePathTagFilterArgs
            {
                Namespace = "string",
                Tags = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        BucketName = "string",
        UseVersionedApi = false,
    },
    Authentication = new SumoLogic.Inputs.AwsXraySourceAuthenticationArgs
    {
        Type = "string",
        PrivateKeyId = "string",
        ClientSecret = "string",
        ProjectId = "string",
        ClientId = "string",
        Region = "string",
        ClientX509CertUrl = "string",
        PrivateKey = "string",
        RoleArn = "string",
        ClientEmail = "string",
        AuthUri = "string",
        AccessKey = "string",
        SecretKey = "string",
        SharedAccessPolicyKey = "string",
        SharedAccessPolicyName = "string",
        TenantId = "string",
        TokenUri = "string",
        AuthProviderX509CertUrl = "string",
    },
    CollectorId = 0,
    Filters = new[]
    {
        new SumoLogic.Inputs.AwsXraySourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    HostName = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.AwsXraySourceDefaultDateFormatArgs
        {
            Format = "string",
            Locator = "string",
        },
    },
    Description = "string",
    Fields = 
    {
        { "string", "string" },
    },
    Category = "string",
    ForceTimezone = false,
    HashAlgorithm = "string",
    CutoffRelativeTime = "string",
    ManualPrefixRegexp = "string",
    MultilineProcessingEnabled = false,
    Name = "string",
    AutomaticDateParsing = false,
    Paused = false,
    ScanInterval = 0,
    Timezone = "string",
    UseAutolineMatching = false,
});
example, err := sumologic.NewAwsXraySource(ctx, "awsXraySourceResource", &sumologic.AwsXraySourceArgs{
	ContentType: pulumi.String("string"),
	Path: &sumologic.AwsXraySourcePathArgs{
		Type: pulumi.String("string"),
		LimitToServices: pulumi.StringArray{
			pulumi.String("string"),
		},
		Namespace: pulumi.String("string"),
		CustomServices: sumologic.AwsXraySourcePathCustomServiceArray{
			&sumologic.AwsXraySourcePathCustomServiceArgs{
				Prefixes: pulumi.StringArray{
					pulumi.String("string"),
				},
				ServiceName: pulumi.String("string"),
			},
		},
		Environment:  pulumi.String("string"),
		EventHubName: pulumi.String("string"),
		LimitToNamespaces: pulumi.StringArray{
			pulumi.String("string"),
		},
		ConsumerGroup: pulumi.String("string"),
		AzureTagFilters: sumologic.AwsXraySourcePathAzureTagFilterArray{
			&sumologic.AwsXraySourcePathAzureTagFilterArgs{
				Type:      pulumi.String("string"),
				Namespace: pulumi.String("string"),
				Tags: sumologic.AwsXraySourcePathAzureTagFilterTagArray{
					&sumologic.AwsXraySourcePathAzureTagFilterTagArgs{
						Name: pulumi.String("string"),
						Values: pulumi.StringArray{
							pulumi.String("string"),
						},
					},
				},
			},
		},
		LimitToRegions: pulumi.StringArray{
			pulumi.String("string"),
		},
		PathExpression: pulumi.String("string"),
		Region:         pulumi.String("string"),
		SnsTopicOrSubscriptionArns: sumologic.AwsXraySourcePathSnsTopicOrSubscriptionArnArray{
			&sumologic.AwsXraySourcePathSnsTopicOrSubscriptionArnArgs{
				Arn:       pulumi.String("string"),
				IsSuccess: pulumi.Bool(false),
			},
		},
		TagFilters: sumologic.AwsXraySourcePathTagFilterArray{
			&sumologic.AwsXraySourcePathTagFilterArgs{
				Namespace: pulumi.String("string"),
				Tags: pulumi.StringArray{
					pulumi.String("string"),
				},
				Type: pulumi.String("string"),
			},
		},
		BucketName:      pulumi.String("string"),
		UseVersionedApi: pulumi.Bool(false),
	},
	Authentication: &sumologic.AwsXraySourceAuthenticationArgs{
		Type:                    pulumi.String("string"),
		PrivateKeyId:            pulumi.String("string"),
		ClientSecret:            pulumi.String("string"),
		ProjectId:               pulumi.String("string"),
		ClientId:                pulumi.String("string"),
		Region:                  pulumi.String("string"),
		ClientX509CertUrl:       pulumi.String("string"),
		PrivateKey:              pulumi.String("string"),
		RoleArn:                 pulumi.String("string"),
		ClientEmail:             pulumi.String("string"),
		AuthUri:                 pulumi.String("string"),
		AccessKey:               pulumi.String("string"),
		SecretKey:               pulumi.String("string"),
		SharedAccessPolicyKey:   pulumi.String("string"),
		SharedAccessPolicyName:  pulumi.String("string"),
		TenantId:                pulumi.String("string"),
		TokenUri:                pulumi.String("string"),
		AuthProviderX509CertUrl: pulumi.String("string"),
	},
	CollectorId: pulumi.Int(0),
	Filters: sumologic.AwsXraySourceFilterArray{
		&sumologic.AwsXraySourceFilterArgs{
			FilterType: pulumi.String("string"),
			Name:       pulumi.String("string"),
			Regexp:     pulumi.String("string"),
			Mask:       pulumi.String("string"),
		},
	},
	HostName:        pulumi.String("string"),
	CutoffTimestamp: pulumi.Int(0),
	DefaultDateFormats: sumologic.AwsXraySourceDefaultDateFormatArray{
		&sumologic.AwsXraySourceDefaultDateFormatArgs{
			Format:  pulumi.String("string"),
			Locator: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Fields: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Category:                   pulumi.String("string"),
	ForceTimezone:              pulumi.Bool(false),
	HashAlgorithm:              pulumi.String("string"),
	CutoffRelativeTime:         pulumi.String("string"),
	ManualPrefixRegexp:         pulumi.String("string"),
	MultilineProcessingEnabled: pulumi.Bool(false),
	Name:                       pulumi.String("string"),
	AutomaticDateParsing:       pulumi.Bool(false),
	Paused:                     pulumi.Bool(false),
	ScanInterval:               pulumi.Int(0),
	Timezone:                   pulumi.String("string"),
	UseAutolineMatching:        pulumi.Bool(false),
})
var awsXraySourceResource = new AwsXraySource("awsXraySourceResource", AwsXraySourceArgs.builder()
    .contentType("string")
    .path(AwsXraySourcePathArgs.builder()
        .type("string")
        .limitToServices("string")
        .namespace("string")
        .customServices(AwsXraySourcePathCustomServiceArgs.builder()
            .prefixes("string")
            .serviceName("string")
            .build())
        .environment("string")
        .eventHubName("string")
        .limitToNamespaces("string")
        .consumerGroup("string")
        .azureTagFilters(AwsXraySourcePathAzureTagFilterArgs.builder()
            .type("string")
            .namespace("string")
            .tags(AwsXraySourcePathAzureTagFilterTagArgs.builder()
                .name("string")
                .values("string")
                .build())
            .build())
        .limitToRegions("string")
        .pathExpression("string")
        .region("string")
        .snsTopicOrSubscriptionArns(AwsXraySourcePathSnsTopicOrSubscriptionArnArgs.builder()
            .arn("string")
            .isSuccess(false)
            .build())
        .tagFilters(AwsXraySourcePathTagFilterArgs.builder()
            .namespace("string")
            .tags("string")
            .type("string")
            .build())
        .bucketName("string")
        .useVersionedApi(false)
        .build())
    .authentication(AwsXraySourceAuthenticationArgs.builder()
        .type("string")
        .privateKeyId("string")
        .clientSecret("string")
        .projectId("string")
        .clientId("string")
        .region("string")
        .clientX509CertUrl("string")
        .privateKey("string")
        .roleArn("string")
        .clientEmail("string")
        .authUri("string")
        .accessKey("string")
        .secretKey("string")
        .sharedAccessPolicyKey("string")
        .sharedAccessPolicyName("string")
        .tenantId("string")
        .tokenUri("string")
        .authProviderX509CertUrl("string")
        .build())
    .collectorId(0)
    .filters(AwsXraySourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .hostName("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(AwsXraySourceDefaultDateFormatArgs.builder()
        .format("string")
        .locator("string")
        .build())
    .description("string")
    .fields(Map.of("string", "string"))
    .category("string")
    .forceTimezone(false)
    .hashAlgorithm("string")
    .cutoffRelativeTime("string")
    .manualPrefixRegexp("string")
    .multilineProcessingEnabled(false)
    .name("string")
    .automaticDateParsing(false)
    .paused(false)
    .scanInterval(0)
    .timezone("string")
    .useAutolineMatching(false)
    .build());
aws_xray_source_resource = sumologic.AwsXraySource("awsXraySourceResource",
    content_type="string",
    path={
        "type": "string",
        "limit_to_services": ["string"],
        "namespace": "string",
        "custom_services": [{
            "prefixes": ["string"],
            "service_name": "string",
        }],
        "environment": "string",
        "event_hub_name": "string",
        "limit_to_namespaces": ["string"],
        "consumer_group": "string",
        "azure_tag_filters": [{
            "type": "string",
            "namespace": "string",
            "tags": [{
                "name": "string",
                "values": ["string"],
            }],
        }],
        "limit_to_regions": ["string"],
        "path_expression": "string",
        "region": "string",
        "sns_topic_or_subscription_arns": [{
            "arn": "string",
            "is_success": False,
        }],
        "tag_filters": [{
            "namespace": "string",
            "tags": ["string"],
            "type": "string",
        }],
        "bucket_name": "string",
        "use_versioned_api": False,
    },
    authentication={
        "type": "string",
        "private_key_id": "string",
        "client_secret": "string",
        "project_id": "string",
        "client_id": "string",
        "region": "string",
        "client_x509_cert_url": "string",
        "private_key": "string",
        "role_arn": "string",
        "client_email": "string",
        "auth_uri": "string",
        "access_key": "string",
        "secret_key": "string",
        "shared_access_policy_key": "string",
        "shared_access_policy_name": "string",
        "tenant_id": "string",
        "token_uri": "string",
        "auth_provider_x509_cert_url": "string",
    },
    collector_id=0,
    filters=[{
        "filter_type": "string",
        "name": "string",
        "regexp": "string",
        "mask": "string",
    }],
    host_name="string",
    cutoff_timestamp=0,
    default_date_formats=[{
        "format": "string",
        "locator": "string",
    }],
    description="string",
    fields={
        "string": "string",
    },
    category="string",
    force_timezone=False,
    hash_algorithm="string",
    cutoff_relative_time="string",
    manual_prefix_regexp="string",
    multiline_processing_enabled=False,
    name="string",
    automatic_date_parsing=False,
    paused=False,
    scan_interval=0,
    timezone="string",
    use_autoline_matching=False)
const awsXraySourceResource = new sumologic.AwsXraySource("awsXraySourceResource", {
    contentType: "string",
    path: {
        type: "string",
        limitToServices: ["string"],
        namespace: "string",
        customServices: [{
            prefixes: ["string"],
            serviceName: "string",
        }],
        environment: "string",
        eventHubName: "string",
        limitToNamespaces: ["string"],
        consumerGroup: "string",
        azureTagFilters: [{
            type: "string",
            namespace: "string",
            tags: [{
                name: "string",
                values: ["string"],
            }],
        }],
        limitToRegions: ["string"],
        pathExpression: "string",
        region: "string",
        snsTopicOrSubscriptionArns: [{
            arn: "string",
            isSuccess: false,
        }],
        tagFilters: [{
            namespace: "string",
            tags: ["string"],
            type: "string",
        }],
        bucketName: "string",
        useVersionedApi: false,
    },
    authentication: {
        type: "string",
        privateKeyId: "string",
        clientSecret: "string",
        projectId: "string",
        clientId: "string",
        region: "string",
        clientX509CertUrl: "string",
        privateKey: "string",
        roleArn: "string",
        clientEmail: "string",
        authUri: "string",
        accessKey: "string",
        secretKey: "string",
        sharedAccessPolicyKey: "string",
        sharedAccessPolicyName: "string",
        tenantId: "string",
        tokenUri: "string",
        authProviderX509CertUrl: "string",
    },
    collectorId: 0,
    filters: [{
        filterType: "string",
        name: "string",
        regexp: "string",
        mask: "string",
    }],
    hostName: "string",
    cutoffTimestamp: 0,
    defaultDateFormats: [{
        format: "string",
        locator: "string",
    }],
    description: "string",
    fields: {
        string: "string",
    },
    category: "string",
    forceTimezone: false,
    hashAlgorithm: "string",
    cutoffRelativeTime: "string",
    manualPrefixRegexp: "string",
    multilineProcessingEnabled: false,
    name: "string",
    automaticDateParsing: false,
    paused: false,
    scanInterval: 0,
    timezone: "string",
    useAutolineMatching: false,
});
type: sumologic:AwsXraySource
properties:
    authentication:
        accessKey: string
        authProviderX509CertUrl: string
        authUri: string
        clientEmail: string
        clientId: string
        clientSecret: string
        clientX509CertUrl: string
        privateKey: string
        privateKeyId: string
        projectId: string
        region: string
        roleArn: string
        secretKey: string
        sharedAccessPolicyKey: string
        sharedAccessPolicyName: string
        tenantId: string
        tokenUri: string
        type: string
    automaticDateParsing: false
    category: string
    collectorId: 0
    contentType: string
    cutoffRelativeTime: string
    cutoffTimestamp: 0
    defaultDateFormats:
        - format: string
          locator: string
    description: string
    fields:
        string: string
    filters:
        - filterType: string
          mask: string
          name: string
          regexp: string
    forceTimezone: false
    hashAlgorithm: string
    hostName: string
    manualPrefixRegexp: string
    multilineProcessingEnabled: false
    name: string
    path:
        azureTagFilters:
            - namespace: string
              tags:
                - name: string
                  values:
                    - string
              type: string
        bucketName: string
        consumerGroup: string
        customServices:
            - prefixes:
                - string
              serviceName: string
        environment: string
        eventHubName: string
        limitToNamespaces:
            - string
        limitToRegions:
            - string
        limitToServices:
            - string
        namespace: string
        pathExpression: string
        region: string
        snsTopicOrSubscriptionArns:
            - arn: string
              isSuccess: false
        tagFilters:
            - namespace: string
              tags:
                - string
              type: string
        type: string
        useVersionedApi: false
    paused: false
    scanInterval: 0
    timezone: string
    useAutolineMatching: false
AwsXraySource Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AwsXraySource resource accepts the following input properties:
- Authentication
Pulumi.Sumo Logic. Inputs. Aws Xray Source Authentication 
- Authentication details for making xray:Get*calls.
- CollectorId int
- ContentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- Path
Pulumi.Sumo Logic. Inputs. Aws Xray Source Path 
- The location to scan for new data.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate List<Pulumi.Formats Sumo Logic. Inputs. Aws Xray Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. Aws Xray Source Filter> 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Paused bool
- When set to true, the scanner is paused. To disable, set to false.
- ScanInterval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- Timezone string
- UseAutoline boolMatching 
- Authentication
AwsXray Source Authentication Args 
- Authentication details for making xray:Get*calls.
- CollectorId int
- ContentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- Path
AwsXray Source Path Args 
- The location to scan for new data.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate []AwsFormats Xray Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]AwsXray Source Filter Args 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Paused bool
- When set to true, the scanner is paused. To disable, set to false.
- ScanInterval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- Timezone string
- UseAutoline boolMatching 
- authentication
AwsXray Source Authentication 
- Authentication details for making xray:Get*calls.
- collectorId Integer
- contentType String
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- path
AwsXray Source Path 
- The location to scan for new data.
- automaticDate BooleanParsing 
- category String
- cutoffRelative StringTime 
- cutoffTimestamp Integer
- defaultDate List<AwsFormats Xray Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<AwsXray Source Filter> 
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- multilineProcessing BooleanEnabled 
- name String
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval Integer
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone String
- useAutoline BooleanMatching 
- authentication
AwsXray Source Authentication 
- Authentication details for making xray:Get*calls.
- collectorId number
- contentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- path
AwsXray Source Path 
- The location to scan for new data.
- automaticDate booleanParsing 
- category string
- cutoffRelative stringTime 
- cutoffTimestamp number
- defaultDate AwsFormats Xray Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
AwsXray Source Filter[] 
- forceTimezone boolean
- hashAlgorithm string
- hostName string
- manualPrefix stringRegexp 
- multilineProcessing booleanEnabled 
- name string
- paused boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval number
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone string
- useAutoline booleanMatching 
- authentication
AwsXray Source Authentication Args 
- Authentication details for making xray:Get*calls.
- collector_id int
- content_type str
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- path
AwsXray Source Path Args 
- The location to scan for new data.
- automatic_date_ boolparsing 
- category str
- cutoff_relative_ strtime 
- cutoff_timestamp int
- default_date_ Sequence[Awsformats Xray Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[AwsXray Source Filter Args] 
- force_timezone bool
- hash_algorithm str
- host_name str
- manual_prefix_ strregexp 
- multiline_processing_ boolenabled 
- name str
- paused bool
- When set to true, the scanner is paused. To disable, set to false.
- scan_interval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone str
- use_autoline_ boolmatching 
- authentication Property Map
- Authentication details for making xray:Get*calls.
- collectorId Number
- contentType String
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- path Property Map
- The location to scan for new data.
- automaticDate BooleanParsing 
- category String
- cutoffRelative StringTime 
- cutoffTimestamp Number
- defaultDate List<Property Map>Formats 
- description String
- fields Map<String>
- filters List<Property Map>
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- multilineProcessing BooleanEnabled 
- name String
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval Number
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone String
- useAutoline BooleanMatching 
Outputs
All input properties are implicitly available as output properties. Additionally, the AwsXraySource resource produces the following output properties:
Look up Existing AwsXraySource Resource
Get an existing AwsXraySource resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AwsXraySourceState, opts?: CustomResourceOptions): AwsXraySource@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication: Optional[AwsXraySourceAuthenticationArgs] = None,
        automatic_date_parsing: Optional[bool] = None,
        category: Optional[str] = None,
        collector_id: Optional[int] = None,
        content_type: Optional[str] = None,
        cutoff_relative_time: Optional[str] = None,
        cutoff_timestamp: Optional[int] = None,
        default_date_formats: Optional[Sequence[AwsXraySourceDefaultDateFormatArgs]] = None,
        description: Optional[str] = None,
        fields: Optional[Mapping[str, str]] = None,
        filters: Optional[Sequence[AwsXraySourceFilterArgs]] = None,
        force_timezone: Optional[bool] = None,
        hash_algorithm: Optional[str] = None,
        host_name: Optional[str] = None,
        manual_prefix_regexp: Optional[str] = None,
        multiline_processing_enabled: Optional[bool] = None,
        name: Optional[str] = None,
        path: Optional[AwsXraySourcePathArgs] = None,
        paused: Optional[bool] = None,
        scan_interval: Optional[int] = None,
        timezone: Optional[str] = None,
        url: Optional[str] = None,
        use_autoline_matching: Optional[bool] = None) -> AwsXraySourcefunc GetAwsXraySource(ctx *Context, name string, id IDInput, state *AwsXraySourceState, opts ...ResourceOption) (*AwsXraySource, error)public static AwsXraySource Get(string name, Input<string> id, AwsXraySourceState? state, CustomResourceOptions? opts = null)public static AwsXraySource get(String name, Output<String> id, AwsXraySourceState state, CustomResourceOptions options)resources:  _:    type: sumologic:AwsXraySource    get:      id: ${id}- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Authentication
Pulumi.Sumo Logic. Inputs. Aws Xray Source Authentication 
- Authentication details for making xray:Get*calls.
- AutomaticDate boolParsing 
- Category string
- CollectorId int
- ContentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate List<Pulumi.Formats Sumo Logic. Inputs. Aws Xray Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. Aws Xray Source Filter> 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Path
Pulumi.Sumo Logic. Inputs. Aws Xray Source Path 
- The location to scan for new data.
- Paused bool
- When set to true, the scanner is paused. To disable, set to false.
- ScanInterval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- Timezone string
- Url string
- UseAutoline boolMatching 
- Authentication
AwsXray Source Authentication Args 
- Authentication details for making xray:Get*calls.
- AutomaticDate boolParsing 
- Category string
- CollectorId int
- ContentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate []AwsFormats Xray Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]AwsXray Source Filter Args 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Path
AwsXray Source Path Args 
- The location to scan for new data.
- Paused bool
- When set to true, the scanner is paused. To disable, set to false.
- ScanInterval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- Timezone string
- Url string
- UseAutoline boolMatching 
- authentication
AwsXray Source Authentication 
- Authentication details for making xray:Get*calls.
- automaticDate BooleanParsing 
- category String
- collectorId Integer
- contentType String
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- cutoffRelative StringTime 
- cutoffTimestamp Integer
- defaultDate List<AwsFormats Xray Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<AwsXray Source Filter> 
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- multilineProcessing BooleanEnabled 
- name String
- path
AwsXray Source Path 
- The location to scan for new data.
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval Integer
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone String
- url String
- useAutoline BooleanMatching 
- authentication
AwsXray Source Authentication 
- Authentication details for making xray:Get*calls.
- automaticDate booleanParsing 
- category string
- collectorId number
- contentType string
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- cutoffRelative stringTime 
- cutoffTimestamp number
- defaultDate AwsFormats Xray Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
AwsXray Source Filter[] 
- forceTimezone boolean
- hashAlgorithm string
- hostName string
- manualPrefix stringRegexp 
- multilineProcessing booleanEnabled 
- name string
- path
AwsXray Source Path 
- The location to scan for new data.
- paused boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval number
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone string
- url string
- useAutoline booleanMatching 
- authentication
AwsXray Source Authentication Args 
- Authentication details for making xray:Get*calls.
- automatic_date_ boolparsing 
- category str
- collector_id int
- content_type str
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- cutoff_relative_ strtime 
- cutoff_timestamp int
- default_date_ Sequence[Awsformats Xray Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[AwsXray Source Filter Args] 
- force_timezone bool
- hash_algorithm str
- host_name str
- manual_prefix_ strregexp 
- multiline_processing_ boolenabled 
- name str
- path
AwsXray Source Path Args 
- The location to scan for new data.
- paused bool
- When set to true, the scanner is paused. To disable, set to false.
- scan_interval int
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone str
- url str
- use_autoline_ boolmatching 
- authentication Property Map
- Authentication details for making xray:Get*calls.
- automaticDate BooleanParsing 
- category String
- collectorId Number
- contentType String
- The content-type of the collected data. This has to be AwsXRayfor AWS XRay source.
- cutoffRelative StringTime 
- cutoffTimestamp Number
- defaultDate List<Property Map>Formats 
- description String
- fields Map<String>
- filters List<Property Map>
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- multilineProcessing BooleanEnabled 
- name String
- path Property Map
- The location to scan for new data.
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scanInterval Number
- Time interval in milliseconds of scans for new data. The minimum value is 1000 milliseconds. Currently this value is not respected, and collection happens at a default interval of 1 minute.
- timezone String
- url String
- useAutoline BooleanMatching 
Supporting Types
AwsXraySourceAuthentication, AwsXraySourceAuthenticationArgs        
- Type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- AccessKey string
- Your AWS access key if using type S3BucketAuthentication
- AuthProvider stringX509Cert Url 
- AuthUri string
- ClientEmail string
- ClientId string
- ClientSecret string
- ClientX509Cert stringUrl 
- PrivateKey string
- PrivateKey stringId 
- ProjectId string
- Region string
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- SecretKey string
- Your AWS secret key if using type S3BucketAuthentication
- string
- string
- TenantId string
- TokenUri string
- Type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- AccessKey string
- Your AWS access key if using type S3BucketAuthentication
- AuthProvider stringX509Cert Url 
- AuthUri string
- ClientEmail string
- ClientId string
- ClientSecret string
- ClientX509Cert stringUrl 
- PrivateKey string
- PrivateKey stringId 
- ProjectId string
- Region string
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- SecretKey string
- Your AWS secret key if using type S3BucketAuthentication
- string
- string
- TenantId string
- TokenUri string
- type String
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- accessKey String
- Your AWS access key if using type S3BucketAuthentication
- authProvider StringX509Cert Url 
- authUri String
- clientEmail String
- clientId String
- clientSecret String
- clientX509Cert StringUrl 
- privateKey String
- privateKey StringId 
- projectId String
- region String
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey String
- Your AWS secret key if using type S3BucketAuthentication
- String
- String
- tenantId String
- tokenUri String
- type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- accessKey string
- Your AWS access key if using type S3BucketAuthentication
- authProvider stringX509Cert Url 
- authUri string
- clientEmail string
- clientId string
- clientSecret string
- clientX509Cert stringUrl 
- privateKey string
- privateKey stringId 
- projectId string
- region string
- roleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey string
- Your AWS secret key if using type S3BucketAuthentication
- string
- string
- tenantId string
- tokenUri string
- type str
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- access_key str
- Your AWS access key if using type S3BucketAuthentication
- auth_provider_ strx509_ cert_ url 
- auth_uri str
- client_email str
- client_id str
- client_secret str
- client_x509_ strcert_ url 
- private_key str
- private_key_ strid 
- project_id str
- region str
- role_arn str
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secret_key str
- Your AWS secret key if using type S3BucketAuthentication
- str
- str
- tenant_id str
- token_uri str
- type String
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthentication
- accessKey String
- Your AWS access key if using type S3BucketAuthentication
- authProvider StringX509Cert Url 
- authUri String
- clientEmail String
- clientId String
- clientSecret String
- clientX509Cert StringUrl 
- privateKey String
- privateKey StringId 
- projectId String
- region String
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey String
- Your AWS secret key if using type S3BucketAuthentication
- String
- String
- tenantId String
- tokenUri String
AwsXraySourceDefaultDateFormat, AwsXraySourceDefaultDateFormatArgs            
AwsXraySourceFilter, AwsXraySourceFilterArgs        
- FilterType string
- Name string
- Regexp string
- Mask string
- FilterType string
- Name string
- Regexp string
- Mask string
- filterType String
- name String
- regexp String
- mask String
- filterType string
- name string
- regexp string
- mask string
- filter_type str
- name str
- regexp str
- mask str
- filterType String
- name String
- regexp String
- mask String
AwsXraySourcePath, AwsXraySourcePathArgs        
- Type string
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- AzureTag List<Pulumi.Filters Sumo Logic. Inputs. Aws Xray Source Path Azure Tag Filter> 
- BucketName string
- ConsumerGroup string
- CustomServices List<Pulumi.Sumo Logic. Inputs. Aws Xray Source Path Custom Service> 
- Environment string
- EventHub stringName 
- LimitTo List<string>Namespaces 
- LimitTo List<string>Regions 
- List of Amazon regions.
- LimitTo List<string>Services 
- Namespace string
- PathExpression string
- Region string
- SnsTopic List<Pulumi.Or Subscription Arns Sumo Logic. Inputs. Aws Xray Source Path Sns Topic Or Subscription Arn> 
- TagFilters List<Pulumi.Sumo Logic. Inputs. Aws Xray Source Path Tag Filter> 
- UseVersioned boolApi 
- Type string
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- AzureTag []AwsFilters Xray Source Path Azure Tag Filter 
- BucketName string
- ConsumerGroup string
- CustomServices []AwsXray Source Path Custom Service 
- Environment string
- EventHub stringName 
- LimitTo []stringNamespaces 
- LimitTo []stringRegions 
- List of Amazon regions.
- LimitTo []stringServices 
- Namespace string
- PathExpression string
- Region string
- SnsTopic []AwsOr Subscription Arns Xray Source Path Sns Topic Or Subscription Arn 
- TagFilters []AwsXray Source Path Tag Filter 
- UseVersioned boolApi 
- type String
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- azureTag List<AwsFilters Xray Source Path Azure Tag Filter> 
- bucketName String
- consumerGroup String
- customServices List<AwsXray Source Path Custom Service> 
- environment String
- eventHub StringName 
- limitTo List<String>Namespaces 
- limitTo List<String>Regions 
- List of Amazon regions.
- limitTo List<String>Services 
- namespace String
- pathExpression String
- region String
- snsTopic List<AwsOr Subscription Arns Xray Source Path Sns Topic Or Subscription Arn> 
- tagFilters List<AwsXray Source Path Tag Filter> 
- useVersioned BooleanApi 
- type string
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- azureTag AwsFilters Xray Source Path Azure Tag Filter[] 
- bucketName string
- consumerGroup string
- customServices AwsXray Source Path Custom Service[] 
- environment string
- eventHub stringName 
- limitTo string[]Namespaces 
- limitTo string[]Regions 
- List of Amazon regions.
- limitTo string[]Services 
- namespace string
- pathExpression string
- region string
- snsTopic AwsOr Subscription Arns Xray Source Path Sns Topic Or Subscription Arn[] 
- tagFilters AwsXray Source Path Tag Filter[] 
- useVersioned booleanApi 
- type str
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- azure_tag_ Sequence[Awsfilters Xray Source Path Azure Tag Filter] 
- bucket_name str
- consumer_group str
- custom_services Sequence[AwsXray Source Path Custom Service] 
- environment str
- event_hub_ strname 
- limit_to_ Sequence[str]namespaces 
- limit_to_ Sequence[str]regions 
- List of Amazon regions.
- limit_to_ Sequence[str]services 
- namespace str
- path_expression str
- region str
- sns_topic_ Sequence[Awsor_ subscription_ arns Xray Source Path Sns Topic Or Subscription Arn] 
- tag_filters Sequence[AwsXray Source Path Tag Filter] 
- use_versioned_ boolapi 
- type String
- type of polling source. This has to be AwsXRayPathfor AWS XRay source.
- azureTag List<Property Map>Filters 
- bucketName String
- consumerGroup String
- customServices List<Property Map>
- environment String
- eventHub StringName 
- limitTo List<String>Namespaces 
- limitTo List<String>Regions 
- List of Amazon regions.
- limitTo List<String>Services 
- namespace String
- pathExpression String
- region String
- snsTopic List<Property Map>Or Subscription Arns 
- tagFilters List<Property Map>
- useVersioned BooleanApi 
AwsXraySourcePathAzureTagFilter, AwsXraySourcePathAzureTagFilterArgs              
- Type string
- Namespace string
- 
[]AwsXray Source Path Azure Tag Filter Tag 
- type String
- namespace String
- 
List<AwsXray Source Path Azure Tag Filter Tag> 
- type string
- namespace string
- 
AwsXray Source Path Azure Tag Filter Tag[] 
- type String
- namespace String
- List<Property Map>
AwsXraySourcePathAzureTagFilterTag, AwsXraySourcePathAzureTagFilterTagArgs                
AwsXraySourcePathCustomService, AwsXraySourcePathCustomServiceArgs            
- Prefixes List<string>
- ServiceName string
- Prefixes []string
- ServiceName string
- prefixes List<String>
- serviceName String
- prefixes string[]
- serviceName string
- prefixes Sequence[str]
- service_name str
- prefixes List<String>
- serviceName String
AwsXraySourcePathSnsTopicOrSubscriptionArn, AwsXraySourcePathSnsTopicOrSubscriptionArnArgs                  
- arn str
- is_success bool
AwsXraySourcePathTagFilter, AwsXraySourcePathTagFilterArgs            
Import
AWS XRay sources can be imported using the collector and source IDs (collector/source), e.g.:
hcl
$ pulumi import sumologic:index/awsXraySource:AwsXraySource test 123/456
AWS XRay sources can be imported using the collector name and source name (collectorName/sourceName), e.g.:
hcl
$ pulumi import sumologic:index/awsXraySource:AwsXraySource test my-test-collector/my-test-source
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Sumo Logic pulumi/pulumi-sumologic
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the sumologicTerraform Provider.