package awsquicksight // The options that determine the presentation of trend arrows in a KPI visual. // // 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" // // trendArrowOptionsProperty := &TrendArrowOptionsProperty{ // Visibility: jsii.String("visibility"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html // type CfnTemplate_TrendArrowOptionsProperty struct { // The visibility of the trend arrows. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-trendarrowoptions.html#cfn-quicksight-template-trendarrowoptions-visibility // Visibility *string `field:"optional" json:"visibility" yaml:"visibility"` }