Show / Hide Table of Contents

Class CfnTemplatePropsMixin.IntegerDefaultValuesProperty

The default values of the IntegerParameterDeclaration .

Inheritance
object
CfnTemplatePropsMixin.IntegerDefaultValuesProperty
Implements
CfnTemplatePropsMixin.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.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.IntegerDefaultValuesProperty : CfnTemplatePropsMixin.IIntegerDefaultValuesProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.IntegerDefaultValuesProperty Implements CfnTemplatePropsMixin.IIntegerDefaultValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-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.Mixins.Preview.AWS.QuickSight.Mixins;

             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-template-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.Mixins.Preview.AWS.QuickSight.Mixins;

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

Type union: either IResolvable or CfnTemplatePropsMixin.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-template-integerdefaultvalues.html#cfn-quicksight-template-integerdefaultvalues-staticvalues

Type union: either (double)[] or IResolvable

Implements

CfnTemplatePropsMixin.IIntegerDefaultValuesProperty
Back to top Generated by DocFX