1. Packages
  2. Sumologic Provider
  3. API Docs
  4. AwsInventorySource
Sumo Logic v1.0.7 published on Friday, Apr 11, 2025 by Pulumi

sumologic.AwsInventorySource

Explore with Pulumi AI

Provides a Sumologic AWS Inventory source to collect AWS resource inventory data.

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 awsInventorySource = new sumologic.AwsInventorySource("aws_inventory_source", {
    name: "AWS Inventory",
    description: "My description",
    category: "aws/aws_inventory",
    contentType: "AwsInventory",
    scanInterval: 300000,
    paused: false,
    collectorId: collector.id,
    authentication: {
        type: "AWSRoleBasedAuthentication",
        roleArn: "arn:aws:iam::01234567890:role/sumo-role",
    },
    path: {
        type: "AwsInventoryPath",
        limitToRegions: ["us-west-2"],
        limitToNamespaces: [
            "AWS/RDS",
            "AWS/EC2",
        ],
    },
});
Copy
import pulumi
import pulumi_sumologic as sumologic

collector = sumologic.Collector("collector",
    name="my-collector",
    description="Just testing this")
aws_inventory_source = sumologic.AwsInventorySource("aws_inventory_source",
    name="AWS Inventory",
    description="My description",
    category="aws/aws_inventory",
    content_type="AwsInventory",
    scan_interval=300000,
    paused=False,
    collector_id=collector.id,
    authentication={
        "type": "AWSRoleBasedAuthentication",
        "role_arn": "arn:aws:iam::01234567890:role/sumo-role",
    },
    path={
        "type": "AwsInventoryPath",
        "limit_to_regions": ["us-west-2"],
        "limit_to_namespaces": [
            "AWS/RDS",
            "AWS/EC2",
        ],
    })
Copy
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.NewAwsInventorySource(ctx, "aws_inventory_source", &sumologic.AwsInventorySourceArgs{
			Name:         pulumi.String("AWS Inventory"),
			Description:  pulumi.String("My description"),
			Category:     pulumi.String("aws/aws_inventory"),
			ContentType:  pulumi.String("AwsInventory"),
			ScanInterval: pulumi.Int(300000),
			Paused:       pulumi.Bool(false),
			CollectorId:  collector.ID(),
			Authentication: &sumologic.AwsInventorySourceAuthenticationArgs{
				Type:    pulumi.String("AWSRoleBasedAuthentication"),
				RoleArn: pulumi.String("arn:aws:iam::01234567890:role/sumo-role"),
			},
			Path: &sumologic.AwsInventorySourcePathArgs{
				Type: pulumi.String("AwsInventoryPath"),
				LimitToRegions: pulumi.StringArray{
					pulumi.String("us-west-2"),
				},
				LimitToNamespaces: pulumi.StringArray{
					pulumi.String("AWS/RDS"),
					pulumi.String("AWS/EC2"),
				},
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
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 awsInventorySource = new SumoLogic.AwsInventorySource("aws_inventory_source", new()
    {
        Name = "AWS Inventory",
        Description = "My description",
        Category = "aws/aws_inventory",
        ContentType = "AwsInventory",
        ScanInterval = 300000,
        Paused = false,
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.AwsInventorySourceAuthenticationArgs
        {
            Type = "AWSRoleBasedAuthentication",
            RoleArn = "arn:aws:iam::01234567890:role/sumo-role",
        },
        Path = new SumoLogic.Inputs.AwsInventorySourcePathArgs
        {
            Type = "AwsInventoryPath",
            LimitToRegions = new[]
            {
                "us-west-2",
            },
            LimitToNamespaces = new[]
            {
                "AWS/RDS",
                "AWS/EC2",
            },
        },
    });

});
Copy
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.AwsInventorySource;
import com.pulumi.sumologic.AwsInventorySourceArgs;
import com.pulumi.sumologic.inputs.AwsInventorySourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.AwsInventorySourcePathArgs;
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 awsInventorySource = new AwsInventorySource("awsInventorySource", AwsInventorySourceArgs.builder()
            .name("AWS Inventory")
            .description("My description")
            .category("aws/aws_inventory")
            .contentType("AwsInventory")
            .scanInterval(300000)
            .paused(false)
            .collectorId(collector.id())
            .authentication(AwsInventorySourceAuthenticationArgs.builder()
                .type("AWSRoleBasedAuthentication")
                .roleArn("arn:aws:iam::01234567890:role/sumo-role")
                .build())
            .path(AwsInventorySourcePathArgs.builder()
                .type("AwsInventoryPath")
                .limitToRegions("us-west-2")
                .limitToNamespaces(                
                    "AWS/RDS",
                    "AWS/EC2")
                .build())
            .build());

    }
}
Copy
resources:
  awsInventorySource:
    type: sumologic:AwsInventorySource
    name: aws_inventory_source
    properties:
      name: AWS Inventory
      description: My description
      category: aws/aws_inventory
      contentType: AwsInventory
      scanInterval: 300000
      paused: false
      collectorId: ${collector.id}
      authentication:
        type: AWSRoleBasedAuthentication
        roleArn: arn:aws:iam::01234567890:role/sumo-role
      path:
        type: AwsInventoryPath
        limitToRegions:
          - us-west-2
        limitToNamespaces:
          - AWS/RDS
          - AWS/EC2
  collector:
    type: sumologic:Collector
    properties:
      name: my-collector
      description: Just testing this
