interface ParentDataSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnDataSet.ParentDataSetProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDataSet_ParentDataSetProperty |
Java | software.amazon.awscdk.services.quicksight.CfnDataSet.ParentDataSetProperty |
Python | aws_cdk.aws_quicksight.CfnDataSet.ParentDataSetProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnDataSet » ParentDataSetProperty |
References a parent dataset that serves as a data source, including its columns and metadata.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_quicksight as quicksight } from 'aws-cdk-lib';
const parentDataSetProperty: quicksight.CfnDataSet.ParentDataSetProperty = {
dataSetArn: 'dataSetArn',
inputColumns: [{
name: 'name',
type: 'type',
// the properties below are optional
id: 'id',
subType: 'subType',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | The Amazon Resource Name (ARN) of the parent dataset. |
| input | IResolvable | (IResolvable | Input)[] | The list of input columns available from the parent dataset. |
dataSetArn
Type:
string
The Amazon Resource Name (ARN) of the parent dataset.
inputColumns
Type:
IResolvable | (IResolvable | Input)[]
The list of input columns available from the parent dataset.

.NET
Go
Java
Python
TypeScript