package awsquicksight // A list of selectable values that are used in a control. // // 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" // // filterSelectableValuesProperty := &FilterSelectableValuesProperty{ // Values: []*string{ // jsii.String("values"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterselectablevalues.html // type CfnAnalysis_FilterSelectableValuesProperty struct { // The values that are used in the `FilterSelectableValues` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-filterselectablevalues.html#cfn-quicksight-analysis-filterselectablevalues-values // Values *[]*string `field:"optional" json:"values" yaml:"values"` }