pub struct SqsExtendedClientBuilder { /* private fields */ }Implementations§
Source§impl SqsExtendedClientBuilder
impl SqsExtendedClientBuilder
pub fn new(s3_client: Client) -> SqsExtendedClientBuilder
pub fn with_s3_bucket_name( self, bucket_name: String, ) -> SqsExtendedClientBuilder
pub fn with_message_size_threshold( self, msg_size: usize, ) -> SqsExtendedClientBuilder
pub fn with_batch_message_size_threshold( self, batch_msg_size: usize, ) -> SqsExtendedClientBuilder
pub fn with_always_through_s3(self, always_s3: bool) -> SqsExtendedClientBuilder
pub fn with_reserved_attribute_names( self, reserved_attribute_names: Vec<String>, ) -> SqsExtendedClientBuilder
pub fn with_pointer_class( self, pointer_class: String, ) -> SqsExtendedClientBuilder
pub fn with_object_prefix(self, prefix: String) -> SqsExtendedClientBuilder
pub fn build(self) -> SqsExtendedClient
Auto Trait Implementations§
impl Freeze for SqsExtendedClientBuilder
impl !RefUnwindSafe for SqsExtendedClientBuilder
impl Send for SqsExtendedClientBuilder
impl Sync for SqsExtendedClientBuilder
impl Unpin for SqsExtendedClientBuilder
impl !UnwindSafe for SqsExtendedClientBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.