CfnDataLakeAssociationProps
- class aws_cdk.aws_connect.CfnDataLakeAssociationProps(*, data_set_id, instance_id, target_account_id=None)
Bases:
objectProperties for defining a
CfnDataLakeAssociation.- Parameters:
data_set_id (
str) – The identifier of the analytics data set.instance_id (
str) – The identifier of the Amazon Connect instance.target_account_id (
Optional[str]) – The identifier of the target account.
- 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_connect as connect cfn_data_lake_association_props = connect.CfnDataLakeAssociationProps( data_set_id="dataSetId", instance_id="instanceId", # the properties below are optional target_account_id="targetAccountId" )
Attributes
- data_set_id
The identifier of the analytics data set.
- instance_id
The identifier of the Amazon Connect instance.
- target_account_id
The identifier of the target account.