package awsquicksight // Dashboard source template. // // 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" // // dashboardSourceTemplateProperty := &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-dashboardsourcetemplate.html // type CfnDashboard_DashboardSourceTemplateProperty struct { // The Amazon Resource Name (ARN) of the resource. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardsourcetemplate.html#cfn-quicksight-dashboard-dashboardsourcetemplate-arn // Arn *string `field:"required" json:"arn" yaml:"arn"` // Dataset references. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-dashboardsourcetemplate.html#cfn-quicksight-dashboard-dashboardsourcetemplate-datasetreferences // DataSetReferences interface{} `field:"required" json:"dataSetReferences" yaml:"dataSetReferences"` }