Skip to content

Commit bf151a6

Browse files
committed
updated Lambda Readme
1 parent 53a70ce commit bf151a6

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

javav2/example_code/lambda/README.md

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -31,23 +31,26 @@ For prerequisites, see the [README](../../README.md#Prerequisites) in the `javav
3131

3232
### Get started
3333

34-
- [Hello Lambda](src/main/java/com/example/lambda/ListLambdaFunctions.java#L4) (`ListFunctions`)
34+
- [Hello Lambda](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L219) (`ListFunctions`)
3535

3636

37-
### Single actions
37+
### Basics
3838

39-
Code excerpts that show you how to call individual service functions.
39+
Code examples that show you how to perform the essential operations within a service.
4040

41-
- [CreateFunction](src/main/java/com/example/lambda/CreateFunction.java#L6)
42-
- [DeleteFunction](src/main/java/com/example/lambda/DeleteFunction.java#L7)
43-
- [Invoke](src/main/java/com/example/lambda/LambdaInvoke.java#L7)
41+
- [Learn the basics](src/main/java/com/example/lambda/scenario/LambdaScenario.java)
4442

45-
### Scenarios
4643

47-
Code examples that show you how to accomplish a specific task by calling multiple
48-
functions within the same service.
44+
### Single actions
4945

50-
- [Get started with functions](src/main/java/com/example/lambda/LambdaScenario.java)
46+
Code excerpts that show you how to call individual service functions.
47+
48+
- [CreateFunction](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L144)
49+
- [DeleteFunction](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L338)
50+
- [GetFunction](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L196)
51+
- [Invoke](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L242)
52+
- [UpdateFunctionCode](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L196)
53+
- [UpdateFunctionConfiguration](src/main/java/com/example/lambda/scenario/LambdaScenario.java#L311)
5154

5255

5356
<!--custom.examples.start-->
@@ -66,8 +69,7 @@ functions within the same service.
6669
This example shows you how to get started using Lambda.
6770

6871

69-
70-
#### Get started with functions
72+
#### Learn the basics
7173

7274
This example shows you how to do the following:
7375

@@ -77,12 +79,13 @@ This example shows you how to do the following:
7779
- Invoke the function with new parameters and get results. Display the returned execution log.
7880
- List the functions for your account, then clean up resources.
7981

80-
<!--custom.scenario_prereqs.lambda_Scenario_GettingStartedFunctions.start-->
81-
<!--custom.scenario_prereqs.lambda_Scenario_GettingStartedFunctions.end-->
82+
<!--custom.basic_prereqs.lambda_Scenario_GettingStartedFunctions.start-->
83+
<!--custom.basic_prereqs.lambda_Scenario_GettingStartedFunctions.end-->
84+
8285

86+
<!--custom.basics.lambda_Scenario_GettingStartedFunctions.start-->
87+
<!--custom.basics.lambda_Scenario_GettingStartedFunctions.end-->
8388

84-
<!--custom.scenarios.lambda_Scenario_GettingStartedFunctions.start-->
85-
<!--custom.scenarios.lambda_Scenario_GettingStartedFunctions.end-->
8689

8790
### Tests
8891

0 commit comments

Comments
 (0)