aws_sdk_s3/client/customize/
internal.rspub type BoxFuture<T> = ::std::pin::Pin<::std::boxed::Box<dyn ::std::future::Future<Output = T> + ::std::marker::Send>>;
pub type SendResult<T, E> =
::std::result::Result<T, ::aws_smithy_runtime_api::client::result::SdkError<E, ::aws_smithy_runtime_api::client::orchestrator::HttpResponse>>;
pub trait CustomizableSend<T, E>: ::std::marker::Send + ::std::marker::Sync {
fn send(self, config_override: crate::config::Builder) -> BoxFuture<SendResult<T, E>>;
}
pub trait CustomizablePresigned<E>: ::std::marker::Send + ::std::marker::Sync {
fn presign(
self,
config_override: crate::config::Builder,
presigning_config: crate::presigning::PresigningConfig,
) -> BoxFuture<SendResult<crate::presigning::PresignedRequest, E>>;
}