/* * 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.iotanalytics.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.AmazonWebServiceRequest; /** * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class StartPipelineReprocessingRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable { /** *
* The name of the pipeline on which to start reprocessing. *
*/ private String pipelineName; /** ** The start time (inclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*
* The end time (exclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the endTime
parameter, you must not use the channelMessages
* object.
*
* Specifies one or more sets of channel messages that you want to reprocess. *
*
* If you use the channelMessages
object, you must not specify a value for startTime
and
* endTime
.
*
* The name of the pipeline on which to start reprocessing. *
* * @param pipelineName * The name of the pipeline on which to start reprocessing. */ public void setPipelineName(String pipelineName) { this.pipelineName = pipelineName; } /** ** The name of the pipeline on which to start reprocessing. *
* * @return The name of the pipeline on which to start reprocessing. */ public String getPipelineName() { return this.pipelineName; } /** ** The name of the pipeline on which to start reprocessing. *
* * @param pipelineName * The name of the pipeline on which to start reprocessing. * @return Returns a reference to this object so that method calls can be chained together. */ public StartPipelineReprocessingRequest withPipelineName(String pipelineName) { setPipelineName(pipelineName); return this; } /** ** The start time (inclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*/
public void setStartTime(java.util.Date startTime) {
this.startTime = startTime;
}
/**
*
* The start time (inclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*/
public java.util.Date getStartTime() {
return this.startTime;
}
/**
*
* The start time (inclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
*
* If you specify a value for the startTime
parameter, you must not use the
* channelMessages
object.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartPipelineReprocessingRequest withStartTime(java.util.Date startTime) {
setStartTime(startTime);
return this;
}
/**
*
* The end time (exclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the endTime
parameter, you must not use the channelMessages
* object.
*
* If you specify a value for the endTime
parameter, you must not use the
* channelMessages
object.
*/
public void setEndTime(java.util.Date endTime) {
this.endTime = endTime;
}
/**
*
* The end time (exclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the endTime
parameter, you must not use the channelMessages
* object.
*
* If you specify a value for the endTime
parameter, you must not use the
* channelMessages
object.
*/
public java.util.Date getEndTime() {
return this.endTime;
}
/**
*
* The end time (exclusive) of raw message data that is reprocessed. *
*
* If you specify a value for the endTime
parameter, you must not use the channelMessages
* object.
*
* If you specify a value for the endTime
parameter, you must not use the
* channelMessages
object.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartPipelineReprocessingRequest withEndTime(java.util.Date endTime) {
setEndTime(endTime);
return this;
}
/**
*
* Specifies one or more sets of channel messages that you want to reprocess. *
*
* If you use the channelMessages
object, you must not specify a value for startTime
and
* endTime
.
*
* If you use the channelMessages
object, you must not specify a value for
* startTime
and endTime
.
*/
public void setChannelMessages(ChannelMessages channelMessages) {
this.channelMessages = channelMessages;
}
/**
*
* Specifies one or more sets of channel messages that you want to reprocess. *
*
* If you use the channelMessages
object, you must not specify a value for startTime
and
* endTime
.
*
* If you use the channelMessages
object, you must not specify a value for
* startTime
and endTime
.
*/
public ChannelMessages getChannelMessages() {
return this.channelMessages;
}
/**
*
* Specifies one or more sets of channel messages that you want to reprocess. *
*
* If you use the channelMessages
object, you must not specify a value for startTime
and
* endTime
.
*
* If you use the channelMessages
object, you must not specify a value for
* startTime
and endTime
.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public StartPipelineReprocessingRequest withChannelMessages(ChannelMessages channelMessages) {
setChannelMessages(channelMessages);
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 (getPipelineName() != null)
sb.append("PipelineName: ").append(getPipelineName()).append(",");
if (getStartTime() != null)
sb.append("StartTime: ").append(getStartTime()).append(",");
if (getEndTime() != null)
sb.append("EndTime: ").append(getEndTime()).append(",");
if (getChannelMessages() != null)
sb.append("ChannelMessages: ").append(getChannelMessages());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof StartPipelineReprocessingRequest == false)
return false;
StartPipelineReprocessingRequest other = (StartPipelineReprocessingRequest) obj;
if (other.getPipelineName() == null ^ this.getPipelineName() == null)
return false;
if (other.getPipelineName() != null && other.getPipelineName().equals(this.getPipelineName()) == false)
return false;
if (other.getStartTime() == null ^ this.getStartTime() == null)
return false;
if (other.getStartTime() != null && other.getStartTime().equals(this.getStartTime()) == false)
return false;
if (other.getEndTime() == null ^ this.getEndTime() == null)
return false;
if (other.getEndTime() != null && other.getEndTime().equals(this.getEndTime()) == false)
return false;
if (other.getChannelMessages() == null ^ this.getChannelMessages() == null)
return false;
if (other.getChannelMessages() != null && other.getChannelMessages().equals(this.getChannelMessages()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getPipelineName() == null) ? 0 : getPipelineName().hashCode());
hashCode = prime * hashCode + ((getStartTime() == null) ? 0 : getStartTime().hashCode());
hashCode = prime * hashCode + ((getEndTime() == null) ? 0 : getEndTime().hashCode());
hashCode = prime * hashCode + ((getChannelMessages() == null) ? 0 : getChannelMessages().hashCode());
return hashCode;
}
@Override
public StartPipelineReprocessingRequest clone() {
return (StartPipelineReprocessingRequest) super.clone();
}
}