Skip to content

Commit dff0caa

Browse files
committed
Refactoring
1 parent fde65fc commit dff0caa

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

awslambdainvoke/src/main/java/example/LambdaInvoke.java

+10-6
Original file line numberDiff line numberDiff line change
@@ -7,34 +7,36 @@
77

88
package example;
99

10-
import java.io.IOException;
10+
import software.amazon.awssdk.core.SdkBytes;
1111
import software.amazon.awssdk.core.exception.SdkException;
1212
import software.amazon.awssdk.awscore.exception.AwsServiceException;
1313
import software.amazon.awssdk.services.lambda.LambdaClient;
1414
import software.amazon.awssdk.regions.Region;
1515
import software.amazon.awssdk.services.lambda.model.InvokeRequest;
16-
import software.amazon.awssdk.core.SdkBytes;
1716
import software.amazon.awssdk.services.lambda.model.InvokeResponse;
1817
import software.amazon.awssdk.services.lambda.model.ServiceException;
1918

19+
2020
public class LambdaInvoke {
2121

2222
private static final Region REGION = Region.of("eu-west-1"); // Region name
2323

24-
public static void main(String[] args) throws IOException {
24+
public static void main(String[] args) {
2525

2626
if (args.length < 1) {
27-
System.out.println("Not enough parameters.\nProper Usage is: java -jar lambdainvoke.jar <FUNCTION_NAME>");
27+
System.out.println("Not enough parameters.\n" +
28+
"Proper Usage is: java -jar lambdainvoke.jar <FUNCTION_NAME>");
2829
System.exit(1);
2930
}
3031

3132
String functionName = args[0];
3233

3334
System.out.println("Lambda function name: " + functionName);
3435

35-
InvokeResponse res = null ;
36+
LambdaClient awsLambda = LambdaClient.builder().region(REGION).build();
37+
3638
try {
37-
LambdaClient awsLambda = LambdaClient.builder().region(REGION).build();
39+
System.out.println("Invoking Lambda function ...");
3840

3941
//Need a SdkBytes instance for the payload
4042
SdkBytes payload = SdkBytes.fromUtf8String("{\n" +
@@ -49,6 +51,7 @@ public static void main(String[] args) throws IOException {
4951
.build();
5052

5153
//Invoke the Lambda function
54+
InvokeResponse res = null ;
5255
res = awsLambda.invoke(request);
5356

5457
//Get the response
@@ -79,5 +82,6 @@ public static void main(String[] args) throws IOException {
7982
"such as not being able to access the network.");
8083
System.out.println("Error Message: " + se.getMessage());
8184
}
85+
awsLambda.close();
8286
}
8387
}

0 commit comments

Comments
 (0)