interface CfnAwsLogSourceMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SecurityLake.Mixins.CfnAwsLogSourceMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awssecuritylake/mixins#CfnAwsLogSourceMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.securitylake.mixins.CfnAwsLogSourceMixinProps |
Python | aws_cdk.mixins_preview.aws_securitylake.mixins.CfnAwsLogSourceMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_securitylake » mixins » CfnAwsLogSourceMixinProps |
Properties for CfnAwsLogSourcePropsMixin.
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 cfnAwsLogSourceMixinProps: securitylake_mixins.CfnAwsLogSourceMixinProps = {
accounts: ['accounts'],
dataLakeArn: 'dataLakeArn',
sourceName: 'sourceName',
sourceVersion: 'sourceVersion',
};
Properties
| Name | Type | Description |
|---|---|---|
| accounts? | string[] | Specify the AWS account information where you want to enable Security Lake. |
| data | string | The Amazon Resource Name (ARN) used to create the data lake. |
| source | string | The name for a AWS source. |
| source | string | The version for a AWS source. |
accounts?
Type:
string[]
(optional)
Specify the AWS account information where you want to enable Security Lake.
dataLakeArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) used to create the data lake.
sourceName?
Type:
string
(optional)
The name for a AWS source.
This must be a Regionally unique value. For the list of sources supported by Amazon Security Lake see Collecting data from AWS services in the Amazon Security Lake User Guide.
sourceVersion?
Type:
string
(optional)
The version for a AWS source.
For more details about source versions supported by Amazon Security Lake see OCSF source identification in the Amazon Security Lake User Guide. This must be a Regionally unique value.

.NET
Go
Java
Python
TypeScript