DescribeCodeBinding
Source:
src/AWS/Schemas/DescribeCodeBinding.ts
Runtime binding for schemas:DescribeCodeBinding.
Reads the code-binding generation status for the bound Schema in a
target language — poll it after PutCodeBinding until the status is
CREATE_COMPLETE. The registry and schema names are injected from the
binding. Provide the implementation with
Effect.provide(AWS.Schemas.DescribeCodeBindingHttp).
Code Bindings
Section titled “Code Bindings”// init — bind the operation to the schemaconst describeCodeBinding = yield* AWS.Schemas.DescribeCodeBinding(schema);
// runtimeconst { Status } = yield* describeCodeBinding({ Language: "Python36" });if (Status === "CREATE_COMPLETE") { // the package is ready to download via GetCodeBindingSource}