def rule(event):
    if all(
        [
            event.deep_get("Status", default="") == "Success",
            event.deep_get("AppId", default="") == "Insert Application ID use OR for multiple",
            event.deep_get("AuthenticationRequirement", default="") == "singleFactorAuthentication",
        ]
    ):
        return True
    return False
