package awsquicksight // Output column. // // 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" // // outputColumnProperty := &OutputColumnProperty{ // Description: jsii.String("description"), // Name: jsii.String("name"), // Type: jsii.String("type"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-outputcolumn.html // type CfnDataSet_OutputColumnProperty struct { // A description for a column. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-outputcolumn.html#cfn-quicksight-dataset-outputcolumn-description // Description *string `field:"optional" json:"description" yaml:"description"` // A display name for the dataset. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-outputcolumn.html#cfn-quicksight-dataset-outputcolumn-name // Name *string `field:"optional" json:"name" yaml:"name"` // The type. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-outputcolumn.html#cfn-quicksight-dataset-outputcolumn-type // Type *string `field:"optional" json:"type" yaml:"type"` }