com.amazonaws.services.simpleemailv2.model.PutDedicatedIpInPoolRequest Maven / Gradle / Ivy
Show all versions of aws-java-sdk-sesv2 Show documentation
/*
* Copyright 2019-2024 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.AmazonWebServiceRequest;
/**
*
* A request to move a dedicated IP address to a dedicated IP pool.
*
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class PutDedicatedIpInPoolRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {
/**
*
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP
* address that's associated with your Amazon Web Services account.
*
*/
private String ip;
/**
*
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that
* already exists.
*
*/
private String destinationPoolName;
/**
*
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP
* address that's associated with your Amazon Web Services account.
*
*
* @param ip
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated
* IP address that's associated with your Amazon Web Services account.
*/
public void setIp(String ip) {
this.ip = ip;
}
/**
*
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP
* address that's associated with your Amazon Web Services account.
*
*
* @return The IP address that you want to move to the dedicated IP pool. The value you specify has to be a
* dedicated IP address that's associated with your Amazon Web Services account.
*/
public String getIp() {
return this.ip;
}
/**
*
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated IP
* address that's associated with your Amazon Web Services account.
*
*
* @param ip
* The IP address that you want to move to the dedicated IP pool. The value you specify has to be a dedicated
* IP address that's associated with your Amazon Web Services account.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutDedicatedIpInPoolRequest withIp(String ip) {
setIp(ip);
return this;
}
/**
*
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that
* already exists.
*
*
* @param destinationPoolName
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool
* that already exists.
*/
public void setDestinationPoolName(String destinationPoolName) {
this.destinationPoolName = destinationPoolName;
}
/**
*
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that
* already exists.
*
*
* @return The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool
* that already exists.
*/
public String getDestinationPoolName() {
return this.destinationPoolName;
}
/**
*
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool that
* already exists.
*
*
* @param destinationPoolName
* The name of the IP pool that you want to add the dedicated IP address to. You have to specify an IP pool
* that already exists.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public PutDedicatedIpInPoolRequest withDestinationPoolName(String destinationPoolName) {
setDestinationPoolName(destinationPoolName);
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 (getIp() != null)
sb.append("Ip: ").append(getIp()).append(",");
if (getDestinationPoolName() != null)
sb.append("DestinationPoolName: ").append(getDestinationPoolName());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof PutDedicatedIpInPoolRequest == false)
return false;
PutDedicatedIpInPoolRequest other = (PutDedicatedIpInPoolRequest) obj;
if (other.getIp() == null ^ this.getIp() == null)
return false;
if (other.getIp() != null && other.getIp().equals(this.getIp()) == false)
return false;
if (other.getDestinationPoolName() == null ^ this.getDestinationPoolName() == null)
return false;
if (other.getDestinationPoolName() != null && other.getDestinationPoolName().equals(this.getDestinationPoolName()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getIp() == null) ? 0 : getIp().hashCode());
hashCode = prime * hashCode + ((getDestinationPoolName() == null) ? 0 : getDestinationPoolName().hashCode());
return hashCode;
}
@Override
public PutDedicatedIpInPoolRequest clone() {
return (PutDedicatedIpInPoolRequest) super.clone();
}
}