Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.ComparisonFormatConfigurationProperty

The format of the comparison.

Inheritance
object
CfnAnalysisPropsMixin.ComparisonFormatConfigurationProperty
Implements
CfnAnalysisPropsMixin.IComparisonFormatConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.ComparisonFormatConfigurationProperty : CfnAnalysisPropsMixin.IComparisonFormatConfigurationProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.ComparisonFormatConfigurationProperty Implements CfnAnalysisPropsMixin.IComparisonFormatConfigurationProperty
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonformatconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var comparisonFormatConfigurationProperty = new ComparisonFormatConfigurationProperty {
                 NumberDisplayFormatConfiguration = new NumberDisplayFormatConfigurationProperty {
                     DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                         DecimalPlaces = 123
                     },
                     NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                         DisplayMode = "displayMode"
                     },
                     NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                         NullString = "nullString"
                     },
                     NumberScale = "numberScale",
                     Prefix = "prefix",
                     SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                         DecimalSeparator = "decimalSeparator",
                         ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                             GroupingStyle = "groupingStyle",
                             Symbol = "symbol",
                             Visibility = "visibility"
                         }
                     },
                     Suffix = "suffix"
                 },
                 PercentageDisplayFormatConfiguration = new PercentageDisplayFormatConfigurationProperty {
                     DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                         DecimalPlaces = 123
                     },
                     NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                         DisplayMode = "displayMode"
                     },
                     NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                         NullString = "nullString"
                     },
                     Prefix = "prefix",
                     SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                         DecimalSeparator = "decimalSeparator",
                         ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                             GroupingStyle = "groupingStyle",
                             Symbol = "symbol",
                             Visibility = "visibility"
                         }
                     },
                     Suffix = "suffix"
                 }
             };

Synopsis

Constructors

ComparisonFormatConfigurationProperty()

The format of the comparison.

Properties

NumberDisplayFormatConfiguration

The number display format.

PercentageDisplayFormatConfiguration

The percentage display format.

Constructors

ComparisonFormatConfigurationProperty()

The format of the comparison.

public ComparisonFormatConfigurationProperty()
Remarks

This is a union type structure. For this structure to be valid, only one of the attributes can be defined.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonformatconfiguration.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var comparisonFormatConfigurationProperty = new ComparisonFormatConfigurationProperty {
                 NumberDisplayFormatConfiguration = new NumberDisplayFormatConfigurationProperty {
                     DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                         DecimalPlaces = 123
                     },
                     NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                         DisplayMode = "displayMode"
                     },
                     NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                         NullString = "nullString"
                     },
                     NumberScale = "numberScale",
                     Prefix = "prefix",
                     SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                         DecimalSeparator = "decimalSeparator",
                         ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                             GroupingStyle = "groupingStyle",
                             Symbol = "symbol",
                             Visibility = "visibility"
                         }
                     },
                     Suffix = "suffix"
                 },
                 PercentageDisplayFormatConfiguration = new PercentageDisplayFormatConfigurationProperty {
                     DecimalPlacesConfiguration = new DecimalPlacesConfigurationProperty {
                         DecimalPlaces = 123
                     },
                     NegativeValueConfiguration = new NegativeValueConfigurationProperty {
                         DisplayMode = "displayMode"
                     },
                     NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
                         NullString = "nullString"
                     },
                     Prefix = "prefix",
                     SeparatorConfiguration = new NumericSeparatorConfigurationProperty {
                         DecimalSeparator = "decimalSeparator",
                         ThousandsSeparator = new ThousandSeparatorOptionsProperty {
                             GroupingStyle = "groupingStyle",
                             Symbol = "symbol",
                             Visibility = "visibility"
                         }
                     },
                     Suffix = "suffix"
                 }
             };

Properties

NumberDisplayFormatConfiguration

The number display format.

public object? NumberDisplayFormatConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonformatconfiguration.html#cfn-quicksight-analysis-comparisonformatconfiguration-numberdisplayformatconfiguration

Type union: either IResolvable or CfnAnalysisPropsMixin.INumberDisplayFormatConfigurationProperty

PercentageDisplayFormatConfiguration

The percentage display format.

public object? PercentageDisplayFormatConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-comparisonformatconfiguration.html#cfn-quicksight-analysis-comparisonformatconfiguration-percentagedisplayformatconfiguration

Type union: either IResolvable or CfnAnalysisPropsMixin.IPercentageDisplayFormatConfigurationProperty

Implements

CfnAnalysisPropsMixin.IComparisonFormatConfigurationProperty
Back to top Generated by DocFX