Class CfnAnalysis.SetParameterValueConfigurationProperty
The configuration of adding parameters in action.
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.SetParameterValueConfigurationProperty : CfnAnalysis.ISetParameterValueConfigurationProperty
Syntax (vb)
Public Class CfnAnalysis.SetParameterValueConfigurationProperty Implements CfnAnalysis.ISetParameterValueConfigurationProperty
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.AWS.QuickSight;
var setParameterValueConfigurationProperty = new SetParameterValueConfigurationProperty {
DestinationParameterName = "destinationParameterName",
Value = new DestinationParameterValueConfigurationProperty {
CustomValuesConfiguration = new CustomValuesConfigurationProperty {
CustomValues = new CustomParameterValuesProperty {
DateTimeValues = new [] { "dateTimeValues" },
DecimalValues = new [] { 123 },
IntegerValues = new [] { 123 },
StringValues = new [] { "stringValues" }
},
// the properties below are optional
IncludeNullValue = false
},
SelectAllValueOptions = "selectAllValueOptions",
SourceColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SourceField = "sourceField",
SourceParameterName = "sourceParameterName"
}
};
Synopsis
Constructors
SetParameterValueConfigurationProperty() | The configuration of adding parameters in action. |
Properties
DestinationParameterName | The destination parameter name of the |
Value | The configuration of adding parameters in action. |
Constructors
SetParameterValueConfigurationProperty()
The configuration of adding parameters in action.
public SetParameterValueConfigurationProperty()
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.AWS.QuickSight;
var setParameterValueConfigurationProperty = new SetParameterValueConfigurationProperty {
DestinationParameterName = "destinationParameterName",
Value = new DestinationParameterValueConfigurationProperty {
CustomValuesConfiguration = new CustomValuesConfigurationProperty {
CustomValues = new CustomParameterValuesProperty {
DateTimeValues = new [] { "dateTimeValues" },
DecimalValues = new [] { 123 },
IntegerValues = new [] { 123 },
StringValues = new [] { "stringValues" }
},
// the properties below are optional
IncludeNullValue = false
},
SelectAllValueOptions = "selectAllValueOptions",
SourceColumn = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
SourceField = "sourceField",
SourceParameterName = "sourceParameterName"
}
};
Properties
DestinationParameterName
The destination parameter name of the SetParameterValueConfiguration
.
public string DestinationParameterName { get; set; }
Property Value
Remarks
Value
The configuration of adding parameters in action.
public object Value { get; set; }