com.amazonaws.services.lambda.invoke.LambdaFunction Java Examples
The following examples show how to use
com.amazonaws.services.lambda.invoke.LambdaFunction.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: FederationService.java From aws-athena-query-federation with Apache License 2.0 | 4 votes |
@LambdaFunction FederationResponse call(final FederationRequest request);
Example #2
Source File: FederationServiceProvider.java From aws-athena-query-federation with Apache License 2.0 | 4 votes |
@Override public String getFunctionName(Method method, LambdaFunction lambdaFunction, LambdaInvokerFactoryConfig lambdaInvokerFactoryConfig) { return function; }
Example #3
Source File: LambdaSeleniumService.java From lambda-selenium with MIT License | 4 votes |
@LambdaFunction(functionName = "lambda-selenium-function") TestResult runTest(TestRequest testRequest);
Example #4
Source File: LambdaFunctionService.java From service-block-samples with Apache License 2.0 | 4 votes |
@LambdaFunction(functionName="account-activated", logType = LogType.Tail) Account accountActivated(AccountEvent event);
Example #5
Source File: LambdaFunctionService.java From service-block-samples with Apache License 2.0 | 4 votes |
@LambdaFunction(functionName="account-suspended", logType = LogType.Tail) Account accountSuspended(AccountEvent event);
Example #6
Source File: FunctionService.java From service-block-samples with Apache License 2.0 | 4 votes |
@LambdaFunction(functionName="commit-metrics", logType = LogType.Tail) Map<String, Object> tightCouplingQuery(Map event);
Example #7
Source File: LambdaInvokerService.java From jrestless with Apache License 2.0 | 4 votes |
@LambdaFunction DefaultServiceResponse execute(ServiceRequest request);
Example #8
Source File: MetadataService.java From aws-athena-query-federation with Apache License 2.0 | 2 votes |
/** * Returns metadata corresponding to the request type. * * @param request The metadata request. * @return The metadata. */ @LambdaFunction(functionName = "metadata") MetadataResponse getMetadata(final MetadataRequest request);
Example #9
Source File: RecordService.java From aws-athena-query-federation with Apache License 2.0 | 2 votes |
/** * Returns data/records corresponding to the request type. * * @param request The data/records request. * @return The data/records. */ @LambdaFunction(functionName = "record") RecordResponse readRecords(final RecordRequest request);