/* * 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; /** *
* Describes a Spot Fleet request. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class SpotFleetRequestConfig implements Serializable, Cloneable { /** *
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
* The creation date and time of the request. *
*/ private java.util.Date createTime; /** ** The configuration of the Spot Fleet request. *
*/ private SpotFleetRequestConfigData spotFleetRequestConfig; /** ** The ID of the Spot Fleet request. *
*/ private String spotFleetRequestId; /** ** The state of the Spot Fleet request. *
*/ private String spotFleetRequestState; /** ** The tags for a Spot Fleet resource. *
*/ private com.amazonaws.internal.SdkInternalList
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public void setActivityStatus(String activityStatus) {
this.activityStatus = activityStatus;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public String getActivityStatus() {
return this.activityStatus;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActivityStatus
*/
public SpotFleetRequestConfig withActivityStatus(String activityStatus) {
setActivityStatus(activityStatus);
return this;
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @see ActivityStatus
*/
public void setActivityStatus(ActivityStatus activityStatus) {
withActivityStatus(activityStatus);
}
/**
*
* The progress of the Spot Fleet request. If there is an error, the status is error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to or
* greater than its target capacity, the status is fulfilled
. If the size of the fleet is decreased,
* the status is pending_termination
while Spot Instances are terminating.
*
error
. After all
* requests are placed, the status is pending_fulfillment
. If the size of the fleet is equal to
* or greater than its target capacity, the status is fulfilled
. If the size of the fleet is
* decreased, the status is pending_termination
while Spot Instances are terminating.
* @return Returns a reference to this object so that method calls can be chained together.
* @see ActivityStatus
*/
public SpotFleetRequestConfig withActivityStatus(ActivityStatus activityStatus) {
this.activityStatus = activityStatus.toString();
return this;
}
/**
* * The creation date and time of the request. *
* * @param createTime * The creation date and time of the request. */ public void setCreateTime(java.util.Date createTime) { this.createTime = createTime; } /** ** The creation date and time of the request. *
* * @return The creation date and time of the request. */ public java.util.Date getCreateTime() { return this.createTime; } /** ** The creation date and time of the request. *
* * @param createTime * The creation date and time of the request. * @return Returns a reference to this object so that method calls can be chained together. */ public SpotFleetRequestConfig withCreateTime(java.util.Date createTime) { setCreateTime(createTime); return this; } /** ** The configuration of the Spot Fleet request. *
* * @param spotFleetRequestConfig * The configuration of the Spot Fleet request. */ public void setSpotFleetRequestConfig(SpotFleetRequestConfigData spotFleetRequestConfig) { this.spotFleetRequestConfig = spotFleetRequestConfig; } /** ** The configuration of the Spot Fleet request. *
* * @return The configuration of the Spot Fleet request. */ public SpotFleetRequestConfigData getSpotFleetRequestConfig() { return this.spotFleetRequestConfig; } /** ** The configuration of the Spot Fleet request. *
* * @param spotFleetRequestConfig * The configuration of the Spot Fleet request. * @return Returns a reference to this object so that method calls can be chained together. */ public SpotFleetRequestConfig withSpotFleetRequestConfig(SpotFleetRequestConfigData spotFleetRequestConfig) { setSpotFleetRequestConfig(spotFleetRequestConfig); return this; } /** ** The ID of the Spot Fleet request. *
* * @param spotFleetRequestId * The ID of the Spot Fleet request. */ public void setSpotFleetRequestId(String spotFleetRequestId) { this.spotFleetRequestId = spotFleetRequestId; } /** ** The ID of the Spot Fleet request. *
* * @return The ID of the Spot Fleet request. */ public String getSpotFleetRequestId() { return this.spotFleetRequestId; } /** ** The ID of the Spot Fleet request. *
* * @param spotFleetRequestId * The ID of the Spot Fleet request. * @return Returns a reference to this object so that method calls can be chained together. */ public SpotFleetRequestConfig withSpotFleetRequestId(String spotFleetRequestId) { setSpotFleetRequestId(spotFleetRequestId); return this; } /** ** The state of the Spot Fleet request. *
* * @param spotFleetRequestState * The state of the Spot Fleet request. * @see BatchState */ public void setSpotFleetRequestState(String spotFleetRequestState) { this.spotFleetRequestState = spotFleetRequestState; } /** ** The state of the Spot Fleet request. *
* * @return The state of the Spot Fleet request. * @see BatchState */ public String getSpotFleetRequestState() { return this.spotFleetRequestState; } /** ** The state of the Spot Fleet request. *
* * @param spotFleetRequestState * The state of the Spot Fleet request. * @return Returns a reference to this object so that method calls can be chained together. * @see BatchState */ public SpotFleetRequestConfig withSpotFleetRequestState(String spotFleetRequestState) { setSpotFleetRequestState(spotFleetRequestState); return this; } /** ** The state of the Spot Fleet request. *
* * @param spotFleetRequestState * The state of the Spot Fleet request. * @see BatchState */ public void setSpotFleetRequestState(BatchState spotFleetRequestState) { withSpotFleetRequestState(spotFleetRequestState); } /** ** The state of the Spot Fleet request. *
* * @param spotFleetRequestState * The state of the Spot Fleet request. * @return Returns a reference to this object so that method calls can be chained together. * @see BatchState */ public SpotFleetRequestConfig withSpotFleetRequestState(BatchState spotFleetRequestState) { this.spotFleetRequestState = spotFleetRequestState.toString(); return this; } /** ** The tags for a Spot Fleet resource. *
* * @return The tags for a Spot Fleet resource. */ public java.util.List* The tags for a Spot Fleet resource. *
* * @param tags * The tags for a Spot Fleet resource. */ public void setTags(java.util.Collection* The tags for a Spot Fleet resource. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTags(java.util.Collection)} or {@link #withTags(java.util.Collection)} if you want to override the * existing values. *
* * @param tags * The tags for a Spot Fleet resource. * @return Returns a reference to this object so that method calls can be chained together. */ public SpotFleetRequestConfig withTags(Tag... tags) { if (this.tags == null) { setTags(new com.amazonaws.internal.SdkInternalList* The tags for a Spot Fleet resource. *
* * @param tags * The tags for a Spot Fleet resource. * @return Returns a reference to this object so that method calls can be chained together. */ public SpotFleetRequestConfig withTags(java.util.Collection