Show / Hide Table of Contents

Class CfnDashboardPropsMixin.ParametersProperty

A list of Quick Sight parameters and the list's override values.

Inheritance
object
CfnDashboardPropsMixin.ParametersProperty
Implements
CfnDashboardPropsMixin.IParametersProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.ParametersProperty : CfnDashboardPropsMixin.IParametersProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.ParametersProperty Implements CfnDashboardPropsMixin.IParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var parametersProperty = new ParametersProperty {
                 DateTimeParameters = new [] { new DateTimeParameterProperty {
                     Name = "name",
                     Values = new [] { "values" }
                 } },
                 DecimalParameters = new [] { new DecimalParameterProperty {
                     Name = "name",
                     Values = new [] { 123 }
                 } },
                 IntegerParameters = new [] { new IntegerParameterProperty {
                     Name = "name",
                     Values = new [] { 123 }
                 } },
                 StringParameters = new [] { new StringParameterProperty {
                     Name = "name",
                     Values = new [] { "values" }
                 } }
             };

Synopsis

Constructors

ParametersProperty()

A list of Quick Sight parameters and the list's override values.

Properties

DateTimeParameters

The parameters that have a data type of date-time.

DecimalParameters

The parameters that have a data type of decimal.

IntegerParameters

The parameters that have a data type of integer.

StringParameters

The parameters that have a data type of string.

Constructors

ParametersProperty()

A list of Quick Sight parameters and the list's override values.

public ParametersProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var parametersProperty = new ParametersProperty {
                 DateTimeParameters = new [] { new DateTimeParameterProperty {
                     Name = "name",
                     Values = new [] { "values" }
                 } },
                 DecimalParameters = new [] { new DecimalParameterProperty {
                     Name = "name",
                     Values = new [] { 123 }
                 } },
                 IntegerParameters = new [] { new IntegerParameterProperty {
                     Name = "name",
                     Values = new [] { 123 }
                 } },
                 StringParameters = new [] { new StringParameterProperty {
                     Name = "name",
                     Values = new [] { "values" }
                 } }
             };

Properties

DateTimeParameters

The parameters that have a data type of date-time.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.html#cfn-quicksight-dashboard-parameters-datetimeparameters

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IDateTimeParameterProperty)[]

DecimalParameters

The parameters that have a data type of decimal.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.html#cfn-quicksight-dashboard-parameters-decimalparameters

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IDecimalParameterProperty)[]

IntegerParameters

The parameters that have a data type of integer.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.html#cfn-quicksight-dashboard-parameters-integerparameters

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IIntegerParameterProperty)[]

StringParameters

The parameters that have a data type of string.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-parameters.html#cfn-quicksight-dashboard-parameters-stringparameters

Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IStringParameterProperty)[]

Implements

CfnDashboardPropsMixin.IParametersProperty
Back to top Generated by DocFX