Struct aws_sdk_appmesh::types::builders::HttpTimeoutBuilder
source · #[non_exhaustive]pub struct HttpTimeoutBuilder { /* private fields */ }
Expand description
A builder for HttpTimeout
.
Implementations§
source§impl HttpTimeoutBuilder
impl HttpTimeoutBuilder
sourcepub fn per_request(self, input: Duration) -> Self
pub fn per_request(self, input: Duration) -> Self
An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.
sourcepub fn set_per_request(self, input: Option<Duration>) -> Self
pub fn set_per_request(self, input: Option<Duration>) -> Self
An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.
sourcepub fn get_per_request(&self) -> &Option<Duration>
pub fn get_per_request(&self) -> &Option<Duration>
An object that represents a per request timeout. The default value is 15 seconds. If you set a higher timeout, then make sure that the higher value is set for each App Mesh resource in a conversation. For example, if a virtual node backend uses a virtual router provider to route to another virtual node, then the timeout should be greater than 15 seconds for the source and destination virtual node and the route.
sourcepub fn idle(self, input: Duration) -> Self
pub fn idle(self, input: Duration) -> Self
An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
sourcepub fn set_idle(self, input: Option<Duration>) -> Self
pub fn set_idle(self, input: Option<Duration>) -> Self
An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
sourcepub fn get_idle(&self) -> &Option<Duration>
pub fn get_idle(&self) -> &Option<Duration>
An object that represents an idle timeout. An idle timeout bounds the amount of time that a connection may be idle. The default value is none.
sourcepub fn build(self) -> HttpTimeout
pub fn build(self) -> HttpTimeout
Consumes the builder and constructs a HttpTimeout
.
Trait Implementations§
source§impl Clone for HttpTimeoutBuilder
impl Clone for HttpTimeoutBuilder
source§fn clone(&self) -> HttpTimeoutBuilder
fn clone(&self) -> HttpTimeoutBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HttpTimeoutBuilder
impl Debug for HttpTimeoutBuilder
source§impl Default for HttpTimeoutBuilder
impl Default for HttpTimeoutBuilder
source§fn default() -> HttpTimeoutBuilder
fn default() -> HttpTimeoutBuilder
source§impl PartialEq for HttpTimeoutBuilder
impl PartialEq for HttpTimeoutBuilder
source§fn eq(&self, other: &HttpTimeoutBuilder) -> bool
fn eq(&self, other: &HttpTimeoutBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HttpTimeoutBuilder
Auto Trait Implementations§
impl Freeze for HttpTimeoutBuilder
impl RefUnwindSafe for HttpTimeoutBuilder
impl Send for HttpTimeoutBuilder
impl Sync for HttpTimeoutBuilder
impl Unpin for HttpTimeoutBuilder
impl UnwindSafe for HttpTimeoutBuilder
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
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>
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>
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 more