export type StsTransferApi = { /** * AWS access key. */ aws_access_key_id: string; /** * AWS secret accesss key. */ aws_secret_access_key: string; /** * AWS session token. */ aws_session_token?: string | null; /** * S3 bucket. */ s3_bucket: string; /** * S3 endpoint URL. */ s3_endpoint_url?: string | null; /** * S3 key. */ s3_key: string; /** * S3 full URL. */ s3_url: string; /** * URL type. */ type?: any; };