Class CfnDashboardPropsMixin.ParametersProperty
A list of Quick Sight parameters and the list's override values.
Implements
Inherited Members
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
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
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
Remarks
DecimalParameters
The parameters that have a data type of decimal.
public object? DecimalParameters { get; set; }
Property Value
Remarks
IntegerParameters
The parameters that have a data type of integer.
public object? IntegerParameters { get; set; }
Property Value
Remarks
StringParameters
The parameters that have a data type of string.
public object? StringParameters { get; set; }