interface CustomLogSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.SecurityLake.CfnSubscriberPropsMixin.CustomLogSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awssecuritylake#CfnSubscriberPropsMixin_CustomLogSourceProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.securitylake.CfnSubscriberPropsMixin.CustomLogSourceProperty |
Python | aws_cdk.cfn_property_mixins.aws_securitylake.CfnSubscriberPropsMixin.CustomLogSourceProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_securitylake » CfnSubscriberPropsMixin » CustomLogSourceProperty |
Third-party custom log source that meets the requirements to be added to Amazon Security Lake .
For more details, see Custom log source in the Amazon Security Lake User Guide .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securitylake as securitylake } from '@aws-cdk/cfn-property-mixins';
const customLogSourceProperty: securitylake.CfnSubscriberPropsMixin.CustomLogSourceProperty = {
sourceName: 'sourceName',
sourceVersion: 'sourceVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The name of the custom log source. |
| source | string | The source version of the custom log source. |
sourceName?
Type:
string
(optional)
The name of the custom log source.
sourceVersion?
Type:
string
(optional)
The source version of the custom log source.

.NET
Go
Java
Python
TypeScript