interface DataSetReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.QuickSight.DataSetReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awsquicksight#DataSetReference |
Java | software.amazon.awscdk.interfaces.quicksight.DataSetReference |
Python | aws_cdk.interfaces.aws_quicksight.DataSetReference |
TypeScript | aws-cdk-lib » interfaces » aws_quicksight » DataSetReference |
A reference to a DataSet resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as interfaces_aws_quicksight } from 'aws-cdk-lib/interfaces';
const dataSetReference: interfaces_aws_quicksight.DataSetReference = {
awsAccountId: 'awsAccountId',
dataSetArn: 'dataSetArn',
dataSetId: 'dataSetId',
};
Properties
| Name | Type | Description |
|---|---|---|
| aws | string | The AwsAccountId of the DataSet resource. |
| data | string | The ARN of the DataSet resource. |
| data | string | The DataSetId of the DataSet resource. |
awsAccountId
Type:
string
The AwsAccountId of the DataSet resource.
dataSetArn
Type:
string
The ARN of the DataSet resource.
dataSetId
Type:
string
The DataSetId of the DataSet resource.

.NET
Go
Java
Python
TypeScript