/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * 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 { ExternalS3UploadDestination } from './ExternalS3UploadDestination'; import type { S3UploadDestination } from './S3UploadDestination'; /** * @type StsUploadDestination * An StsUploadDestination provides settings to enable Synapse to call AWS Security Token Service (STS) to get temporary AWS credentials * @export */ export type StsUploadDestination = { concreteType: 'org.sagebionetworks.repo.model.file.ExternalS3UploadDestination'; } & ExternalS3UploadDestination | { concreteType: 'org.sagebionetworks.repo.model.file.S3UploadDestination'; } & S3UploadDestination; export declare function StsUploadDestinationFromJSON(json: any): StsUploadDestination; export declare function StsUploadDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): StsUploadDestination; export declare function StsUploadDestinationToJSON(json: any): any; export declare function StsUploadDestinationToJSONTyped(value?: StsUploadDestination | null, ignoreDiscriminator?: boolean): any;