Class CfnDashboardPropsMixin.CustomValuesConfigurationProperty
The configuration of custom values for the destination parameter in DestinationParameterValueConfiguration .
Inherited Members
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
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 |
Properties
| CustomValues | The configuration of custom values for the destination parameter in |
| 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
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
Remarks
IncludeNullValue
Includes the null value in custom action parameter values.
public object? IncludeNullValue { get; set; }