All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.amazonaws.services.lambda.runtime.LambdaLogger Maven / Gradle / Ivy

There is a newer version: 1.2.3
Show newest version
/* Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved. */

package com.amazonaws.services.lambda.runtime;

/**
 * A low level Lambda runtime logger
 *
 */
public interface LambdaLogger {

    /**
    * Logs a string to AWS CloudWatch Logs
    * 
    * 

* Logging will not be done: *

    *
  • * If the container is not configured to log to CloudWatch. *
  • *
  • * If the role provided to the function does not have sufficient permissions. *
  • *
*

* * @param string A string containing the event to log. */ public void log(String string); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy