UNPKG

mongodb-stitch

Version:

[![Join the chat at https://gitter.im/mongodb/stitch](https://badges.gitter.im/mongodb/stitch.svg)](https://gitter.im/mongodb/stitch?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

22 lines (21 loc) 634 B
export declare class AwsRequest { readonly service: string; readonly action: string; readonly region: string | undefined; readonly args: object; constructor(service: string, action: string, region: string | undefined, args: object); } export declare namespace AwsRequest { class Builder { private service; private action; private region; private args; constructor(); withService(service: string): this; withAction(action: string): this; withRegion(region: string): this; withArgs(args: object): this; build(): AwsRequest; } }