Skip to content

Commit 3b67b29

Browse files
authored
Merge branch 'aws:main' into main
2 parents 54fbf5c + 317b5ad commit 3b67b29

File tree

1 file changed

+9
-0
lines changed
  • aws-lambda-java-core/src/main/java/com/amazonaws/services/lambda/runtime

1 file changed

+9
-0
lines changed

aws-lambda-java-core/src/main/java/com/amazonaws/services/lambda/runtime/Context.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,13 @@ public interface Context {
100100
*/
101101
LambdaLogger getLogger();
102102

103+
/**
104+
*
105+
* Returns the tenant ID associated with the request.
106+
*
107+
* @return null by default
108+
*/
109+
default String getTenantId() {
110+
return null;
111+
}
103112
}

0 commit comments

Comments
 (0)