Show / Hide Table of Contents

Class CfnAnalysis.SetParameterValueConfigurationProperty

The configuration of adding parameters in action.

Inheritance
object
CfnAnalysis.SetParameterValueConfigurationProperty
Implements
CfnAnalysis.ISetParameterValueConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-setparametervalueconfiguration.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 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 SetParameterValueConfiguration .

Value

The configuration of adding parameters in action.

Constructors

SetParameterValueConfigurationProperty()

The configuration of adding parameters in action.

public SetParameterValueConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-setparametervalueconfiguration.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 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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-setparametervalueconfiguration.html#cfn-quicksight-analysis-setparametervalueconfiguration-destinationparametername

Value

The configuration of adding parameters in action.

public object Value { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-setparametervalueconfiguration.html#cfn-quicksight-analysis-setparametervalueconfiguration-value

Implements

CfnAnalysis.ISetParameterValueConfigurationProperty
Back to top Generated by DocFX