AWSLambdaEnvironmentResponse

Objective-C

@interface AWSLambdaEnvironmentResponse

Swift

class AWSLambdaEnvironmentResponse

The results of an operation to update or read environment variables. If the operation succeeds, the response contains the environment variables. If it fails, 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. Omitted from CloudTrail logs.

    Declaration

    Objective-C

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

    Swift

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