software.amazon.awssdk.services.lambda.model.GetFunctionEventInvokeConfigResponse 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.time.Instant;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
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.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.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*/
@Generated("software.amazon.awssdk:codegen")
public final class GetFunctionEventInvokeConfigResponse extends LambdaResponse implements
ToCopyableBuilder {
private static final SdkField LAST_MODIFIED_FIELD = SdkField. builder(MarshallingType.INSTANT)
.memberName("LastModified").getter(getter(GetFunctionEventInvokeConfigResponse::lastModified))
.setter(setter(Builder::lastModified))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("LastModified").build()).build();
private static final SdkField FUNCTION_ARN_FIELD = SdkField. builder(MarshallingType.STRING)
.memberName("FunctionArn").getter(getter(GetFunctionEventInvokeConfigResponse::functionArn))
.setter(setter(Builder::functionArn))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FunctionArn").build()).build();
private static final SdkField MAXIMUM_RETRY_ATTEMPTS_FIELD = SdkField. builder(MarshallingType.INTEGER)
.memberName("MaximumRetryAttempts").getter(getter(GetFunctionEventInvokeConfigResponse::maximumRetryAttempts))
.setter(setter(Builder::maximumRetryAttempts))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MaximumRetryAttempts").build())
.build();
private static final SdkField MAXIMUM_EVENT_AGE_IN_SECONDS_FIELD = SdkField
. builder(MarshallingType.INTEGER).memberName("MaximumEventAgeInSeconds")
.getter(getter(GetFunctionEventInvokeConfigResponse::maximumEventAgeInSeconds))
.setter(setter(Builder::maximumEventAgeInSeconds))
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("MaximumEventAgeInSeconds").build())
.build();
private static final SdkField DESTINATION_CONFIG_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("DestinationConfig")
.getter(getter(GetFunctionEventInvokeConfigResponse::destinationConfig)).setter(setter(Builder::destinationConfig))
.constructor(DestinationConfig::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("DestinationConfig").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(LAST_MODIFIED_FIELD,
FUNCTION_ARN_FIELD, MAXIMUM_RETRY_ATTEMPTS_FIELD, MAXIMUM_EVENT_AGE_IN_SECONDS_FIELD, DESTINATION_CONFIG_FIELD));
private final Instant lastModified;
private final String functionArn;
private final Integer maximumRetryAttempts;
private final Integer maximumEventAgeInSeconds;
private final DestinationConfig destinationConfig;
private GetFunctionEventInvokeConfigResponse(BuilderImpl builder) {
super(builder);
this.lastModified = builder.lastModified;
this.functionArn = builder.functionArn;
this.maximumRetryAttempts = builder.maximumRetryAttempts;
this.maximumEventAgeInSeconds = builder.maximumEventAgeInSeconds;
this.destinationConfig = builder.destinationConfig;
}
/**
*
* The date and time that the configuration was last updated.
*
*
* @return The date and time that the configuration was last updated.
*/
public final Instant lastModified() {
return lastModified;
}
/**
*
* The Amazon Resource Name (ARN) of the function.
*
*
* @return The Amazon Resource Name (ARN) of the function.
*/
public final String functionArn() {
return functionArn;
}
/**
*
* The maximum number of times to retry when the function returns an error.
*
*
* @return The maximum number of times to retry when the function returns an error.
*/
public final Integer maximumRetryAttempts() {
return maximumRetryAttempts;
}
/**
*
* The maximum age of a request that Lambda sends to a function for processing.
*
*
* @return The maximum age of a request that Lambda sends to a function for processing.
*/
public final Integer maximumEventAgeInSeconds() {
return maximumEventAgeInSeconds;
}
/**
*
* A destination for events after they have been sent to a function for processing.
*
*
* Destinations
*
*
* -
*
* Function - The Amazon Resource Name (ARN) of a Lambda function.
*
*
* -
*
* Queue - The ARN of a standard SQS queue.
*
*
* -
*
* Topic - The ARN of a standard SNS topic.
*
*
* -
*
* Event Bus - The ARN of an Amazon EventBridge event bus.
*
*
*
*
* @return A destination for events after they have been sent to a function for processing.
*
* Destinations
*
*
* -
*
* Function - The Amazon Resource Name (ARN) of a Lambda function.
*
*
* -
*
* Queue - The ARN of a standard SQS queue.
*
*
* -
*
* Topic - The ARN of a standard SNS topic.
*
*
* -
*
* Event Bus - The ARN of an Amazon EventBridge event bus.
*
*
*/
public final DestinationConfig destinationConfig() {
return destinationConfig;
}
@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(lastModified());
hashCode = 31 * hashCode + Objects.hashCode(functionArn());
hashCode = 31 * hashCode + Objects.hashCode(maximumRetryAttempts());
hashCode = 31 * hashCode + Objects.hashCode(maximumEventAgeInSeconds());
hashCode = 31 * hashCode + Objects.hashCode(destinationConfig());
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 GetFunctionEventInvokeConfigResponse)) {
return false;
}
GetFunctionEventInvokeConfigResponse other = (GetFunctionEventInvokeConfigResponse) obj;
return Objects.equals(lastModified(), other.lastModified()) && Objects.equals(functionArn(), other.functionArn())
&& Objects.equals(maximumRetryAttempts(), other.maximumRetryAttempts())
&& Objects.equals(maximumEventAgeInSeconds(), other.maximumEventAgeInSeconds())
&& Objects.equals(destinationConfig(), other.destinationConfig());
}
/**
* 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("GetFunctionEventInvokeConfigResponse").add("LastModified", lastModified())
.add("FunctionArn", functionArn()).add("MaximumRetryAttempts", maximumRetryAttempts())
.add("MaximumEventAgeInSeconds", maximumEventAgeInSeconds()).add("DestinationConfig", destinationConfig())
.build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "LastModified":
return Optional.ofNullable(clazz.cast(lastModified()));
case "FunctionArn":
return Optional.ofNullable(clazz.cast(functionArn()));
case "MaximumRetryAttempts":
return Optional.ofNullable(clazz.cast(maximumRetryAttempts()));
case "MaximumEventAgeInSeconds":
return Optional.ofNullable(clazz.cast(maximumEventAgeInSeconds()));
case "DestinationConfig":
return Optional.ofNullable(clazz.cast(destinationConfig()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function