You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Code examples that show you how to perform the essential operations within a service.
40
+
41
+
-[Learn the basics](scenarios/scenario_get_started_functions.go)
42
+
43
+
37
44
### Single actions
38
45
39
46
Code excerpts that show you how to call individual service functions.
@@ -53,7 +60,6 @@ functions within the same service.
53
60
54
61
-[Automatically confirm known users with a Lambda function](../workflows/user_pools_and_lambda_triggers/workflows/scenario_auto_confirm_trusted_accounts.go)
55
62
-[Automatically migrate known users with a Lambda function](../workflows/user_pools_and_lambda_triggers/workflows/scenario_migrate_user.go)
56
-
-[Get started with functions](scenarios/scenario_get_started_functions.go)
57
63
-[Write custom activity data with a Lambda function after Amazon Cognito user authentication](../workflows/user_pools_and_lambda_triggers/workflows/scenario_activity_log.go)
58
64
59
65
@@ -84,6 +90,23 @@ and to get help for running a scenario, use the following command:
84
90
```
85
91
go run ./cmd -h
86
92
```
93
+
#### Learn the basics
94
+
95
+
This example shows you how to do the following:
96
+
97
+
- Create an IAM role and Lambda function, then upload handler code.
98
+
- Invoke the function with a single parameter and get results.
99
+
- Update the function code and configure with an environment variable.
100
+
- Invoke the function with new parameters and get results. Display the returned execution log.
101
+
- List the functions for your account, then clean up resources.
0 commit comments