sumologic.S3AuditSource
Explore with Pulumi AI
Provides a AWS S3 Audit Source.
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 s3Audit = new sumologic.S3AuditSource("s3_audit", {
    name: "Amazon S3 Audit",
    description: "My description",
    category: "aws/s3audit",
    contentType: "AwsS3AuditBucket",
    scanInterval: 300000,
    paused: false,
    collectorId: collector.id,
    authentication: {
        type: "S3BucketAuthentication",
        accessKey: "someKey",
        secretKey: "******",
    },
    path: {
        type: "S3BucketPathExpression",
        bucketName: "Bucket1",
        pathExpression: "*",
    },
});
import pulumi
import pulumi_sumologic as sumologic
collector = sumologic.Collector("collector",
    name="my-collector",
    description="Just testing this")
s3_audit = sumologic.S3AuditSource("s3_audit",
    name="Amazon S3 Audit",
    description="My description",
    category="aws/s3audit",
    content_type="AwsS3AuditBucket",
    scan_interval=300000,
    paused=False,
    collector_id=collector.id,
    authentication={
        "type": "S3BucketAuthentication",
        "access_key": "someKey",
        "secret_key": "******",
    },
    path={
        "type": "S3BucketPathExpression",
        "bucket_name": "Bucket1",
        "path_expression": "*",
    })
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.NewS3AuditSource(ctx, "s3_audit", &sumologic.S3AuditSourceArgs{
			Name:         pulumi.String("Amazon S3 Audit"),
			Description:  pulumi.String("My description"),
			Category:     pulumi.String("aws/s3audit"),
			ContentType:  pulumi.String("AwsS3AuditBucket"),
			ScanInterval: pulumi.Int(300000),
			Paused:       pulumi.Bool(false),
			CollectorId:  collector.ID(),
			Authentication: &sumologic.S3AuditSourceAuthenticationArgs{
				Type:      pulumi.String("S3BucketAuthentication"),
				AccessKey: pulumi.String("someKey"),
				SecretKey: pulumi.String("******"),
			},
			Path: &sumologic.S3AuditSourcePathArgs{
				Type:           pulumi.String("S3BucketPathExpression"),
				BucketName:     pulumi.String("Bucket1"),
				PathExpression: pulumi.String("*"),
			},
		})
		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 s3Audit = new SumoLogic.S3AuditSource("s3_audit", new()
    {
        Name = "Amazon S3 Audit",
        Description = "My description",
        Category = "aws/s3audit",
        ContentType = "AwsS3AuditBucket",
        ScanInterval = 300000,
        Paused = false,
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.S3AuditSourceAuthenticationArgs
        {
            Type = "S3BucketAuthentication",
            AccessKey = "someKey",
            SecretKey = "******",
        },
        Path = new SumoLogic.Inputs.S3AuditSourcePathArgs
        {
            Type = "S3BucketPathExpression",
            BucketName = "Bucket1",
            PathExpression = "*",
        },
    });
});
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.S3AuditSource;
import com.pulumi.sumologic.S3AuditSourceArgs;
import com.pulumi.sumologic.inputs.S3AuditSourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.S3AuditSourcePathArgs;
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 s3Audit = new S3AuditSource("s3Audit", S3AuditSourceArgs.builder()
            .name("Amazon S3 Audit")
            .description("My description")
            .category("aws/s3audit")
            .contentType("AwsS3AuditBucket")
            .scanInterval(300000)
            .paused(false)
            .collectorId(collector.id())
            .authentication(S3AuditSourceAuthenticationArgs.builder()
                .type("S3BucketAuthentication")
                .accessKey("someKey")
                .secretKey("******")
                .build())
            .path(S3AuditSourcePathArgs.builder()
                .type("S3BucketPathExpression")
                .bucketName("Bucket1")
                .pathExpression("*")
                .build())
            .build());
    }
}
resources:
  s3Audit:
    type: sumologic:S3AuditSource
    name: s3_audit
    properties:
      name: Amazon S3 Audit
      description: My description
      category: aws/s3audit
      contentType: AwsS3AuditBucket
      scanInterval: 300000
      paused: false
      collectorId: ${collector.id}
      authentication:
        type: S3BucketAuthentication
        accessKey: someKey
        secretKey: '******'
      path:
        type: S3BucketPathExpression
        bucketName: Bucket1
        pathExpression: '*'
  collector:
    type: sumologic:Collector
    properties:
      name: my-collector
      description: Just testing this
Create S3AuditSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new S3AuditSource(name: string, args: S3AuditSourceArgs, opts?: CustomResourceOptions);@overload
def S3AuditSource(resource_name: str,
                  args: S3AuditSourceArgs,
                  opts: Optional[ResourceOptions] = None)
@overload
def S3AuditSource(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  content_type: Optional[str] = None,
                  path: Optional[S3AuditSourcePathArgs] = None,
                  authentication: Optional[S3AuditSourceAuthenticationArgs] = None,
                  collector_id: Optional[int] = None,
                  filters: Optional[Sequence[S3AuditSourceFilterArgs]] = None,
                  host_name: Optional[str] = None,
                  cutoff_timestamp: Optional[int] = None,
                  default_date_formats: Optional[Sequence[S3AuditSourceDefaultDateFormatArgs]] = 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 NewS3AuditSource(ctx *Context, name string, args S3AuditSourceArgs, opts ...ResourceOption) (*S3AuditSource, error)public S3AuditSource(string name, S3AuditSourceArgs args, CustomResourceOptions? opts = null)
public S3AuditSource(String name, S3AuditSourceArgs args)
public S3AuditSource(String name, S3AuditSourceArgs args, CustomResourceOptions options)
type: sumologic:S3AuditSource
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 S3AuditSourceArgs
- 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 S3AuditSourceArgs
- 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 S3AuditSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args S3AuditSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args S3AuditSourceArgs
- 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 s3auditSourceResource = new SumoLogic.S3AuditSource("s3auditSourceResource", new()
{
    ContentType = "string",
    Path = new SumoLogic.Inputs.S3AuditSourcePathArgs
    {
        Type = "string",
        LimitToServices = new[]
        {
            "string",
        },
        Namespace = "string",
        CustomServices = new[]
        {
            new SumoLogic.Inputs.S3AuditSourcePathCustomServiceArgs
            {
                Prefixes = new[]
                {
                    "string",
                },
                ServiceName = "string",
            },
        },
        Environment = "string",
        EventHubName = "string",
        LimitToNamespaces = new[]
        {
            "string",
        },
        ConsumerGroup = "string",
        AzureTagFilters = new[]
        {
            new SumoLogic.Inputs.S3AuditSourcePathAzureTagFilterArgs
            {
                Type = "string",
                Namespace = "string",
                Tags = new[]
                {
                    new SumoLogic.Inputs.S3AuditSourcePathAzureTagFilterTagArgs
                    {
                        Name = "string",
                        Values = new[]
                        {
                            "string",
                        },
                    },
                },
            },
        },
        LimitToRegions = new[]
        {
            "string",
        },
        PathExpression = "string",
        Region = "string",
        SnsTopicOrSubscriptionArns = new[]
        {
            new SumoLogic.Inputs.S3AuditSourcePathSnsTopicOrSubscriptionArnArgs
            {
                Arn = "string",
                IsSuccess = false,
            },
        },
        TagFilters = new[]
        {
            new SumoLogic.Inputs.S3AuditSourcePathTagFilterArgs
            {
                Namespace = "string",
                Tags = new[]
                {
                    "string",
                },
                Type = "string",
            },
        },
        BucketName = "string",
        UseVersionedApi = false,
    },
    Authentication = new SumoLogic.Inputs.S3AuditSourceAuthenticationArgs
    {
        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.S3AuditSourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    HostName = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.S3AuditSourceDefaultDateFormatArgs
        {
            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.NewS3AuditSource(ctx, "s3auditSourceResource", &sumologic.S3AuditSourceArgs{
	ContentType: pulumi.String("string"),
	Path: &sumologic.S3AuditSourcePathArgs{
		Type: pulumi.String("string"),
		LimitToServices: pulumi.StringArray{
			pulumi.String("string"),
		},
		Namespace: pulumi.String("string"),
		CustomServices: sumologic.S3AuditSourcePathCustomServiceArray{
			&sumologic.S3AuditSourcePathCustomServiceArgs{
				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.S3AuditSourcePathAzureTagFilterArray{
			&sumologic.S3AuditSourcePathAzureTagFilterArgs{
				Type:      pulumi.String("string"),
				Namespace: pulumi.String("string"),
				Tags: sumologic.S3AuditSourcePathAzureTagFilterTagArray{
					&sumologic.S3AuditSourcePathAzureTagFilterTagArgs{
						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.S3AuditSourcePathSnsTopicOrSubscriptionArnArray{
			&sumologic.S3AuditSourcePathSnsTopicOrSubscriptionArnArgs{
				Arn:       pulumi.String("string"),
				IsSuccess: pulumi.Bool(false),
			},
		},
		TagFilters: sumologic.S3AuditSourcePathTagFilterArray{
			&sumologic.S3AuditSourcePathTagFilterArgs{
				Namespace: pulumi.String("string"),
				Tags: pulumi.StringArray{
					pulumi.String("string"),
				},
				Type: pulumi.String("string"),
			},
		},
		BucketName:      pulumi.String("string"),
		UseVersionedApi: pulumi.Bool(false),
	},
	Authentication: &sumologic.S3AuditSourceAuthenticationArgs{
		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.S3AuditSourceFilterArray{
		&sumologic.S3AuditSourceFilterArgs{
			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.S3AuditSourceDefaultDateFormatArray{
		&sumologic.S3AuditSourceDefaultDateFormatArgs{
			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 s3auditSourceResource = new S3AuditSource("s3auditSourceResource", S3AuditSourceArgs.builder()
    .contentType("string")
    .path(S3AuditSourcePathArgs.builder()
        .type("string")
        .limitToServices("string")
        .namespace("string")
        .customServices(S3AuditSourcePathCustomServiceArgs.builder()
            .prefixes("string")
            .serviceName("string")
            .build())
        .environment("string")
        .eventHubName("string")
        .limitToNamespaces("string")
        .consumerGroup("string")
        .azureTagFilters(S3AuditSourcePathAzureTagFilterArgs.builder()
            .type("string")
            .namespace("string")
            .tags(S3AuditSourcePathAzureTagFilterTagArgs.builder()
                .name("string")
                .values("string")
                .build())
            .build())
        .limitToRegions("string")
        .pathExpression("string")
        .region("string")
        .snsTopicOrSubscriptionArns(S3AuditSourcePathSnsTopicOrSubscriptionArnArgs.builder()
            .arn("string")
            .isSuccess(false)
            .build())
        .tagFilters(S3AuditSourcePathTagFilterArgs.builder()
            .namespace("string")
            .tags("string")
            .type("string")
            .build())
        .bucketName("string")
        .useVersionedApi(false)
        .build())
    .authentication(S3AuditSourceAuthenticationArgs.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(S3AuditSourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .hostName("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(S3AuditSourceDefaultDateFormatArgs.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());
s3audit_source_resource = sumologic.S3AuditSource("s3auditSourceResource",
    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 s3auditSourceResource = new sumologic.S3AuditSource("s3auditSourceResource", {
    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:S3AuditSource
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
S3AuditSource 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 S3AuditSource resource accepts the following input properties:
- Authentication
Pulumi.Sumo Logic. Inputs. S3Audit Source Authentication 
- Authentication details for connecting to the S3 bucket.
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Path
Pulumi.Sumo Logic. Inputs. S3Audit Source Path 
- The location to scan for new data.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate List<Pulumi.Formats Sumo Logic. Inputs. S3Audit Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. S3Audit 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 default is 300000 and the minimum value is 1000 milliseconds.
- Timezone string
- UseAutoline boolMatching 
- Authentication
S3AuditSource Authentication Args 
- Authentication details for connecting to the S3 bucket.
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Path
S3AuditSource Path Args 
- The location to scan for new data.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate []S3AuditFormats Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- Timezone string
- UseAutoline boolMatching 
- authentication
S3AuditSource Authentication 
- Authentication details for connecting to the S3 bucket.
- collectorId Integer
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- path
S3AuditSource Path 
- The location to scan for new data.
- automaticDate BooleanParsing 
- category String
- cutoffRelative StringTime 
- cutoffTimestamp Integer
- defaultDate List<S3AuditFormats Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- useAutoline BooleanMatching 
- authentication
S3AuditSource Authentication 
- Authentication details for connecting to the S3 bucket.
- collectorId number
- contentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- path
S3AuditSource Path 
- The location to scan for new data.
- automaticDate booleanParsing 
- category string
- cutoffRelative stringTime 
- cutoffTimestamp number
- defaultDate S3AuditFormats Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone string
- useAutoline booleanMatching 
- authentication
S3AuditSource Authentication Args 
- Authentication details for connecting to the S3 bucket.
- collector_id int
- content_type str
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- path
S3AuditSource Path Args 
- The location to scan for new data.
- automatic_date_ boolparsing 
- category str
- cutoff_relative_ strtime 
- cutoff_timestamp int
- default_date_ Sequence[S3Auditformats Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone str
- use_autoline_ boolmatching 
- authentication Property Map
- Authentication details for connecting to the S3 bucket.
- collectorId Number
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- useAutoline BooleanMatching 
Outputs
All input properties are implicitly available as output properties. Additionally, the S3AuditSource resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- Id string
- The provider-assigned unique ID for this managed resource.
- Url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- id String
- The provider-assigned unique ID for this managed resource.
- url String
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- id string
- The provider-assigned unique ID for this managed resource.
- url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- id str
- The provider-assigned unique ID for this managed resource.
- url str
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- id String
- The provider-assigned unique ID for this managed resource.
- url String
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
Look up Existing S3AuditSource Resource
Get an existing S3AuditSource 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?: S3AuditSourceState, opts?: CustomResourceOptions): S3AuditSource@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication: Optional[S3AuditSourceAuthenticationArgs] = 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[S3AuditSourceDefaultDateFormatArgs]] = None,
        description: Optional[str] = None,
        fields: Optional[Mapping[str, str]] = None,
        filters: Optional[Sequence[S3AuditSourceFilterArgs]] = 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[S3AuditSourcePathArgs] = None,
        paused: Optional[bool] = None,
        scan_interval: Optional[int] = None,
        timezone: Optional[str] = None,
        url: Optional[str] = None,
        use_autoline_matching: Optional[bool] = None) -> S3AuditSourcefunc GetS3AuditSource(ctx *Context, name string, id IDInput, state *S3AuditSourceState, opts ...ResourceOption) (*S3AuditSource, error)public static S3AuditSource Get(string name, Input<string> id, S3AuditSourceState? state, CustomResourceOptions? opts = null)public static S3AuditSource get(String name, Output<String> id, S3AuditSourceState state, CustomResourceOptions options)resources:  _:    type: sumologic:S3AuditSource    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. S3Audit Source Authentication 
- Authentication details for connecting to the S3 bucket.
- AutomaticDate boolParsing 
- Category string
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate List<Pulumi.Formats Sumo Logic. Inputs. S3Audit Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. S3Audit Source Filter> 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Path
Pulumi.Sumo Logic. Inputs. S3Audit 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 default is 300000 and the minimum value is 1000 milliseconds.
- Timezone string
- Url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- UseAutoline boolMatching 
- Authentication
S3AuditSource Authentication Args 
- Authentication details for connecting to the S3 bucket.
- AutomaticDate boolParsing 
- Category string
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate []S3AuditFormats Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]S3AuditSource Filter Args 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MultilineProcessing boolEnabled 
- Name string
- Path
S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- Timezone string
- Url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- UseAutoline boolMatching 
- authentication
S3AuditSource Authentication 
- Authentication details for connecting to the S3 bucket.
- automaticDate BooleanParsing 
- category String
- collectorId Integer
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoffRelative StringTime 
- cutoffTimestamp Integer
- defaultDate List<S3AuditFormats Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<S3AuditSource Filter> 
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- multilineProcessing BooleanEnabled 
- name String
- path
S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- url String
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- useAutoline BooleanMatching 
- authentication
S3AuditSource Authentication 
- Authentication details for connecting to the S3 bucket.
- automaticDate booleanParsing 
- category string
- collectorId number
- contentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoffRelative stringTime 
- cutoffTimestamp number
- defaultDate S3AuditFormats Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
S3AuditSource Filter[] 
- forceTimezone boolean
- hashAlgorithm string
- hostName string
- manualPrefix stringRegexp 
- multilineProcessing booleanEnabled 
- name string
- path
S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone string
- url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- useAutoline booleanMatching 
- authentication
S3AuditSource Authentication Args 
- Authentication details for connecting to the S3 bucket.
- automatic_date_ boolparsing 
- category str
- collector_id int
- content_type str
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff_relative_ strtime 
- cutoff_timestamp int
- default_date_ Sequence[S3Auditformats Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[S3AuditSource Filter Args] 
- force_timezone bool
- hash_algorithm str
- host_name str
- manual_prefix_ strregexp 
- multiline_processing_ boolenabled 
- name str
- path
S3AuditSource 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone str
- url str
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- use_autoline_ boolmatching 
- authentication Property Map
- Authentication details for connecting to the S3 bucket.
- automaticDate BooleanParsing 
- category String
- collectorId Number
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- 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 default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- url String
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- useAutoline BooleanMatching 
Supporting Types
S3AuditSourceAuthentication, S3AuditSourceAuthenticationArgs      
- 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
- Your AWS Bucket region.
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- 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
- Your AWS Bucket region.
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- 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
- Your AWS Bucket region.
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- 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
- Your AWS Bucket region.
- roleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- 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
- Your AWS Bucket region.
- role_arn str
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- 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
- Your AWS Bucket region.
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication.This is not supported for AWS China regions.
- secretKey String
- Your AWS secret key if using type S3BucketAuthentication.
- String
- String
- tenantId String
- tokenUri String
S3AuditSourceDefaultDateFormat, S3AuditSourceDefaultDateFormatArgs          
S3AuditSourceFilter, S3AuditSourceFilterArgs      
- 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
S3AuditSourcePath, S3AuditSourcePathArgs      
- Type string
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- AzureTag List<Pulumi.Filters Sumo Logic. Inputs. S3Audit Source Path Azure Tag Filter> 
- BucketName string
- The name of the bucket.
- ConsumerGroup string
- CustomServices List<Pulumi.Sumo Logic. Inputs. S3Audit Source Path Custom Service> 
- Environment string
- EventHub stringName 
- LimitTo List<string>Namespaces 
- LimitTo List<string>Regions 
- LimitTo List<string>Services 
- Namespace string
- PathExpression string
- The path to the data.
- Region string
- Your AWS Bucket region.
- SnsTopic List<Pulumi.Or Subscription Arns Sumo Logic. Inputs. S3Audit Source Path Sns Topic Or Subscription Arn> 
- This is a computed field for SNS topic/subscription ARN.
- TagFilters List<Pulumi.Sumo Logic. Inputs. S3Audit Source Path Tag Filter> 
- UseVersioned boolApi 
- Type string
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- AzureTag []S3AuditFilters Source Path Azure Tag Filter 
- BucketName string
- The name of the bucket.
- ConsumerGroup string
- CustomServices []S3AuditSource Path Custom Service 
- Environment string
- EventHub stringName 
- LimitTo []stringNamespaces 
- LimitTo []stringRegions 
- LimitTo []stringServices 
- Namespace string
- PathExpression string
- The path to the data.
- Region string
- Your AWS Bucket region.
- SnsTopic []S3AuditOr Subscription Arns Source Path Sns Topic Or Subscription Arn 
- This is a computed field for SNS topic/subscription ARN.
- TagFilters []S3AuditSource Path Tag Filter 
- UseVersioned boolApi 
- type String
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- azureTag List<S3AuditFilters Source Path Azure Tag Filter> 
- bucketName String
- The name of the bucket.
- consumerGroup String
- customServices List<S3AuditSource Path Custom Service> 
- environment String
- eventHub StringName 
- limitTo List<String>Namespaces 
- limitTo List<String>Regions 
- limitTo List<String>Services 
- namespace String
- pathExpression String
- The path to the data.
- region String
- Your AWS Bucket region.
- snsTopic List<S3AuditOr Subscription Arns Source Path Sns Topic Or Subscription Arn> 
- This is a computed field for SNS topic/subscription ARN.
- tagFilters List<S3AuditSource Path Tag Filter> 
- useVersioned BooleanApi 
- type string
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- azureTag S3AuditFilters Source Path Azure Tag Filter[] 
- bucketName string
- The name of the bucket.
- consumerGroup string
- customServices S3AuditSource Path Custom Service[] 
- environment string
- eventHub stringName 
- limitTo string[]Namespaces 
- limitTo string[]Regions 
- limitTo string[]Services 
- namespace string
- pathExpression string
- The path to the data.
- region string
- Your AWS Bucket region.
- snsTopic S3AuditOr Subscription Arns Source Path Sns Topic Or Subscription Arn[] 
- This is a computed field for SNS topic/subscription ARN.
- tagFilters S3AuditSource Path Tag Filter[] 
- useVersioned booleanApi 
- type str
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- azure_tag_ Sequence[S3Auditfilters Source Path Azure Tag Filter] 
- bucket_name str
- The name of the bucket.
- consumer_group str
- custom_services Sequence[S3AuditSource Path Custom Service] 
- environment str
- event_hub_ strname 
- limit_to_ Sequence[str]namespaces 
- limit_to_ Sequence[str]regions 
- limit_to_ Sequence[str]services 
- namespace str
- path_expression str
- The path to the data.
- region str
- Your AWS Bucket region.
- sns_topic_ Sequence[S3Auditor_ subscription_ arns Source Path Sns Topic Or Subscription Arn] 
- This is a computed field for SNS topic/subscription ARN.
- tag_filters Sequence[S3AuditSource Path Tag Filter] 
- use_versioned_ boolapi 
- type String
- type of polling source. This has to be S3BucketPathExpressionforS3 Audit source.
- azureTag List<Property Map>Filters 
- bucketName String
- The name of the bucket.
- consumerGroup String
- customServices List<Property Map>
- environment String
- eventHub StringName 
- limitTo List<String>Namespaces 
- limitTo List<String>Regions 
- limitTo List<String>Services 
- namespace String
- pathExpression String
- The path to the data.
- region String
- Your AWS Bucket region.
- snsTopic List<Property Map>Or Subscription Arns 
- This is a computed field for SNS topic/subscription ARN.
- tagFilters List<Property Map>
- useVersioned BooleanApi 
S3AuditSourcePathAzureTagFilter, S3AuditSourcePathAzureTagFilterArgs            
- Type string
- Namespace string
- 
[]S3AuditSource Path Azure Tag Filter Tag 
- type String
- namespace String
- 
List<S3AuditSource Path Azure Tag Filter Tag> 
- type string
- namespace string
- 
S3AuditSource Path Azure Tag Filter Tag[] 
- type String
- namespace String
- List<Property Map>
S3AuditSourcePathAzureTagFilterTag, S3AuditSourcePathAzureTagFilterTagArgs              
S3AuditSourcePathCustomService, S3AuditSourcePathCustomServiceArgs          
- 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
S3AuditSourcePathSnsTopicOrSubscriptionArn, S3AuditSourcePathSnsTopicOrSubscriptionArnArgs                
- arn str
- is_success bool
S3AuditSourcePathTagFilter, S3AuditSourcePathTagFilterArgs          
Import
S3 Audit sources can be imported using the collector and source IDs (collector/source), e.g.:
hcl
$ pulumi import sumologic:index/s3AuditSource:S3AuditSource test 123/456
S3 Audit sources can be imported using the collector name and source name (collectorName/sourceName), e.g.:
hcl
$ pulumi import sumologic:index/s3AuditSource:S3AuditSource 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.