interface CfnDataLakeAssociationProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Connect.CfnDataLakeAssociationProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsconnect#CfnDataLakeAssociationProps |
Java | software.amazon.awscdk.services.connect.CfnDataLakeAssociationProps |
Python | aws_cdk.aws_connect.CfnDataLakeAssociationProps |
TypeScript | aws-cdk-lib » aws_connect » CfnDataLakeAssociationProps |
Properties for defining a CfnDataLakeAssociation.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_connect as connect } from 'aws-cdk-lib';
const cfnDataLakeAssociationProps: connect.CfnDataLakeAssociationProps = {
dataSetId: 'dataSetId',
instanceId: 'instanceId',
// the properties below are optional
targetAccountId: 'targetAccountId',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The identifier of the analytics data set. |
| instance | string | The identifier of the Amazon Connect instance. |
| target | string | The identifier of the target account. |
dataSetId
Type:
string
The identifier of the analytics data set.
instanceId
Type:
string
The identifier of the Amazon Connect instance.
targetAccountId?
Type:
string
(optional)
The identifier of the target account.

.NET
Go
Java
Python
TypeScript