Installation
npm install --save @types/amazon-dax-client
Summary
This package contains type definitions for amazon-dax-client (https://aws.amazon.com/dynamodb/dax/).
Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/amazon-dax-client.
index.d.ts
/// <reference types="node"/>
import * as AWS from "aws-sdk2-types";
declare class AmazonDaxClient {
constructor(options: AmazonDaxClientOptions);
createCluster(params?: object, callback?: (err: any, data: object) => void): AWS.Request<object, any>;
}
interface AmazonDaxClientOptions {
params?: Map<string, any> | undefined;
endpoint?: string | undefined;
endpoints?: readonly string[] | undefined;
accessKeyId?: string | undefined;
secretAccessKey?: string | undefined;
sessionToken?: string | undefined;
region?: string | undefined;
maxRetries?: number | undefined;
maxRedirects?: number | undefined;
apiVersion?: string | Date | undefined;
httpOptions?: AmazonDaxClientHttpOptions | undefined;
}
interface AmazonDaxClientHttpOptions {
proxy?: string | undefined;
agent?: any;
connectTimeout?: number | undefined;
timeout?: number | undefined;
xhrAsync?: boolean | undefined;
xhrWithCredentials?: boolean | undefined;
}
export = AmazonDaxClient;
Additional Details
- Last updated: Mon, 20 Nov 2023 23:36:23 GMT
- Dependencies: @types/aws-sdk2-types, @types/node
Credits
These definitions were written by Courtney Pitcher.