interface AwsLogSourceReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.SecurityLake.AwsLogSourceReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awssecuritylake#AwsLogSourceReference |
Java | software.amazon.awscdk.interfaces.securitylake.AwsLogSourceReference |
Python | aws_cdk.interfaces.aws_securitylake.AwsLogSourceReference |
TypeScript | aws-cdk-lib » interfaces » aws_securitylake » AwsLogSourceReference |
A reference to a AwsLogSource resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_securitylake as interfaces_securitylake } from 'aws-cdk-lib/interfaces';
const awsLogSourceReference: interfaces_securitylake.AwsLogSourceReference = {
sourceName: 'sourceName',
sourceVersion: 'sourceVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| source | string | The SourceName of the AwsLogSource resource. |
| source | string | The SourceVersion of the AwsLogSource resource. |
sourceName
Type:
string
The SourceName of the AwsLogSource resource.
sourceVersion
Type:
string
The SourceVersion of the AwsLogSource resource.

.NET
Go
Java
Python
TypeScript