Interface RenderSignalsOptions
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
RenderSignalsOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:57.430Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forRenderSignalsOptions
static final class
An implementation forRenderSignalsOptions
-
Method Summary
Modifier and TypeMethodDescriptionstatic RenderSignalsOptions.Builder
builder()
default Number
The desiredCapacity of the ASG.default Number
The 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.Builder
ofRenderSignalsOptions
-