AWSLambdaEnvironmentResponse
Objective-C
@interface AWSLambdaEnvironmentResponse
Swift
class AWSLambdaEnvironmentResponse
The results of an operation to update or read environment variables. If the operation is successful, the response contains the environment variables. If it failed, the response contains details about the error.
-
Error messages for environment variables that couldn’t be applied.
Declaration
Objective-C
@property (nonatomic, strong) AWSLambdaEnvironmentError *_Nullable error;
Swift
var error: AWSLambdaEnvironmentError? { get set }
-
Environment variable key-value pairs.
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary<NSString *, NSString *> *_Nullable variables;
Swift
var variables: [String : String]? { get set }