com.amazonaws.services.athena.model.transform.WorkGroupConfigurationUpdatesMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-athena Show documentation
Show all versions of aws-java-sdk-athena Show documentation
The AWS Java SDK for Amazon Athena module holds the client classes that are used for communicating with Amazon Athena Service
The newest version!
/*
* 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.athena.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.athena.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* WorkGroupConfigurationUpdatesMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class WorkGroupConfigurationUpdatesMarshaller {
private static final MarshallingInfo ENFORCEWORKGROUPCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("EnforceWorkGroupConfiguration").build();
private static final MarshallingInfo RESULTCONFIGURATIONUPDATES_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ResultConfigurationUpdates").build();
private static final MarshallingInfo PUBLISHCLOUDWATCHMETRICSENABLED_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("PublishCloudWatchMetricsEnabled").build();
private static final MarshallingInfo BYTESSCANNEDCUTOFFPERQUERY_BINDING = MarshallingInfo.builder(MarshallingType.LONG)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("BytesScannedCutoffPerQuery").build();
private static final MarshallingInfo REMOVEBYTESSCANNEDCUTOFFPERQUERY_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("RemoveBytesScannedCutoffPerQuery").build();
private static final MarshallingInfo REQUESTERPAYSENABLED_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("RequesterPaysEnabled").build();
private static final MarshallingInfo ENGINEVERSION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("EngineVersion").build();
private static final MarshallingInfo REMOVECUSTOMERCONTENTENCRYPTIONCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("RemoveCustomerContentEncryptionConfiguration").build();
private static final MarshallingInfo ADDITIONALCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("AdditionalConfiguration").build();
private static final MarshallingInfo EXECUTIONROLE_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ExecutionRole").build();
private static final MarshallingInfo CUSTOMERCONTENTENCRYPTIONCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("CustomerContentEncryptionConfiguration").build();
private static final MarshallingInfo ENABLEMINIMUMENCRYPTIONCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.BOOLEAN)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("EnableMinimumEncryptionConfiguration").build();
private static final MarshallingInfo QUERYRESULTSS3ACCESSGRANTSCONFIGURATION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("QueryResultsS3AccessGrantsConfiguration").build();
private static final WorkGroupConfigurationUpdatesMarshaller instance = new WorkGroupConfigurationUpdatesMarshaller();
public static WorkGroupConfigurationUpdatesMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(WorkGroupConfigurationUpdates workGroupConfigurationUpdates, ProtocolMarshaller protocolMarshaller) {
if (workGroupConfigurationUpdates == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(workGroupConfigurationUpdates.getEnforceWorkGroupConfiguration(), ENFORCEWORKGROUPCONFIGURATION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getResultConfigurationUpdates(), RESULTCONFIGURATIONUPDATES_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getPublishCloudWatchMetricsEnabled(), PUBLISHCLOUDWATCHMETRICSENABLED_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getBytesScannedCutoffPerQuery(), BYTESSCANNEDCUTOFFPERQUERY_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getRemoveBytesScannedCutoffPerQuery(), REMOVEBYTESSCANNEDCUTOFFPERQUERY_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getRequesterPaysEnabled(), REQUESTERPAYSENABLED_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getEngineVersion(), ENGINEVERSION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getRemoveCustomerContentEncryptionConfiguration(),
REMOVECUSTOMERCONTENTENCRYPTIONCONFIGURATION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getAdditionalConfiguration(), ADDITIONALCONFIGURATION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getExecutionRole(), EXECUTIONROLE_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getCustomerContentEncryptionConfiguration(),
CUSTOMERCONTENTENCRYPTIONCONFIGURATION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getEnableMinimumEncryptionConfiguration(), ENABLEMINIMUMENCRYPTIONCONFIGURATION_BINDING);
protocolMarshaller.marshall(workGroupConfigurationUpdates.getQueryResultsS3AccessGrantsConfiguration(),
QUERYRESULTSS3ACCESSGRANTSCONFIGURATION_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}