Package io.fathom.cloud.compute.api.aws.ec2.actions

Source Code of io.fathom.cloud.compute.api.aws.ec2.actions.DeleteKeyPair

package io.fathom.cloud.compute.api.aws.ec2.actions;

import io.fathom.cloud.compute.api.aws.ec2.model.DeleteKeyPairResponse;

@AwsAction("DeleteKeyPair")
public class DeleteKeyPair extends AwsActionHandler {
    @Override
    public Object go() {
        DeleteKeyPairResponse response = new DeleteKeyPairResponse();
        response.requestId = getRequestId();
        response.returnValue = true;

        return response;
    }
}
TOP

Related Classes of io.fathom.cloud.compute.api.aws.ec2.actions.DeleteKeyPair

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.