interface ParentDataSetProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDataSetPropsMixin.ParentDataSetProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDataSetPropsMixin_ParentDataSetProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDataSetPropsMixin.ParentDataSetProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDataSetPropsMixin.ParentDataSetProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnDataSetPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const parentDataSetProperty: quicksight_mixins.CfnDataSetPropsMixin.ParentDataSetProperty = {
dataSetArn: 'dataSetArn',
inputColumns: [{
id: 'id',
name: 'name',
subType: 'subType',
type: 'type',
}],
};
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
(optional)
The Amazon Resource Name (ARN) of the parent dataset.
inputColumns?
Type:
IResolvable | (IResolvable | Input)[]
(optional)
The list of input columns available from the parent dataset.

.NET
Go
Java
Python
TypeScript