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();