PutImage
Source:
src/AWS/ECRPublic/PutImage.ts
Runtime binding for ecr-public:PutImage.
Creates or updates an image manifest in the bound
PublicRepository — the final step of an image push after all
referenced layers are uploaded (InitiateLayerUpload →
UploadLayerPart → CompleteLayerUpload). Provide the
implementation with Effect.provide(AWS.ECRPublic.PutImageHttp).
Pushing Images
Section titled “Pushing Images”// initconst putImage = yield* AWS.ECRPublic.PutImage(repository);
// runtimeconst result = yield* putImage({ imageManifest: JSON.stringify(manifest), imageManifestMediaType: "application/vnd.oci.image.manifest.v1+json", imageTag: "latest",});