import * as guardduty from "@distilled.cloud/aws/guardduty"; import * as Layer from "effect/Layer"; import { makeGuardDutyAccountHttpBinding } from "./BindingHttp.ts"; import { SendObjectMalwareScan } from "./SendObjectMalwareScan.ts"; export const SendObjectMalwareScanHttp = Layer.effect( SendObjectMalwareScan, makeGuardDutyAccountHttpBinding({ tag: "AWS.GuardDuty.SendObjectMalwareScan", operation: guardduty.sendObjectMalwareScan, actions: ["guardduty:SendObjectMalwareScan"], }), );