DataLakeAssociationReference

class aws_cdk.interfaces.aws_connect.DataLakeAssociationReference(*, data_set_id, instance_id, target_account_id)

Bases: object

A reference to a DataLakeAssociation resource.

Parameters:
  • data_set_id (str) – The DataSetId of the DataLakeAssociation resource.

  • instance_id (str) – The InstanceId of the DataLakeAssociation resource.

  • target_account_id (str) – The TargetAccountId of the DataLakeAssociation resource.

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.interfaces import aws_connect as interfaces_connect

data_lake_association_reference = interfaces_connect.DataLakeAssociationReference(
    data_set_id="dataSetId",
    instance_id="instanceId",
    target_account_id="targetAccountId"
)

Attributes

data_set_id

The DataSetId of the DataLakeAssociation resource.

instance_id

The InstanceId of the DataLakeAssociation resource.

target_account_id

The TargetAccountId of the DataLakeAssociation resource.