Skip to content

RenewCertificate

Source: src/AWS/ACM/RenewCertificate.ts

Runtime binding for acm:RenewCertificate.

Bind this operation to a Certificate to get a callable that forces managed renewal of an eligible certificate — typically an exported certificate whose renewal is not fully automatic. Useful in rotation functions that renew and then re-export a certificate. Provide the implementation with Effect.provide(AWS.ACM.RenewCertificateHttp).

// init — bind the operation to the certificate
const renewCertificate = yield* AWS.ACM.RenewCertificate(certificate);
// runtime
yield* renewCertificate();