Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion packages/@aws-cdk/aws-autoscaling/lib/auto-scaling-group.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,9 @@ export interface CommonAutoScalingGroupProps {
/**
* Initial amount of instances in the fleet
*
* @default 1
* @default - If minCapacity is provided, it will be used as the desired capacity.
* If minCapacity is not set, then maxCapacity will be used if it's provided.
* If neither minCapacity or maxCapacity is set, a default of 1 will be used.
*/
readonly desiredCapacity?: number;

Expand Down