com.amazonaws.services.ssmincidents.model.transform.TimelineEventMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-ssmincidents Show documentation
Show all versions of aws-java-sdk-ssmincidents Show documentation
The AWS Java SDK for AWS Systems Manager Incident Manager module holds the client classes that are used for communicating with AWS Systems Manager Incident Manager 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.ssmincidents.model.transform;
import java.util.List;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.ssmincidents.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* TimelineEventMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class TimelineEventMarshaller {
private static final MarshallingInfo EVENTDATA_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("eventData").build();
private static final MarshallingInfo EVENTID_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("eventId").build();
private static final MarshallingInfo EVENTREFERENCES_BINDING = MarshallingInfo.builder(MarshallingType.LIST)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("eventReferences").build();
private static final MarshallingInfo EVENTTIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("eventTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo EVENTTYPE_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("eventType").build();
private static final MarshallingInfo EVENTUPDATEDTIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("eventUpdatedTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo INCIDENTRECORDARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("incidentRecordArn").build();
private static final TimelineEventMarshaller instance = new TimelineEventMarshaller();
public static TimelineEventMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(TimelineEvent timelineEvent, ProtocolMarshaller protocolMarshaller) {
if (timelineEvent == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(timelineEvent.getEventData(), EVENTDATA_BINDING);
protocolMarshaller.marshall(timelineEvent.getEventId(), EVENTID_BINDING);
protocolMarshaller.marshall(timelineEvent.getEventReferences(), EVENTREFERENCES_BINDING);
protocolMarshaller.marshall(timelineEvent.getEventTime(), EVENTTIME_BINDING);
protocolMarshaller.marshall(timelineEvent.getEventType(), EVENTTYPE_BINDING);
protocolMarshaller.marshall(timelineEvent.getEventUpdatedTime(), EVENTUPDATEDTIME_BINDING);
protocolMarshaller.marshall(timelineEvent.getIncidentRecordArn(), INCIDENTRECORDARN_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}