sumologic.KinesisLogSource
Explore with Pulumi AI
Provides a Sumologic Kinesis Log source. This source is used to ingest log via Kinesis Firehose from AWS.
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 kinesisLogAccessKey = new sumologic.KinesisLogSource("kinesis_log_access_key", {
    name: "Kinesis Log",
    description: "Description for Kinesis Log Source",
    category: "prod/kinesis/log",
    contentType: "KinesisLog",
    collectorId: collector.id,
    authentication: {
        type: "S3BucketAuthentication",
        accessKey: "someKey",
        secretKey: "******",
    },
    path: {
        type: "KinesisLogPath",
        bucketName: "testBucket",
        pathExpression: "http-endpoint-failed/*",
        scanInterval: 30000,
    },
});
const kinesisLogRoleArn = new sumologic.KinesisLogSource("kinesis_log_role_arn", {
    name: "Kinesis Log",
    description: "Description for Kinesis Log Source",
    category: "prod/kinesis/log",
    contentType: "KinesisLog",
    collectorId: collector.id,
    authentication: {
        type: "AWSRoleBasedAuthentication",
        roleArn: "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
    },
    path: {
        type: "KinesisLogPath",
        bucketName: "testBucket",
        pathExpression: "http-endpoint-failed/*",
        scanInterval: 30000,
    },
});
import pulumi
import pulumi_sumologic as sumologic
collector = sumologic.Collector("collector",
    name="my-collector",
    description="Just testing this")
kinesis_log_access_key = sumologic.KinesisLogSource("kinesis_log_access_key",
    name="Kinesis Log",
    description="Description for Kinesis Log Source",
    category="prod/kinesis/log",
    content_type="KinesisLog",
    collector_id=collector.id,
    authentication={
        "type": "S3BucketAuthentication",
        "access_key": "someKey",
        "secret_key": "******",
    },
    path={
        "type": "KinesisLogPath",
        "bucket_name": "testBucket",
        "path_expression": "http-endpoint-failed/*",
        "scan_interval": 30000,
    })
