package awsquicksight // Dashboard source entity. // // 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" // // dashboardSourceEntityProperty := &DashboardSourceEntityProperty{ // SourceTemplate: &DashboardSourceTemplateProperty{ // Arn: jsii.String("arn"), // DataSetReferences: []interface{}{ // &DataSetReferenceProperty{ // DataSetArn: jsii.String("dataSetArn"), // DataSetPlaceholder: jsii.String("dataSetPlaceholder"), // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardsourceentity.html // type CfnDashboard_DashboardSourceEntityProperty struct { // Source template. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardsourceentity.html#cfn-quicksight-dashboard-dashboardsourceentity-sourcetemplate // SourceTemplate interface{} `field:"optional" json:"sourceTemplate" yaml:"sourceTemplate"` }