@bitblit/ratchet-aws
Version:
Common tools for use with AWS browser and node
9 lines (8 loc) • 375 B
TypeScript
import { Route53Client } from '@aws-sdk/client-route-53';
export declare class Route53Ratchet {
private route53;
private hostedZoneId;
constructor(route53: Route53Client, hostedZoneId: string);
get route53Client(): Route53Client;
changeCnameRecordTarget(domainName: string, target: string, hostedZoneId?: string, ttlSeconds?: number): Promise<boolean>;
}