com.amazonaws.services.pipes.model.UpdatePipeResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-pipes 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.pipes.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API
* Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class UpdatePipeResult extends com.amazonaws.AmazonWebServiceResult implements Serializable, Cloneable {
/**
*
* The ARN of the pipe.
*
*/
private String arn;
/**
*
* The name of the pipe.
*
*/
private String name;
/**
*
* The state the pipe should be in.
*
*/
private String desiredState;
/**
*
* The state the pipe is in.
*
*/
private String currentState;
/**
*
* The time the pipe was created.
*
*/
private java.util.Date creationTime;
/**
*
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*
*/
private java.util.Date lastModifiedTime;
/**
*
* The ARN of the pipe.
*
*
* @param arn
* The ARN of the pipe.
*/
public void setArn(String arn) {
this.arn = arn;
}
/**
*
* The ARN of the pipe.
*
*
* @return The ARN of the pipe.
*/
public String getArn() {
return this.arn;
}
/**
*
* The ARN of the pipe.
*
*
* @param arn
* The ARN of the pipe.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdatePipeResult withArn(String arn) {
setArn(arn);
return this;
}
/**
*
* The name of the pipe.
*
*
* @param name
* The name of the pipe.
*/
public void setName(String name) {
this.name = name;
}
/**
*
* The name of the pipe.
*
*
* @return The name of the pipe.
*/
public String getName() {
return this.name;
}
/**
*
* The name of the pipe.
*
*
* @param name
* The name of the pipe.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdatePipeResult withName(String name) {
setName(name);
return this;
}
/**
*
* The state the pipe should be in.
*
*
* @param desiredState
* The state the pipe should be in.
* @see RequestedPipeState
*/
public void setDesiredState(String desiredState) {
this.desiredState = desiredState;
}
/**
*
* The state the pipe should be in.
*
*
* @return The state the pipe should be in.
* @see RequestedPipeState
*/
public String getDesiredState() {
return this.desiredState;
}
/**
*
* The state the pipe should be in.
*
*
* @param desiredState
* The state the pipe should be in.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RequestedPipeState
*/
public UpdatePipeResult withDesiredState(String desiredState) {
setDesiredState(desiredState);
return this;
}
/**
*
* The state the pipe should be in.
*
*
* @param desiredState
* The state the pipe should be in.
* @return Returns a reference to this object so that method calls can be chained together.
* @see RequestedPipeState
*/
public UpdatePipeResult withDesiredState(RequestedPipeState desiredState) {
this.desiredState = desiredState.toString();
return this;
}
/**
*
* The state the pipe is in.
*
*
* @param currentState
* The state the pipe is in.
* @see PipeState
*/
public void setCurrentState(String currentState) {
this.currentState = currentState;
}
/**
*
* The state the pipe is in.
*
*
* @return The state the pipe is in.
* @see PipeState
*/
public String getCurrentState() {
return this.currentState;
}
/**
*
* The state the pipe is in.
*
*
* @param currentState
* The state the pipe is in.
* @return Returns a reference to this object so that method calls can be chained together.
* @see PipeState
*/
public UpdatePipeResult withCurrentState(String currentState) {
setCurrentState(currentState);
return this;
}
/**
*
* The state the pipe is in.
*
*
* @param currentState
* The state the pipe is in.
* @return Returns a reference to this object so that method calls can be chained together.
* @see PipeState
*/
public UpdatePipeResult withCurrentState(PipeState currentState) {
this.currentState = currentState.toString();
return this;
}
/**
*
* The time the pipe was created.
*
*
* @param creationTime
* The time the pipe was created.
*/
public void setCreationTime(java.util.Date creationTime) {
this.creationTime = creationTime;
}
/**
*
* The time the pipe was created.
*
*
* @return The time the pipe was created.
*/
public java.util.Date getCreationTime() {
return this.creationTime;
}
/**
*
* The time the pipe was created.
*
*
* @param creationTime
* The time the pipe was created.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdatePipeResult withCreationTime(java.util.Date creationTime) {
setCreationTime(creationTime);
return this;
}
/**
*
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*
*
* @param lastModifiedTime
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*/
public void setLastModifiedTime(java.util.Date lastModifiedTime) {
this.lastModifiedTime = lastModifiedTime;
}
/**
*
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*
*
* @return When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*/
public java.util.Date getLastModifiedTime() {
return this.lastModifiedTime;
}
/**
*
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
*
*
* @param lastModifiedTime
* When the pipe was last updated, in ISO-8601 format
* (YYYY-MM-DDThh:mm:ss.sTZD).
* @return Returns a reference to this object so that method calls can be chained together.
*/
public UpdatePipeResult withLastModifiedTime(java.util.Date lastModifiedTime) {
setLastModifiedTime(lastModifiedTime);
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 (getArn() != null)
sb.append("Arn: ").append(getArn()).append(",");
if (getName() != null)
sb.append("Name: ").append(getName()).append(",");
if (getDesiredState() != null)
sb.append("DesiredState: ").append(getDesiredState()).append(",");
if (getCurrentState() != null)
sb.append("CurrentState: ").append(getCurrentState()).append(",");
if (getCreationTime() != null)
sb.append("CreationTime: ").append(getCreationTime()).append(",");
if (getLastModifiedTime() != null)
sb.append("LastModifiedTime: ").append(getLastModifiedTime());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof UpdatePipeResult == false)
return false;
UpdatePipeResult other = (UpdatePipeResult) obj;
if (other.getArn() == null ^ this.getArn() == null)
return false;
if (other.getArn() != null && other.getArn().equals(this.getArn()) == false)
return false;
if (other.getName() == null ^ this.getName() == null)
return false;
if (other.getName() != null && other.getName().equals(this.getName()) == false)
return false;
if (other.getDesiredState() == null ^ this.getDesiredState() == null)
return false;
if (other.getDesiredState() != null && other.getDesiredState().equals(this.getDesiredState()) == false)
return false;
if (other.getCurrentState() == null ^ this.getCurrentState() == null)
return false;
if (other.getCurrentState() != null && other.getCurrentState().equals(this.getCurrentState()) == false)
return false;
if (other.getCreationTime() == null ^ this.getCreationTime() == null)
return false;
if (other.getCreationTime() != null && other.getCreationTime().equals(this.getCreationTime()) == false)
return false;
if (other.getLastModifiedTime() == null ^ this.getLastModifiedTime() == null)
return false;
if (other.getLastModifiedTime() != null && other.getLastModifiedTime().equals(this.getLastModifiedTime()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getArn() == null) ? 0 : getArn().hashCode());
hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode());
hashCode = prime * hashCode + ((getDesiredState() == null) ? 0 : getDesiredState().hashCode());
hashCode = prime * hashCode + ((getCurrentState() == null) ? 0 : getCurrentState().hashCode());
hashCode = prime * hashCode + ((getCreationTime() == null) ? 0 : getCreationTime().hashCode());
hashCode = prime * hashCode + ((getLastModifiedTime() == null) ? 0 : getLastModifiedTime().hashCode());
return hashCode;
}
@Override
public UpdatePipeResult clone() {
try {
return (UpdatePipeResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}