com.amazonaws.services.devopsguru.model.transform.ProactiveOrganizationInsightSummaryMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-devopsguru Show documentation
Show all versions of aws-java-sdk-devopsguru Show documentation
The AWS Java SDK for Amazon DevOps Guru module holds the client classes that are used for communicating with Amazon DevOps Guru 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.devopsguru.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.devopsguru.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* ProactiveOrganizationInsightSummaryMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class ProactiveOrganizationInsightSummaryMarshaller {
private static final MarshallingInfo ID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Id").build();
private static final MarshallingInfo ACCOUNTID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("AccountId").build();
private static final MarshallingInfo ORGANIZATIONALUNITID_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("OrganizationalUnitId").build();
private static final MarshallingInfo NAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Name").build();
private static final MarshallingInfo SEVERITY_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Severity").build();
private static final MarshallingInfo STATUS_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("Status").build();
private static final MarshallingInfo INSIGHTTIMERANGE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("InsightTimeRange").build();
private static final MarshallingInfo PREDICTIONTIMERANGE_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("PredictionTimeRange").build();
private static final MarshallingInfo RESOURCECOLLECTION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ResourceCollection").build();
private static final MarshallingInfo SERVICECOLLECTION_BINDING = MarshallingInfo.builder(MarshallingType.STRUCTURED)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("ServiceCollection").build();
private static final ProactiveOrganizationInsightSummaryMarshaller instance = new ProactiveOrganizationInsightSummaryMarshaller();
public static ProactiveOrganizationInsightSummaryMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(ProactiveOrganizationInsightSummary proactiveOrganizationInsightSummary, ProtocolMarshaller protocolMarshaller) {
if (proactiveOrganizationInsightSummary == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getId(), ID_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getAccountId(), ACCOUNTID_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getOrganizationalUnitId(), ORGANIZATIONALUNITID_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getName(), NAME_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getSeverity(), SEVERITY_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getStatus(), STATUS_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getInsightTimeRange(), INSIGHTTIMERANGE_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getPredictionTimeRange(), PREDICTIONTIMERANGE_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getResourceCollection(), RESOURCECOLLECTION_BINDING);
protocolMarshaller.marshall(proactiveOrganizationInsightSummary.getServiceCollection(), SERVICECOLLECTION_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}