Copy

Create AwsInventorySource Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new AwsInventorySource(name: string, args: AwsInventorySourceArgs, opts?: CustomResourceOptions);
@overload
def AwsInventorySource(resource_name: str,
                       args: AwsInventorySourceArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def AwsInventorySource(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       content_type: Optional[str] = None,
                       path: Optional[AwsInventorySourcePathArgs] = None,
                       authentication: Optional[AwsInventorySourceAuthenticationArgs] = None,
                       collector_id: Optional[int] = None,
                       filters: Optional[Sequence[AwsInventorySourceFilterArgs]] = None,
                       host_name: Optional[str] = None,
                       cutoff_timestamp: Optional[int] = None,
                       default_date_formats: Optional[Sequence[AwsInventorySourceDefaultDateFormatArgs]] = 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 NewAwsInventorySource(ctx *Context, name string, args AwsInventorySourceArgs, opts ...ResourceOption) (*AwsInventorySource, error)
public AwsInventorySource(string name, AwsInventorySourceArgs args, CustomResourceOptions? opts = null)
public AwsInventorySource(String name, AwsInventorySourceArgs args)
public AwsInventorySource(String name, AwsInventorySourceArgs args, CustomResourceOptions options)
type: sumologic:AwsInventorySource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. AwsInventorySourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. AwsInventorySourceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. AwsInventorySourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. AwsInventorySourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. AwsInventorySourceArgs
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 awsInventorySourceResource = new SumoLogic.AwsInventorySource("awsInventorySourceResource", new()
{
    ContentType = "string",
    Path = new SumoLogic.Inputs.AwsInventorySourcePathArgs
    {
        Type = "string",
        LimitToServices = new[]
        {
            "string",
        },
        Region = "string",
        CustomServices = new[]
        {
            new SumoLogic.Inputs.AwsInventorySourcePathCustomServiceArgs
            {
                Prefixes = new[]
                {
                    "string",
                },
                ServiceName = "string",
            },
        },
        Environment = "string",
        EventHubName = "string",
        LimitToNamespaces = new[]
        {
            "string",
        },
        ConsumerGroup = "string",
        Namespace = "string",
        LimitToRegions = new[]
        {
            "string",
        },
        PathExpression = "string",
        AzureTagFilters = new[]
        {
            new SumoLogic.Inputs.AwsInventorySourcePathAzureTagFilterArgs
            {
                Type = "string",
                Namespace = "string",
                Tags = new[]
                {
                    new SumoLogic.Inputs.AwsInventorySourcePathAzureTagFilterTagArgs
                    {
                        Name = "string",
                        Values = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        SnsTopicOrSubscriptionArns = new[]
        {
            new SumoLogic.Inputs.AwsInventorySourcePathSnsTopicOrSubscriptionArnArgs
            {
                Arn = "string",
                IsSuccess = false,
            },
        },
        TagFilters = new[]
        {
            new SumoLogic.Inputs.AwsInventorySourcePathTagFilterArgs
            {
                Namespace = "string",
                Tags = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        BucketName = "string",
        UseVersionedApi = false,
    },
    Authentication = new SumoLogic.Inputs.AwsInventorySourceAuthenticationArgs
    {
        Type = "string",
        PrivateKeyId = "string",
        Region = "string",
        ClientEmail = "string",
        ClientId = "string",
        ClientSecret = "string",
        ClientX509CertUrl = "string",
        PrivateKey = "string",
        AccessKey = "string",
        AuthUri = "string",
        RoleArn = "string",
        ProjectId = "string",
        SecretKey = "string",
        SharedAccessPolicyKey = "string",
        SharedAccessPolicyName = "string",
        TenantId = "string",
        TokenUri = "string",
        AuthProviderX509CertUrl = "string",
    },
    CollectorId = 0,
    Filters = new[]
    {
        new SumoLogic.Inputs.AwsInventorySourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    HostName = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.AwsInventorySourceDefaultDateFormatArgs
        {
            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,
});
Copy
example, err := sumologic.NewAwsInventorySource(ctx, "awsInventorySourceResource", &sumologic.AwsInventorySourceArgs{
	ContentType: pulumi.String("string"),
	Path: &sumologic.AwsInventorySourcePathArgs{
		Type: pulumi.String("string"),
		LimitToServices: pulumi.StringArray{
			pulumi.String("string"),
		},
		Region: pulumi.String("string"),
		CustomServices: sumologic.AwsInventorySourcePathCustomServiceArray{
			&sumologic.AwsInventorySourcePathCustomServiceArgs{
				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"),
		Namespace:     pulumi.String("string"),
		LimitToRegions: pulumi.StringArray{
			pulumi.String("string"),
		},
		PathExpression: pulumi.String("string"),
		AzureTagFilters: sumologic.AwsInventorySourcePathAzureTagFilterArray{
			&sumologic.AwsInventorySourcePathAzureTagFilterArgs{
				Type:      pulumi.String("string"),
				Namespace: pulumi.String("string"),
				Tags: sumologic.AwsInventorySourcePathAzureTagFilterTagArray{
					&sumologic.AwsInventorySourcePathAzureTagFilterTagArgs{
						Name: pulumi.String("string"),
						Values: pulumi.StringArray{
							pulumi.String("string"),
						},
					},
				},
			},
		},
		SnsTopicOrSubscriptionArns: sumologic.AwsInventorySourcePathSnsTopicOrSubscriptionArnArray{
			&sumologic.AwsInventorySourcePathSnsTopicOrSubscriptionArnArgs{
				Arn:       pulumi.String("string"),
				IsSuccess: pulumi.Bool(false),
			},
		},
		TagFilters: sumologic.AwsInventorySourcePathTagFilterArray{
			&sumologic.AwsInventorySourcePathTagFilterArgs{
				Namespace: pulumi.String("string"),
				Tags: pulumi.StringArray{
					pulumi.String("string"),
				},
				Type: pulumi.String("string"),
			},
		},
		BucketName:      pulumi.String("string"),
		UseVersionedApi: pulumi.Bool(false),
	},
	Authentication: &sumologic.AwsInventorySourceAuthenticationArgs{
		Type:                    pulumi.String("string"),
		PrivateKeyId:            pulumi.String("string"),
		Region:                  pulumi.String("string"),
		ClientEmail:             pulumi.String("string"),
		ClientId:                pulumi.String("string"),
		ClientSecret:            pulumi.String("string"),
		ClientX509CertUrl:       pulumi.String("string"),
		PrivateKey:              pulumi.String("string"),
		AccessKey:               pulumi.String("string"),
		AuthUri:                 pulumi.String("string"),
		RoleArn:                 pulumi.String("string"),
		ProjectId:               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.AwsInventorySourceFilterArray{
		&sumologic.AwsInventorySourceFilterArgs{
			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.AwsInventorySourceDefaultDateFormatArray{
		&sumologic.AwsInventorySourceDefaultDateFormatArgs{
			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),
})
Copy
var awsInventorySourceResource = new AwsInventorySource("awsInventorySourceResource", AwsInventorySourceArgs.builder()
    .contentType("string")
    .path(AwsInventorySourcePathArgs.builder()
        .type("string")
        .limitToServices("string")
        .region("string")
        .customServices(AwsInventorySourcePathCustomServiceArgs.builder()
            .prefixes("string")
            .serviceName("string")
            .build())
        .environment("string")
        .eventHubName("string")
        .limitToNamespaces("string")
        .consumerGroup("string")
        .namespace("string")
        .limitToRegions("string")
        .pathExpression("string")
        .azureTagFilters(AwsInventorySourcePathAzureTagFilterArgs.builder()
            .type("string")
            .namespace("string")
            .tags(AwsInventorySourcePathAzureTagFilterTagArgs.builder()
                .name("string")
                .values("string")
                .build())
            .build())
        .snsTopicOrSubscriptionArns(AwsInventorySourcePathSnsTopicOrSubscriptionArnArgs.builder()
            .arn("string")
            .isSuccess(false)
            .build())
        .tagFilters(AwsInventorySourcePathTagFilterArgs.builder()
            .namespace("string")
            .tags("string")
            .type("string")
            .build())
        .bucketName("string")
        .useVersionedApi(false)
        .build())
    .authentication(AwsInventorySourceAuthenticationArgs.builder()
        .type("string")
        .privateKeyId("string")
        .region("string")
        .clientEmail("string")
        .clientId("string")
        .clientSecret("string")
        .clientX509CertUrl("string")
        .privateKey("string")
        .accessKey("string")
        .authUri("string")
        .roleArn("string")
        .projectId("string")
        .secretKey("string")
        .sharedAccessPolicyKey("string")
        .sharedAccessPolicyName("string")
        .tenantId("string")
        .tokenUri("string")
        .authProviderX509CertUrl("string")
        .build())
    .collectorId(0)
    .filters(AwsInventorySourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .hostName("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(AwsInventorySourceDefaultDateFormatArgs.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());
Copy
aws_inventory_source_resource = sumologic.AwsInventorySource("awsInventorySourceResource",
    content_type="string",
    path={
        "type": "string",
        "limit_to_services": ["string"],
        "region": "string",
        "custom_services": [{
            "prefixes": ["string"],
            "service_name": "string",
        }],
        "environment": "string",
        "event_hub_name": "string",
        "limit_to_namespaces": ["string"],
        "consumer_group": "string",
        "namespace": "string",
        "limit_to_regions": ["string"],
        "path_expression": "string",
        "azure_tag_filters": [{
            "type": "string",
            "namespace": "string",
            "tags": [{
                "name": "string",
                "values": ["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",
        "region": "string",
        "client_email": "string",
        "client_id": "string",
        "client_secret": "string",
        "client_x509_cert_url": "string",
        "private_key": "string",
        "access_key": "string",
        "auth_uri": "string",
        "role_arn": "string",
        "project_id": "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)
Copy
const awsInventorySourceResource = new sumologic.AwsInventorySource("awsInventorySourceResource", {
    contentType: "string",
    path: {
        type: "string",
        limitToServices: ["string"],
        region: "string",
        customServices: [{
            prefixes: ["string"],
            serviceName: "string",
        }],
        environment: "string",
        eventHubName: "string",
        limitToNamespaces: ["string"],
        consumerGroup: "string",
        namespace: "string",
        limitToRegions: ["string"],
        pathExpression: "string",
        azureTagFilters: [{
            type: "string",
            namespace: "string",
            tags: [{
                name: "string",
                values: ["string"],
            }],
        }],
        snsTopicOrSubscriptionArns: [{
            arn: "string",
            isSuccess: false,
        }],
        tagFilters: [{
            namespace: "string",
            tags: ["string"],
            type: "string",
        }],
        bucketName: "string",
        useVersionedApi: false,
    },
    authentication: {
        type: "string",
        privateKeyId: "string",
        region: "string",
        clientEmail: "string",
        clientId: "string",
        clientSecret: "string",
        clientX509CertUrl: "string",
        privateKey: "string",
        accessKey: "string",
        authUri: "string",
        roleArn: "string",
        projectId: "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,
});
Copy
type: sumologic:AwsInventorySource
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
Copy

AwsInventorySource 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 AwsInventorySource resource accepts the following input properties:

Authentication
This property is required.
Changes to this property will trigger replacement.
Pulumi.SumoLogic.Inputs.AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
CollectorId
This property is required.
Changes to this property will trigger replacement.
int
ContentType
This property is required.
Changes to this property will trigger replacement.
string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
Path
This property is required.
Changes to this property will trigger replacement.
Pulumi.SumoLogic.Inputs.AwsInventorySourcePath
The location to scan for new data.
AutomaticDateParsing bool
Category string
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats List<Pulumi.SumoLogic.Inputs.AwsInventorySourceDefaultDateFormat>
Description string
Fields Dictionary<string, string>
Filters List<Pulumi.SumoLogic.Inputs.AwsInventorySourceFilter>
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
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.
Timezone string
UseAutolineMatching bool
Authentication
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourceAuthenticationArgs
Authentication details to access AWS Describe* APIs.
CollectorId
This property is required.
Changes to this property will trigger replacement.
int
ContentType
This property is required.
Changes to this property will trigger replacement.
string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
Path
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourcePathArgs
The location to scan for new data.
AutomaticDateParsing bool
Category string
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats []AwsInventorySourceDefaultDateFormatArgs
Description string
Fields map[string]string
Filters []AwsInventorySourceFilterArgs
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
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.
Timezone string
UseAutolineMatching bool
authentication
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
collectorId
This property is required.
Changes to this property will trigger replacement.
Integer
contentType
This property is required.
Changes to this property will trigger replacement.
String
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
path
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourcePath
The location to scan for new data.
automaticDateParsing Boolean
category String
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Integer
defaultDateFormats List<AwsInventorySourceDefaultDateFormat>
description String
fields Map<String,String>
filters List<AwsInventorySourceFilter>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
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.
timezone String
useAutolineMatching Boolean
authentication
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
collectorId
This property is required.
Changes to this property will trigger replacement.
number
contentType
This property is required.
Changes to this property will trigger replacement.
string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
path
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourcePath
The location to scan for new data.
automaticDateParsing boolean
category string
cutoffRelativeTime Changes to this property will trigger replacement. string
cutoffTimestamp number
defaultDateFormats AwsInventorySourceDefaultDateFormat[]
description string
fields {[key: string]: string}
filters AwsInventorySourceFilter[]
forceTimezone boolean
hashAlgorithm string
hostName string
manualPrefixRegexp string
multilineProcessingEnabled boolean
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.
timezone string
useAutolineMatching boolean
authentication
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourceAuthenticationArgs
Authentication details to access AWS Describe* APIs.
collector_id
This property is required.
Changes to this property will trigger replacement.
int
content_type
This property is required.
Changes to this property will trigger replacement.
str
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
path
This property is required.
Changes to this property will trigger replacement.
AwsInventorySourcePathArgs
The location to scan for new data.
automatic_date_parsing bool
category str
cutoff_relative_time Changes to this property will trigger replacement. str
cutoff_timestamp int
default_date_formats Sequence[AwsInventorySourceDefaultDateFormatArgs]
description str
fields Mapping[str, str]
filters Sequence[AwsInventorySourceFilterArgs]
force_timezone bool
hash_algorithm str
host_name str
manual_prefix_regexp str
multiline_processing_enabled bool
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.
timezone str
use_autoline_matching bool
authentication
This property is required.
Changes to this property will trigger replacement.
Property Map
Authentication details to access AWS Describe* APIs.
collectorId
This property is required.
Changes to this property will trigger replacement.
Number
contentType
This property is required.
Changes to this property will trigger replacement.
String
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
path
This property is required.
Changes to this property will trigger replacement.
Property Map
The location to scan for new data.
automaticDateParsing Boolean
category String
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Number
defaultDateFormats List<Property Map>
description String
fields Map<String>
filters List<Property Map>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
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.
timezone String
useAutolineMatching Boolean

Outputs

All input properties are implicitly available as output properties. Additionally, the AwsInventorySource resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Url string
Id string
The provider-assigned unique ID for this managed resource.
Url string
id String
The provider-assigned unique ID for this managed resource.
url String
id string
The provider-assigned unique ID for this managed resource.
url string
id str
The provider-assigned unique ID for this managed resource.
url str
id String
The provider-assigned unique ID for this managed resource.
url String

Look up Existing AwsInventorySource Resource

Get an existing AwsInventorySource 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?: AwsInventorySourceState, opts?: CustomResourceOptions): AwsInventorySource
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication: Optional[AwsInventorySourceAuthenticationArgs] = 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[AwsInventorySourceDefaultDateFormatArgs]] = None,
        description: Optional[str] = None,
        fields: Optional[Mapping[str, str]] = None,
        filters: Optional[Sequence[AwsInventorySourceFilterArgs]] = 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[AwsInventorySourcePathArgs] = None,
        paused: Optional[bool] = None,
        scan_interval: Optional[int] = None,
        timezone: Optional[str] = None,
        url: Optional[str] = None,
        use_autoline_matching: Optional[bool] = None) -> AwsInventorySource
func GetAwsInventorySource(ctx *Context, name string, id IDInput, state *AwsInventorySourceState, opts ...ResourceOption) (*AwsInventorySource, error)
public static AwsInventorySource Get(string name, Input<string> id, AwsInventorySourceState? state, CustomResourceOptions? opts = null)
public static AwsInventorySource get(String name, Output<String> id, AwsInventorySourceState state, CustomResourceOptions options)
resources:  _:    type: sumologic:AwsInventorySource    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Authentication Changes to this property will trigger replacement. Pulumi.SumoLogic.Inputs.AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
AutomaticDateParsing bool
Category string
CollectorId Changes to this property will trigger replacement. int
ContentType Changes to this property will trigger replacement. string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats List<Pulumi.SumoLogic.Inputs.AwsInventorySourceDefaultDateFormat>
Description string
Fields Dictionary<string, string>
Filters List<Pulumi.SumoLogic.Inputs.AwsInventorySourceFilter>
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Path Changes to this property will trigger replacement. Pulumi.SumoLogic.Inputs.AwsInventorySourcePath
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.
Timezone string
Url string
UseAutolineMatching bool
Authentication Changes to this property will trigger replacement. AwsInventorySourceAuthenticationArgs
Authentication details to access AWS Describe* APIs.
AutomaticDateParsing bool
Category string
CollectorId Changes to this property will trigger replacement. int
ContentType Changes to this property will trigger replacement. string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
CutoffRelativeTime Changes to this property will trigger replacement. string
CutoffTimestamp int
DefaultDateFormats []AwsInventorySourceDefaultDateFormatArgs
Description string
Fields map[string]string
Filters []AwsInventorySourceFilterArgs
ForceTimezone bool
HashAlgorithm string
HostName string
ManualPrefixRegexp string
MultilineProcessingEnabled bool
Name string
Path Changes to this property will trigger replacement. AwsInventorySourcePathArgs
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.
Timezone string
Url string
UseAutolineMatching bool
authentication Changes to this property will trigger replacement. AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
automaticDateParsing Boolean
category String
collectorId Changes to this property will trigger replacement. Integer
contentType Changes to this property will trigger replacement. String
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Integer
defaultDateFormats List<AwsInventorySourceDefaultDateFormat>
description String
fields Map<String,String>
filters List<AwsInventorySourceFilter>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
path Changes to this property will trigger replacement. AwsInventorySourcePath
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.
timezone String
url String
useAutolineMatching Boolean
authentication Changes to this property will trigger replacement. AwsInventorySourceAuthentication
Authentication details to access AWS Describe* APIs.
automaticDateParsing boolean
category string
collectorId Changes to this property will trigger replacement. number
contentType Changes to this property will trigger replacement. string
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
cutoffRelativeTime Changes to this property will trigger replacement. string
cutoffTimestamp number
defaultDateFormats AwsInventorySourceDefaultDateFormat[]
description string
fields {[key: string]: string}
filters AwsInventorySourceFilter[]
forceTimezone boolean
hashAlgorithm string
hostName string
manualPrefixRegexp string
multilineProcessingEnabled boolean
name string
path Changes to this property will trigger replacement. AwsInventorySourcePath
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.
timezone string
url string
useAutolineMatching boolean
authentication Changes to this property will trigger replacement. AwsInventorySourceAuthenticationArgs
Authentication details to access AWS Describe* APIs.
automatic_date_parsing bool
category str
collector_id Changes to this property will trigger replacement. int
content_type Changes to this property will trigger replacement. str
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
cutoff_relative_time Changes to this property will trigger replacement. str
cutoff_timestamp int
default_date_formats Sequence[AwsInventorySourceDefaultDateFormatArgs]
description str
fields Mapping[str, str]
filters Sequence[AwsInventorySourceFilterArgs]
force_timezone bool
hash_algorithm str
host_name str
manual_prefix_regexp str
multiline_processing_enabled bool
name str
path Changes to this property will trigger replacement. AwsInventorySourcePathArgs
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.
timezone str
url str
use_autoline_matching bool
authentication Changes to this property will trigger replacement. Property Map
Authentication details to access AWS Describe* APIs.
automaticDateParsing Boolean
category String
collectorId Changes to this property will trigger replacement. Number
contentType Changes to this property will trigger replacement. String
The content-type of the collected data. This has to be AwsInventoryPath for AWS Inventory source.
cutoffRelativeTime Changes to this property will trigger replacement. String
cutoffTimestamp Number
defaultDateFormats List<Property Map>
description String
fields Map<String>
filters List<Property Map>
forceTimezone Boolean
hashAlgorithm String
hostName String
manualPrefixRegexp String
multilineProcessingEnabled Boolean
name String
path Changes to this property will trigger replacement. 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.
timezone String
url String
useAutolineMatching Boolean

Supporting Types

AwsInventorySourceAuthentication
, AwsInventorySourceAuthenticationArgs

Type This property is required. string
Must be AWSRoleBasedAuthentication
AccessKey string
AuthProviderX509CertUrl string
AuthUri string
ClientEmail string
ClientId string
ClientSecret string
ClientX509CertUrl string
PrivateKey string
PrivateKeyId string
ProjectId string
Region string
RoleArn string
Your AWS role ARN. More details here.
SecretKey string
SharedAccessPolicyKey string
SharedAccessPolicyName string
TenantId string
TokenUri string
Type This property is required. string
Must be AWSRoleBasedAuthentication
AccessKey string
AuthProviderX509CertUrl string
AuthUri string
ClientEmail string
ClientId string
ClientSecret string
ClientX509CertUrl string
PrivateKey string
PrivateKeyId string
ProjectId string
Region string
RoleArn string
Your AWS role ARN. More details here.
SecretKey string
SharedAccessPolicyKey string
SharedAccessPolicyName string
TenantId string
TokenUri string
type This property is required. String
Must be AWSRoleBasedAuthentication
accessKey String
authProviderX509CertUrl String
authUri String
clientEmail String
clientId String
clientSecret String
clientX509CertUrl String
privateKey String
privateKeyId String
projectId String
region String
roleArn String
Your AWS role ARN. More details here.
secretKey String
sharedAccessPolicyKey String
sharedAccessPolicyName String
tenantId String
tokenUri String
type This property is required. string
Must be AWSRoleBasedAuthentication
accessKey string
authProviderX509CertUrl string
authUri string
clientEmail string
clientId string
clientSecret string
clientX509CertUrl string
privateKey string
privateKeyId string
projectId string
region string
roleArn string
Your AWS role ARN. More details here.
secretKey string
sharedAccessPolicyKey string
sharedAccessPolicyName string
tenantId string
tokenUri string
type This property is required. str
Must be AWSRoleBasedAuthentication
access_key str
auth_provider_x509_cert_url str
auth_uri str
client_email str
client_id str
client_secret str
client_x509_cert_url str
private_key str
private_key_id str
project_id str
region str
role_arn str
Your AWS role ARN. More details here.
secret_key str
shared_access_policy_key str
shared_access_policy_name str
tenant_id str
token_uri str
type This property is required. String
Must be AWSRoleBasedAuthentication
accessKey String
authProviderX509CertUrl String
authUri String
clientEmail String
clientId String
clientSecret String
clientX509CertUrl String
privateKey String
privateKeyId String
projectId String
region String
roleArn String
Your AWS role ARN. More details here.
secretKey String
sharedAccessPolicyKey String
sharedAccessPolicyName String
tenantId String
tokenUri String

AwsInventorySourceDefaultDateFormat
, AwsInventorySourceDefaultDateFormatArgs

Format This property is required. string
Locator string
Format This property is required. string
Locator string
format This property is required. String
locator String
format This property is required. string
locator string
format This property is required. str
locator str
format This property is required. String
locator String

AwsInventorySourceFilter
, AwsInventorySourceFilterArgs

FilterType This property is required. string
Name This property is required. string
Regexp This property is required. string
Mask string
FilterType This property is required. string
Name This property is required. string
Regexp This property is required. string
Mask string
filterType This property is required. String
name This property is required. String
regexp This property is required. String
mask String
filterType This property is required. string
name This property is required. string
regexp This property is required. string
mask string
filter_type This property is required. str
name This property is required. str
regexp This property is required. str
mask str
filterType This property is required. String
name This property is required. String
regexp This property is required. String
mask String

AwsInventorySourcePath
, AwsInventorySourcePathArgs

Type This property is required. string
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
AzureTagFilters List<Pulumi.SumoLogic.Inputs.AwsInventorySourcePathAzureTagFilter>
BucketName string
ConsumerGroup string
CustomServices List<Pulumi.SumoLogic.Inputs.AwsInventorySourcePathCustomService>
Environment string
EventHubName string
LimitToNamespaces List<string>
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
LimitToRegions List<string>
List of Amazon regions.
LimitToServices List<string>
Namespace string
PathExpression string
Region string
SnsTopicOrSubscriptionArns List<Pulumi.SumoLogic.Inputs.AwsInventorySourcePathSnsTopicOrSubscriptionArn>
TagFilters List<Pulumi.SumoLogic.Inputs.AwsInventorySourcePathTagFilter>
UseVersionedApi bool
Type This property is required. string
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
AzureTagFilters []AwsInventorySourcePathAzureTagFilter
BucketName string
ConsumerGroup string
CustomServices []AwsInventorySourcePathCustomService
Environment string
EventHubName string
LimitToNamespaces []string
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
LimitToRegions []string
List of Amazon regions.
LimitToServices []string
Namespace string
PathExpression string
Region string
SnsTopicOrSubscriptionArns []AwsInventorySourcePathSnsTopicOrSubscriptionArn
TagFilters []AwsInventorySourcePathTagFilter
UseVersionedApi bool
type This property is required. String
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
azureTagFilters List<AwsInventorySourcePathAzureTagFilter>
bucketName String
consumerGroup String
customServices List<AwsInventorySourcePathCustomService>
environment String
eventHubName String
limitToNamespaces List<String>
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
limitToRegions List<String>
List of Amazon regions.
limitToServices List<String>
namespace String
pathExpression String
region String
snsTopicOrSubscriptionArns List<AwsInventorySourcePathSnsTopicOrSubscriptionArn>
tagFilters List<AwsInventorySourcePathTagFilter>
useVersionedApi Boolean
type This property is required. string
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
azureTagFilters AwsInventorySourcePathAzureTagFilter[]
bucketName string
consumerGroup string
customServices AwsInventorySourcePathCustomService[]
environment string
eventHubName string
limitToNamespaces string[]
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
limitToRegions string[]
List of Amazon regions.
limitToServices string[]
namespace string
pathExpression string
region string
snsTopicOrSubscriptionArns AwsInventorySourcePathSnsTopicOrSubscriptionArn[]
tagFilters AwsInventorySourcePathTagFilter[]
useVersionedApi boolean
type This property is required. str
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
azure_tag_filters Sequence[AwsInventorySourcePathAzureTagFilter]
bucket_name str
consumer_group str
custom_services Sequence[AwsInventorySourcePathCustomService]
environment str
event_hub_name str
limit_to_namespaces Sequence[str]
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
limit_to_regions Sequence[str]
List of Amazon regions.
limit_to_services Sequence[str]
namespace str
path_expression str
region str
sns_topic_or_subscription_arns Sequence[AwsInventorySourcePathSnsTopicOrSubscriptionArn]
tag_filters Sequence[AwsInventorySourcePathTagFilter]
use_versioned_api bool
type This property is required. String
type of polling source. This has to be AwsInventoryPath for AWS Inventory source.
azureTagFilters List<Property Map>
bucketName String
consumerGroup String
customServices List<Property Map>
environment String
eventHubName String
limitToNamespaces List<String>
List of namespaces. By default all namespaces are selected. You can also choose a subset from

  • AWS/EC2
  • AWS/AutoScaling
  • AWS/EBS
  • AWS/ELB
  • AWS/ApplicationELB
  • AWS/NetworkELB
  • AWS/Lambda
  • AWS/RDS
  • AWS/Dynamodb
  • AWS/ECS
  • AWS/Elasticache
  • AWS/Redshift
  • AWS/Kinesis
limitToRegions List<String>
List of Amazon regions.
limitToServices List<String>
namespace String
pathExpression String
region String
snsTopicOrSubscriptionArns List<Property Map>
tagFilters List<Property Map>
useVersionedApi Boolean

AwsInventorySourcePathAzureTagFilter
, AwsInventorySourcePathAzureTagFilterArgs

Type This property is required. string
Namespace string
Tags []AwsInventorySourcePathAzureTagFilterTag
type This property is required. String
namespace String
tags List<AwsInventorySourcePathAzureTagFilterTag>
type This property is required. string
namespace string
tags AwsInventorySourcePathAzureTagFilterTag[]
type This property is required. String
namespace String
tags List<Property Map>

AwsInventorySourcePathAzureTagFilterTag
, AwsInventorySourcePathAzureTagFilterTagArgs

Name This property is required. string
Values List<string>
Name This property is required. string
Values []string
name This property is required. String
values List<String>
name This property is required. string
values string[]
name This property is required. str
values Sequence[str]
name This property is required. String
values List<String>

AwsInventorySourcePathCustomService
, AwsInventorySourcePathCustomServiceArgs

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

AwsInventorySourcePathSnsTopicOrSubscriptionArn
, AwsInventorySourcePathSnsTopicOrSubscriptionArnArgs

Arn string
IsSuccess bool
Arn string
IsSuccess bool
arn String
isSuccess Boolean
arn string
isSuccess boolean
arn str
is_success bool
arn String
isSuccess Boolean

AwsInventorySourcePathTagFilter
, AwsInventorySourcePathTagFilterArgs

Namespace string
Tags List<string>
Type string
Namespace string
Tags []string
Type string
namespace String
tags List<String>
type String
namespace string
tags string[]
type string
namespace str
tags Sequence[str]
type str
namespace String
tags List<String>
type String

Import

AWS Inventory sources can be imported using the collector and source IDs (collector/source), e.g.:

hcl

$ pulumi import sumologic:index/awsInventorySource:AwsInventorySource test 123/456
Copy

AWS Inventory sources can be imported using the collector name and source name (collectorName/sourceName), e.g.:

hcl

$ pulumi import sumologic:index/awsInventorySource:AwsInventorySource test my-test-collector/my-test-source
Copy

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 sumologic Terraform Provider.