GetListing
Source:
src/AWS/DataZone/GetListing.ts
Runtime binding for datazone:GetListing.
Reads a published listing in the bound domain by id. The domain id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataZone.GetListingHttp).
Searching the Catalog
Section titled “Searching the Catalog”// init — bind the operation to the domainconst getListing = yield* AWS.DataZone.GetListing(domain);
// runtimeconst listing = yield* getListing({ identifier: listingId });