@vectorize-io/vectorize-client
Version:
Client for the Vectorize API
53 lines (52 loc) • 1.36 kB
TypeScript
/**
* Vectorize API
* API for Vectorize services (Beta)
*
* The version of the OpenAPI document: 0.1.2
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import type { AWSS3AuthConfig } from './AWSS3AuthConfig';
/**
*
* @export
* @interface AwsS3
*/
export interface AwsS3 {
/**
* Name of the connector
* @type {string}
* @memberof AwsS3
*/
name: string;
/**
* Connector type (must be "AWS_S3")
* @type {string}
* @memberof AwsS3
*/
type: AwsS3TypeEnum;
/**
*
* @type {AWSS3AuthConfig}
* @memberof AwsS3
*/
config: AWSS3AuthConfig;
}
/**
* @export
*/
export declare const AwsS3TypeEnum: {
readonly AwsS3: "AWS_S3";
};
export type AwsS3TypeEnum = typeof AwsS3TypeEnum[keyof typeof AwsS3TypeEnum];
/**
* Check if a given object implements the AwsS3 interface.
*/
export declare function instanceOfAwsS3(value: object): value is AwsS3;
export declare function AwsS3FromJSON(json: any): AwsS3;
export declare function AwsS3FromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsS3;
export declare function AwsS3ToJSON(json: any): AwsS3;
export declare function AwsS3ToJSONTyped(value?: AwsS3 | null, ignoreDiscriminator?: boolean): any;