software.amazon.awssdk.services.lambda.model.InvokeRequest Maven / Gradle / Ivy
Show all versions of lambda Show documentation
/*
* Copyright 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 software.amazon.awssdk.services.lambda.model;
import java.nio.ByteBuffer;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.awscore.AwsRequestOverrideConfiguration;
import software.amazon.awssdk.core.SdkBytes;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.traits.PayloadTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class InvokeRequest extends LambdaRequest implements ToCopyableBuilder {
private static final SdkField FUNCTION_NAME_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("FunctionName").getter(getter(InvokeRequest::functionName)).setter(setter(Builder::functionName))
.traits(LocationTrait.builder().location(MarshallLocation.PATH).locationName("FunctionName").build()).build();
private static final SdkField INVOCATION_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("InvocationType").getter(getter(InvokeRequest::invocationTypeAsString))
.setter(setter(Builder::invocationType))
.traits(LocationTrait.builder().location(MarshallLocation.HEADER).locationName("X-Amz-Invocation-Type").build())
.build();
private static final SdkField LOG_TYPE_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("LogType").getter(getter(InvokeRequest::logTypeAsString)).setter(setter(Builder::logType))
.traits(LocationTrait.builder().location(MarshallLocation.HEADER).locationName("X-Amz-Log-Type").build()).build();
private static final SdkField CLIENT_CONTEXT_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("ClientContext").getter(getter(InvokeRequest::clientContext)).setter(setter(Builder::clientContext))
.traits(LocationTrait.builder().location(MarshallLocation.HEADER).locationName("X-Amz-Client-Context").build())
.build();
private static final SdkField PAYLOAD_FIELD = SdkField
. builder(MarshallingType.SDK_BYTES)
.memberName("Payload")
.getter(getter(InvokeRequest::payload))
.setter(setter(Builder::payload))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Payload").build(),
PayloadTrait.create()).build();
private static final SdkField QUALIFIER_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("Qualifier").getter(getter(InvokeRequest::qualifier)).setter(setter(Builder::qualifier))
.traits(LocationTrait.builder().location(MarshallLocation.QUERY_PARAM).locationName("Qualifier").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(FUNCTION_NAME_FIELD,
INVOCATION_TYPE_FIELD, LOG_TYPE_FIELD, CLIENT_CONTEXT_FIELD, PAYLOAD_FIELD, QUALIFIER_FIELD));
private static final Map> SDK_NAME_TO_FIELD = Collections
.unmodifiableMap(new HashMap>() {
{
put("FunctionName", FUNCTION_NAME_FIELD);
put("X-Amz-Invocation-Type", INVOCATION_TYPE_FIELD);
put("X-Amz-Log-Type", LOG_TYPE_FIELD);
put("X-Amz-Client-Context", CLIENT_CONTEXT_FIELD);
put("Payload", PAYLOAD_FIELD);
put("Qualifier", QUALIFIER_FIELD);
}
});
private final String functionName;
private final String invocationType;
private final String logType;
private final String clientContext;
private final SdkBytes payload;
private final String qualifier;
private InvokeRequest(BuilderImpl builder) {
super(builder);
this.functionName = builder.functionName;
this.invocationType = builder.invocationType;
this.logType = builder.logType;
this.clientContext = builder.clientContext;
this.payload = builder.payload;
this.qualifier = builder.qualifier;
}
/**
*
* The name or ARN of the Lambda function, version, or alias.
*
*
* Name formats
*
*
* -
*
* Function name – my-function
(name-only), my-function:v1
(with alias).
*
*
* -
*
* Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function
.
*
*
* -
*
* Partial ARN – 123456789012:function:my-function
.
*
*
*
*
* You can append a version number or alias to any of the formats. The length constraint applies only to the full
* ARN. If you specify only the function name, it is limited to 64 characters in length.
*
*
* @return The name or ARN of the Lambda function, version, or alias.
*
* Name formats
*
*
* -
*
* Function name – my-function
(name-only), my-function:v1
(with alias).
*
*
* -
*
* Function ARN – arn:aws:lambda:us-west-2:123456789012:function:my-function
.
*
*
* -
*
* Partial ARN – 123456789012:function:my-function
.
*
*
*
*
* You can append a version number or alias to any of the formats. The length constraint applies only to the
* full ARN. If you specify only the function name, it is limited to 64 characters in length.
*/
public final String functionName() {
return functionName;
}
/**
*
* Choose from the following options.
*
*
* -
*
* RequestResponse
(default) – Invoke the function synchronously. Keep the connection open until the
* function returns a response or times out. The API response includes the function response and additional data.
*
*
* -
*
* Event
– Invoke the function asynchronously. Send events that fail multiple times to the function's
* dead-letter queue (if one is configured). The API response only includes a status code.
*
*
* -
*
* DryRun
– Validate parameter values and verify that the user or role has permission to invoke the
* function.
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #invocationType}
* will return {@link InvocationType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #invocationTypeAsString}.
*
*
* @return Choose from the following options.
*
* -
*
* RequestResponse
(default) – Invoke the function synchronously. Keep the connection open
* until the function returns a response or times out. The API response includes the function response and
* additional data.
*
*
* -
*
* Event
– Invoke the function asynchronously. Send events that fail multiple times to the
* function's dead-letter queue (if one is configured). The API response only includes a status code.
*
*
* -
*
* DryRun
– Validate parameter values and verify that the user or role has permission to invoke
* the function.
*
*
* @see InvocationType
*/
public final InvocationType invocationType() {
return InvocationType.fromValue(invocationType);
}
/**
*
* Choose from the following options.
*
*
* -
*
* RequestResponse
(default) – Invoke the function synchronously. Keep the connection open until the
* function returns a response or times out. The API response includes the function response and additional data.
*
*
* -
*
* Event
– Invoke the function asynchronously. Send events that fail multiple times to the function's
* dead-letter queue (if one is configured). The API response only includes a status code.
*
*
* -
*
* DryRun
– Validate parameter values and verify that the user or role has permission to invoke the
* function.
*
*
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #invocationType}
* will return {@link InvocationType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available
* from {@link #invocationTypeAsString}.
*
*
* @return Choose from the following options.
*
* -
*
* RequestResponse
(default) – Invoke the function synchronously. Keep the connection open
* until the function returns a response or times out. The API response includes the function response and
* additional data.
*
*
* -
*
* Event
– Invoke the function asynchronously. Send events that fail multiple times to the
* function's dead-letter queue (if one is configured). The API response only includes a status code.
*
*
* -
*
* DryRun
– Validate parameter values and verify that the user or role has permission to invoke
* the function.
*
*
* @see InvocationType
*/
public final String invocationTypeAsString() {
return invocationType;
}
/**
*
* Set to Tail
to include the execution log in the response. Applies to synchronously invoked functions
* only.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #logType} will
* return {@link LogType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #logTypeAsString}.
*
*
* @return Set to Tail
to include the execution log in the response. Applies to synchronously invoked
* functions only.
* @see LogType
*/
public final LogType logType() {
return LogType.fromValue(logType);
}
/**
*
* Set to Tail
to include the execution log in the response. Applies to synchronously invoked functions
* only.
*
*
* If the service returns an enum value that is not available in the current SDK version, {@link #logType} will
* return {@link LogType#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from
* {@link #logTypeAsString}.
*
*
* @return Set to Tail
to include the execution log in the response. Applies to synchronously invoked
* functions only.
* @see LogType
*/
public final String logTypeAsString() {
return logType;
}
/**
*
* Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context object.
* Lambda passes the ClientContext
object to your function for synchronous invocations only.
*
*
* @return Up to 3,583 bytes of base64-encoded data about the invoking client to pass to the function in the context
* object. Lambda passes the ClientContext
object to your function for synchronous invocations
* only.
*/
public final String clientContext() {
return clientContext;
}
/**
*
* The JSON that you want to provide to your Lambda function as input.
*
*
* You can enter the JSON directly. For example, --payload '{ "key": "value" }'
. You can also specify a
* file path. For example, --payload file://payload.json
.
*
*
* @return The JSON that you want to provide to your Lambda function as input.
*
* You can enter the JSON directly. For example, --payload '{ "key": "value" }'
. You can also
* specify a file path. For example, --payload file://payload.json
.
*/
public final SdkBytes payload() {
return payload;
}
/**
*
* Specify a version or alias to invoke a published version of the function.
*
*
* @return Specify a version or alias to invoke a published version of the function.
*/
public final String qualifier() {
return qualifier;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + super.hashCode();
hashCode = 31 * hashCode + Objects.hashCode(functionName());
hashCode = 31 * hashCode + Objects.hashCode(invocationTypeAsString());
hashCode = 31 * hashCode + Objects.hashCode(logTypeAsString());
hashCode = 31 * hashCode + Objects.hashCode(clientContext());
hashCode = 31 * hashCode + Objects.hashCode(payload());
hashCode = 31 * hashCode + Objects.hashCode(qualifier());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return super.equals(obj) && equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof InvokeRequest)) {
return false;
}
InvokeRequest other = (InvokeRequest) obj;
return Objects.equals(functionName(), other.functionName())
&& Objects.equals(invocationTypeAsString(), other.invocationTypeAsString())
&& Objects.equals(logTypeAsString(), other.logTypeAsString())
&& Objects.equals(clientContext(), other.clientContext()) && Objects.equals(payload(), other.payload())
&& Objects.equals(qualifier(), other.qualifier());
}
/**
* 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.
*/
@Override
public final String toString() {
return ToString.builder("InvokeRequest").add("FunctionName", functionName())
.add("InvocationType", invocationTypeAsString()).add("LogType", logTypeAsString())
.add("ClientContext", clientContext())
.add("Payload", payload() == null ? null : "*** Sensitive Data Redacted ***").add("Qualifier", qualifier())
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "FunctionName":
return Optional.ofNullable(clazz.cast(functionName()));
case "InvocationType":
return Optional.ofNullable(clazz.cast(invocationTypeAsString()));
case "LogType":
return Optional.ofNullable(clazz.cast(logTypeAsString()));
case "ClientContext":
return Optional.ofNullable(clazz.cast(clientContext()));
case "Payload":
return Optional.ofNullable(clazz.cast(payload()));
case "Qualifier":
return Optional.ofNullable(clazz.cast(qualifier()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
@Override
public final Map> sdkFieldNameToField() {
return SDK_NAME_TO_FIELD;
}
private static Function