Coder Social home page Coder Social logo

awslambdacsharpintroduction's People

Contributors

guitarrapc avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

ize1020

awslambdacsharpintroduction's Issues

Pass custom parameter to AWS lambda function Handler in c#

Hi,
I am trying to pass custom object as a input parameter to function handler in c#. It is working fine locally. I have created the api gateway in aws lambda function. and trying to call that api through postman. I am passing custom object input parameter in body and returning the same object. but input is passing as null to the function handler.

public Rootobject FunctionHandler(EmailData input, ILambdaContext context)
{
var data = JsonConvert.SerializeObject(input);
Rootobject rootobject = new Rootobject()
{
isBase64Encoded = false,
statusCode = 200,
body = data
};
return rootobject;
}

public class EmailData
{
public string EmailAddress { get; set; }
public List<KeyValuePair<string, string>> files { get; set; }

}
 This is my code. Can anyone tell me what is the issue. 
Do I need to configure anything in api gateway to pass the custom object parameter?

Please help me.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.