12 lines
328 B
TypeScript
12 lines
328 B
TypeScript
export interface AmazonS3PatchConfig {
|
|
accessKeyId?: string;
|
|
bucket?: string;
|
|
endpointUrl?: string;
|
|
region?: string;
|
|
secretAccessKey?: string;
|
|
}
|
|
export declare const AmazonS3PatchConfigSerializer: {
|
|
_fromJsonObject(object: any): AmazonS3PatchConfig;
|
|
_toJsonObject(self: AmazonS3PatchConfig): any;
|
|
};
|