UNPKG

@vectorize-io/vectorize-client

Version:
34 lines (33 loc) 970 B
/** * 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 AwsS31 */ export interface AwsS31 { /** * * @type {AWSS3AuthConfig} * @memberof AwsS31 */ config?: AWSS3AuthConfig; } /** * Check if a given object implements the AwsS31 interface. */ export declare function instanceOfAwsS31(value: object): value is AwsS31; export declare function AwsS31FromJSON(json: any): AwsS31; export declare function AwsS31FromJSONTyped(json: any, ignoreDiscriminator: boolean): AwsS31; export declare function AwsS31ToJSON(json: any): AwsS31; export declare function AwsS31ToJSONTyped(value?: AwsS31 | null, ignoreDiscriminator?: boolean): any;