AWSLambdaEnvironment

Objective-C

@interface AWSLambdaEnvironment

Swift

class AWSLambdaEnvironment

A function’s environment variable settings. You can use environment variables to adjust your function’s behavior without updating code. An environment variable is a pair of strings that are stored in a function’s version-specific configuration.

  • Environment variable key-value pairs. For more information, see Using Lambda environment variables.

    Declaration

    Objective-C

    @property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable variables;

    Swift

    var variables: [String : String]? { get set }