Interface CfnDashboardPropsMixin.IDestinationParameterValueConfigurationProperty
The configuration of destination parameter values.
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.IDestinationParameterValueConfigurationProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.IDestinationParameterValueConfigurationProperty
Remarks
This is a union type structure. For this structure to be valid, only one of the attributes can be defined.
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 destinationParameterValueConfigurationProperty = new DestinationParameterValueConfigurationProperty {
CustomValuesConfiguration = new CustomValuesConfigurationProperty {
CustomValues = new CustomParameterValuesProperty {
DateTimeValues = new [] { "dateTimeValues" },
DecimalValues = new [] { 123 },
IntegerValues = new [] { 123 },
StringValues = new [] { "stringValues" }
},
IncludeNullValue = false
},
SelectAllValueOptions = "selectAllValueOptions",
SourceColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SourceField = "sourceField",
SourceParameterName = "sourceParameterName"
};
Synopsis
Properties
| CustomValuesConfiguration | The configuration of custom values for destination parameter in |
| SelectAllValueOptions | The configuration that selects all options. |
| SourceColumn | A column of a data set. |
| SourceField | The source field ID of the destination parameter. |
| SourceParameterName | The source parameter name of the destination parameter. |
Properties
CustomValuesConfiguration
The configuration of custom values for destination parameter in DestinationParameterValueConfiguration .
object? CustomValuesConfiguration { get; }
Property Value
Remarks
Type union: either IResolvable or CfnDashboardPropsMixin.ICustomValuesConfigurationProperty
SelectAllValueOptions
The configuration that selects all options.
string? SelectAllValueOptions { get; }
Property Value
Remarks
SourceColumn
A column of a data set.
object? SourceColumn { get; }
Property Value
Remarks
Type union: either IResolvable or CfnDashboardPropsMixin.IColumnIdentifierProperty
SourceField
The source field ID of the destination parameter.
string? SourceField { get; }
Property Value
Remarks
SourceParameterName
The source parameter name of the destination parameter.
string? SourceParameterName { get; }