Skip to content

Instantly share code, notes, and snippets.

@awswithdotnet
Created April 1, 2022 18:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awswithdotnet/a36c4b04e0045a5b8b204a3849b9fc7e to your computer and use it in GitHub Desktop.
Save awswithdotnet/a36c4b04e0045a5b8b204a3849b9fc7e to your computer and use it in GitHub Desktop.
S3 Presigned Api UploadController Partial 1
using Amazon;
using Amazon.S3;
using Amazon.S3.Model;
using Api.Models;
using Microsoft.AspNetCore.Mvc;
namespace Api.Controllers;
[ApiController]
[Route("[controller]")]
public class UploadController : ControllerBase
{
[HttpPost]
public async Task<IActionResult> Post(CreateSignedUrlRequest createSignedUrlRequest)
{
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment