1. Packages
  2. AWS Classic
  3. API Docs
  4. securitylake
  5. CustomLogSource

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

aws.securitylake.CustomLogSource

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi

    Resource for managing an AWS Security Lake Custom Log Source.

    NOTE: The underlying aws.securitylake.DataLake must be configured before creating the aws.securitylake.CustomLogSource. Use a depends_on statement.

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.securitylake.CustomLogSource("example", {
        sourceName: "example-name",
        sourceVersion: "1.0",
        eventClasses: ["FILE_ACTIVITY"],
        configuration: {
            crawlerConfiguration: {
                roleArn: customLog.arn,
            },
            providerIdentity: {
                externalId: "example-id",
                principal: "123456789012",
            },
        },
    }, {
        dependsOn: [exampleAwsSecuritylakeDataLake],
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.securitylake.CustomLogSource("example",
        source_name="example-name",
        source_version="1.0",
        event_classes=["FILE_ACTIVITY"],
        configuration=aws.securitylake.CustomLogSourceConfigurationArgs(
            crawler_configuration=aws.securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs(
                role_arn=custom_log["arn"],
            ),
            provider_identity=aws.securitylake.CustomLogSourceConfigurationProviderIdentityArgs(
                external_id="example-id",
                principal="123456789012",
            ),
        ),
        opts=pulumi.ResourceOptions(depends_on=[example_aws_securitylake_data_lake]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/securitylake"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securitylake.NewCustomLogSource(ctx, "example", &securitylake.CustomLogSourceArgs{
    			SourceName:    pulumi.String("example-name"),
    			SourceVersion: pulumi.String("1.0"),
    			EventClasses: pulumi.StringArray{
    				pulumi.String("FILE_ACTIVITY"),
    			},
    			Configuration: &securitylake.CustomLogSourceConfigurationArgs{
    				CrawlerConfiguration: &securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs{
    					RoleArn: pulumi.Any(customLog.Arn),
    				},
    				ProviderIdentity: &securitylake.CustomLogSourceConfigurationProviderIdentityArgs{
    					ExternalId: pulumi.String("example-id"),
    					Principal:  pulumi.String("123456789012"),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			exampleAwsSecuritylakeDataLake,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.SecurityLake.CustomLogSource("example", new()
        {
            SourceName = "example-name",
            SourceVersion = "1.0",
            EventClasses = new[]
            {
                "FILE_ACTIVITY",
            },
            Configuration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationArgs
            {
                CrawlerConfiguration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs
                {
                    RoleArn = customLog.Arn,
                },
                ProviderIdentity = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationProviderIdentityArgs
                {
                    ExternalId = "example-id",
                    Principal = "123456789012",
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                exampleAwsSecuritylakeDataLake,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.securitylake.CustomLogSource;
    import com.pulumi.aws.securitylake.CustomLogSourceArgs;
    import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationArgs;
    import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs;
    import com.pulumi.aws.securitylake.inputs.CustomLogSourceConfigurationProviderIdentityArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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 example = new CustomLogSource("example", CustomLogSourceArgs.builder()        
                .sourceName("example-name")
                .sourceVersion("1.0")
                .eventClasses("FILE_ACTIVITY")
                .configuration(CustomLogSourceConfigurationArgs.builder()
                    .crawlerConfiguration(CustomLogSourceConfigurationCrawlerConfigurationArgs.builder()
                        .roleArn(customLog.arn())
                        .build())
                    .providerIdentity(CustomLogSourceConfigurationProviderIdentityArgs.builder()
                        .externalId("example-id")
                        .principal("123456789012")
                        .build())
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(exampleAwsSecuritylakeDataLake)
                    .build());
    
        }
    }
    
    resources:
      example:
        type: aws:securitylake:CustomLogSource
        properties:
          sourceName: example-name
          sourceVersion: '1.0'
          eventClasses:
            - FILE_ACTIVITY
          configuration:
            crawlerConfiguration:
              roleArn: ${customLog.arn}
            providerIdentity:
              externalId: example-id
              principal: '123456789012'
        options:
          dependson:
            - ${exampleAwsSecuritylakeDataLake}
    

    Create CustomLogSource Resource

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

    Constructor syntax

    new CustomLogSource(name: string, args: CustomLogSourceArgs, opts?: CustomResourceOptions);
    @overload
    def CustomLogSource(resource_name: str,
                        args: CustomLogSourceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def CustomLogSource(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        source_name: Optional[str] = None,
                        configuration: Optional[CustomLogSourceConfigurationArgs] = None,
                        event_classes: Optional[Sequence[str]] = None,
                        source_version: Optional[str] = None)
    func NewCustomLogSource(ctx *Context, name string, args CustomLogSourceArgs, opts ...ResourceOption) (*CustomLogSource, error)
    public CustomLogSource(string name, CustomLogSourceArgs args, CustomResourceOptions? opts = null)
    public CustomLogSource(String name, CustomLogSourceArgs args)
    public CustomLogSource(String name, CustomLogSourceArgs args, CustomResourceOptions options)
    
    type: aws:securitylake:CustomLogSource
    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 CustomLogSourceArgs
    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 CustomLogSourceArgs
    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 CustomLogSourceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CustomLogSourceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CustomLogSourceArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var customLogSourceResource = new Aws.SecurityLake.CustomLogSource("customLogSourceResource", new()
    {
        SourceName = "string",
        Configuration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationArgs
        {
            CrawlerConfiguration = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationCrawlerConfigurationArgs
            {
                RoleArn = "string",
            },
            ProviderIdentity = new Aws.SecurityLake.Inputs.CustomLogSourceConfigurationProviderIdentityArgs
            {
                ExternalId = "string",
                Principal = "string",
            },
        },
        EventClasses = new[]
        {
            "string",
        },
        SourceVersion = "string",
    });
    
    example, err := securitylake.NewCustomLogSource(ctx, "customLogSourceResource", &securitylake.CustomLogSourceArgs{
    	SourceName: pulumi.String("string"),
    	Configuration: &securitylake.CustomLogSourceConfigurationArgs{
    		CrawlerConfiguration: &securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs{
    			RoleArn: pulumi.String("string"),
    		},
    		ProviderIdentity: &securitylake.CustomLogSourceConfigurationProviderIdentityArgs{
    			ExternalId: pulumi.String("string"),
    			Principal:  pulumi.String("string"),
    		},
    	},
    	EventClasses: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	SourceVersion: pulumi.String("string"),
    })
    
    var customLogSourceResource = new CustomLogSource("customLogSourceResource", CustomLogSourceArgs.builder()        
        .sourceName("string")
        .configuration(CustomLogSourceConfigurationArgs.builder()
            .crawlerConfiguration(CustomLogSourceConfigurationCrawlerConfigurationArgs.builder()
                .roleArn("string")
                .build())
            .providerIdentity(CustomLogSourceConfigurationProviderIdentityArgs.builder()
                .externalId("string")
                .principal("string")
                .build())
            .build())
        .eventClasses("string")
        .sourceVersion("string")
        .build());
    
    custom_log_source_resource = aws.securitylake.CustomLogSource("customLogSourceResource",
        source_name="string",
        configuration=aws.securitylake.CustomLogSourceConfigurationArgs(
            crawler_configuration=aws.securitylake.CustomLogSourceConfigurationCrawlerConfigurationArgs(
                role_arn="string",
            ),
            provider_identity=aws.securitylake.CustomLogSourceConfigurationProviderIdentityArgs(
                external_id="string",
                principal="string",
            ),
        ),
        event_classes=["string"],
        source_version="string")
    
    const customLogSourceResource = new aws.securitylake.CustomLogSource("customLogSourceResource", {
        sourceName: "string",
        configuration: {
            crawlerConfiguration: {
                roleArn: "string",
            },
            providerIdentity: {
                externalId: "string",
                principal: "string",
            },
        },
        eventClasses: ["string"],
        sourceVersion: "string",
    });
    
    type: aws:securitylake:CustomLogSource
    properties:
        configuration:
            crawlerConfiguration:
                roleArn: string
            providerIdentity:
                externalId: string
                principal: string
        eventClasses:
            - string
        sourceName: string
        sourceVersion: string
    

    CustomLogSource Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The CustomLogSource resource accepts the following input properties:

    SourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    Configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    EventClasses List<string>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    SourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    SourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    Configuration CustomLogSourceConfigurationArgs
    The configuration for the third-party custom source.
    EventClasses []string
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    SourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    sourceName String
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    eventClasses List<String>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    sourceVersion String
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    sourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    eventClasses string[]
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    sourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    source_name str
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    configuration CustomLogSourceConfigurationArgs
    The configuration for the third-party custom source.
    event_classes Sequence[str]
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    source_version str
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    sourceName String
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    configuration Property Map
    The configuration for the third-party custom source.
    eventClasses List<String>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    sourceVersion String
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.

    Outputs

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

    Attributes List<CustomLogSourceAttribute>
    The attributes of a third-party custom source.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProviderDetails List<CustomLogSourceProviderDetail>
    The details of the log provider for a third-party custom source.
    Attributes []CustomLogSourceAttribute
    The attributes of a third-party custom source.
    Id string
    The provider-assigned unique ID for this managed resource.
    ProviderDetails []CustomLogSourceProviderDetail
    The details of the log provider for a third-party custom source.
    attributes List<CustomLogSourceAttribute>
    The attributes of a third-party custom source.
    id String
    The provider-assigned unique ID for this managed resource.
    providerDetails List<CustomLogSourceProviderDetail>
    The details of the log provider for a third-party custom source.
    attributes CustomLogSourceAttribute[]
    The attributes of a third-party custom source.
    id string
    The provider-assigned unique ID for this managed resource.
    providerDetails CustomLogSourceProviderDetail[]
    The details of the log provider for a third-party custom source.
    attributes Sequence[CustomLogSourceAttribute]
    The attributes of a third-party custom source.
    id str
    The provider-assigned unique ID for this managed resource.
    provider_details Sequence[CustomLogSourceProviderDetail]
    The details of the log provider for a third-party custom source.
    attributes List<Property Map>
    The attributes of a third-party custom source.
    id String
    The provider-assigned unique ID for this managed resource.
    providerDetails List<Property Map>
    The details of the log provider for a third-party custom source.

    Look up Existing CustomLogSource Resource

    Get an existing CustomLogSource 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?: CustomLogSourceState, opts?: CustomResourceOptions): CustomLogSource
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attributes: Optional[Sequence[CustomLogSourceAttributeArgs]] = None,
            configuration: Optional[CustomLogSourceConfigurationArgs] = None,
            event_classes: Optional[Sequence[str]] = None,
            provider_details: Optional[Sequence[CustomLogSourceProviderDetailArgs]] = None,
            source_name: Optional[str] = None,
            source_version: Optional[str] = None) -> CustomLogSource
    func GetCustomLogSource(ctx *Context, name string, id IDInput, state *CustomLogSourceState, opts ...ResourceOption) (*CustomLogSource, error)
    public static CustomLogSource Get(string name, Input<string> id, CustomLogSourceState? state, CustomResourceOptions? opts = null)
    public static CustomLogSource get(String name, Output<String> id, CustomLogSourceState 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.
    The following state arguments are supported:
    Attributes List<CustomLogSourceAttribute>
    The attributes of a third-party custom source.
    Configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    EventClasses List<string>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    ProviderDetails List<CustomLogSourceProviderDetail>
    The details of the log provider for a third-party custom source.
    SourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    SourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    Attributes []CustomLogSourceAttributeArgs
    The attributes of a third-party custom source.
    Configuration CustomLogSourceConfigurationArgs
    The configuration for the third-party custom source.
    EventClasses []string
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    ProviderDetails []CustomLogSourceProviderDetailArgs
    The details of the log provider for a third-party custom source.
    SourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    SourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    attributes List<CustomLogSourceAttribute>
    The attributes of a third-party custom source.
    configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    eventClasses List<String>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    providerDetails List<CustomLogSourceProviderDetail>
    The details of the log provider for a third-party custom source.
    sourceName String
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    sourceVersion String
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    attributes CustomLogSourceAttribute[]
    The attributes of a third-party custom source.
    configuration CustomLogSourceConfiguration
    The configuration for the third-party custom source.
    eventClasses string[]
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    providerDetails CustomLogSourceProviderDetail[]
    The details of the log provider for a third-party custom source.
    sourceName string
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    sourceVersion string
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    attributes Sequence[CustomLogSourceAttributeArgs]
    The attributes of a third-party custom source.
    configuration CustomLogSourceConfigurationArgs
    The configuration for the third-party custom source.
    event_classes Sequence[str]
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    provider_details Sequence[CustomLogSourceProviderDetailArgs]
    The details of the log provider for a third-party custom source.
    source_name str
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    source_version str
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.
    attributes List<Property Map>
    The attributes of a third-party custom source.
    configuration Property Map
    The configuration for the third-party custom source.
    eventClasses List<String>
    The Open Cybersecurity Schema Framework (OCSF) event classes which describes the type of data that the custom source will send to Security Lake.
    providerDetails List<Property Map>
    The details of the log provider for a third-party custom source.
    sourceName String
    Specify the name for a third-party custom source. This must be a Regionally unique value. Has a maximum length of 20.
    sourceVersion String
    Specify the source version for the third-party custom source, to limit log collection to a specific version of custom data source.

    Supporting Types

    CustomLogSourceAttribute, CustomLogSourceAttributeArgs

    CrawlerArn string
    The ARN of the AWS Glue crawler.
    DatabaseArn string
    The ARN of the AWS Glue database where results are written.
    TableArn string
    The ARN of the AWS Glue table.
    CrawlerArn string
    The ARN of the AWS Glue crawler.
    DatabaseArn string
    The ARN of the AWS Glue database where results are written.
    TableArn string
    The ARN of the AWS Glue table.
    crawlerArn String
    The ARN of the AWS Glue crawler.
    databaseArn String
    The ARN of the AWS Glue database where results are written.
    tableArn String
    The ARN of the AWS Glue table.
    crawlerArn string
    The ARN of the AWS Glue crawler.
    databaseArn string
    The ARN of the AWS Glue database where results are written.
    tableArn string
    The ARN of the AWS Glue table.
    crawler_arn str
    The ARN of the AWS Glue crawler.
    database_arn str
    The ARN of the AWS Glue database where results are written.
    table_arn str
    The ARN of the AWS Glue table.
    crawlerArn String
    The ARN of the AWS Glue crawler.
    databaseArn String
    The ARN of the AWS Glue database where results are written.
    tableArn String
    The ARN of the AWS Glue table.

    CustomLogSourceConfiguration, CustomLogSourceConfigurationArgs

    CrawlerConfiguration CustomLogSourceConfigurationCrawlerConfiguration
    The configuration for the Glue Crawler for the third-party custom source.
    ProviderIdentity CustomLogSourceConfigurationProviderIdentity
    The identity of the log provider for the third-party custom source.
    CrawlerConfiguration CustomLogSourceConfigurationCrawlerConfiguration
    The configuration for the Glue Crawler for the third-party custom source.
    ProviderIdentity CustomLogSourceConfigurationProviderIdentity
    The identity of the log provider for the third-party custom source.
    crawlerConfiguration CustomLogSourceConfigurationCrawlerConfiguration
    The configuration for the Glue Crawler for the third-party custom source.
    providerIdentity CustomLogSourceConfigurationProviderIdentity
    The identity of the log provider for the third-party custom source.
    crawlerConfiguration CustomLogSourceConfigurationCrawlerConfiguration
    The configuration for the Glue Crawler for the third-party custom source.
    providerIdentity CustomLogSourceConfigurationProviderIdentity
    The identity of the log provider for the third-party custom source.
    crawler_configuration CustomLogSourceConfigurationCrawlerConfiguration
    The configuration for the Glue Crawler for the third-party custom source.
    provider_identity CustomLogSourceConfigurationProviderIdentity
    The identity of the log provider for the third-party custom source.
    crawlerConfiguration Property Map
    The configuration for the Glue Crawler for the third-party custom source.
    providerIdentity Property Map
    The identity of the log provider for the third-party custom source.

    CustomLogSourceConfigurationCrawlerConfiguration, CustomLogSourceConfigurationCrawlerConfigurationArgs

    RoleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    RoleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    roleArn String
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    roleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    role_arn str
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    roleArn String
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.

    CustomLogSourceConfigurationProviderIdentity, CustomLogSourceConfigurationProviderIdentityArgs

    ExternalId string
    Principal string
    ExternalId string
    Principal string
    externalId String
    principal String
    externalId string
    principal string
    externalId String
    principal String

    CustomLogSourceProviderDetail, CustomLogSourceProviderDetailArgs

    Location string
    The location of the partition in the Amazon S3 bucket for Security Lake.
    RoleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    Location string
    The location of the partition in the Amazon S3 bucket for Security Lake.
    RoleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    location String
    The location of the partition in the Amazon S3 bucket for Security Lake.
    roleArn String
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    location string
    The location of the partition in the Amazon S3 bucket for Security Lake.
    roleArn string
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    location str
    The location of the partition in the Amazon S3 bucket for Security Lake.
    role_arn str
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.
    location String
    The location of the partition in the Amazon S3 bucket for Security Lake.
    roleArn String
    The ARN of the IAM role to be used by the entity putting logs into your custom source partition.

    Import

    Using pulumi import, import Custom log sources using the source name. For example:

    $ pulumi import aws:securitylake/customLogSource:CustomLogSource example example-name
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.36.0 published on Wednesday, May 15, 2024 by Pulumi