%% WARNING: DO NOT EDIT, AUTO-GENERATED CODE! %% See https://github.com/aws-beam/aws-codegen for more details. %% @doc Amazon EC2 Instance Connect enables system administrators to publish %% one-time use SSH public keys to EC2, providing users a simple and secure %% way to connect to their instances. -module(aws_ec2_instance_connect). -export([send_serial_console_ssh_public_key/2, send_serial_console_ssh_public_key/3, send_ssh_public_key/2, send_ssh_public_key/3]). -include_lib("hackney/include/hackney_lib.hrl"). %%==================================================================== %% API %%==================================================================== %% @doc Pushes an SSH public key to the specified EC2 instance. %% %% The key remains for 60 seconds, which gives you 60 seconds to establish a %% serial console connection to the instance using SSH. For more information, %% see EC2 Serial Console in the Amazon EC2 User Guide. send_serial_console_ssh_public_key(Client, Input) when is_map(Client), is_map(Input) -> send_serial_console_ssh_public_key(Client, Input, []). send_serial_console_ssh_public_key(Client, Input, Options) when is_map(Client), is_map(Input), is_list(Options) -> request(Client, <<"SendSerialConsoleSSHPublicKey">>, Input, Options). %% @doc Pushes an SSH public key to the specified EC2 instance for use by the %% specified user. %% %% The key remains for 60 seconds. For more information, see Connect to your %% Linux instance using EC2 Instance Connect in the Amazon EC2 User Guide. send_ssh_public_key(Client, Input) when is_map(Client), is_map(Input) -> send_ssh_public_key(Client, Input, []). send_ssh_public_key(Client, Input, Options) when is_map(Client), is_map(Input), is_list(Options) -> request(Client, <<"SendSSHPublicKey">>, Input, Options). %%==================================================================== %% Internal functions %%==================================================================== -spec request(aws_client:aws_client(), binary(), map(), list()) -> {ok, Result, {integer(), list(), hackney:client()}} | {error, Error, {integer(), list(), hackney:client()}} | {error, term()} when Result :: map() | undefined, Error :: map(). request(Client, Action, Input, Options) -> RequestFun = fun() -> do_request(Client, Action, Input, Options) end, aws_request:request(RequestFun, Options). do_request(Client, Action, Input0, Options) -> Client1 = Client#{service => <<"ec2-instance-connect">>}, Host = build_host(<<"ec2-instance-connect">>, Client1), URL = build_url(Host, Client1), Headers = [ {<<"Host">>, Host}, {<<"Content-Type">>, <<"application/x-amz-json-1.1">>}, {<<"X-Amz-Target">>, <<"AWSEC2InstanceConnectService.", Action/binary>>} ], Input = Input0, Payload = jsx:encode(Input), SignedHeaders = aws_request:sign_request(Client1, <<"POST">>, URL, Headers, Payload), Response = hackney:request(post, URL, SignedHeaders, Payload, Options), handle_response(Response). handle_response({ok, 200, ResponseHeaders, Client}) -> case hackney:body(Client) of {ok, <<>>} -> {ok, undefined, {200, ResponseHeaders, Client}}; {ok, Body} -> Result = jsx:decode(Body), {ok, Result, {200, ResponseHeaders, Client}} end; handle_response({ok, StatusCode, ResponseHeaders, Client}) -> {ok, Body} = hackney:body(Client), Error = jsx:decode(Body), {error, Error, {StatusCode, ResponseHeaders, Client}}; handle_response({error, Reason}) -> {error, Reason}. build_host(_EndpointPrefix, #{region := <<"local">>, endpoint := Endpoint}) -> Endpoint; build_host(_EndpointPrefix, #{region := <<"local">>}) -> <<"localhost">>; build_host(EndpointPrefix, #{region := Region, endpoint := Endpoint}) -> aws_util:binary_join([EndpointPrefix, Region, Endpoint], <<".">>). build_url(Host, Client) -> Proto = maps:get(proto, Client), Port = maps:get(port, Client), aws_util:binary_join([Proto, <<"://">>, Host, <<":">>, Port, <<"/">>], <<"">>).