/* * 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.stepfunctions.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* Contains details about an activity scheduled during an execution. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class ActivityScheduledEventDetails implements Serializable, Cloneable, StructuredPojo { /** ** The Amazon Resource Name (ARN) of the scheduled activity. *
*/ private String resource; /** ** The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
*/ private String input; /** ** Contains details about the input for an execution history event. *
*/ private HistoryEventExecutionDataDetails inputDetails; /** ** The maximum allowed duration of the activity task. *
*/ private Long timeoutInSeconds; /** ** The maximum allowed duration between two heartbeats for the activity task. *
*/ private Long heartbeatInSeconds; /** ** The Amazon Resource Name (ARN) of the scheduled activity. *
* * @param resource * The Amazon Resource Name (ARN) of the scheduled activity. */ public void setResource(String resource) { this.resource = resource; } /** ** The Amazon Resource Name (ARN) of the scheduled activity. *
* * @return The Amazon Resource Name (ARN) of the scheduled activity. */ public String getResource() { return this.resource; } /** ** The Amazon Resource Name (ARN) of the scheduled activity. *
* * @param resource * The Amazon Resource Name (ARN) of the scheduled activity. * @return Returns a reference to this object so that method calls can be chained together. */ public ActivityScheduledEventDetails withResource(String resource) { setResource(resource); return this; } /** ** The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @param input * The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed * as bytes in UTF-8 encoding. */ public void setInput(String input) { this.input = input; } /** ** The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @return The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed * as bytes in UTF-8 encoding. */ public String getInput() { return this.input; } /** ** The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @param input * The JSON data input to the activity task. Length constraints apply to the payload size, and are expressed * as bytes in UTF-8 encoding. * @return Returns a reference to this object so that method calls can be chained together. */ public ActivityScheduledEventDetails withInput(String input) { setInput(input); return this; } /** ** Contains details about the input for an execution history event. *
* * @param inputDetails * Contains details about the input for an execution history event. */ public void setInputDetails(HistoryEventExecutionDataDetails inputDetails) { this.inputDetails = inputDetails; } /** ** Contains details about the input for an execution history event. *
* * @return Contains details about the input for an execution history event. */ public HistoryEventExecutionDataDetails getInputDetails() { return this.inputDetails; } /** ** Contains details about the input for an execution history event. *
* * @param inputDetails * Contains details about the input for an execution history event. * @return Returns a reference to this object so that method calls can be chained together. */ public ActivityScheduledEventDetails withInputDetails(HistoryEventExecutionDataDetails inputDetails) { setInputDetails(inputDetails); return this; } /** ** The maximum allowed duration of the activity task. *
* * @param timeoutInSeconds * The maximum allowed duration of the activity task. */ public void setTimeoutInSeconds(Long timeoutInSeconds) { this.timeoutInSeconds = timeoutInSeconds; } /** ** The maximum allowed duration of the activity task. *
* * @return The maximum allowed duration of the activity task. */ public Long getTimeoutInSeconds() { return this.timeoutInSeconds; } /** ** The maximum allowed duration of the activity task. *
* * @param timeoutInSeconds * The maximum allowed duration of the activity task. * @return Returns a reference to this object so that method calls can be chained together. */ public ActivityScheduledEventDetails withTimeoutInSeconds(Long timeoutInSeconds) { setTimeoutInSeconds(timeoutInSeconds); return this; } /** ** The maximum allowed duration between two heartbeats for the activity task. *
* * @param heartbeatInSeconds * The maximum allowed duration between two heartbeats for the activity task. */ public void setHeartbeatInSeconds(Long heartbeatInSeconds) { this.heartbeatInSeconds = heartbeatInSeconds; } /** ** The maximum allowed duration between two heartbeats for the activity task. *
* * @return The maximum allowed duration between two heartbeats for the activity task. */ public Long getHeartbeatInSeconds() { return this.heartbeatInSeconds; } /** ** The maximum allowed duration between two heartbeats for the activity task. *
* * @param heartbeatInSeconds * The maximum allowed duration between two heartbeats for the activity task. * @return Returns a reference to this object so that method calls can be chained together. */ public ActivityScheduledEventDetails withHeartbeatInSeconds(Long heartbeatInSeconds) { setHeartbeatInSeconds(heartbeatInSeconds); 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 (getResource() != null) sb.append("Resource: ").append(getResource()).append(","); if (getInput() != null) sb.append("Input: ").append("***Sensitive Data Redacted***").append(","); if (getInputDetails() != null) sb.append("InputDetails: ").append(getInputDetails()).append(","); if (getTimeoutInSeconds() != null) sb.append("TimeoutInSeconds: ").append(getTimeoutInSeconds()).append(","); if (getHeartbeatInSeconds() != null) sb.append("HeartbeatInSeconds: ").append(getHeartbeatInSeconds()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof ActivityScheduledEventDetails == false) return false; ActivityScheduledEventDetails other = (ActivityScheduledEventDetails) obj; if (other.getResource() == null ^ this.getResource() == null) return false; if (other.getResource() != null && other.getResource().equals(this.getResource()) == false) return false; if (other.getInput() == null ^ this.getInput() == null) return false; if (other.getInput() != null && other.getInput().equals(this.getInput()) == false) return false; if (other.getInputDetails() == null ^ this.getInputDetails() == null) return false; if (other.getInputDetails() != null && other.getInputDetails().equals(this.getInputDetails()) == false) return false; if (other.getTimeoutInSeconds() == null ^ this.getTimeoutInSeconds() == null) return false; if (other.getTimeoutInSeconds() != null && other.getTimeoutInSeconds().equals(this.getTimeoutInSeconds()) == false) return false; if (other.getHeartbeatInSeconds() == null ^ this.getHeartbeatInSeconds() == null) return false; if (other.getHeartbeatInSeconds() != null && other.getHeartbeatInSeconds().equals(this.getHeartbeatInSeconds()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getResource() == null) ? 0 : getResource().hashCode()); hashCode = prime * hashCode + ((getInput() == null) ? 0 : getInput().hashCode()); hashCode = prime * hashCode + ((getInputDetails() == null) ? 0 : getInputDetails().hashCode()); hashCode = prime * hashCode + ((getTimeoutInSeconds() == null) ? 0 : getTimeoutInSeconds().hashCode()); hashCode = prime * hashCode + ((getHeartbeatInSeconds() == null) ? 0 : getHeartbeatInSeconds().hashCode()); return hashCode; } @Override public ActivityScheduledEventDetails clone() { try { return (ActivityScheduledEventDetails) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.stepfunctions.model.transform.ActivityScheduledEventDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }