All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.ec2.model.LaunchTemplateSpotMarketOptions Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Amazon EC2 module holds the client classes that are used for communicating with Amazon EC2 Service

There is a newer version: 1.12.772
Show newest version
/*
 * 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;

/**
 * 

* The options for Spot Instances. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LaunchTemplateSpotMarketOptions implements Serializable, Cloneable { /** *

* The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this parameter * because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current * Spot price. *

* *

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

*
*/ private String maxPrice; /** *

* The Spot Instance request type. *

*/ private String spotInstanceType; /** *

* The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). *

*/ private Integer blockDurationMinutes; /** *

* The end date of the request. For a one-time request, the request remains active until all instances launch, the * request is canceled, or this date is reached. If the request is persistent, it remains active until it is * canceled or this date and time is reached. *

*/ private java.util.Date validUntil; /** *

* The behavior when a Spot Instance is interrupted. *

*/ private String instanceInterruptionBehavior; /** *

* The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this parameter * because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current * Spot price. *

* *

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

*
* * @param maxPrice * The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this * parameter because it can lead to increased interruptions. If you do not specify this parameter, you will * pay the current Spot price.

*

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

*/ public void setMaxPrice(String maxPrice) { this.maxPrice = maxPrice; } /** *

* The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this parameter * because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current * Spot price. *

* *

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

*
* * @return The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this * parameter because it can lead to increased interruptions. If you do not specify this parameter, you will * pay the current Spot price.

*

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do * not specify this parameter. *

*/ public String getMaxPrice() { return this.maxPrice; } /** *

* The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this parameter * because it can lead to increased interruptions. If you do not specify this parameter, you will pay the current * Spot price. *

* *

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

*
* * @param maxPrice * The maximum hourly price you're willing to pay for the Spot Instances. We do not recommend using this * parameter because it can lead to increased interruptions. If you do not specify this parameter, you will * pay the current Spot price.

*

* If you specify a maximum price, your Spot Instances will be interrupted more frequently than if you do not * specify this parameter. *

* @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateSpotMarketOptions withMaxPrice(String maxPrice) { setMaxPrice(maxPrice); return this; } /** *

* The Spot Instance request type. *

* * @param spotInstanceType * The Spot Instance request type. * @see SpotInstanceType */ public void setSpotInstanceType(String spotInstanceType) { this.spotInstanceType = spotInstanceType; } /** *

* The Spot Instance request type. *

* * @return The Spot Instance request type. * @see SpotInstanceType */ public String getSpotInstanceType() { return this.spotInstanceType; } /** *

* The Spot Instance request type. *

* * @param spotInstanceType * The Spot Instance request type. * @return Returns a reference to this object so that method calls can be chained together. * @see SpotInstanceType */ public LaunchTemplateSpotMarketOptions withSpotInstanceType(String spotInstanceType) { setSpotInstanceType(spotInstanceType); return this; } /** *

* The Spot Instance request type. *

* * @param spotInstanceType * The Spot Instance request type. * @return Returns a reference to this object so that method calls can be chained together. * @see SpotInstanceType */ public LaunchTemplateSpotMarketOptions withSpotInstanceType(SpotInstanceType spotInstanceType) { this.spotInstanceType = spotInstanceType.toString(); return this; } /** *

* The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). *

* * @param blockDurationMinutes * The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). */ public void setBlockDurationMinutes(Integer blockDurationMinutes) { this.blockDurationMinutes = blockDurationMinutes; } /** *

* The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). *

* * @return The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be * a multiple of 60 (60, 120, 180, 240, 300, or 360). */ public Integer getBlockDurationMinutes() { return this.blockDurationMinutes; } /** *

* The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). *

* * @param blockDurationMinutes * The required duration for the Spot Instances (also known as Spot blocks), in minutes. This value must be a * multiple of 60 (60, 120, 180, 240, 300, or 360). * @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateSpotMarketOptions withBlockDurationMinutes(Integer blockDurationMinutes) { setBlockDurationMinutes(blockDurationMinutes); return this; } /** *

* The end date of the request. For a one-time request, the request remains active until all instances launch, the * request is canceled, or this date is reached. If the request is persistent, it remains active until it is * canceled or this date and time is reached. *

* * @param validUntil * The end date of the request. For a one-time request, the request remains active until all instances * launch, the request is canceled, or this date is reached. If the request is persistent, it remains active * until it is canceled or this date and time is reached. */ public void setValidUntil(java.util.Date validUntil) { this.validUntil = validUntil; } /** *

* The end date of the request. For a one-time request, the request remains active until all instances launch, the * request is canceled, or this date is reached. If the request is persistent, it remains active until it is * canceled or this date and time is reached. *

* * @return The end date of the request. For a one-time request, the request remains active until all instances * launch, the request is canceled, or this date is reached. If the request is persistent, it remains active * until it is canceled or this date and time is reached. */ public java.util.Date getValidUntil() { return this.validUntil; } /** *

* The end date of the request. For a one-time request, the request remains active until all instances launch, the * request is canceled, or this date is reached. If the request is persistent, it remains active until it is * canceled or this date and time is reached. *

* * @param validUntil * The end date of the request. For a one-time request, the request remains active until all instances * launch, the request is canceled, or this date is reached. If the request is persistent, it remains active * until it is canceled or this date and time is reached. * @return Returns a reference to this object so that method calls can be chained together. */ public LaunchTemplateSpotMarketOptions withValidUntil(java.util.Date validUntil) { setValidUntil(validUntil); return this; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @see InstanceInterruptionBehavior */ public void setInstanceInterruptionBehavior(String instanceInterruptionBehavior) { this.instanceInterruptionBehavior = instanceInterruptionBehavior; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @return The behavior when a Spot Instance is interrupted. * @see InstanceInterruptionBehavior */ public String getInstanceInterruptionBehavior() { return this.instanceInterruptionBehavior; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceInterruptionBehavior */ public LaunchTemplateSpotMarketOptions withInstanceInterruptionBehavior(String instanceInterruptionBehavior) { setInstanceInterruptionBehavior(instanceInterruptionBehavior); return this; } /** *

* The behavior when a Spot Instance is interrupted. *

* * @param instanceInterruptionBehavior * The behavior when a Spot Instance is interrupted. * @return Returns a reference to this object so that method calls can be chained together. * @see InstanceInterruptionBehavior */ public LaunchTemplateSpotMarketOptions withInstanceInterruptionBehavior(InstanceInterruptionBehavior instanceInterruptionBehavior) { this.instanceInterruptionBehavior = instanceInterruptionBehavior.toString(); return this; } /** * Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be * redacted from this string using a placeholder value. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getMaxPrice() != null) sb.append("MaxPrice: ").append(getMaxPrice()).append(","); if (getSpotInstanceType() != null) sb.append("SpotInstanceType: ").append(getSpotInstanceType()).append(","); if (getBlockDurationMinutes() != null) sb.append("BlockDurationMinutes: ").append(getBlockDurationMinutes()).append(","); if (getValidUntil() != null) sb.append("ValidUntil: ").append(getValidUntil()).append(","); if (getInstanceInterruptionBehavior() != null) sb.append("InstanceInterruptionBehavior: ").append(getInstanceInterruptionBehavior()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LaunchTemplateSpotMarketOptions == false) return false; LaunchTemplateSpotMarketOptions other = (LaunchTemplateSpotMarketOptions) obj; if (other.getMaxPrice() == null ^ this.getMaxPrice() == null) return false; if (other.getMaxPrice() != null && other.getMaxPrice().equals(this.getMaxPrice()) == false) return false; if (other.getSpotInstanceType() == null ^ this.getSpotInstanceType() == null) return false; if (other.getSpotInstanceType() != null && other.getSpotInstanceType().equals(this.getSpotInstanceType()) == false) return false; if (other.getBlockDurationMinutes() == null ^ this.getBlockDurationMinutes() == null) return false; if (other.getBlockDurationMinutes() != null && other.getBlockDurationMinutes().equals(this.getBlockDurationMinutes()) == false) return false; if (other.getValidUntil() == null ^ this.getValidUntil() == null) return false; if (other.getValidUntil() != null && other.getValidUntil().equals(this.getValidUntil()) == false) return false; if (other.getInstanceInterruptionBehavior() == null ^ this.getInstanceInterruptionBehavior() == null) return false; if (other.getInstanceInterruptionBehavior() != null && other.getInstanceInterruptionBehavior().equals(this.getInstanceInterruptionBehavior()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getMaxPrice() == null) ? 0 : getMaxPrice().hashCode()); hashCode = prime * hashCode + ((getSpotInstanceType() == null) ? 0 : getSpotInstanceType().hashCode()); hashCode = prime * hashCode + ((getBlockDurationMinutes() == null) ? 0 : getBlockDurationMinutes().hashCode()); hashCode = prime * hashCode + ((getValidUntil() == null) ? 0 : getValidUntil().hashCode()); hashCode = prime * hashCode + ((getInstanceInterruptionBehavior() == null) ? 0 : getInstanceInterruptionBehavior().hashCode()); return hashCode; } @Override public LaunchTemplateSpotMarketOptions clone() { try { return (LaunchTemplateSpotMarketOptions) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy