Class CfnAnalysisPropsMixin.DecimalDefaultValuesProperty
The default values of the DecimalParameterDeclaration .
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnAnalysisPropsMixin.DecimalDefaultValuesProperty : CfnAnalysisPropsMixin.IDecimalDefaultValuesProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.DecimalDefaultValuesProperty Implements CfnAnalysisPropsMixin.IDecimalDefaultValuesProperty
Remarks
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 decimalDefaultValuesProperty = new DecimalDefaultValuesProperty {
DynamicValue = new DynamicDefaultValueProperty {
DefaultValueColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
GroupNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
UserNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
StaticValues = new [] { 123 }
};
Synopsis
Constructors
| DecimalDefaultValuesProperty() | The default values of the |
Properties
| DynamicValue | The dynamic value of the |
| StaticValues | The static values of the |
Constructors
DecimalDefaultValuesProperty()
The default values of the DecimalParameterDeclaration .
public DecimalDefaultValuesProperty()
Remarks
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 decimalDefaultValuesProperty = new DecimalDefaultValuesProperty {
DynamicValue = new DynamicDefaultValueProperty {
DefaultValueColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
GroupNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
UserNameColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
StaticValues = new [] { 123 }
};
Properties
DynamicValue
The dynamic value of the DecimalDefaultValues .
public object? DynamicValue { get; set; }
Property Value
Remarks
Different defaults are displayed according to users, groups, and values mapping.
Type union: either IResolvable or CfnAnalysisPropsMixin.IDynamicDefaultValueProperty
StaticValues
The static values of the DecimalDefaultValues .
public object? StaticValues { get; set; }