kinesis_log_role_arn = sumologic.KinesisLogSource("kinesis_log_role_arn",
    name="Kinesis Log",
    description="Description for Kinesis Log Source",
    category="prod/kinesis/log",
    content_type="KinesisLog",
    collector_id=collector.id,
    authentication={
        "type": "AWSRoleBasedAuthentication",
        "role_arn": "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
    },
    path={
        "type": "KinesisLogPath",
        "bucket_name": "testBucket",
        "path_expression": "http-endpoint-failed/*",
        "scan_interval": 30000,
    })
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.NewKinesisLogSource(ctx, "kinesis_log_access_key", &sumologic.KinesisLogSourceArgs{
			Name:        pulumi.String("Kinesis Log"),
			Description: pulumi.String("Description for Kinesis Log Source"),
			Category:    pulumi.String("prod/kinesis/log"),
			ContentType: pulumi.String("KinesisLog"),
			CollectorId: collector.ID(),
			Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
				Type:      pulumi.String("S3BucketAuthentication"),
				AccessKey: pulumi.String("someKey"),
				SecretKey: pulumi.String("******"),
			},
			Path: &sumologic.KinesisLogSourcePathArgs{
				Type:           pulumi.String("KinesisLogPath"),
				BucketName:     pulumi.String("testBucket"),
				PathExpression: pulumi.String("http-endpoint-failed/*"),
				ScanInterval:   pulumi.Int(30000),
			},
		})
		if err != nil {
			return err
		}
		_, err = sumologic.NewKinesisLogSource(ctx, "kinesis_log_role_arn", &sumologic.KinesisLogSourceArgs{
			Name:        pulumi.String("Kinesis Log"),
			Description: pulumi.String("Description for Kinesis Log Source"),
			Category:    pulumi.String("prod/kinesis/log"),
			ContentType: pulumi.String("KinesisLog"),
			CollectorId: collector.ID(),
			Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
				Type:    pulumi.String("AWSRoleBasedAuthentication"),
				RoleArn: pulumi.String("arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI"),
			},
			Path: &sumologic.KinesisLogSourcePathArgs{
				Type:           pulumi.String("KinesisLogPath"),
				BucketName:     pulumi.String("testBucket"),
				PathExpression: pulumi.String("http-endpoint-failed/*"),
				ScanInterval:   pulumi.Int(30000),
			},
		})
		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 kinesisLogAccessKey = new SumoLogic.KinesisLogSource("kinesis_log_access_key", new()
    {
        Name = "Kinesis Log",
        Description = "Description for Kinesis Log Source",
        Category = "prod/kinesis/log",
        ContentType = "KinesisLog",
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.KinesisLogSourceAuthenticationArgs
        {
            Type = "S3BucketAuthentication",
            AccessKey = "someKey",
            SecretKey = "******",
        },
        Path = new SumoLogic.Inputs.KinesisLogSourcePathArgs
        {
            Type = "KinesisLogPath",
            BucketName = "testBucket",
            PathExpression = "http-endpoint-failed/*",
            ScanInterval = 30000,
        },
    });
    var kinesisLogRoleArn = new SumoLogic.KinesisLogSource("kinesis_log_role_arn", new()
    {
        Name = "Kinesis Log",
        Description = "Description for Kinesis Log Source",
        Category = "prod/kinesis/log",
        ContentType = "KinesisLog",
        CollectorId = collector.Id,
        Authentication = new SumoLogic.Inputs.KinesisLogSourceAuthenticationArgs
        {
            Type = "AWSRoleBasedAuthentication",
            RoleArn = "arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI",
        },
        Path = new SumoLogic.Inputs.KinesisLogSourcePathArgs
        {
            Type = "KinesisLogPath",
            BucketName = "testBucket",
            PathExpression = "http-endpoint-failed/*",
            ScanInterval = 30000,
        },
    });
});
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.KinesisLogSource;
import com.pulumi.sumologic.KinesisLogSourceArgs;
import com.pulumi.sumologic.inputs.KinesisLogSourceAuthenticationArgs;
import com.pulumi.sumologic.inputs.KinesisLogSourcePathArgs;
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 kinesisLogAccessKey = new KinesisLogSource("kinesisLogAccessKey", KinesisLogSourceArgs.builder()
            .name("Kinesis Log")
            .description("Description for Kinesis Log Source")
            .category("prod/kinesis/log")
            .contentType("KinesisLog")
            .collectorId(collector.id())
            .authentication(KinesisLogSourceAuthenticationArgs.builder()
                .type("S3BucketAuthentication")
                .accessKey("someKey")
                .secretKey("******")
                .build())
            .path(KinesisLogSourcePathArgs.builder()
                .type("KinesisLogPath")
                .bucketName("testBucket")
                .pathExpression("http-endpoint-failed/*")
                .scanInterval(30000)
                .build())
            .build());
        var kinesisLogRoleArn = new KinesisLogSource("kinesisLogRoleArn", KinesisLogSourceArgs.builder()
            .name("Kinesis Log")
            .description("Description for Kinesis Log Source")
            .category("prod/kinesis/log")
            .contentType("KinesisLog")
            .collectorId(collector.id())
            .authentication(KinesisLogSourceAuthenticationArgs.builder()
                .type("AWSRoleBasedAuthentication")
                .roleArn("arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI")
                .build())
            .path(KinesisLogSourcePathArgs.builder()
                .type("KinesisLogPath")
                .bucketName("testBucket")
                .pathExpression("http-endpoint-failed/*")
                .scanInterval(30000)
                .build())
            .build());
    }
}
resources:
  kinesisLogAccessKey:
    type: sumologic:KinesisLogSource
    name: kinesis_log_access_key
    properties:
      name: Kinesis Log
      description: Description for Kinesis Log Source
      category: prod/kinesis/log
      contentType: KinesisLog
      collectorId: ${collector.id}
      authentication:
        type: S3BucketAuthentication
        accessKey: someKey
        secretKey: '******'
      path:
        type: KinesisLogPath
        bucketName: testBucket
        pathExpression: http-endpoint-failed/*
        scanInterval: 30000
  kinesisLogRoleArn:
    type: sumologic:KinesisLogSource
    name: kinesis_log_role_arn
    properties:
      name: Kinesis Log
      description: Description for Kinesis Log Source
      category: prod/kinesis/log
      contentType: KinesisLog
      collectorId: ${collector.id}
      authentication:
        type: AWSRoleBasedAuthentication
        roleArn: arn:aws:iam::604066827510:role/cw-role-SumoRole-4AOLS73TGKYI
      path:
        type: KinesisLogPath
        bucketName: testBucket
        pathExpression: http-endpoint-failed/*
        scanInterval: 30000
  collector:
    type: sumologic:Collector
    properties:
      name: my-collector
      description: Just testing this
Create KinesisLogSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new KinesisLogSource(name: string, args: KinesisLogSourceArgs, opts?: CustomResourceOptions);@overload
def KinesisLogSource(resource_name: str,
                     args: KinesisLogSourceArgs,
                     opts: Optional[ResourceOptions] = None)
@overload
def KinesisLogSource(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     collector_id: Optional[int] = None,
                     content_type: Optional[str] = None,
                     filters: Optional[Sequence[KinesisLogSourceFilterArgs]] = None,
                     force_timezone: Optional[bool] = None,
                     automatic_date_parsing: Optional[bool] = None,
                     cutoff_relative_time: Optional[str] = None,
                     cutoff_timestamp: Optional[int] = None,
                     default_date_formats: Optional[Sequence[KinesisLogSourceDefaultDateFormatArgs]] = None,
                     description: Optional[str] = None,
                     fields: Optional[Mapping[str, str]] = None,
                     authentication: Optional[KinesisLogSourceAuthenticationArgs] = None,
                     category: Optional[str] = None,
                     hash_algorithm: Optional[str] = None,
                     host_name: Optional[str] = None,
                     manual_prefix_regexp: Optional[str] = None,
                     message_per_request: Optional[bool] = None,
                     multiline_processing_enabled: Optional[bool] = None,
                     name: Optional[str] = None,
                     path: Optional[KinesisLogSourcePathArgs] = None,
                     timezone: Optional[str] = None,
                     use_autoline_matching: Optional[bool] = None)func NewKinesisLogSource(ctx *Context, name string, args KinesisLogSourceArgs, opts ...ResourceOption) (*KinesisLogSource, error)public KinesisLogSource(string name, KinesisLogSourceArgs args, CustomResourceOptions? opts = null)
public KinesisLogSource(String name, KinesisLogSourceArgs args)
public KinesisLogSource(String name, KinesisLogSourceArgs args, CustomResourceOptions options)
type: sumologic:KinesisLogSource
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 KinesisLogSourceArgs
- 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 KinesisLogSourceArgs
- 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 KinesisLogSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args KinesisLogSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args KinesisLogSourceArgs
- 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 kinesisLogSourceResource = new SumoLogic.KinesisLogSource("kinesisLogSourceResource", new()
{
    CollectorId = 0,
    ContentType = "string",
    Filters = new[]
    {
        new SumoLogic.Inputs.KinesisLogSourceFilterArgs
        {
            FilterType = "string",
            Name = "string",
            Regexp = "string",
            Mask = "string",
        },
    },
    ForceTimezone = false,
    AutomaticDateParsing = false,
    CutoffRelativeTime = "string",
    CutoffTimestamp = 0,
    DefaultDateFormats = new[]
    {
        new SumoLogic.Inputs.KinesisLogSourceDefaultDateFormatArgs
        {
            Format = "string",
            Locator = "string",
        },
    },
    Description = "string",
    Fields = 
    {
        { "string", "string" },
    },
    Authentication = new SumoLogic.Inputs.KinesisLogSourceAuthenticationArgs
    {
        AccessKey = "string",
        RoleArn = "string",
        SecretKey = "string",
        Type = "string",
    },
    Category = "string",
    HashAlgorithm = "string",
    HostName = "string",
    ManualPrefixRegexp = "string",
    MessagePerRequest = false,
    MultilineProcessingEnabled = false,
    Name = "string",
    Path = new SumoLogic.Inputs.KinesisLogSourcePathArgs
    {
        BucketName = "string",
        PathExpression = "string",
        ScanInterval = 0,
        Type = "string",
    },
    Timezone = "string",
    UseAutolineMatching = false,
});
example, err := sumologic.NewKinesisLogSource(ctx, "kinesisLogSourceResource", &sumologic.KinesisLogSourceArgs{
	CollectorId: pulumi.Int(0),
	ContentType: pulumi.String("string"),
	Filters: sumologic.KinesisLogSourceFilterArray{
		&sumologic.KinesisLogSourceFilterArgs{
			FilterType: pulumi.String("string"),
			Name:       pulumi.String("string"),
			Regexp:     pulumi.String("string"),
			Mask:       pulumi.String("string"),
		},
	},
	ForceTimezone:        pulumi.Bool(false),
	AutomaticDateParsing: pulumi.Bool(false),
	CutoffRelativeTime:   pulumi.String("string"),
	CutoffTimestamp:      pulumi.Int(0),
	DefaultDateFormats: sumologic.KinesisLogSourceDefaultDateFormatArray{
		&sumologic.KinesisLogSourceDefaultDateFormatArgs{
			Format:  pulumi.String("string"),
			Locator: pulumi.String("string"),
		},
	},
	Description: pulumi.String("string"),
	Fields: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Authentication: &sumologic.KinesisLogSourceAuthenticationArgs{
		AccessKey: pulumi.String("string"),
		RoleArn:   pulumi.String("string"),
		SecretKey: pulumi.String("string"),
		Type:      pulumi.String("string"),
	},
	Category:                   pulumi.String("string"),
	HashAlgorithm:              pulumi.String("string"),
	HostName:                   pulumi.String("string"),
	ManualPrefixRegexp:         pulumi.String("string"),
	MessagePerRequest:          pulumi.Bool(false),
	MultilineProcessingEnabled: pulumi.Bool(false),
	Name:                       pulumi.String("string"),
	Path: &sumologic.KinesisLogSourcePathArgs{
		BucketName:     pulumi.String("string"),
		PathExpression: pulumi.String("string"),
		ScanInterval:   pulumi.Int(0),
		Type:           pulumi.String("string"),
	},
	Timezone:            pulumi.String("string"),
	UseAutolineMatching: pulumi.Bool(false),
})
var kinesisLogSourceResource = new KinesisLogSource("kinesisLogSourceResource", KinesisLogSourceArgs.builder()
    .collectorId(0)
    .contentType("string")
    .filters(KinesisLogSourceFilterArgs.builder()
        .filterType("string")
        .name("string")
        .regexp("string")
        .mask("string")
        .build())
    .forceTimezone(false)
    .automaticDateParsing(false)
    .cutoffRelativeTime("string")
    .cutoffTimestamp(0)
    .defaultDateFormats(KinesisLogSourceDefaultDateFormatArgs.builder()
        .format("string")
        .locator("string")
        .build())
    .description("string")
    .fields(Map.of("string", "string"))
    .authentication(KinesisLogSourceAuthenticationArgs.builder()
        .accessKey("string")
        .roleArn("string")
        .secretKey("string")
        .type("string")
        .build())
    .category("string")
    .hashAlgorithm("string")
    .hostName("string")
    .manualPrefixRegexp("string")
    .messagePerRequest(false)
    .multilineProcessingEnabled(false)
    .name("string")
    .path(KinesisLogSourcePathArgs.builder()
        .bucketName("string")
        .pathExpression("string")
        .scanInterval(0)
        .type("string")
        .build())
    .timezone("string")
    .useAutolineMatching(false)
    .build());
kinesis_log_source_resource = sumologic.KinesisLogSource("kinesisLogSourceResource",
    collector_id=0,
    content_type="string",
    filters=[{
        "filter_type": "string",
        "name": "string",
        "regexp": "string",
        "mask": "string",
    }],
    force_timezone=False,
    automatic_date_parsing=False,
    cutoff_relative_time="string",
    cutoff_timestamp=0,
    default_date_formats=[{
        "format": "string",
        "locator": "string",
    }],
    description="string",
    fields={
        "string": "string",
    },
    authentication={
        "access_key": "string",
        "role_arn": "string",
        "secret_key": "string",
        "type": "string",
    },
    category="string",
    hash_algorithm="string",
    host_name="string",
    manual_prefix_regexp="string",
    message_per_request=False,
    multiline_processing_enabled=False,
    name="string",
    path={
        "bucket_name": "string",
        "path_expression": "string",
        "scan_interval": 0,
        "type": "string",
    },
    timezone="string",
    use_autoline_matching=False)
const kinesisLogSourceResource = new sumologic.KinesisLogSource("kinesisLogSourceResource", {
    collectorId: 0,
    contentType: "string",
    filters: [{
        filterType: "string",
        name: "string",
        regexp: "string",
        mask: "string",
    }],
    forceTimezone: false,
    automaticDateParsing: false,
    cutoffRelativeTime: "string",
    cutoffTimestamp: 0,
    defaultDateFormats: [{
        format: "string",
        locator: "string",
    }],
    description: "string",
    fields: {
        string: "string",
    },
    authentication: {
        accessKey: "string",
        roleArn: "string",
        secretKey: "string",
        type: "string",
    },
    category: "string",
    hashAlgorithm: "string",
    hostName: "string",
    manualPrefixRegexp: "string",
    messagePerRequest: false,
    multilineProcessingEnabled: false,
    name: "string",
    path: {
        bucketName: "string",
        pathExpression: "string",
        scanInterval: 0,
        type: "string",
    },
    timezone: "string",
    useAutolineMatching: false,
});
type: sumologic:KinesisLogSource
properties:
    authentication:
        accessKey: string
        roleArn: string
        secretKey: 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
    messagePerRequest: false
    multilineProcessingEnabled: false
    name: string
    path:
        bucketName: string
        pathExpression: string
        scanInterval: 0
        type: string
    timezone: string
    useAutolineMatching: false
KinesisLogSource 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 KinesisLogSource resource accepts the following input properties:
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Authentication
Pulumi.Sumo Logic. Inputs. Kinesis Log Source Authentication 
- Authentication details for connecting to the S3 bucket.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate List<Pulumi.Formats Sumo Logic. Inputs. Kinesis Log Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. Kinesis Log Source Filter> 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MessagePer boolRequest 
- MultilineProcessing boolEnabled 
- Name string
- Path
Pulumi.Sumo Logic. Inputs. Kinesis Log Source Path 
- The location of S3 bucket for failed Kinesis log data.
- Timezone string
- UseAutoline boolMatching 
- CollectorId int
- ContentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Authentication
KinesisLog Source Authentication Args 
- Authentication details for connecting to the S3 bucket.
- AutomaticDate boolParsing 
- Category string
- CutoffRelative stringTime 
- CutoffTimestamp int
- DefaultDate []KinesisFormats Log Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]KinesisLog Source Filter Args 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MessagePer boolRequest 
- MultilineProcessing boolEnabled 
- Name string
- Path
KinesisLog Source Path Args 
- The location of S3 bucket for failed Kinesis log data.
- Timezone string
- UseAutoline boolMatching 
- collectorId Integer
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
KinesisLog Source Authentication 
- Authentication details for connecting to the S3 bucket.
- automaticDate BooleanParsing 
- category String
- cutoffRelative StringTime 
- cutoffTimestamp Integer
- defaultDate List<KinesisFormats Log Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<KinesisLog Source Filter> 
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- messagePer BooleanRequest 
- multilineProcessing BooleanEnabled 
- name String
- path
KinesisLog Source Path 
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- useAutoline BooleanMatching 
- collectorId number
- contentType string
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
KinesisLog Source Authentication 
- Authentication details for connecting to the S3 bucket.
- automaticDate booleanParsing 
- category string
- cutoffRelative stringTime 
- cutoffTimestamp number
- defaultDate KinesisFormats Log Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
KinesisLog Source Filter[] 
- forceTimezone boolean
- hashAlgorithm string
- hostName string
- manualPrefix stringRegexp 
- messagePer booleanRequest 
- multilineProcessing booleanEnabled 
- name string
- path
KinesisLog Source Path 
- The location of S3 bucket for failed Kinesis log data.
- timezone string
- useAutoline booleanMatching 
- collector_id int
- content_type str
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication
KinesisLog Source Authentication Args 
- Authentication details for connecting to the S3 bucket.
- automatic_date_ boolparsing 
- category str
- cutoff_relative_ strtime 
- cutoff_timestamp int
- default_date_ Sequence[Kinesisformats Log Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[KinesisLog Source Filter Args] 
- force_timezone bool
- hash_algorithm str
- host_name str
- manual_prefix_ strregexp 
- message_per_ boolrequest 
- multiline_processing_ boolenabled 
- name str
- path
KinesisLog Source Path Args 
- The location of S3 bucket for failed Kinesis log data.
- timezone str
- use_autoline_ boolmatching 
- collectorId Number
- contentType String
- The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- authentication Property Map
- Authentication details for connecting to the S3 bucket.
- 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 
- messagePer BooleanRequest 
- multilineProcessing BooleanEnabled 
- name String
- path Property Map
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- useAutoline BooleanMatching 
Outputs
All input properties are implicitly available as output properties. Additionally, the KinesisLogSource resource produces the following output properties:
Look up Existing KinesisLogSource Resource
Get an existing KinesisLogSource 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?: KinesisLogSourceState, opts?: CustomResourceOptions): KinesisLogSource@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        authentication: Optional[KinesisLogSourceAuthenticationArgs] = 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[KinesisLogSourceDefaultDateFormatArgs]] = None,
        description: Optional[str] = None,
        fields: Optional[Mapping[str, str]] = None,
        filters: Optional[Sequence[KinesisLogSourceFilterArgs]] = None,
        force_timezone: Optional[bool] = None,
        hash_algorithm: Optional[str] = None,
        host_name: Optional[str] = None,
        manual_prefix_regexp: Optional[str] = None,
        message_per_request: Optional[bool] = None,
        multiline_processing_enabled: Optional[bool] = None,
        name: Optional[str] = None,
        path: Optional[KinesisLogSourcePathArgs] = None,
        timezone: Optional[str] = None,
        url: Optional[str] = None,
        use_autoline_matching: Optional[bool] = None) -> KinesisLogSourcefunc GetKinesisLogSource(ctx *Context, name string, id IDInput, state *KinesisLogSourceState, opts ...ResourceOption) (*KinesisLogSource, error)public static KinesisLogSource Get(string name, Input<string> id, KinesisLogSourceState? state, CustomResourceOptions? opts = null)public static KinesisLogSource get(String name, Output<String> id, KinesisLogSourceState state, CustomResourceOptions options)resources:  _:    type: sumologic:KinesisLogSource    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. Kinesis Log 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. Kinesis Log Source Default Date Format> 
- Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.Sumo Logic. Inputs. Kinesis Log Source Filter> 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MessagePer boolRequest 
- MultilineProcessing boolEnabled 
- Name string
- Path
Pulumi.Sumo Logic. Inputs. Kinesis Log Source Path 
- The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- UseAutoline boolMatching 
- Authentication
KinesisLog Source 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 []KinesisFormats Log Source Default Date Format Args 
- Description string
- Fields map[string]string
- Filters
[]KinesisLog Source Filter Args 
- ForceTimezone bool
- HashAlgorithm string
- HostName string
- ManualPrefix stringRegexp 
- MessagePer boolRequest 
- MultilineProcessing boolEnabled 
- Name string
- Path
KinesisLog Source Path Args 
- The location of S3 bucket for failed Kinesis log data.
- Timezone string
- Url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- UseAutoline boolMatching 
- authentication
KinesisLog Source 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<KinesisFormats Log Source Default Date Format> 
- description String
- fields Map<String,String>
- filters
List<KinesisLog Source Filter> 
- forceTimezone Boolean
- hashAlgorithm String
- hostName String
- manualPrefix StringRegexp 
- messagePer BooleanRequest 
- multilineProcessing BooleanEnabled 
- name String
- path
KinesisLog Source Path 
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- url String
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- useAutoline BooleanMatching 
- authentication
KinesisLog Source 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 KinesisFormats Log Source Default Date Format[] 
- description string
- fields {[key: string]: string}
- filters
KinesisLog Source Filter[] 
- forceTimezone boolean
- hashAlgorithm string
- hostName string
- manualPrefix stringRegexp 
- messagePer booleanRequest 
- multilineProcessing booleanEnabled 
- name string
- path
KinesisLog Source Path 
- The location of S3 bucket for failed Kinesis log data.
- timezone string
- url string
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- useAutoline booleanMatching 
- authentication
KinesisLog Source 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[Kinesisformats Log Source Default Date Format Args] 
- description str
- fields Mapping[str, str]
- filters
Sequence[KinesisLog Source Filter Args] 
- force_timezone bool
- hash_algorithm str
- host_name str
- manual_prefix_ strregexp 
- message_per_ boolrequest 
- multiline_processing_ boolenabled 
- name str
- path
KinesisLog Source Path Args 
- The location of S3 bucket for failed Kinesis log data.
- timezone str
- url str
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- 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 
- messagePer BooleanRequest 
- multilineProcessing BooleanEnabled 
- name String
- path Property Map
- The location of S3 bucket for failed Kinesis log data.
- timezone String
- url String
- The HTTP endpoint to be used while creating Kinesis Firehose on AWS.
- useAutoline BooleanMatching 
Supporting Types
KinesisLogSourceAuthentication, KinesisLogSourceAuthenticationArgs        
- AccessKey string
- Your AWS access key if using type S3BucketAuthentication
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- SecretKey string
- Your AWS secret key if using type S3BucketAuthentication
- Type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
- AccessKey string
- Your AWS access key if using type S3BucketAuthentication
- RoleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- SecretKey string
- Your AWS secret key if using type S3BucketAuthentication
- Type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
- accessKey String
- Your AWS access key if using type S3BucketAuthentication
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey String
- Your AWS secret key if using type S3BucketAuthentication
- type String
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
- accessKey string
- Your AWS access key if using type S3BucketAuthentication
- roleArn string
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey string
- Your AWS secret key if using type S3BucketAuthentication
- type string
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
- access_key str
- Your AWS access key if using type S3BucketAuthentication
- role_arn str
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secret_key str
- Your AWS secret key if using type S3BucketAuthentication
- type str
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
- accessKey String
- Your AWS access key if using type S3BucketAuthentication
- roleArn String
- Your AWS role ARN if using type AWSRoleBasedAuthentication
- secretKey String
- Your AWS secret key if using type S3BucketAuthentication
- type String
- Must be either S3BucketAuthenticationorAWSRoleBasedAuthenticationorNoAuthentication
KinesisLogSourceDefaultDateFormat, KinesisLogSourceDefaultDateFormatArgs            
KinesisLogSourceFilter, KinesisLogSourceFilterArgs        
- 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
KinesisLogSourcePath, KinesisLogSourcePathArgs        
- BucketName string
- The name of the bucket. This is needed if using type KinesisLogPath.
- PathExpression string
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- ScanInterval int
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- Type string
- Must be either KinesisLogPathorNoPathExpression
- BucketName string
- The name of the bucket. This is needed if using type KinesisLogPath.
- PathExpression string
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- ScanInterval int
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- Type string
- Must be either KinesisLogPathorNoPathExpression
- bucketName String
- The name of the bucket. This is needed if using type KinesisLogPath.
- pathExpression String
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- scanInterval Integer
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type String
- Must be either KinesisLogPathorNoPathExpression
- bucketName string
- The name of the bucket. This is needed if using type KinesisLogPath.
- pathExpression string
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- scanInterval number
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type string
- Must be either KinesisLogPathorNoPathExpression
- bucket_name str
- The name of the bucket. This is needed if using type KinesisLogPath.
- path_expression str
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- scan_interval int
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type str
- Must be either KinesisLogPathorNoPathExpression
- bucketName String
- The name of the bucket. This is needed if using type KinesisLogPath.
- pathExpression String
- The path to the data. This is needed if using type KinesisLogPath. For Kinesis log source, it must includehttp-endpoint-failed/.
- scanInterval Number
- The Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- type String
- Must be either KinesisLogPathorNoPathExpression
Import
Kinesis Log sources can be imported using the collector and source IDs (collector/source), e.g.:
hcl
$ pulumi import sumologic:index/kinesisLogSource:KinesisLogSource test 123/456
HTTP sources can be imported using the collector name and source name (collectorName/sourceName), e.g.:
hcl
$ pulumi import sumologic:index/kinesisLogSource:KinesisLogSource 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.