Show / Hide Table of Contents

Interface CfnAnalysis.IDecimalDefaultValuesProperty

The default values of the DecimalParameterDeclaration .

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysis.IDecimalDefaultValuesProperty
Syntax (vb)
Public Interface CfnAnalysis.IDecimalDefaultValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-decimaldefaultvalues.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 decimalDefaultValuesProperty = new DecimalDefaultValuesProperty {
                 DynamicValue = new DynamicDefaultValueProperty {
                     DefaultValueColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },

                     // the properties below are optional
                     GroupNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },
                     UserNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     }
                 },
                 StaticValues = new [] { 123 }
             };

Synopsis

Properties

DynamicValue

The dynamic value of the DecimalDefaultValues .

StaticValues

The static values of the DecimalDefaultValues .

Properties

DynamicValue

The dynamic value of the DecimalDefaultValues .

object? DynamicValue { get; }
Property Value

object

Remarks

Different defaults are displayed according to users, groups, and values mapping.

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

StaticValues

The static values of the DecimalDefaultValues .

object? StaticValues { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX