com.amazonaws.services.lambda.model.transform.GetEventSourceMappingResultJsonUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-lambda Show documentation
Show all versions of aws-java-sdk-lambda Show documentation
The AWS Java SDK for AWS Lambda module holds the client classes that are used for communicating with AWS Lambda Service
/*
* Copyright 2016-2021 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.lambda.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.lambda.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import static com.fasterxml.jackson.core.JsonToken.*;
/**
* GetEventSourceMappingResult JSON Unmarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class GetEventSourceMappingResultJsonUnmarshaller implements Unmarshaller {
public GetEventSourceMappingResult unmarshall(JsonUnmarshallerContext context) throws Exception {
GetEventSourceMappingResult getEventSourceMappingResult = new GetEventSourceMappingResult();
int originalDepth = context.getCurrentDepth();
String currentParentElement = context.getCurrentParentElement();
int targetDepth = originalDepth + 1;
JsonToken token = context.getCurrentToken();
if (token == null)
token = context.nextToken();
if (token == VALUE_NULL) {
return getEventSourceMappingResult;
}
while (true) {
if (token == null)
break;
if (token == FIELD_NAME || token == START_OBJECT) {
if (context.testExpression("UUID", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setUUID(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("StartingPosition", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setStartingPosition(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("StartingPositionTimestamp", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setStartingPositionTimestamp(DateJsonUnmarshallerFactory.getInstance("unixTimestamp").unmarshall(context));
}
if (context.testExpression("BatchSize", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setBatchSize(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("MaximumBatchingWindowInSeconds", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setMaximumBatchingWindowInSeconds(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("ParallelizationFactor", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setParallelizationFactor(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("EventSourceArn", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setEventSourceArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("FunctionArn", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setFunctionArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("LastModified", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setLastModified(DateJsonUnmarshallerFactory.getInstance("unixTimestamp").unmarshall(context));
}
if (context.testExpression("LastProcessingResult", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setLastProcessingResult(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("State", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setState(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("StateTransitionReason", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setStateTransitionReason(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("DestinationConfig", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setDestinationConfig(DestinationConfigJsonUnmarshaller.getInstance().unmarshall(context));
}
if (context.testExpression("Topics", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setTopics(new ListUnmarshaller(context.getUnmarshaller(String.class))
.unmarshall(context));
}
if (context.testExpression("Queues", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setQueues(new ListUnmarshaller(context.getUnmarshaller(String.class))
.unmarshall(context));
}
if (context.testExpression("SourceAccessConfigurations", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setSourceAccessConfigurations(new ListUnmarshaller(
SourceAccessConfigurationJsonUnmarshaller.getInstance())
.unmarshall(context));
}
if (context.testExpression("SelfManagedEventSource", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setSelfManagedEventSource(SelfManagedEventSourceJsonUnmarshaller.getInstance().unmarshall(context));
}
if (context.testExpression("MaximumRecordAgeInSeconds", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setMaximumRecordAgeInSeconds(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("BisectBatchOnFunctionError", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setBisectBatchOnFunctionError(context.getUnmarshaller(Boolean.class).unmarshall(context));
}
if (context.testExpression("MaximumRetryAttempts", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setMaximumRetryAttempts(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("TumblingWindowInSeconds", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setTumblingWindowInSeconds(context.getUnmarshaller(Integer.class).unmarshall(context));
}
if (context.testExpression("FunctionResponseTypes", targetDepth)) {
context.nextToken();
getEventSourceMappingResult.setFunctionResponseTypes(new ListUnmarshaller(context.getUnmarshaller(String.class))
.unmarshall(context));
}
} else if (token == END_ARRAY || token == END_OBJECT) {
if (context.getLastParsedParentElement() == null || context.getLastParsedParentElement().equals(currentParentElement)) {
if (context.getCurrentDepth() <= originalDepth)
break;
}
}
token = context.nextToken();
}
return getEventSourceMappingResult;
}
private static GetEventSourceMappingResultJsonUnmarshaller instance;
public static GetEventSourceMappingResultJsonUnmarshaller getInstance() {
if (instance == null)
instance = new GetEventSourceMappingResultJsonUnmarshaller();
return instance;
}
}