Show / Hide Table of Contents

Class CfnAnalysis.StringDefaultValuesProperty

The default values of the StringParameterDeclaration .

Inheritance
object
CfnAnalysis.StringDefaultValuesProperty
Implements
CfnAnalysis.IStringDefaultValuesProperty
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.StringDefaultValuesProperty : CfnAnalysis.IStringDefaultValuesProperty
Syntax (vb)
Public Class CfnAnalysis.StringDefaultValuesProperty Implements CfnAnalysis.IStringDefaultValuesProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringdefaultvalues.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 stringDefaultValuesProperty = new StringDefaultValuesProperty {
                 DynamicValue = new DynamicDefaultValueProperty {
                     DefaultValueColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },

                     // the properties below are optional
                     GroupNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },
                     UserNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     }
                 },
                 StaticValues = new [] { "staticValues" }
             };

Synopsis

Constructors

StringDefaultValuesProperty()

The default values of the StringParameterDeclaration .

Properties

DynamicValue

The dynamic value of the StringDefaultValues .

StaticValues

The static values of the DecimalDefaultValues .

Constructors

StringDefaultValuesProperty()

The default values of the StringParameterDeclaration .

public StringDefaultValuesProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-stringdefaultvalues.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 stringDefaultValuesProperty = new StringDefaultValuesProperty {
                 DynamicValue = new DynamicDefaultValueProperty {
                     DefaultValueColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },

                     // the properties below are optional
                     GroupNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     },
                     UserNameColumn = new ColumnIdentifierProperty {
                         ColumnName = "columnName",
                         DataSetIdentifier = "dataSetIdentifier"
                     }
                 },
                 StaticValues = new [] { "staticValues" }
             };

Properties

DynamicValue

The dynamic value of the StringDefaultValues .

public object? DynamicValue { get; set; }
Property Value

object

Remarks

Different defaults displayed according to users, groups, and values mapping.

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

StaticValues

The static values of the DecimalDefaultValues .

public string[]? StaticValues { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnAnalysis.IStringDefaultValuesProperty
Back to top Generated by DocFX