UNPKG

@vectorize-io/vectorize-client

Version:
45 lines (44 loc) 1.44 kB
/** * 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. */ /** * Authentication configuration for Amazon Bedrock * @export * @interface BEDROCKAuthConfig */ export interface BEDROCKAuthConfig { /** * Access Key. Example: Enter your Amazon Bedrock Access Key * @type {string} * @memberof BEDROCKAuthConfig */ accessKey: string; /** * Secret Key. Example: Enter your Amazon Bedrock Secret Key * @type {string} * @memberof BEDROCKAuthConfig */ key: string; /** * Region. Example: Region Name * @type {string} * @memberof BEDROCKAuthConfig */ region: string; } /** * Check if a given object implements the BEDROCKAuthConfig interface. */ export declare function instanceOfBEDROCKAuthConfig(value: object): value is BEDROCKAuthConfig; export declare function BEDROCKAuthConfigFromJSON(json: any): BEDROCKAuthConfig; export declare function BEDROCKAuthConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): BEDROCKAuthConfig; export declare function BEDROCKAuthConfigToJSON(json: any): BEDROCKAuthConfig; export declare function BEDROCKAuthConfigToJSONTyped(value?: BEDROCKAuthConfig | null, ignoreDiscriminator?: boolean): any;