Show / Hide Table of Contents

Class CfnDashboard.DateTimeFormatConfigurationProperty

Formatting configuration for DateTime fields.

Inheritance
System.Object
CfnDashboard.DateTimeFormatConfigurationProperty
Implements
CfnDashboard.IDateTimeFormatConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class DateTimeFormatConfigurationProperty : Object, CfnDashboard.IDateTimeFormatConfigurationProperty
Syntax (vb)
Public Class DateTimeFormatConfigurationProperty
    Inherits Object
    Implements CfnDashboard.IDateTimeFormatConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimeformatconfiguration.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.AWS.QuickSight;

var dateTimeFormatConfigurationProperty = new DateTimeFormatConfigurationProperty {
    DateTimeFormat = "dateTimeFormat",
    NullValueFormatConfiguration = new NullValueFormatConfigurationProperty {
        NullString = "nullString"
    },
    NumericFormatConfiguration = new NumericFormatConfigurationProperty {
        CurrencyDisplayFormatConfiguration = new CurrencyDisplayFormatConfigurationProperty {
            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 {
                    Symbol = "symbol",
                    Visibility = "visibility"
                }
            },
            Suffix = "suffix",
            Symbol = "symbol"
        },
        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 {
                    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 {
                    Symbol = "symbol",
                    Visibility = "visibility"
                }
            },
            Suffix = "suffix"
        }
    }
};

Synopsis

Constructors

DateTimeFormatConfigurationProperty()

Properties

DateTimeFormat

Determines the DateTime format.

NullValueFormatConfiguration

The options that determine the null value format configuration.

NumericFormatConfiguration

The formatting configuration for numeric DateTime fields.

Constructors

DateTimeFormatConfigurationProperty()

public DateTimeFormatConfigurationProperty()

Properties

DateTimeFormat

Determines the DateTime format.

public string DateTimeFormat { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimeformatconfiguration.html#cfn-quicksight-dashboard-datetimeformatconfiguration-datetimeformat

NullValueFormatConfiguration

The options that determine the null value format configuration.

public object NullValueFormatConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimeformatconfiguration.html#cfn-quicksight-dashboard-datetimeformatconfiguration-nullvalueformatconfiguration

NumericFormatConfiguration

The formatting configuration for numeric DateTime fields.

public object NumericFormatConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-datetimeformatconfiguration.html#cfn-quicksight-dashboard-datetimeformatconfiguration-numericformatconfiguration

Implements

CfnDashboard.IDateTimeFormatConfigurationProperty
Back to top Generated by DocFX