Show / Hide Table of Contents

Class CfnDataSetPropsMixin.StringDatasetParameterProperty

A string parameter that is created in the dataset.

Inheritance
object
CfnDataSetPropsMixin.StringDatasetParameterProperty
Implements
CfnDataSetPropsMixin.IStringDatasetParameterProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDataSetPropsMixin.StringDatasetParameterProperty : CfnDataSetPropsMixin.IStringDatasetParameterProperty
Syntax (vb)
Public Class CfnDataSetPropsMixin.StringDatasetParameterProperty Implements CfnDataSetPropsMixin.IStringDatasetParameterProperty
Remarks

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

             var stringDatasetParameterProperty = new StringDatasetParameterProperty {
                 DefaultValues = new StringDatasetParameterDefaultValuesProperty {
                     StaticValues = new [] { "staticValues" }
                 },
                 Id = "id",
                 Name = "name",
                 ValueType = "valueType"
             };

Synopsis

Constructors

StringDatasetParameterProperty()

A string parameter that is created in the dataset.

Properties

DefaultValues

A list of default values for a given string dataset parameter type.

Id

An identifier for the string parameter that is created in the dataset.

Name

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

ValueType

The value type of the dataset parameter.

Constructors

StringDatasetParameterProperty()

A string parameter that is created in the dataset.

public StringDatasetParameterProperty()
Remarks

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

             var stringDatasetParameterProperty = new StringDatasetParameterProperty {
                 DefaultValues = new StringDatasetParameterDefaultValuesProperty {
                     StaticValues = new [] { "staticValues" }
                 },
                 Id = "id",
                 Name = "name",
                 ValueType = "valueType"
             };

Properties

DefaultValues

A list of default values for a given string dataset parameter type.

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-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-defaultvalues

Type union: either IResolvable or CfnDataSetPropsMixin.IStringDatasetParameterDefaultValuesProperty

Id

An identifier for the string parameter that is 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-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-id

Name

The name of the string 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-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-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-stringdatasetparameter.html#cfn-quicksight-dataset-stringdatasetparameter-valuetype

Implements

CfnDataSetPropsMixin.IStringDatasetParameterProperty
Back to top Generated by DocFX