com.amazonaws.services.dynamodbv2.model.transform.ImportTableDescriptionJsonUnmarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-dynamodb Show documentation
Show all versions of aws-java-sdk-dynamodb Show documentation
The AWS Java SDK for Amazon DynamoDB module holds the client classes that are used for communicating with Amazon DynamoDB Service
/*
* 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.dynamodbv2.model.transform;
import java.math.*;
import javax.annotation.Generated;
import com.amazonaws.services.dynamodbv2.model.*;
import com.amazonaws.transform.SimpleTypeJsonUnmarshallers.*;
import com.amazonaws.transform.*;
import com.fasterxml.jackson.core.JsonToken;
import static com.fasterxml.jackson.core.JsonToken.*;
/**
* ImportTableDescription JSON Unmarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ImportTableDescriptionJsonUnmarshaller implements Unmarshaller {
public ImportTableDescription unmarshall(JsonUnmarshallerContext context) throws Exception {
ImportTableDescription importTableDescription = new ImportTableDescription();
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 null;
}
while (true) {
if (token == null)
break;
if (token == FIELD_NAME || token == START_OBJECT) {
if (context.testExpression("ImportArn", targetDepth)) {
context.nextToken();
importTableDescription.setImportArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ImportStatus", targetDepth)) {
context.nextToken();
importTableDescription.setImportStatus(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("TableArn", targetDepth)) {
context.nextToken();
importTableDescription.setTableArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("TableId", targetDepth)) {
context.nextToken();
importTableDescription.setTableId(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("ClientToken", targetDepth)) {
context.nextToken();
importTableDescription.setClientToken(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("S3BucketSource", targetDepth)) {
context.nextToken();
importTableDescription.setS3BucketSource(S3BucketSourceJsonUnmarshaller.getInstance().unmarshall(context));
}
if (context.testExpression("ErrorCount", targetDepth)) {
context.nextToken();
importTableDescription.setErrorCount(context.getUnmarshaller(Long.class).unmarshall(context));
}
if (context.testExpression("CloudWatchLogGroupArn", targetDepth)) {
context.nextToken();
importTableDescription.setCloudWatchLogGroupArn(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("InputFormat", targetDepth)) {
context.nextToken();
importTableDescription.setInputFormat(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("InputFormatOptions", targetDepth)) {
context.nextToken();
importTableDescription.setInputFormatOptions(InputFormatOptionsJsonUnmarshaller.getInstance().unmarshall(context));
}
if (context.testExpression("InputCompressionType", targetDepth)) {
context.nextToken();
importTableDescription.setInputCompressionType(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("TableCreationParameters", targetDepth)) {
context.nextToken();
importTableDescription.setTableCreationParameters(TableCreationParametersJsonUnmarshaller.getInstance().unmarshall(context));
}
if (context.testExpression("StartTime", targetDepth)) {
context.nextToken();
importTableDescription.setStartTime(DateJsonUnmarshallerFactory.getInstance("unixTimestamp").unmarshall(context));
}
if (context.testExpression("EndTime", targetDepth)) {
context.nextToken();
importTableDescription.setEndTime(DateJsonUnmarshallerFactory.getInstance("unixTimestamp").unmarshall(context));
}
if (context.testExpression("ProcessedSizeBytes", targetDepth)) {
context.nextToken();
importTableDescription.setProcessedSizeBytes(context.getUnmarshaller(Long.class).unmarshall(context));
}
if (context.testExpression("ProcessedItemCount", targetDepth)) {
context.nextToken();
importTableDescription.setProcessedItemCount(context.getUnmarshaller(Long.class).unmarshall(context));
}
if (context.testExpression("ImportedItemCount", targetDepth)) {
context.nextToken();
importTableDescription.setImportedItemCount(context.getUnmarshaller(Long.class).unmarshall(context));
}
if (context.testExpression("FailureCode", targetDepth)) {
context.nextToken();
importTableDescription.setFailureCode(context.getUnmarshaller(String.class).unmarshall(context));
}
if (context.testExpression("FailureMessage", targetDepth)) {
context.nextToken();
importTableDescription.setFailureMessage(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 importTableDescription;
}
private static ImportTableDescriptionJsonUnmarshaller instance;
public static ImportTableDescriptionJsonUnmarshaller getInstance() {
if (instance == null)
instance = new ImportTableDescriptionJsonUnmarshaller();
return instance;
}
}