package awsquicksight // The parameters for Presto. // // 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" // // prestoParametersProperty := &PrestoParametersProperty{ // Catalog: jsii.String("catalog"), // Host: jsii.String("host"), // Port: jsii.Number(123), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html // type CfnDataSource_PrestoParametersProperty struct { // Catalog. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html#cfn-quicksight-datasource-prestoparameters-catalog // Catalog *string `field:"required" json:"catalog" yaml:"catalog"` // Host. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html#cfn-quicksight-datasource-prestoparameters-host // Host *string `field:"required" json:"host" yaml:"host"` // Port. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-datasource-prestoparameters.html#cfn-quicksight-datasource-prestoparameters-port // Port *float64 `field:"required" json:"port" yaml:"port"` }