namespace Amazon.Lambda.TestTool.Runtime
{
///
/// The information used to execute the Lambda function within the test tool
///
public class ExecutionRequest
{
///
/// The container for the holds a reference to the code executed for the Lambda function.
///
public LambdaFunction Function { get; set; }
///
/// The AWS region that the AWS_REGION environment variable is set to so the AWS SDK for .NET will pick up.
///
public string AWSRegion { get; set; }
///
/// The AWS profile that the AWS_PROFILE environment variable is set to so the AWS SDK for .NET will pick up and use for credentials.
///
public string AWSProfile { get; set; }
///
/// The JSON payload that will be the input of the Lambda function.
///
public string Payload { get; set; }
}
}