ResendValidationEmail
Source:
src/AWS/ACM/ResendValidationEmail.ts
Runtime binding for acm:ResendValidationEmail.
Bind this operation to a Certificate requested with
validationMethod: "EMAIL" to get a callable that re-sends the domain
ownership validation email — e.g. behind a “resend email” button in an
onboarding flow. Calling it on a DNS-validated certificate fails with the
typed InvalidStateException. Provide the implementation with
Effect.provide(AWS.ACM.ResendValidationEmailHttp).
Validating Certificates
Section titled “Validating Certificates”// init — bind the operation to the certificateconst resendValidationEmail = yield* AWS.ACM.ResendValidationEmail(certificate);
// runtimeyield* resendValidationEmail({ Domain: "www.example.com", ValidationDomain: "example.com",});