Show / Hide Table of Contents

Class CfnDataSet.IntegerDatasetParameterProperty

An integer parameter that is created in the dataset.

Inheritance
object
CfnDataSet.IntegerDatasetParameterProperty
Implements
CfnDataSet.IIntegerDatasetParameterProperty
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 CfnDataSet.IntegerDatasetParameterProperty : CfnDataSet.IIntegerDatasetParameterProperty
Syntax (vb)
Public Class CfnDataSet.IntegerDatasetParameterProperty Implements CfnDataSet.IIntegerDatasetParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.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 integerDatasetParameterProperty = new IntegerDatasetParameterProperty {
                 Id = "id",
                 Name = "name",
                 ValueType = "valueType",

                 // the properties below are optional
                 DefaultValues = new IntegerDatasetParameterDefaultValuesProperty {
                     StaticValues = new [] { 123 }
                 }
             };

Synopsis

Constructors

IntegerDatasetParameterProperty()

An integer parameter that is created in the dataset.

Properties

DefaultValues

A list of default values for a given integer parameter.

Id

An identifier for the integer parameter created in the dataset.

Name

The name of the integer parameter that is created in the dataset.

ValueType

The value type of the dataset parameter.

Constructors

IntegerDatasetParameterProperty()

An integer parameter that is created in the dataset.

public IntegerDatasetParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.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 integerDatasetParameterProperty = new IntegerDatasetParameterProperty {
                 Id = "id",
                 Name = "name",
                 ValueType = "valueType",

                 // the properties below are optional
                 DefaultValues = new IntegerDatasetParameterDefaultValuesProperty {
                     StaticValues = new [] { 123 }
                 }
             };

Properties

DefaultValues

A list of default values for a given integer parameter.

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

object

Remarks

This structure only accepts static values.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-defaultvalues

Id

An identifier for the integer parameter created in the dataset.

public string Id { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-id

Name

The name of the integer parameter that is created in the dataset.

public string Name { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-name

ValueType

The value type of the dataset parameter.

public string ValueType { get; set; }
Property Value

string

Remarks

Valid values are single value or multi value .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dataset-integerdatasetparameter.html#cfn-quicksight-dataset-integerdatasetparameter-valuetype

Implements

CfnDataSet.IIntegerDatasetParameterProperty
Back to top Generated by DocFX