All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.stepfunctions.model.LambdaFunctionScheduledEventDetails Maven / Gradle / Ivy

/*
 * Copyright 2015-2020 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. *

*/ private String input; /** *

* The maximum allowed duration of the lambda function. *

*/ private Long timeoutInSeconds; /** *

* 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. *

* * @param input * The JSON data input to the lambda function. */ public void setInput(String input) { this.input = input; } /** *

* The JSON data input to the lambda function. *

* * @return The JSON data input to the lambda function. */ public String getInput() { return this.input; } /** *

* The JSON data input to the lambda function. *

* * @param input * The JSON data input to the lambda function. * @return Returns a reference to this object so that method calls can be chained together. */ public LambdaFunctionScheduledEventDetails withInput(String input) { setInput(input); 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; } /** * 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 (getTimeoutInSeconds() != null) sb.append("TimeoutInSeconds: ").append(getTimeoutInSeconds()); 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.getTimeoutInSeconds() == null ^ this.getTimeoutInSeconds() == null) return false; if (other.getTimeoutInSeconds() != null && other.getTimeoutInSeconds().equals(this.getTimeoutInSeconds()) == 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 + ((getTimeoutInSeconds() == null) ? 0 : getTimeoutInSeconds().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); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy