/* * 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.simpleemailv2.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* Contains information about a dedicated IP address that is associated with your Amazon SES account. *

*

* To learn more about requesting dedicated IP addresses, see Requesting and Relinquishing * Dedicated IP Addresses in the Amazon SES Developer Guide. *

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

* An IPv4 address. *

*/ private String ip; /** *

* The warm-up status of a dedicated IP address. The status can have one of the following values: *

* */ private String warmupStatus; /** *

* Indicates how complete the dedicated IP warm-up process is. When this value equals 1, the address has completed * the warm-up process and is ready for use. *

*/ private Integer warmupPercentage; /** *

* The name of the dedicated IP pool that the IP address is associated with. *

*/ private String poolName; /** *

* An IPv4 address. *

* * @param ip * An IPv4 address. */ public void setIp(String ip) { this.ip = ip; } /** *

* An IPv4 address. *

* * @return An IPv4 address. */ public String getIp() { return this.ip; } /** *

* An IPv4 address. *

* * @param ip * An IPv4 address. * @return Returns a reference to this object so that method calls can be chained together. */ public DedicatedIp withIp(String ip) { setIp(ip); return this; } /** *

* The warm-up status of a dedicated IP address. The status can have one of the following values: *

* * * @param warmupStatus * The warm-up status of a dedicated IP address. The status can have one of the following values:

*