interface DataLakeAssociationReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Connect.DataLakeAssociationReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsconnect#DataLakeAssociationReference |
Java | software.amazon.awscdk.interfaces.connect.DataLakeAssociationReference |
Python | aws_cdk.interfaces.aws_connect.DataLakeAssociationReference |
TypeScript | aws-cdk-lib » interfaces » aws_connect » DataLakeAssociationReference |
A reference to a DataLakeAssociation resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as interfaces_connect } from 'aws-cdk-lib/interfaces';
const dataLakeAssociationReference: interfaces_connect.DataLakeAssociationReference = {
dataSetId: 'dataSetId',
instanceId: 'instanceId',
targetAccountId: 'targetAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The DataSetId of the DataLakeAssociation resource. |
| instance | string | The InstanceId of the DataLakeAssociation resource. |
| target | string | The TargetAccountId of the DataLakeAssociation resource. |
dataSetId
Type:
string
The DataSetId of the DataLakeAssociation resource.
instanceId
Type:
string
The InstanceId of the DataLakeAssociation resource.
targetAccountId
Type:
string
The TargetAccountId of the DataLakeAssociation resource.

.NET
Go
Java
Python
TypeScript