Vincent Lee
Vincent Lee
Using `returnValueAsString: true` on the upstream works as well. ``` String result = invokeLambda( functionName: 'myLambdaFunction', payloadAsString: '{"key": "value"}', returnValueAsString: true ) ``` https://github.com/jenkinsci/pipeline-aws-plugin#invokelambda Introduced in 1.17 https://github.com/jenkinsci/pipeline-aws-plugin#117-use--118
I have a similar issue when batching operations. Terraform version: 1.5.7 Provider version: 5.40.0 ## From ```hcl resource "aws_dynamodb_table" "my_lock_table" { name = "my-lock-table" read_capacity = 2 write_capacity = 2...