/* * 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 a Lambda function scheduled during an execution. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class LambdaFunctionScheduledEventDetails implements Serializable, Cloneable, StructuredPojo { /** ** The Amazon Resource Name (ARN) of the scheduled Lambda function. *
*/ private String resource; /** ** The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
*/ private String input; /** ** Contains details about input for an execution history event. *
*/ private HistoryEventExecutionDataDetails inputDetails; /** ** The maximum allowed duration of the Lambda function. *
*/ private Long timeoutInSeconds; /** ** The credentials that Step Functions uses for the task. *
*/ private TaskCredentials taskCredentials; /** ** The Amazon Resource Name (ARN) of the scheduled Lambda function. *
* * @param resource * The Amazon Resource Name (ARN) of the scheduled Lambda function. */ public void setResource(String resource) { this.resource = resource; } /** ** The Amazon Resource Name (ARN) of the scheduled Lambda function. *
* * @return The Amazon Resource Name (ARN) of the scheduled Lambda function. */ public String getResource() { return this.resource; } /** ** The Amazon Resource Name (ARN) of the scheduled Lambda function. *
* * @param resource * The Amazon Resource Name (ARN) of the scheduled Lambda function. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaFunctionScheduledEventDetails withResource(String resource) { setResource(resource); return this; } /** ** The JSON data input to the Lambda function. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @param input * The JSON data input to the Lambda function. 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 Lambda function. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @return The JSON data input to the Lambda function. 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 Lambda function. Length constraints apply to the payload size, and are expressed as * bytes in UTF-8 encoding. *
* * @param input * The JSON data input to the Lambda function. 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 LambdaFunctionScheduledEventDetails withInput(String input) { setInput(input); return this; } /** ** Contains details about input for an execution history event. *
* * @param inputDetails * Contains details about input for an execution history event. */ public void setInputDetails(HistoryEventExecutionDataDetails inputDetails) { this.inputDetails = inputDetails; } /** ** Contains details about input for an execution history event. *
* * @return Contains details about input for an execution history event. */ public HistoryEventExecutionDataDetails getInputDetails() { return this.inputDetails; } /** ** Contains details about input for an execution history event. *
* * @param inputDetails * Contains details about input for an execution history event. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaFunctionScheduledEventDetails withInputDetails(HistoryEventExecutionDataDetails inputDetails) { setInputDetails(inputDetails); return this; } /** ** The maximum allowed duration of the Lambda function. *
* * @param timeoutInSeconds * The maximum allowed duration of the Lambda function. */ public void setTimeoutInSeconds(Long timeoutInSeconds) { this.timeoutInSeconds = timeoutInSeconds; } /** ** The maximum allowed duration of the Lambda function. *
* * @return The maximum allowed duration of the Lambda function. */ public Long getTimeoutInSeconds() { return this.timeoutInSeconds; } /** ** The maximum allowed duration of the Lambda function. *
* * @param timeoutInSeconds * The maximum allowed duration of the Lambda function. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaFunctionScheduledEventDetails withTimeoutInSeconds(Long timeoutInSeconds) { setTimeoutInSeconds(timeoutInSeconds); return this; } /** ** The credentials that Step Functions uses for the task. *
* * @param taskCredentials * The credentials that Step Functions uses for the task. */ public void setTaskCredentials(TaskCredentials taskCredentials) { this.taskCredentials = taskCredentials; } /** ** The credentials that Step Functions uses for the task. *
* * @return The credentials that Step Functions uses for the task. */ public TaskCredentials getTaskCredentials() { return this.taskCredentials; } /** ** The credentials that Step Functions uses for the task. *
* * @param taskCredentials * The credentials that Step Functions uses for the task. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaFunctionScheduledEventDetails withTaskCredentials(TaskCredentials taskCredentials) { setTaskCredentials(taskCredentials); 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 (getTaskCredentials() != null) sb.append("TaskCredentials: ").append(getTaskCredentials()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof LambdaFunctionScheduledEventDetails == false) return false; LambdaFunctionScheduledEventDetails other = (LambdaFunctionScheduledEventDetails) 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.getTaskCredentials() == null ^ this.getTaskCredentials() == null) return false; if (other.getTaskCredentials() != null && other.getTaskCredentials().equals(this.getTaskCredentials()) == 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 + ((getTaskCredentials() == null) ? 0 : getTaskCredentials().hashCode()); return hashCode; } @Override public LambdaFunctionScheduledEventDetails clone() { try { return (LambdaFunctionScheduledEventDetails) 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.LambdaFunctionScheduledEventDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }