Show / Hide Table of Contents

Class CfnTemplatePropsMixin.DecimalParameterDeclarationProperty

A parameter declaration for the Decimal data type.

Inheritance
object
CfnTemplatePropsMixin.DecimalParameterDeclarationProperty
Implements
CfnTemplatePropsMixin.IDecimalParameterDeclarationProperty
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.DecimalParameterDeclarationProperty : CfnTemplatePropsMixin.IDecimalParameterDeclarationProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.DecimalParameterDeclarationProperty Implements CfnTemplatePropsMixin.IDecimalParameterDeclarationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.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 decimalParameterDeclarationProperty = new DecimalParameterDeclarationProperty {
                 DefaultValues = 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 }
                 },
                 MappedDataSetParameters = new [] { new MappedDataSetParameterProperty {
                     DataSetIdentifier = "dataSetIdentifier",
                     DataSetParameterName = "dataSetParameterName"
                 } },
                 Name = "name",
                 ParameterValueType = "parameterValueType",
                 ValueWhenUnset = new DecimalValueWhenUnsetConfigurationProperty {
                     CustomValue = 123,
                     ValueWhenUnsetOption = "valueWhenUnsetOption"
                 }
             };

Synopsis

Constructors

DecimalParameterDeclarationProperty()

A parameter declaration for the Decimal data type.

Properties

DefaultValues

The default values of a parameter.

MappedDataSetParameters

A parameter declaration for the Decimal data type.

Name

The name of the parameter that is being declared.

ParameterValueType

The value type determines whether the parameter is a single-value or multi-value parameter.

ValueWhenUnset

The configuration that defines the default value of a Decimal parameter when a value has not been set.

Constructors

DecimalParameterDeclarationProperty()

A parameter declaration for the Decimal data type.

public DecimalParameterDeclarationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.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 decimalParameterDeclarationProperty = new DecimalParameterDeclarationProperty {
                 DefaultValues = 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 }
                 },
                 MappedDataSetParameters = new [] { new MappedDataSetParameterProperty {
                     DataSetIdentifier = "dataSetIdentifier",
                     DataSetParameterName = "dataSetParameterName"
                 } },
                 Name = "name",
                 ParameterValueType = "parameterValueType",
                 ValueWhenUnset = new DecimalValueWhenUnsetConfigurationProperty {
                     CustomValue = 123,
                     ValueWhenUnsetOption = "valueWhenUnsetOption"
                 }
             };

Properties

DefaultValues

The default values of a parameter.

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

object

Remarks

If the parameter is a single-value parameter, a maximum of one default value can be provided.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.html#cfn-quicksight-template-decimalparameterdeclaration-defaultvalues

Type union: either IResolvable or CfnTemplatePropsMixin.IDecimalDefaultValuesProperty

MappedDataSetParameters

A parameter declaration for the Decimal data type.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.html#cfn-quicksight-template-decimalparameterdeclaration-mappeddatasetparameters

Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.IMappedDataSetParameterProperty)[]

Name

The name of the parameter that is being declared.

public string? Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.html#cfn-quicksight-template-decimalparameterdeclaration-name

ParameterValueType

The value type determines whether the parameter is a single-value or multi-value parameter.

public string? ParameterValueType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.html#cfn-quicksight-template-decimalparameterdeclaration-parametervaluetype

ValueWhenUnset

The configuration that defines the default value of a Decimal parameter when a value has not been set.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-decimalparameterdeclaration.html#cfn-quicksight-template-decimalparameterdeclaration-valuewhenunset

Type union: either IResolvable or CfnTemplatePropsMixin.IDecimalValueWhenUnsetConfigurationProperty

Implements

CfnTemplatePropsMixin.IDecimalParameterDeclarationProperty
Back to top Generated by DocFX