com.amazonaws.services.translate.model.transform.TextTranslationJobPropertiesMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-translate Show documentation
Show all versions of aws-java-sdk-translate Show documentation
The AWS Java SDK for Amazon Translate module holds the client classes that are used for communicating with Amazon Translate Service
/*
* Copyright 2019-2024 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.translate.model.transform;
import java.util.List;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.translate.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* TextTranslationJobPropertiesMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class TextTranslationJobPropertiesMarshaller {
private static final MarshallingInfo JOBID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("JobId").build();
private static final MarshallingInfo JOBNAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("JobName").build();
private static final MarshallingInfo JOBSTATUS_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("JobStatus").build();
private static final MarshallingInfo JOBDETAILS_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("JobDetails").build();
private static final MarshallingInfo SOURCELANGUAGECODE_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SourceLanguageCode").build();
private static final MarshallingInfo TARGETLANGUAGECODES_BINDING = MarshallingInfo.builder(MarshallingType.LIST)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("TargetLanguageCodes").build();
private static final MarshallingInfo TERMINOLOGYNAMES_BINDING = MarshallingInfo.builder(MarshallingType.LIST)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("TerminologyNames").build();
private static final MarshallingInfo PARALLELDATANAMES_BINDING = MarshallingInfo.builder(MarshallingType.LIST)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ParallelDataNames").build();
private static final MarshallingInfo MESSAGE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Message").build();
private static final MarshallingInfo SUBMITTEDTIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("SubmittedTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo ENDTIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("EndTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo INPUTDATACONFIG_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("InputDataConfig").build();
private static final MarshallingInfo OUTPUTDATACONFIG_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("OutputDataConfig").build();
private static final MarshallingInfo DATAACCESSROLEARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("DataAccessRoleArn").build();
private static final MarshallingInfo SETTINGS_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("Settings").build();
private static final TextTranslationJobPropertiesMarshaller instance = new TextTranslationJobPropertiesMarshaller();
public static TextTranslationJobPropertiesMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(TextTranslationJobProperties textTranslationJobProperties, ProtocolMarshaller protocolMarshaller) {
if (textTranslationJobProperties == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(textTranslationJobProperties.getJobId(), JOBID_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getJobName(), JOBNAME_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getJobStatus(), JOBSTATUS_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getJobDetails(), JOBDETAILS_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getSourceLanguageCode(), SOURCELANGUAGECODE_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getTargetLanguageCodes(), TARGETLANGUAGECODES_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getTerminologyNames(), TERMINOLOGYNAMES_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getParallelDataNames(), PARALLELDATANAMES_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getMessage(), MESSAGE_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getSubmittedTime(), SUBMITTEDTIME_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getEndTime(), ENDTIME_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getInputDataConfig(), INPUTDATACONFIG_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getOutputDataConfig(), OUTPUTDATACONFIG_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getDataAccessRoleArn(), DATAACCESSROLEARN_BINDING);
protocolMarshaller.marshall(textTranslationJobProperties.getSettings(), SETTINGS_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}