import type * as licensemanager from "@distilled.cloud/aws/license-manager"; import type * as Effect from "effect/Effect"; import * as Binding from "../../Binding.ts"; /** * Request for {@link GetGrant}. */ export interface GetGrantRequest extends licensemanager.GetGrantRequest { } /** * Runtime binding for `license-manager:GetGrant` — read a license grant's * details (grantee, allowed operations, status) by ARN. * * Provide the implementation with * `Effect.provide(AWS.LicenseManager.GetGrantHttp)`. * ### Reading Licenses and Grants * **Example:** Read a Grant * ```typescript * // init * const getGrant = yield* AWS.LicenseManager.GetGrant(); * * // runtime * const { Grant } = yield* getGrant({ GrantArn: grantArn }); * ``` * * @binding */ export interface GetGrant extends Binding.Service Effect.Effect<(request: GetGrantRequest) => Effect.Effect>> { } export declare const GetGrant: GetGrant; //# sourceMappingURL=GetGrant.d.ts.map