StartMetadataGenerationRun
Source:
src/AWS/DataZone/StartMetadataGenerationRun.ts
Runtime binding for datazone:StartMetadataGenerationRun.
Starts an ML metadata generation run (business description suggestions) for an asset in the bound domain. The domain id is injected from the binding.
Provide the implementation with
Effect.provide(AWS.DataZone.StartMetadataGenerationRunHttp).
Metadata Generation
Section titled “Metadata Generation”// init — bind the operation to the domainconst startMetadataGenerationRun = yield* AWS.DataZone.StartMetadataGenerationRun(domain);
// runtimeconst run = yield* startMetadataGenerationRun({ types: ["BUSINESS_DESCRIPTIONS"], target: { type: "ASSET", identifier: assetId }, owningProjectIdentifier: projectId,});