package awsquicksight // The configuration of adding parameters in action. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // setParameterValueConfigurationProperty := &SetParameterValueConfigurationProperty{ // DestinationParameterName: jsii.String("destinationParameterName"), // Value: &DestinationParameterValueConfigurationProperty{ // CustomValuesConfiguration: &CustomValuesConfigurationProperty{ // CustomValues: &CustomParameterValuesProperty{ // DateTimeValues: []*string{ // jsii.String("dateTimeValues"), // }, // DecimalValues: []interface{}{ // jsii.Number(123), // }, // IntegerValues: []interface{}{ // jsii.Number(123), // }, // StringValues: []*string{ // jsii.String("stringValues"), // }, // }, // // // the properties below are optional // IncludeNullValue: jsii.Boolean(false), // }, // SelectAllValueOptions: jsii.String("selectAllValueOptions"), // SourceColumn: &ColumnIdentifierProperty{ // ColumnName: jsii.String("columnName"), // DataSetIdentifier: jsii.String("dataSetIdentifier"), // }, // SourceField: jsii.String("sourceField"), // SourceParameterName: jsii.String("sourceParameterName"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-setparametervalueconfiguration.html // type CfnTemplate_SetParameterValueConfigurationProperty struct { // The destination parameter name of the `SetParameterValueConfiguration` . // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-setparametervalueconfiguration.html#cfn-quicksight-template-setparametervalueconfiguration-destinationparametername // DestinationParameterName *string `field:"required" json:"destinationParameterName" yaml:"destinationParameterName"` // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-setparametervalueconfiguration.html#cfn-quicksight-template-setparametervalueconfiguration-value // Value interface{} `field:"required" json:"value" yaml:"value"` }