Show / Hide Table of Contents

Class CfnDashboardPropsMixin.CustomValuesConfigurationProperty

The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-customvaluesconfiguration.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 customValuesConfigurationProperty = new CustomValuesConfigurationProperty {
                 CustomValues = new CustomParameterValuesProperty {
                     DateTimeValues = new [] { "dateTimeValues" },
                     DecimalValues = new [] { 123 },
                     IntegerValues = new [] { 123 },
                     StringValues = new [] { "stringValues" }
                 },
                 IncludeNullValue = false
             };

Synopsis

Constructors

CustomValuesConfigurationProperty()

The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

Properties

CustomValues

The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

IncludeNullValue

Includes the null value in custom action parameter values.

Constructors

CustomValuesConfigurationProperty()

The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

public CustomValuesConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-customvaluesconfiguration.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 customValuesConfigurationProperty = new CustomValuesConfigurationProperty {
                 CustomValues = new CustomParameterValuesProperty {
                     DateTimeValues = new [] { "dateTimeValues" },
                     DecimalValues = new [] { 123 },
                     IntegerValues = new [] { 123 },
                     StringValues = new [] { "stringValues" }
                 },
                 IncludeNullValue = false
             };

Properties

CustomValues

The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .

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

object

Remarks

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

Type union: either IResolvable or CfnDashboardPropsMixin.ICustomParameterValuesProperty

IncludeNullValue

Includes the null value in custom action parameter values.

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

object

Remarks

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

Type union: either bool or IResolvable

Implements

CfnDashboardPropsMixin.ICustomValuesConfigurationProperty
Back to top Generated by DocFX