7
7
8
8
package example ;
9
9
10
- import java . io . IOException ;
10
+ import software . amazon . awssdk . core . SdkBytes ;
11
11
import software .amazon .awssdk .core .exception .SdkException ;
12
12
import software .amazon .awssdk .awscore .exception .AwsServiceException ;
13
13
import software .amazon .awssdk .services .lambda .LambdaClient ;
14
14
import software .amazon .awssdk .regions .Region ;
15
15
import software .amazon .awssdk .services .lambda .model .InvokeRequest ;
16
- import software .amazon .awssdk .core .SdkBytes ;
17
16
import software .amazon .awssdk .services .lambda .model .InvokeResponse ;
18
17
import software .amazon .awssdk .services .lambda .model .ServiceException ;
19
18
19
+
20
20
public class LambdaInvoke {
21
21
22
22
private static final Region REGION = Region .of ("eu-west-1" ); // Region name
23
23
24
- public static void main (String [] args ) throws IOException {
24
+ public static void main (String [] args ) {
25
25
26
26
if (args .length < 1 ) {
27
- System .out .println ("Not enough parameters.\n Proper 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>" );
28
29
System .exit (1 );
29
30
}
30
31
31
32
String functionName = args [0 ];
32
33
33
34
System .out .println ("Lambda function name: " + functionName );
34
35
35
- InvokeResponse res = null ;
36
+ LambdaClient awsLambda = LambdaClient .builder ().region (REGION ).build ();
37
+
36
38
try {
37
- LambdaClient awsLambda = LambdaClient . builder (). region ( REGION ). build ( );
39
+ System . out . println ( "Invoking Lambda function ..." );
38
40
39
41
//Need a SdkBytes instance for the payload
40
42
SdkBytes payload = SdkBytes .fromUtf8String ("{\n " +
@@ -49,6 +51,7 @@ public static void main(String[] args) throws IOException {
49
51
.build ();
50
52
51
53
//Invoke the Lambda function
54
+ InvokeResponse res = null ;
52
55
res = awsLambda .invoke (request );
53
56
54
57
//Get the response
@@ -79,5 +82,6 @@ public static void main(String[] args) throws IOException {
79
82
"such as not being able to access the network." );
80
83
System .out .println ("Error Message: " + se .getMessage ());
81
84
}
85
+ awsLambda .close ();
82
86
}
83
87
}
0 commit comments