aws.securitylake.CustomLogSource
Explore with Pulumi AI
Resource for managing an AWS Security Lake Custom Log Source.
NOTE: The underlying
aws.securitylake.DataLakemust be configured before creating theaws.securitylake.CustomLogSource. Use adepends_onstatement.
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={
        "crawler_configuration": {
            "role_arn": custom_log["arn"],
        },
        "provider_identity": {
            "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.
Constructor 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={
        "crawler_configuration": {
            "role_arn": "string",
        },
        "provider_identity": {
            "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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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
CustomLog Source Configuration 
- 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
CustomLog Source Configuration Args 
- 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
CustomLog Source Configuration 
- 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
CustomLog Source Configuration 
- 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
CustomLog Source Configuration Args 
- 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<CustomLog Source Attribute> 
- The attributes of a third-party custom source.
- Id string
- The provider-assigned unique ID for this managed resource.
- ProviderDetails List<CustomLog Source Provider Detail> 
- The details of the log provider for a third-party custom source.
- Attributes
[]CustomLog Source Attribute 
- The attributes of a third-party custom source.
- Id string
- The provider-assigned unique ID for this managed resource.
- ProviderDetails []CustomLog Source Provider Detail 
- The details of the log provider for a third-party custom source.
- attributes
List<CustomLog Source Attribute> 
- The attributes of a third-party custom source.
- id String
- The provider-assigned unique ID for this managed resource.
- providerDetails List<CustomLog Source Provider Detail> 
- The details of the log provider for a third-party custom source.
- attributes
CustomLog Source Attribute[] 
- The attributes of a third-party custom source.
- id string
- The provider-assigned unique ID for this managed resource.
- providerDetails CustomLog Source Provider Detail[] 
- The details of the log provider for a third-party custom source.
- attributes
Sequence[CustomLog Source Attribute] 
- The attributes of a third-party custom source.
- id str
- The provider-assigned unique ID for this managed resource.
- provider_details Sequence[CustomLog Source Provider Detail] 
- 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) -> CustomLogSourcefunc 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)resources:  _:    type: aws:securitylake:CustomLogSource    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.
- Attributes
List<CustomLog Source Attribute> 
- The attributes of a third-party custom source.
- Configuration
CustomLog Source Configuration 
- 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<CustomLog Source Provider Detail> 
- 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
[]CustomLog Source Attribute Args 
- The attributes of a third-party custom source.
- Configuration
CustomLog Source Configuration Args 
- 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 []CustomLog Source Provider Detail Args 
- 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<CustomLog Source Attribute> 
- The attributes of a third-party custom source.
- configuration
CustomLog Source Configuration 
- 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<CustomLog Source Provider Detail> 
- 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
CustomLog Source Attribute[] 
- The attributes of a third-party custom source.
- configuration
CustomLog Source Configuration 
- 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 CustomLog Source Provider Detail[] 
- 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[CustomLog Source Attribute Args] 
- The attributes of a third-party custom source.
- configuration
CustomLog Source Configuration Args 
- 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[CustomLog Source Provider Detail Args] 
- 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 CustomLog Source Configuration Crawler Configuration 
- The configuration for the Glue Crawler for the third-party custom source.
- ProviderIdentity CustomLog Source Configuration Provider Identity 
- The identity of the log provider for the third-party custom source.
- CrawlerConfiguration CustomLog Source Configuration Crawler Configuration 
- The configuration for the Glue Crawler for the third-party custom source.
- ProviderIdentity CustomLog Source Configuration Provider Identity 
- The identity of the log provider for the third-party custom source.
- crawlerConfiguration CustomLog Source Configuration Crawler Configuration 
- The configuration for the Glue Crawler for the third-party custom source.
- providerIdentity CustomLog Source Configuration Provider Identity 
- The identity of the log provider for the third-party custom source.
- crawlerConfiguration CustomLog Source Configuration Crawler Configuration 
- The configuration for the Glue Crawler for the third-party custom source.
- providerIdentity CustomLog Source Configuration Provider Identity 
- The identity of the log provider for the third-party custom source.
- crawler_configuration CustomLog Source Configuration Crawler Configuration 
- The configuration for the Glue Crawler for the third-party custom source.
- provider_identity CustomLog Source Configuration Provider Identity 
- 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 Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- RoleArn string
- The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- roleArn String
- The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- roleArn string
- The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- role_arn str
- The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
- roleArn String
- The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be used by the AWS Glue crawler.
CustomLogSourceConfigurationProviderIdentity, CustomLogSourceConfigurationProviderIdentityArgs            
- ExternalId string
- The external ID used to estalish trust relationship with the AWS identity.
- Principal string
- The AWS identity principal.
- ExternalId string
- The external ID used to estalish trust relationship with the AWS identity.
- Principal string
- The AWS identity principal.
- externalId String
- The external ID used to estalish trust relationship with the AWS identity.
- principal String
- The AWS identity principal.
- externalId string
- The external ID used to estalish trust relationship with the AWS identity.
- principal string
- The AWS identity principal.
- external_id str
- The external ID used to estalish trust relationship with the AWS identity.
- principal str
- The AWS identity principal.
- externalId String
- The external ID used to estalish trust relationship with the AWS identity.
- principal String
- The AWS identity principal.
CustomLogSourceProviderDetail, CustomLogSourceProviderDetailArgs          
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 awsTerraform Provider.