CfnAwsLogSourceProps
- class aws_cdk.aws_securitylake.CfnAwsLogSourceProps(*, data_lake_arn, source_name, source_version, accounts=None)
Bases:
object
Properties for defining a
CfnAwsLogSource
.- Parameters:
data_lake_arn (
str
) – The Amazon Resource Name (ARN) used to create the data lake.source_name (
str
) – 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.source_version (
str
) – 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.accounts (
Optional
[Sequence
[str
]]) – Specify the AWS account information where you want to enable Security Lake.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_securitylake as securitylake cfn_aws_log_source_props = securitylake.CfnAwsLogSourceProps( data_lake_arn="dataLakeArn", source_name="sourceName", source_version="sourceVersion", # the properties below are optional accounts=["accounts"] )
Attributes
- accounts
Specify the AWS account information where you want to enable Security Lake.
- data_lake_arn
The Amazon Resource Name (ARN) used to create the data lake.
- source_name
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.
- source_version
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.