17 lines
408 B
Swift
17 lines
408 B
Swift
//
|
|
// Copyright Amazon.com Inc. or its affiliates.
|
|
// All Rights Reserved.
|
|
//
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
//
|
|
|
|
import Foundation
|
|
import AWSS3
|
|
|
|
// Behavior that the implemenation class for AWSS3PreSignedURLBuilder will use.
|
|
protocol AWSS3PreSignedURLBuilderBehavior {
|
|
|
|
// Gets a pre-signed URL.
|
|
func getPreSignedURL(_ getPreSignedURLRequest: AWSS3GetPreSignedURLRequest) -> AWSTask<NSURL>
|
|
}
|