Interface RenderSignalsOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RenderSignalsOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-20T23:37:15.136Z")
@Stability(Stable)
public interface RenderSignalsOptions
extends software.amazon.jsii.JsiiSerializable
Input for Signals.renderCreationPolicy.
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.autoscaling.*;
RenderSignalsOptions renderSignalsOptions = RenderSignalsOptions.builder()
.desiredCapacity(123)
.minCapacity(123)
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forRenderSignalsOptionsstatic final classAn implementation forRenderSignalsOptions -
Method Summary
Modifier and TypeMethodDescriptionstatic RenderSignalsOptions.Builderbuilder()default NumberThe desiredCapacity of the ASG.default NumberThe minSize of the ASG.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDesiredCapacity
The desiredCapacity of the ASG.Default: - desired capacity not configured
-
getMinCapacity
The minSize of the ASG.Default: - minCapacity not configured
-
builder
- Returns:
- a
RenderSignalsOptions.BuilderofRenderSignalsOptions
-