1.2.9 • Published 2 years ago

@types/amazon-dax-client v1.2.9

Weekly downloads
412
License
MIT
Repository
github
Last release
2 years ago

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

// Type definitions for amazon-dax-client 1.2
// Project: https://aws.amazon.com/dynamodb/dax/
// Definitions by: Courtney Pitcher <https://github.com/IgniparousTempest>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

/// <reference types="node"/>
import * as AWS from 'aws-sdk';

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?: ReadonlyArray<string> | undefined;
    accessKeyId?: string | undefined;
    secretAccessKey?: 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

Credits

These definitions were written by Courtney Pitcher.

1.2.9

2 years ago

1.2.8

2 years ago

1.2.7

2 years ago

1.2.6

2 years ago

1.2.5

2 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.2

4 years ago

1.2.1

4 years ago

1.2.0

5 years ago