sumologic.CloudwatchSource
Explore with Pulumi AI
Provides a Sumologic CloudWatch 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 filters = [{
name: "Exclude Comments",
filterType: "Exclude",
regexp: "#.*",
}];
const tagfilters = [
{
type: "TagFilters",
namespace: "All",
tags: ["k3=v3"],
},
{
type: "TagFilters",
namespace: "AWS/Route53",
tags: ["k1=v1"],
},
{
type: "TagFilters",
namespace: "AWS/S3",
tags: ["k2=v2"],
},
];
const collector = new sumologic.Collector("collector", {
name: "my-collector",
description: "Just testing this",
});
const cloudwatchSource = new sumologic.CloudwatchSource("cloudwatch_source", {
name: "CloudWatch Metrics",
description: "My description",
category: "aws/cw",
contentType: "AwsCloudWatch",
scanInterval: 300000,
paused: false,
collectorId: collector.id,
authentication: {
type: "AWSRoleBasedAuthentication",
roleArn: "arn:aws:iam::01234567890:role/sumo-role",
},
path: {
tagFilters: tagfilters.map((v, k) => ({key: k, value: v})).map(entry => ({
type: entry.value.type,
namespace: entry.value.namespace,
tags: entry.value.tags,
})),
type: "CloudWatchPath",
limitToRegions: ["us-west-2"],
limitToNamespaces: [
"AWS/Route53",
"AWS/S3",
"customNamespace",
],
},
});
import pulumi
import pulumi_sumologic as sumologic
filters = [{
"name": "Exclude Comments",
"filterType": "Exclude",
"regexp": "#.*",
}]
tagfilters = [
{
"type": "TagFilters",
"namespace": "All",
"tags": ["k3=v3"],
},
{
"type": "TagFilters",
"namespace": "AWS/Route53",
"tags": ["k1=v1"],
},
{
"type": "TagFilters",
"namespace": "AWS/S3",
"tags": ["k2=v2"],
},
]
collector = sumologic.Collector("collector",
name="my-collector",
description="Just testing this")
cloudwatch_source = sumologic.CloudwatchSource("cloudwatch_source",
name="CloudWatch Metrics",
description="My description",
category="aws/cw",
content_type="AwsCloudWatch",
scan_interval=300000,
paused=False,
collector_id=collector.id,
authentication={
"type": "AWSRoleBasedAuthentication",
"role_arn": "arn:aws:iam::01234567890:role/sumo-role",
},
path={
"tag_filters": [{
"type": entry["value"]["type"],
"namespace": entry["value"]["namespace"],
"tags": entry["value"]["tags"],
} for entry in [{"key": k, "value": v} for k, v in tagfilters]],
"type": "CloudWatchPath",
"limit_to_regions": ["us-west-2"],
"limit_to_namespaces": [
"AWS/Route53",
"AWS/S3",
"customNamespace",
],
})
Coming soon!
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using SumoLogic = Pulumi.SumoLogic;
return await Deployment.RunAsync(() =>
{
var filters = new[]
{
{
{ "name", "Exclude Comments" },
{ "filterType", "Exclude" },
{ "regexp", "#.*" },
},
};
var tagfilters = new[]
{
{
{ "type", "TagFilters" },
{ "namespace", "All" },
{ "tags", new[]
{
"k3=v3",
} },
},
{
{ "type", "TagFilters" },
{ "namespace", "AWS/Route53" },
{ "tags", new[]
{
"k1=v1",
} },
},
{
{ "type", "TagFilters" },
{ "namespace", "AWS/S3" },
{ "tags", new[]
{
"k2=v2",
} },
},
};
var collector = new SumoLogic.Collector("collector", new()
{
Name = "my-collector",
Description = "Just testing this",
});
var cloudwatchSource = new SumoLogic.CloudwatchSource("cloudwatch_source", new()
{
Name = "CloudWatch Metrics",
Description = "My description",
Category = "aws/cw",
ContentType = "AwsCloudWatch",
ScanInterval = 300000,
Paused = false,
CollectorId = collector.Id,
Authentication = new SumoLogic.Inputs.CloudwatchSourceAuthenticationArgs
{
Type = "AWSRoleBasedAuthentication",
RoleArn = "arn:aws:iam::01234567890:role/sumo-role",
},
Path = new SumoLogic.Inputs.CloudwatchSourcePathArgs
{
TagFilters = tagfilters.Select((v, k) => new { Key = k, Value = v }).Select(entry =>
{
return new SumoLogic.Inputs.CloudwatchSourcePathTagFilterArgs
{
Type = entry.Value.Type,
Namespace = entry.Value.Namespace,
Tags = entry.Value.Tags,
};
}).ToList(),
Type = "CloudWatchPath",
LimitToRegions = new[]
{
"us-west-2",
},
LimitToNamespaces = new[]
{
"AWS/Route53",
"AWS/S3",
"customNamespace",
},
},
});
});
Coming soon!
Coming soon!
Create CloudwatchSource Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudwatchSource(name: string, args: CloudwatchSourceArgs, opts?: CustomResourceOptions);
@overload
def CloudwatchSource(resource_name: str,
args: CloudwatchSourceArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudwatchSource(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_type: Optional[str] = None,
path: Optional[CloudwatchSourcePathArgs] = None,
authentication: Optional[CloudwatchSourceAuthenticationArgs] = None,
collector_id: Optional[int] = None,
filters: Optional[Sequence[CloudwatchSourceFilterArgs]] = None,
host_name: Optional[str] = None,
cutoff_timestamp: Optional[int] = None,
default_date_formats: Optional[Sequence[CloudwatchSourceDefaultDateFormatArgs]] = 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 NewCloudwatchSource(ctx *Context, name string, args CloudwatchSourceArgs, opts ...ResourceOption) (*CloudwatchSource, error)
public CloudwatchSource(string name, CloudwatchSourceArgs args, CustomResourceOptions? opts = null)
public CloudwatchSource(String name, CloudwatchSourceArgs args)
public CloudwatchSource(String name, CloudwatchSourceArgs args, CustomResourceOptions options)
type: sumologic:CloudwatchSource
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 CloudwatchSourceArgs
- 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 CloudwatchSourceArgs
- 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 CloudwatchSourceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudwatchSourceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args CloudwatchSourceArgs
- 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 cloudwatchSourceResource = new SumoLogic.CloudwatchSource("cloudwatchSourceResource", new()
{
ContentType = "string",
Path = new SumoLogic.Inputs.CloudwatchSourcePathArgs
{
Type = "string",
LimitToServices = new[]
{
"string",
},
CustomServices = new[]
{
new SumoLogic.Inputs.CloudwatchSourcePathCustomServiceArgs
{
Prefixes = new[]
{
"string",
},
ServiceName = "string",
},
},
EventHubName = "string",
LimitToNamespaces = new[]
{
"string",
},
LimitToRegions = new[]
{
"string",
},
BucketName = "string",
Namespace = "string",
PathExpression = "string",
Region = "string",
SnsTopicOrSubscriptionArns = new[]
{
new SumoLogic.Inputs.CloudwatchSourcePathSnsTopicOrSubscriptionArnArgs
{
Arn = "string",
IsSuccess = false,
},
},
TagFilters = new[]
{
new SumoLogic.Inputs.CloudwatchSourcePathTagFilterArgs
{
Namespace = "string",
Tags = new[]
{
"string",
},
Type = "string",
},
},
ConsumerGroup = "string",
UseVersionedApi = false,
},
Authentication = new SumoLogic.Inputs.CloudwatchSourceAuthenticationArgs
{
Type = "string",
ProjectId = "string",
Region = "string",
ClientEmail = "string",
ClientId = "string",
ClientX509CertUrl = "string",
PrivateKey = "string",
AuthUri = "string",
AccessKey = "string",
PrivateKeyId = "string",
RoleArn = "string",
SecretKey = "string",
SharedAccessPolicyKey = "string",
SharedAccessPolicyName = "string",
TokenUri = "string",
AuthProviderX509CertUrl = "string",
},
CollectorId = 0,
Filters = new[]
{
new SumoLogic.Inputs.CloudwatchSourceFilterArgs
{
FilterType = "string",
Name = "string",
Regexp = "string",
Mask = "string",
},
},
HostName = "string",
CutoffTimestamp = 0,
DefaultDateFormats = new[]
{
new SumoLogic.Inputs.CloudwatchSourceDefaultDateFormatArgs
{
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.NewCloudwatchSource(ctx, "cloudwatchSourceResource", &sumologic.CloudwatchSourceArgs{
ContentType: pulumi.String("string"),
Path: &sumologic.CloudwatchSourcePathArgs{
Type: pulumi.String("string"),
LimitToServices: pulumi.StringArray{
pulumi.String("string"),
},
CustomServices: sumologic.CloudwatchSourcePathCustomServiceArray{
&sumologic.CloudwatchSourcePathCustomServiceArgs{
Prefixes: pulumi.StringArray{
pulumi.String("string"),
},
ServiceName: pulumi.String("string"),
},
},
EventHubName: pulumi.String("string"),
LimitToNamespaces: pulumi.StringArray{
pulumi.String("string"),
},
LimitToRegions: pulumi.StringArray{
pulumi.String("string"),
},
BucketName: pulumi.String("string"),
Namespace: pulumi.String("string"),
PathExpression: pulumi.String("string"),
Region: pulumi.String("string"),
SnsTopicOrSubscriptionArns: sumologic.CloudwatchSourcePathSnsTopicOrSubscriptionArnArray{
&sumologic.CloudwatchSourcePathSnsTopicOrSubscriptionArnArgs{
Arn: pulumi.String("string"),
IsSuccess: pulumi.Bool(false),
},
},
TagFilters: sumologic.CloudwatchSourcePathTagFilterArray{
&sumologic.CloudwatchSourcePathTagFilterArgs{
Namespace: pulumi.String("string"),
Tags: pulumi.StringArray{
pulumi.String("string"),
},
Type: pulumi.String("string"),
},
},
ConsumerGroup: pulumi.String("string"),
UseVersionedApi: pulumi.Bool(false),
},
Authentication: &sumologic.CloudwatchSourceAuthenticationArgs{
Type: pulumi.String("string"),
ProjectId: pulumi.String("string"),
Region: pulumi.String("string"),
ClientEmail: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientX509CertUrl: pulumi.String("string"),
PrivateKey: pulumi.String("string"),
AuthUri: pulumi.String("string"),
AccessKey: pulumi.String("string"),
PrivateKeyId: pulumi.String("string"),
RoleArn: pulumi.String("string"),
SecretKey: pulumi.String("string"),
SharedAccessPolicyKey: pulumi.String("string"),
SharedAccessPolicyName: pulumi.String("string"),
TokenUri: pulumi.String("string"),
AuthProviderX509CertUrl: pulumi.String("string"),
},
CollectorId: pulumi.Int(0),
Filters: sumologic.CloudwatchSourceFilterArray{
&sumologic.CloudwatchSourceFilterArgs{
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.CloudwatchSourceDefaultDateFormatArray{
&sumologic.CloudwatchSourceDefaultDateFormatArgs{
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 cloudwatchSourceResource = new CloudwatchSource("cloudwatchSourceResource", CloudwatchSourceArgs.builder()
.contentType("string")
.path(CloudwatchSourcePathArgs.builder()
.type("string")
.limitToServices("string")
.customServices(CloudwatchSourcePathCustomServiceArgs.builder()
.prefixes("string")
.serviceName("string")
.build())
.eventHubName("string")
.limitToNamespaces("string")
.limitToRegions("string")
.bucketName("string")
.namespace("string")
.pathExpression("string")
.region("string")
.snsTopicOrSubscriptionArns(CloudwatchSourcePathSnsTopicOrSubscriptionArnArgs.builder()
.arn("string")
.isSuccess(false)
.build())
.tagFilters(CloudwatchSourcePathTagFilterArgs.builder()
.namespace("string")
.tags("string")
.type("string")
.build())
.consumerGroup("string")
.useVersionedApi(false)
.build())
.authentication(CloudwatchSourceAuthenticationArgs.builder()
.type("string")
.projectId("string")
.region("string")
.clientEmail("string")
.clientId("string")
.clientX509CertUrl("string")
.privateKey("string")
.authUri("string")
.accessKey("string")
.privateKeyId("string")
.roleArn("string")
.secretKey("string")
.sharedAccessPolicyKey("string")
.sharedAccessPolicyName("string")
.tokenUri("string")
.authProviderX509CertUrl("string")
.build())
.collectorId(0)
.filters(CloudwatchSourceFilterArgs.builder()
.filterType("string")
.name("string")
.regexp("string")
.mask("string")
.build())
.hostName("string")
.cutoffTimestamp(0)
.defaultDateFormats(CloudwatchSourceDefaultDateFormatArgs.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());
cloudwatch_source_resource = sumologic.CloudwatchSource("cloudwatchSourceResource",
content_type="string",
path={
"type": "string",
"limit_to_services": ["string"],
"custom_services": [{
"prefixes": ["string"],
"service_name": "string",
}],
"event_hub_name": "string",
"limit_to_namespaces": ["string"],
"limit_to_regions": ["string"],
"bucket_name": "string",
"namespace": "string",
"path_expression": "string",
"region": "string",
"sns_topic_or_subscription_arns": [{
"arn": "string",
"is_success": False,
}],
"tag_filters": [{
"namespace": "string",
"tags": ["string"],
"type": "string",
}],
"consumer_group": "string",
"use_versioned_api": False,
},
authentication={
"type": "string",
"project_id": "string",
"region": "string",
"client_email": "string",
"client_id": "string",
"client_x509_cert_url": "string",
"private_key": "string",
"auth_uri": "string",
"access_key": "string",
"private_key_id": "string",
"role_arn": "string",
"secret_key": "string",
"shared_access_policy_key": "string",
"shared_access_policy_name": "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 cloudwatchSourceResource = new sumologic.CloudwatchSource("cloudwatchSourceResource", {
contentType: "string",
path: {
type: "string",
limitToServices: ["string"],
customServices: [{
prefixes: ["string"],
serviceName: "string",
}],
eventHubName: "string",
limitToNamespaces: ["string"],
limitToRegions: ["string"],
bucketName: "string",
namespace: "string",
pathExpression: "string",
region: "string",
snsTopicOrSubscriptionArns: [{
arn: "string",
isSuccess: false,
}],
tagFilters: [{
namespace: "string",
tags: ["string"],
type: "string",
}],
consumerGroup: "string",
useVersionedApi: false,
},
authentication: {
type: "string",
projectId: "string",
region: "string",
clientEmail: "string",
clientId: "string",
clientX509CertUrl: "string",
privateKey: "string",
authUri: "string",
accessKey: "string",
privateKeyId: "string",
roleArn: "string",
secretKey: "string",
sharedAccessPolicyKey: "string",
sharedAccessPolicyName: "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:CloudwatchSource
properties:
authentication:
accessKey: string
authProviderX509CertUrl: string
authUri: string
clientEmail: string
clientId: string
clientX509CertUrl: string
privateKey: string
privateKeyId: string
projectId: string
region: string
roleArn: string
secretKey: string
sharedAccessPolicyKey: string
sharedAccessPolicyName: 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:
bucketName: string
consumerGroup: string
customServices:
- prefixes:
- string
serviceName: 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
CloudwatchSource 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 CloudwatchSource resource accepts the following input properties:
- Authentication
Pulumi.
Sumo Logic. Inputs. Cloudwatch Source Authentication - Authentication details for connecting to the S3 bucket.
- Collector
Id int - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Path
Pulumi.
Sumo Logic. Inputs. Cloudwatch Source Path - The location to scan for new data.
- Automatic
Date boolParsing - Category string
- Cutoff
Relative stringTime - Cutoff
Timestamp int - Default
Date List<Pulumi.Formats Sumo Logic. Inputs. Cloudwatch Source Default Date Format> - Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.
Sumo Logic. Inputs. Cloudwatch Source Filter> - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Manual
Prefix stringRegexp - Multiline
Processing boolEnabled - Name string
- 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 string
- Use
Autoline boolMatching
- Authentication
Cloudwatch
Source Authentication Args - Authentication details for connecting to the S3 bucket.
- Collector
Id int - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Path
Cloudwatch
Source Path Args - The location to scan for new data.
- Automatic
Date boolParsing - Category string
- Cutoff
Relative stringTime - Cutoff
Timestamp int - Default
Date []CloudwatchFormats Source Default Date Format Args - Description string
- Fields map[string]string
- Filters
[]Cloudwatch
Source Filter Args - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Manual
Prefix stringRegexp - Multiline
Processing boolEnabled - Name string
- 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 string
- Use
Autoline boolMatching
- authentication
Cloudwatch
Source Authentication - Authentication details for connecting to the S3 bucket.
- collector
Id Integer - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- path
Cloudwatch
Source Path - The location to scan for new data.
- automatic
Date BooleanParsing - category String
- cutoff
Relative StringTime - cutoff
Timestamp Integer - default
Date List<CloudwatchFormats Source Default Date Format> - description String
- fields Map<String,String>
- filters
List<Cloudwatch
Source Filter> - force
Timezone Boolean - hash
Algorithm String - host
Name String - manual
Prefix StringRegexp - multiline
Processing BooleanEnabled - name String
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scan
Interval Integer - Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- use
Autoline BooleanMatching
- authentication
Cloudwatch
Source Authentication - Authentication details for connecting to the S3 bucket.
- collector
Id number - content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- path
Cloudwatch
Source Path - The location to scan for new data.
- automatic
Date booleanParsing - category string
- cutoff
Relative stringTime - cutoff
Timestamp number - default
Date CloudwatchFormats Source Default Date Format[] - description string
- fields {[key: string]: string}
- filters
Cloudwatch
Source Filter[] - force
Timezone boolean - hash
Algorithm string - host
Name string - manual
Prefix stringRegexp - multiline
Processing booleanEnabled - name string
- paused boolean
- When set to true, the scanner is paused. To disable, set to false.
- scan
Interval number - Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- timezone string
- use
Autoline booleanMatching
- authentication
Cloudwatch
Source 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
Cloudwatch
Source Path Args - The location to scan for new data.
- automatic_
date_ boolparsing - category str
- cutoff_
relative_ strtime - cutoff_
timestamp int - default_
date_ Sequence[Cloudwatchformats Source Default Date Format Args] - description str
- fields Mapping[str, str]
- filters
Sequence[Cloudwatch
Source Filter Args] - force_
timezone bool - hash_
algorithm str - host_
name str - manual_
prefix_ strregexp - multiline_
processing_ boolenabled - name str
- paused bool
- When set to true, the scanner is paused. To disable, set to false.
- scan_
interval int - Time interval in milliseconds of scans for new data. The 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.
- collector
Id Number - content
Type 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.
- automatic
Date BooleanParsing - category String
- cutoff
Relative StringTime - cutoff
Timestamp Number - default
Date List<Property Map>Formats - description String
- fields Map<String>
- filters List<Property Map>
- force
Timezone Boolean - hash
Algorithm String - host
Name String - manual
Prefix StringRegexp - multiline
Processing BooleanEnabled - name String
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scan
Interval Number - Time interval in milliseconds of scans for new data. The default is 300000 and the minimum value is 1000 milliseconds.
- timezone String
- use
Autoline BooleanMatching
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudwatchSource 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 CloudwatchSource Resource
Get an existing CloudwatchSource 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?: CloudwatchSourceState, opts?: CustomResourceOptions): CloudwatchSource
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
authentication: Optional[CloudwatchSourceAuthenticationArgs] = 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[CloudwatchSourceDefaultDateFormatArgs]] = None,
description: Optional[str] = None,
fields: Optional[Mapping[str, str]] = None,
filters: Optional[Sequence[CloudwatchSourceFilterArgs]] = 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[CloudwatchSourcePathArgs] = None,
paused: Optional[bool] = None,
scan_interval: Optional[int] = None,
timezone: Optional[str] = None,
url: Optional[str] = None,
use_autoline_matching: Optional[bool] = None) -> CloudwatchSource
func GetCloudwatchSource(ctx *Context, name string, id IDInput, state *CloudwatchSourceState, opts ...ResourceOption) (*CloudwatchSource, error)
public static CloudwatchSource Get(string name, Input<string> id, CloudwatchSourceState? state, CustomResourceOptions? opts = null)
public static CloudwatchSource get(String name, Output<String> id, CloudwatchSourceState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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. Cloudwatch Source Authentication - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Collector
Id int - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Cutoff
Relative stringTime - Cutoff
Timestamp int - Default
Date List<Pulumi.Formats Sumo Logic. Inputs. Cloudwatch Source Default Date Format> - Description string
- Fields Dictionary<string, string>
- Filters
List<Pulumi.
Sumo Logic. Inputs. Cloudwatch Source Filter> - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Manual
Prefix stringRegexp - Multiline
Processing boolEnabled - Name string
- Path
Pulumi.
Sumo Logic. Inputs. Cloudwatch Source Path - 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 string
- Url string
- The HTTP endpoint to use with SNS to notify Sumo Logic of new files.
- Use
Autoline boolMatching
- Authentication
Cloudwatch
Source Authentication Args - Authentication details for connecting to the S3 bucket.
- Automatic
Date boolParsing - Category string
- Collector
Id int - Content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- Cutoff
Relative stringTime - Cutoff
Timestamp int - Default
Date []CloudwatchFormats Source Default Date Format Args - Description string
- Fields map[string]string
- Filters
[]Cloudwatch
Source Filter Args - Force
Timezone bool - Hash
Algorithm string - Host
Name string - Manual
Prefix stringRegexp - Multiline
Processing boolEnabled - Name string
- Path
Cloudwatch
Source Path Args - The location to scan for new data.
- Paused bool
- When set to true, the scanner is paused. To disable, set to false.
- Scan
Interval int - Time interval in milliseconds of scans for new data. The 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.
- Use
Autoline boolMatching
- authentication
Cloudwatch
Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date BooleanParsing - category String
- collector
Id Integer - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative StringTime - cutoff
Timestamp Integer - default
Date List<CloudwatchFormats Source Default Date Format> - description String
- fields Map<String,String>
- filters
List<Cloudwatch
Source Filter> - force
Timezone Boolean - hash
Algorithm String - host
Name String - manual
Prefix StringRegexp - multiline
Processing BooleanEnabled - name String
- path
Cloudwatch
Source Path - The location to scan for new data.
- paused Boolean
- When set to true, the scanner is paused. To disable, set to false.
- scan
Interval 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.
- use
Autoline BooleanMatching
- authentication
Cloudwatch
Source Authentication - Authentication details for connecting to the S3 bucket.
- automatic
Date booleanParsing - category string
- collector
Id number - content
Type string - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative stringTime - cutoff
Timestamp number - default
Date CloudwatchFormats Source Default Date Format[] - description string
- fields {[key: string]: string}
- filters
Cloudwatch
Source Filter[] - force
Timezone boolean - hash
Algorithm string - host
Name string - manual
Prefix stringRegexp - multiline
Processing booleanEnabled - name string
- path
Cloudwatch
Source Path - The location to scan for new data.
- paused boolean
- When set to true, the scanner is paused. To disable, set to false.
- scan
Interval 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.
- use
Autoline booleanMatching
- authentication
Cloudwatch
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[Cloudwatchformats Source Default Date Format Args] - description str
- fields Mapping[str, str]
- filters
Sequence[Cloudwatch
Source Filter Args] - force_
timezone bool - hash_
algorithm str - host_
name str - manual_
prefix_ strregexp - multiline_
processing_ boolenabled - name str
- path
Cloudwatch
Source Path Args - The location to scan for new data.
- paused bool
- When set to true, the scanner is paused. To disable, set to false.
- scan_
interval int - Time interval in milliseconds of scans for new data. The 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.
- automatic
Date BooleanParsing - category String
- collector
Id Number - content
Type String - The content-type of the collected data. Details can be found in the Sumologic documentation for hosted sources.
- cutoff
Relative StringTime - cutoff
Timestamp Number - default
Date List<Property Map>Formats - description String
- fields Map<String>
- filters List<Property Map>
- force
Timezone Boolean - hash
Algorithm String - host
Name String - manual
Prefix StringRegexp - multiline
Processing 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.
- scan
Interval 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.
- use
Autoline BooleanMatching
Supporting Types
CloudwatchSourceAuthentication, CloudwatchSourceAuthenticationArgs
- Type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- Access
Key string - Your AWS access key if using type
S3BucketAuthentication
- Auth
Provider stringX509Cert Url - Auth
Uri string - Client
Email string - Client
Id string - Client
X509Cert stringUrl - Private
Key string - Private
Key stringId - Project
Id string - Region string
- Your AWS Bucket region.
- Role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
. This is not supported for AWS China regions. - Secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- string
- string
- Token
Uri string
- Type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- Access
Key string - Your AWS access key if using type
S3BucketAuthentication
- Auth
Provider stringX509Cert Url - Auth
Uri string - Client
Email string - Client
Id string - Client
X509Cert stringUrl - Private
Key string - Private
Key stringId - Project
Id string - Region string
- Your AWS Bucket region.
- Role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
. This is not supported for AWS China regions. - Secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- string
- string
- Token
Uri string
- type String
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- access
Key String - Your AWS access key if using type
S3BucketAuthentication
- auth
Provider StringX509Cert Url - auth
Uri String - client
Email String - client
Id String - client
X509Cert StringUrl - private
Key String - private
Key StringId - project
Id String - region String
- Your AWS Bucket region.
- role
Arn String - Your AWS role ARN if using type
AWSRoleBasedAuthentication
. This is not supported for AWS China regions. - secret
Key String - Your AWS secret key if using type
S3BucketAuthentication
- String
- String
- token
Uri String
- type string
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- access
Key string - Your AWS access key if using type
S3BucketAuthentication
- auth
Provider stringX509Cert Url - auth
Uri string - client
Email string - client
Id string - client
X509Cert stringUrl - private
Key string - private
Key stringId - project
Id string - region string
- Your AWS Bucket region.
- role
Arn string - Your AWS role ARN if using type
AWSRoleBasedAuthentication
. This is not supported for AWS China regions. - secret
Key string - Your AWS secret key if using type
S3BucketAuthentication
- string
- string
- token
Uri string
- type str
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- 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_
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
- token_
uri str
- type String
- Must be either
S3BucketAuthentication
orAWSRoleBasedAuthentication
- access
Key String - Your AWS access key if using type
S3BucketAuthentication
- auth
Provider StringX509Cert Url - auth
Uri String - client
Email String - client
Id String - client
X509Cert StringUrl - private
Key String - private
Key StringId - project
Id String - region String
- Your AWS Bucket region.
- role
Arn String - Your AWS role ARN if using type
AWSRoleBasedAuthentication
. This is not supported for AWS China regions. - secret
Key String - Your AWS secret key if using type
S3BucketAuthentication
- String
- String
- token
Uri String
CloudwatchSourceDefaultDateFormat, CloudwatchSourceDefaultDateFormatArgs
CloudwatchSourceFilter, CloudwatchSourceFilterArgs
- Filter
Type string - Name string
- Regexp string
- Mask string
- Filter
Type string - Name string
- Regexp string
- Mask string
- filter
Type String - name String
- regexp String
- mask String
- filter
Type string - name string
- regexp string
- mask string
- filter_
type str - name str
- regexp str
- mask str
- filter
Type String - name String
- regexp String
- mask String
CloudwatchSourcePath, CloudwatchSourcePathArgs
- Type string
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - Bucket
Name string - Consumer
Group string - Custom
Services List<Pulumi.Sumo Logic. Inputs. Cloudwatch Source Path Custom Service> - Event
Hub stringName - Limit
To List<string>Namespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- Limit
To List<string>Regions - List of Amazon regions.
- Limit
To List<string>Services - Namespace string
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - Path
Expression string - Region string
- Your AWS Bucket region.
- Sns
Topic List<Pulumi.Or Subscription Arns Sumo Logic. Inputs. Cloudwatch Source Path Sns Topic Or Subscription Arn> - Tag
Filters List<Pulumi.Sumo Logic. Inputs. Cloudwatch Source Path Tag Filter> - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- Use
Versioned boolApi
- Type string
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - Bucket
Name string - Consumer
Group string - Custom
Services []CloudwatchSource Path Custom Service - Event
Hub stringName - Limit
To []stringNamespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- Limit
To []stringRegions - List of Amazon regions.
- Limit
To []stringServices - Namespace string
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - Path
Expression string - Region string
- Your AWS Bucket region.
- Sns
Topic []CloudwatchOr Subscription Arns Source Path Sns Topic Or Subscription Arn - Tag
Filters []CloudwatchSource Path Tag Filter - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- Use
Versioned boolApi
- type String
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - bucket
Name String - consumer
Group String - custom
Services List<CloudwatchSource Path Custom Service> - event
Hub StringName - limit
To List<String>Namespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- limit
To List<String>Regions - List of Amazon regions.
- limit
To List<String>Services - namespace String
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - path
Expression String - region String
- Your AWS Bucket region.
- sns
Topic List<CloudwatchOr Subscription Arns Source Path Sns Topic Or Subscription Arn> - tag
Filters List<CloudwatchSource Path Tag Filter> - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- use
Versioned BooleanApi
- type string
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - bucket
Name string - consumer
Group string - custom
Services CloudwatchSource Path Custom Service[] - event
Hub stringName - limit
To string[]Namespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- limit
To string[]Regions - List of Amazon regions.
- limit
To string[]Services - namespace string
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - path
Expression string - region string
- Your AWS Bucket region.
- sns
Topic CloudwatchOr Subscription Arns Source Path Sns Topic Or Subscription Arn[] - tag
Filters CloudwatchSource Path Tag Filter[] - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- use
Versioned booleanApi
- type str
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - bucket_
name str - consumer_
group str - custom_
services Sequence[CloudwatchSource Path Custom Service] - event_
hub_ strname - limit_
to_ Sequence[str]namespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- limit_
to_ Sequence[str]regions - List of Amazon regions.
- limit_
to_ Sequence[str]services - namespace str
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - path_
expression str - region str
- Your AWS Bucket region.
- sns_
topic_ Sequence[Cloudwatchor_ subscription_ arns Source Path Sns Topic Or Subscription Arn] - tag_
filters Sequence[CloudwatchSource Path Tag Filter] - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- use_
versioned_ boolapi
- type String
- type of polling source. This has to be
CloudWatchPath
for CloudWatch source. - bucket
Name String - consumer
Group String - custom
Services List<Property Map> - event
Hub StringName - limit
To List<String>Namespaces - List of namespaces. By default all namespaces are selected. Details can be found here. You can also specify custom namespace.
- limit
To List<String>Regions - List of Amazon regions.
- limit
To List<String>Services - namespace String
- Namespace for which you want to define the tag filters. Use value as
All
to apply the tag filter for all namespaces. - path
Expression String - region String
- Your AWS Bucket region.
- sns
Topic List<Property Map>Or Subscription Arns - tag
Filters List<Property Map> - Tag filters allow you to filter the CloudWatch metrics you collect by the AWS tags you have assigned to your AWS resources. You can define tag filters for each supported namespace. If you do not define any tag filters, all metrics will be collected for the regions and namespaces you configured for the source above. More info on tag filters can be found here
- use
Versioned BooleanApi
CloudwatchSourcePathCustomService, CloudwatchSourcePathCustomServiceArgs
- Prefixes List<string>
- Service
Name string
- Prefixes []string
- Service
Name string
- prefixes List<String>
- service
Name String
- prefixes string[]
- service
Name string
- prefixes Sequence[str]
- service_
name str
- prefixes List<String>
- service
Name String
CloudwatchSourcePathSnsTopicOrSubscriptionArn, CloudwatchSourcePathSnsTopicOrSubscriptionArnArgs
- arn str
- is_
success bool
CloudwatchSourcePathTagFilter, CloudwatchSourcePathTagFilterArgs
Import
CloudWatch sources can be imported using the collector and source IDs (collector/source
), e.g.:
hcl
$ pulumi import sumologic:index/cloudwatchSource:CloudwatchSource test 123/456
CloudWatch sources can be imported using the collector name and source name (collectorName/sourceName
), e.g.:
hcl
$ pulumi import sumologic:index/cloudwatchSource:CloudwatchSource 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
sumologic
Terraform Provider.