Show / Hide Table of Contents

Interface CfnDataSetPropsMixin.INewDefaultValuesProperty

The new default values for the parameter.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDataSetPropsMixin.INewDefaultValuesProperty
Syntax (vb)
Public Interface CfnDataSetPropsMixin.INewDefaultValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.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 newDefaultValuesProperty = new NewDefaultValuesProperty {
                 DateTimeStaticValues = new [] { "dateTimeStaticValues" },
                 DecimalStaticValues = new [] { 123 },
                 IntegerStaticValues = new [] { 123 },
                 StringStaticValues = new [] { "stringStaticValues" }
             };

Synopsis

Properties

DateTimeStaticValues

A list of static default values for a given date time parameter.

DecimalStaticValues

A list of static default values for a given decimal parameter.

IntegerStaticValues

A list of static default values for a given integer parameter.

StringStaticValues

A list of static default values for a given string parameter.

Properties

DateTimeStaticValues

A list of static default values for a given date time parameter.

string[]? DateTimeStaticValues { get; }
Property Value

string[]

Remarks

The valid format for this property is yyyy-MM-dd’T’HH:mm:ss’Z’ .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-datetimestaticvalues

DecimalStaticValues

A list of static default values for a given decimal parameter.

object? DecimalStaticValues { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-decimalstaticvalues

Type union: either (double)[] or IResolvable

IntegerStaticValues

A list of static default values for a given integer parameter.

object? IntegerStaticValues { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-integerstaticvalues

Type union: either (double)[] or IResolvable

StringStaticValues

A list of static default values for a given string parameter.

string[]? StringStaticValues { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-newdefaultvalues.html#cfn-quicksight-dataset-newdefaultvalues-stringstaticvalues

Back to top Generated by DocFX