package awsquicksight // 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 "github.com/aws/aws-cdk-go/awscdk" // // mappedDataSetParameterProperty := &MappedDataSetParameterProperty{ // DataSetIdentifier: jsii.String("dataSetIdentifier"), // DataSetParameterName: jsii.String("dataSetParameterName"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-mappeddatasetparameter.html // type CfnTemplate_MappedDataSetParameterProperty struct { // A unique name that identifies a dataset within the analysis or dashboard. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-mappeddatasetparameter.html#cfn-quicksight-template-mappeddatasetparameter-datasetidentifier // DataSetIdentifier *string `field:"required" json:"dataSetIdentifier" yaml:"dataSetIdentifier"` // The name of the dataset parameter. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-mappeddatasetparameter.html#cfn-quicksight-template-mappeddatasetparameter-datasetparametername // DataSetParameterName *string `field:"required" json:"dataSetParameterName" yaml:"dataSetParameterName"` }