Interface CfnDashboard.IntegerParameterProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.IntegerParameterProperty.Jsii$Proxy
- Enclosing class:
- CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.IntegerParameterProperty
extends software.amazon.jsii.JsiiSerializable
An integer parameter.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
IntegerParameterProperty integerParameterProperty = IntegerParameterProperty.builder()
.name("name")
.values(List.of(123))
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.IntegerParameterPropertystatic final classAn implementation forCfnDashboard.IntegerParameterProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getName
The name of the integer parameter. -
getValues
The values for the integer parameter. -
builder
-