Show / Hide Table of Contents

Class CfnAnalysisPropsMixin.DecimalDefaultValuesProperty

The default values of the DecimalParameterDeclaration .

Inheritance
object
CfnAnalysisPropsMixin.DecimalDefaultValuesProperty
Implements
CfnAnalysisPropsMixin.IDecimalDefaultValuesProperty
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.DecimalDefaultValuesProperty : CfnAnalysisPropsMixin.IDecimalDefaultValuesProperty
Syntax (vb)
Public Class CfnAnalysisPropsMixin.DecimalDefaultValuesProperty Implements CfnAnalysisPropsMixin.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.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 DecimalParameterDeclaration .

Properties

DynamicValue

The dynamic value of the DecimalDefaultValues .

StaticValues

The static values of the DecimalDefaultValues .

Constructors

DecimalDefaultValuesProperty()

The default values of the DecimalParameterDeclaration .

public DecimalDefaultValuesProperty()
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.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

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

Type union: either IResolvable or CfnAnalysisPropsMixin.IDynamicDefaultValueProperty

StaticValues

The static values of the DecimalDefaultValues .

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

object

Remarks

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

Type union: either (double)[] or IResolvable

Implements

CfnAnalysisPropsMixin.IDecimalDefaultValuesProperty
Back to top Generated by DocFX