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

com.amazonaws.services.lambda.runtime.ClientContext 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;

import java.util.Map;

/**
 * 
 * Provides information about cLient configuration and execution environment.
 *
 */
public interface ClientContext {
    /**
     * Gets the client information provided by the AWS Mobile SDK
     * 
     */
    public Client getClient();

    /**
     * Gets custom values set by the client application
     * 

* This map is mutable (and not thread-safe if mutated) *

*/ public Map getCustom(); /** * Gets environment information provided by mobile SDK, immutable. * */ public Map getEnvironment(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy