interface MappedDataSetParameterProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.MappedDataSetParameterProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_MappedDataSetParameterProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.MappedDataSetParameterProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.MappedDataSetParameterProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » MappedDataSetParameterProperty |
A dataset parameter that is mapped to an analysis parameter.
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 mappedDataSetParameterProperty: quicksight_mixins.CfnAnalysisPropsMixin.MappedDataSetParameterProperty = {
dataSetIdentifier: 'dataSetIdentifier',
dataSetParameterName: 'dataSetParameterName',
};
Properties
| Name | Type | Description |
|---|---|---|
| data | string | A unique name that identifies a dataset within the analysis or dashboard. |
| data | string | The name of the dataset parameter. |
dataSetIdentifier?
Type:
string
(optional)
A unique name that identifies a dataset within the analysis or dashboard.
dataSetParameterName?
Type:
string
(optional)
The name of the dataset parameter.

.NET
Go
Java
Python
TypeScript