interface CustomLogSourceProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins.CfnSubscriberPropsMixin.CustomLogSourceProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecuritylake/mixins#CfnSubscriberPropsMixin_CustomLogSourceProperty |
Java | software.amazon.awscdk.mixins.preview.services.securitylake.mixins.CfnSubscriberPropsMixin.CustomLogSourceProperty |
Python | aws_cdk.mixins_preview.aws_securitylake.mixins.CfnSubscriberPropsMixin.CustomLogSourceProperty |
TypeScript | @aws-cdk/mixins-preview » aws_securitylake » mixins » 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 { mixins as securitylake_mixins } from '@aws-cdk/mixins-preview/aws-securitylake';
const customLogSourceProperty: securitylake_mixins.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