Show / Hide Table of Contents

Interface CfnDashboard.ICustomActionSetParametersOperationProperty

The set parameter operation that sets parameters in custom action.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDashboard.ICustomActionSetParametersOperationProperty
Syntax (vb)
Public Interface CfnDashboard.ICustomActionSetParametersOperationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-customactionsetparametersoperation.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.AWS.QuickSight;

             var customActionSetParametersOperationProperty = new CustomActionSetParametersOperationProperty {
                 ParameterValueConfigurations = new [] { 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

Properties

ParameterValueConfigurations

The parameter that determines the value configuration.

Properties

ParameterValueConfigurations

The parameter that determines the value configuration.

object ParameterValueConfigurations { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX