#[non_exhaustive]pub struct ConnectionTrackingSpecificationRequestBuilder { /* private fields */ }
Expand description
A builder for ConnectionTrackingSpecificationRequest
.
Implementations§
source§impl ConnectionTrackingSpecificationRequestBuilder
impl ConnectionTrackingSpecificationRequestBuilder
sourcepub fn tcp_established_timeout(self, input: i32) -> Self
pub fn tcp_established_timeout(self, input: i32) -> Self
Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.
sourcepub fn set_tcp_established_timeout(self, input: Option<i32>) -> Self
pub fn set_tcp_established_timeout(self, input: Option<i32>) -> Self
Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.
sourcepub fn get_tcp_established_timeout(&self) -> &Option<i32>
pub fn get_tcp_established_timeout(&self) -> &Option<i32>
Timeout (in seconds) for idle TCP connections in an established state. Min: 60 seconds. Max: 432000 seconds (5 days). Default: 432000 seconds. Recommended: Less than 432000 seconds.
sourcepub fn udp_stream_timeout(self, input: i32) -> Self
pub fn udp_stream_timeout(self, input: i32) -> Self
Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
sourcepub fn set_udp_stream_timeout(self, input: Option<i32>) -> Self
pub fn set_udp_stream_timeout(self, input: Option<i32>) -> Self
Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
sourcepub fn get_udp_stream_timeout(&self) -> &Option<i32>
pub fn get_udp_stream_timeout(&self) -> &Option<i32>
Timeout (in seconds) for idle UDP flows classified as streams which have seen more than one request-response transaction. Min: 60 seconds. Max: 180 seconds (3 minutes). Default: 180 seconds.
sourcepub fn udp_timeout(self, input: i32) -> Self
pub fn udp_timeout(self, input: i32) -> Self
Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.
sourcepub fn set_udp_timeout(self, input: Option<i32>) -> Self
pub fn set_udp_timeout(self, input: Option<i32>) -> Self
Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.
sourcepub fn get_udp_timeout(&self) -> &Option<i32>
pub fn get_udp_timeout(&self) -> &Option<i32>
Timeout (in seconds) for idle UDP flows that have seen traffic only in a single direction or a single request-response transaction. Min: 30 seconds. Max: 60 seconds. Default: 30 seconds.
sourcepub fn build(self) -> ConnectionTrackingSpecificationRequest
pub fn build(self) -> ConnectionTrackingSpecificationRequest
Consumes the builder and constructs a ConnectionTrackingSpecificationRequest
.
Trait Implementations§
source§impl Clone for ConnectionTrackingSpecificationRequestBuilder
impl Clone for ConnectionTrackingSpecificationRequestBuilder
source§fn clone(&self) -> ConnectionTrackingSpecificationRequestBuilder
fn clone(&self) -> ConnectionTrackingSpecificationRequestBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for ConnectionTrackingSpecificationRequestBuilder
impl Default for ConnectionTrackingSpecificationRequestBuilder
source§fn default() -> ConnectionTrackingSpecificationRequestBuilder
fn default() -> ConnectionTrackingSpecificationRequestBuilder
source§impl PartialEq for ConnectionTrackingSpecificationRequestBuilder
impl PartialEq for ConnectionTrackingSpecificationRequestBuilder
source§fn eq(&self, other: &ConnectionTrackingSpecificationRequestBuilder) -> bool
fn eq(&self, other: &ConnectionTrackingSpecificationRequestBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ConnectionTrackingSpecificationRequestBuilder
Auto Trait Implementations§
impl Freeze for ConnectionTrackingSpecificationRequestBuilder
impl RefUnwindSafe for ConnectionTrackingSpecificationRequestBuilder
impl Send for ConnectionTrackingSpecificationRequestBuilder
impl Sync for ConnectionTrackingSpecificationRequestBuilder
impl Unpin for ConnectionTrackingSpecificationRequestBuilder
impl UnwindSafe for ConnectionTrackingSpecificationRequestBuilder
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