import type * as dataexchange from "@distilled.cloud/aws/dataexchange"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Runtime binding for `dataexchange:GetReceivedDataGrant`. * * Reads a received data grant's detail — sender, acceptance state, and * expiration. * Provide the implementation with * `Effect.provide(AWS.DataExchange.GetReceivedDataGrantHttp)`. * ### Data Grants * **Example:** Inspect A Received Grant * ```typescript * const getReceivedDataGrant = * yield* AWS.DataExchange.GetReceivedDataGrant(); * * // runtime * const grant = yield* getReceivedDataGrant({ DataGrantArn: grantArn }); * ``` * * @binding */ export interface GetReceivedDataGrant extends Binding.Service Effect.Effect<(request: dataexchange.GetReceivedDataGrantRequest) => Effect.Effect>> { } export declare const GetReceivedDataGrant: GetReceivedDataGrant; //# sourceMappingURL=GetReceivedDataGrant.d.ts.map