package awsquicksight // The arc configuration of a `GaugeChartVisual` . // // 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" // // arcConfigurationProperty := &ArcConfigurationProperty{ // ArcAngle: jsii.Number(123), // ArcThickness: jsii.String("arcThickness"), // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-arcconfiguration.html // type CfnAnalysis_ArcConfigurationProperty struct { // The option that determines the arc angle of a `GaugeChartVisual` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-arcconfiguration.html#cfn-quicksight-analysis-arcconfiguration-arcangle // ArcAngle *float64 `field:"optional" json:"arcAngle" yaml:"arcAngle"` // The options that determine the arc thickness of a `GaugeChartVisual` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-arcconfiguration.html#cfn-quicksight-analysis-arcconfiguration-arcthickness // ArcThickness *string `field:"optional" json:"arcThickness" yaml:"arcThickness"` }