Show / Hide Table of Contents

Class CfnDashboardPropsMixin.IntegerDefaultValuesProperty

The default values of the IntegerParameterDeclaration .

Inheritance
object
CfnDashboardPropsMixin.IntegerDefaultValuesProperty
Implements
CfnDashboardPropsMixin.IIntegerDefaultValuesProperty
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 CfnDashboardPropsMixin.IntegerDefaultValuesProperty : CfnDashboardPropsMixin.IIntegerDefaultValuesProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.IntegerDefaultValuesProperty Implements CfnDashboardPropsMixin.IIntegerDefaultValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-integerdefaultvalues.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 integerDefaultValuesProperty = new IntegerDefaultValuesProperty {
                 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

IntegerDefaultValuesProperty()

The default values of the IntegerParameterDeclaration .

Properties

DynamicValue

The dynamic value of the IntegerDefaultValues .

StaticValues

The static values of the IntegerDefaultValues .

Constructors

IntegerDefaultValuesProperty()

The default values of the IntegerParameterDeclaration .

public IntegerDefaultValuesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-integerdefaultvalues.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 integerDefaultValuesProperty = new IntegerDefaultValuesProperty {
                 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 IntegerDefaultValues .

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-dashboard-integerdefaultvalues.html#cfn-quicksight-dashboard-integerdefaultvalues-dynamicvalue

Type union: either IResolvable or CfnDashboardPropsMixin.IDynamicDefaultValueProperty

StaticValues

The static values of the IntegerDefaultValues .

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

object

Remarks

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

Type union: either (double)[] or IResolvable

Implements

CfnDashboardPropsMixin.IIntegerDefaultValuesProperty
Back to top Generated by DocFX