Skip to content

Commit

Permalink
fix(example): correct the task example for AWS Lambda
Browse files Browse the repository at this point in the history
  • Loading branch information
shrutimantri committed Jan 28, 2024
1 parent ed366ed commit 67577b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/io/kestra/plugin/aws/lambda/Invoke.java
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"functionArn: \"arn:aws:lambda:us-west-2:123456789012:function:my-function\""
"functionArn: \"arn:aws:lambda:eu-central-1:123456789012:function:my-function\""
}
),
@Example(
Expand All @@ -66,7 +66,7 @@
"accessKeyId: \"<access-key>\"",
"secretKeyId: \"<secret-key>\"",
"region: \"eu-central-1\"",
"functionArn: \"arn:aws:lambda:us-west-2:123456789012:function:my-function\"",
"functionArn: \"arn:aws:lambda:eu-central-1:123456789012:function:my-function\"",
"functionPayload:",
" id: 1",
" firstname: \"John\"",
Expand Down

0 comments on commit 67577b1

Please sign in to comment.