com.amazonaws.services.codeartifact.model.transform.DomainDescriptionMarshaller Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-codeartifact Show documentation
Show all versions of aws-java-sdk-codeartifact Show documentation
The AWS Java SDK for CodeArtifact module holds the client classes that are used for communicating with CodeArtifact 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.codeartifact.model.transform;
import javax.annotation.Generated;
import com.amazonaws.SdkClientException;
import com.amazonaws.services.codeartifact.model.*;
import com.amazonaws.protocol.*;
import com.amazonaws.annotation.SdkInternalApi;
/**
* DomainDescriptionMarshaller
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
@SdkInternalApi
public class DomainDescriptionMarshaller {
private static final MarshallingInfo NAME_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("name").build();
private static final MarshallingInfo OWNER_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("owner").build();
private static final MarshallingInfo ARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("arn").build();
private static final MarshallingInfo STATUS_BINDING = MarshallingInfo.builder(MarshallingType.STRING).marshallLocation(MarshallLocation.PAYLOAD)
.marshallLocationName("status").build();
private static final MarshallingInfo CREATEDTIME_BINDING = MarshallingInfo.builder(MarshallingType.DATE)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("createdTime").timestampFormat("unixTimestamp").build();
private static final MarshallingInfo ENCRYPTIONKEY_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("encryptionKey").build();
private static final MarshallingInfo REPOSITORYCOUNT_BINDING = MarshallingInfo.builder(MarshallingType.INTEGER)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("repositoryCount").build();
private static final MarshallingInfo ASSETSIZEBYTES_BINDING = MarshallingInfo.builder(MarshallingType.LONG)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("assetSizeBytes").build();
private static final MarshallingInfo S3BUCKETARN_BINDING = MarshallingInfo.builder(MarshallingType.STRING)
.marshallLocation(MarshallLocation.PAYLOAD).marshallLocationName("s3BucketArn").build();
private static final DomainDescriptionMarshaller instance = new DomainDescriptionMarshaller();
public static DomainDescriptionMarshaller getInstance() {
return instance;
}
/**
* Marshall the given parameter object.
*/
public void marshall(DomainDescription domainDescription, ProtocolMarshaller protocolMarshaller) {
if (domainDescription == null) {
throw new SdkClientException("Invalid argument passed to marshall(...)");
}
try {
protocolMarshaller.marshall(domainDescription.getName(), NAME_BINDING);
protocolMarshaller.marshall(domainDescription.getOwner(), OWNER_BINDING);
protocolMarshaller.marshall(domainDescription.getArn(), ARN_BINDING);
protocolMarshaller.marshall(domainDescription.getStatus(), STATUS_BINDING);
protocolMarshaller.marshall(domainDescription.getCreatedTime(), CREATEDTIME_BINDING);
protocolMarshaller.marshall(domainDescription.getEncryptionKey(), ENCRYPTIONKEY_BINDING);
protocolMarshaller.marshall(domainDescription.getRepositoryCount(), REPOSITORYCOUNT_BINDING);
protocolMarshaller.marshall(domainDescription.getAssetSizeBytes(), ASSETSIZEBYTES_BINDING);
protocolMarshaller.marshall(domainDescription.getS3BucketArn(), S3BUCKETARN_BINDING);
} catch (Exception e) {
throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy