There are more AWS SDK examples available in the AWS Doc SDK Examples
Use ModifySpotFleetRequest with a CLI
The following code examples show how to use ModifySpotFleetRequest.
- CLI
-
- AWS CLI
-
To modify a Spot fleet request
This example command updates the target capacity of the specified Spot fleet request.
Command:
aws ec2 modify-spot-fleet-request --target-capacity20--spot-fleet-request-idsfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLEOutput:
{ "Return": true }This example command decreases the target capacity of the specified Spot fleet request without terminating any Spot Instances as a result.
Command:
aws ec2 modify-spot-fleet-request --target-capacity10--excess-capacity-termination-policyNoTermination--spot-fleet-request-idssfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLEOutput:
{ "Return": true }-
For API details, see ModifySpotFleetRequest
in AWS CLI Command Reference.
-
- PowerShell
-
- Tools for PowerShell V4
-
Example 1: This example updates the target capacity of the specified Spot fleet request.
Edit-EC2SpotFleetRequest -SpotFleetRequestId sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE -TargetCapacity 10Output:
True-
For API details, see ModifySpotFleetRequest in AWS Tools for PowerShell Cmdlet Reference (V4).
-
- Tools for PowerShell V5
-
Example 1: This example updates the target capacity of the specified Spot fleet request.
Edit-EC2SpotFleetRequest -SpotFleetRequestId sfr-73fbd2ce-aa30-494c-8788-1cee4EXAMPLE -TargetCapacity 10Output:
True-
For API details, see ModifySpotFleetRequest in AWS Tools for PowerShell Cmdlet Reference (V5).
-