/** * 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 { ExternalS3StorageLocationSetting } from './ExternalS3StorageLocationSetting'; import type { S3StorageLocationSetting } from './S3StorageLocationSetting'; /** * @type StsStorageLocationSetting * An StsStorageLocation provides settings to enable Synapse to call AWS Security Token Service (STS) to get temporary AWS credentials * @export */ export type StsStorageLocationSetting = { concreteType: 'org.sagebionetworks.repo.model.project.ExternalS3StorageLocationSetting'; } & ExternalS3StorageLocationSetting | { concreteType: 'org.sagebionetworks.repo.model.project.S3StorageLocationSetting'; } & S3StorageLocationSetting; export declare function StsStorageLocationSettingFromJSON(json: any): StsStorageLocationSetting; export declare function StsStorageLocationSettingFromJSONTyped(json: any, ignoreDiscriminator: boolean): StsStorageLocationSetting; export declare function StsStorageLocationSettingToJSON(json: any): any; export declare function StsStorageLocationSettingToJSONTyped(value?: StsStorageLocationSetting | null, ignoreDiscriminator?: boolean): any;