#[non_exhaustive]pub struct AsyncInferenceClientConfigBuilder { /* private fields */ }
Expand description
A builder for AsyncInferenceClientConfig
.
Implementations§
source§impl AsyncInferenceClientConfigBuilder
impl AsyncInferenceClientConfigBuilder
sourcepub fn max_concurrent_invocations_per_instance(self, input: i32) -> Self
pub fn max_concurrent_invocations_per_instance(self, input: i32) -> Self
The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, SageMaker chooses an optimal value.
sourcepub fn set_max_concurrent_invocations_per_instance(
self,
input: Option<i32>
) -> Self
pub fn set_max_concurrent_invocations_per_instance( self, input: Option<i32> ) -> Self
The maximum number of concurrent requests sent by the SageMaker client to the model container. If no value is provided, SageMaker chooses an optimal value.
sourcepub fn build(self) -> AsyncInferenceClientConfig
pub fn build(self) -> AsyncInferenceClientConfig
Consumes the builder and constructs a AsyncInferenceClientConfig
.
Trait Implementations§
source§impl Clone for AsyncInferenceClientConfigBuilder
impl Clone for AsyncInferenceClientConfigBuilder
source§fn clone(&self) -> AsyncInferenceClientConfigBuilder
fn clone(&self) -> AsyncInferenceClientConfigBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for AsyncInferenceClientConfigBuilder
impl Default for AsyncInferenceClientConfigBuilder
source§fn default() -> AsyncInferenceClientConfigBuilder
fn default() -> AsyncInferenceClientConfigBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq<AsyncInferenceClientConfigBuilder> for AsyncInferenceClientConfigBuilder
impl PartialEq<AsyncInferenceClientConfigBuilder> for AsyncInferenceClientConfigBuilder
source§fn eq(&self, other: &AsyncInferenceClientConfigBuilder) -> bool
fn eq(&self, other: &AsyncInferenceClientConfigBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.