author John Corrales <jjcorrales3@gmail.com> 1576380101 -0800 committer John Corrales <jjcorrales3@gmail.com> 1576633072 -0800 added send_ssh_public_key
10 lines
261 B
Python
10 lines
261 B
Python
import json
|
|
from moto.core.responses import BaseResponse
|
|
|
|
|
|
class Ec2InstanceConnectResponse(BaseResponse):
|
|
def send_ssh_public_key(self):
|
|
return json.dumps(
|
|
{"RequestId": "example-2a47-4c91-9700-e37e85162cb6", "Success": True}
|
|
)
|