/*
* Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.ModifyFleetRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ModifyFleetRequest extends AmazonWebServiceRequest implements Serializable, Cloneable, DryRunSupportedRequest
* Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is
* decreased below the current size of the EC2 Fleet.
*
* Supported only for fleets of type
* The launch template and overrides.
*
* The ID of the EC2 Fleet.
*
* The size of the EC2 Fleet.
*
* Reserved.
*
* Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is
* decreased below the current size of the EC2 Fleet.
*
* Supported only for fleets of type maintain
.
* maintain
.
*
* Supported only for fleets of type maintain
.
* @see FleetExcessCapacityTerminationPolicy
*/
public void setExcessCapacityTerminationPolicy(String excessCapacityTerminationPolicy) {
this.excessCapacityTerminationPolicy = excessCapacityTerminationPolicy;
}
/**
*
* Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is * decreased below the current size of the EC2 Fleet. *
*
* Supported only for fleets of type maintain
.
*
* Supported only for fleets of type maintain
.
* @see FleetExcessCapacityTerminationPolicy
*/
public String getExcessCapacityTerminationPolicy() {
return this.excessCapacityTerminationPolicy;
}
/**
*
* Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is * decreased below the current size of the EC2 Fleet. *
*
* Supported only for fleets of type maintain
.
*
* Supported only for fleets of type maintain
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see FleetExcessCapacityTerminationPolicy
*/
public ModifyFleetRequest withExcessCapacityTerminationPolicy(String excessCapacityTerminationPolicy) {
setExcessCapacityTerminationPolicy(excessCapacityTerminationPolicy);
return this;
}
/**
*
* Indicates whether running instances should be terminated if the total target capacity of the EC2 Fleet is * decreased below the current size of the EC2 Fleet. *
*
* Supported only for fleets of type maintain
.
*
* Supported only for fleets of type maintain
.
* @return Returns a reference to this object so that method calls can be chained together.
* @see FleetExcessCapacityTerminationPolicy
*/
public ModifyFleetRequest withExcessCapacityTerminationPolicy(FleetExcessCapacityTerminationPolicy excessCapacityTerminationPolicy) {
this.excessCapacityTerminationPolicy = excessCapacityTerminationPolicy.toString();
return this;
}
/**
*
* The launch template and overrides. *
* * @return The launch template and overrides. */ public java.util.List* The launch template and overrides. *
* * @param launchTemplateConfigs * The launch template and overrides. */ public void setLaunchTemplateConfigs(java.util.Collection* The launch template and overrides. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setLaunchTemplateConfigs(java.util.Collection)} or * {@link #withLaunchTemplateConfigs(java.util.Collection)} if you want to override the existing values. *
* * @param launchTemplateConfigs * The launch template and overrides. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyFleetRequest withLaunchTemplateConfigs(FleetLaunchTemplateConfigRequest... launchTemplateConfigs) { if (this.launchTemplateConfigs == null) { setLaunchTemplateConfigs(new com.amazonaws.internal.SdkInternalList* The launch template and overrides. *
* * @param launchTemplateConfigs * The launch template and overrides. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyFleetRequest withLaunchTemplateConfigs(java.util.Collection* The ID of the EC2 Fleet. *
* * @param fleetId * The ID of the EC2 Fleet. */ public void setFleetId(String fleetId) { this.fleetId = fleetId; } /** ** The ID of the EC2 Fleet. *
* * @return The ID of the EC2 Fleet. */ public String getFleetId() { return this.fleetId; } /** ** The ID of the EC2 Fleet. *
* * @param fleetId * The ID of the EC2 Fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyFleetRequest withFleetId(String fleetId) { setFleetId(fleetId); return this; } /** ** The size of the EC2 Fleet. *
* * @param targetCapacitySpecification * The size of the EC2 Fleet. */ public void setTargetCapacitySpecification(TargetCapacitySpecificationRequest targetCapacitySpecification) { this.targetCapacitySpecification = targetCapacitySpecification; } /** ** The size of the EC2 Fleet. *
* * @return The size of the EC2 Fleet. */ public TargetCapacitySpecificationRequest getTargetCapacitySpecification() { return this.targetCapacitySpecification; } /** ** The size of the EC2 Fleet. *
* * @param targetCapacitySpecification * The size of the EC2 Fleet. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyFleetRequest withTargetCapacitySpecification(TargetCapacitySpecificationRequest targetCapacitySpecification) { setTargetCapacitySpecification(targetCapacitySpecification); return this; } /** ** Reserved. *
* * @param context * Reserved. */ public void setContext(String context) { this.context = context; } /** ** Reserved. *
* * @return Reserved. */ public String getContext() { return this.context; } /** ** Reserved. *
* * @param context * Reserved. * @return Returns a reference to this object so that method calls can be chained together. */ public ModifyFleetRequest withContext(String context) { setContext(context); return this; } /** * This method is intended for internal use only. Returns the marshaled request configured with additional * parameters to enable operation dry-run. */ @Override public Request