package awsquicksight //
A parameter created in the dataset of decimal data type.
. // // 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" // // decimalDatasetParameterProperty := &DecimalDatasetParameterProperty{ // Id: jsii.String("id"), // Name: jsii.String("name"), // ValueType: jsii.String("valueType"), // // // the properties below are optional // DefaultValues: &DecimalDatasetParameterDefaultValuesProperty{ // StaticValues: []interface{}{ // jsii.Number(123), // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html // type CfnDataSet_DecimalDatasetParameterProperty struct { //Identifier of the parameter created in the dataset.
. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-id // Id *string `field:"required" json:"id" yaml:"id"` //Name of the parameter created in the dataset.
. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-name // Name *string `field:"required" json:"name" yaml:"name"` //Every parameter value could be either a single value or multi value which helps to validate before evaluation.
. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-valuetype // ValueType *string `field:"required" json:"valueType" yaml:"valueType"` //List of default values defined for a given decimal dataset parameter type. // // Currently only static values are supported.
// See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-decimaldatasetparameter.html#cfn-quicksight-dataset-decimaldatasetparameter-defaultvalues // DefaultValues interface{} `field:"optional" json:"defaultValues" yaml:"defaultValues"` }