Struct aws_sdk_sagemaker::operation::update_inference_component_runtime_config::UpdateInferenceComponentRuntimeConfigInput
source · #[non_exhaustive]pub struct UpdateInferenceComponentRuntimeConfigInput {
pub inference_component_name: Option<String>,
pub desired_runtime_config: Option<InferenceComponentRuntimeConfig>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.inference_component_name: Option<String>
The name of the inference component to update.
desired_runtime_config: Option<InferenceComponentRuntimeConfig>
Runtime settings for a model that is deployed with an inference component.
Implementations§
source§impl UpdateInferenceComponentRuntimeConfigInput
impl UpdateInferenceComponentRuntimeConfigInput
sourcepub fn inference_component_name(&self) -> Option<&str>
pub fn inference_component_name(&self) -> Option<&str>
The name of the inference component to update.
sourcepub fn desired_runtime_config(&self) -> Option<&InferenceComponentRuntimeConfig>
pub fn desired_runtime_config(&self) -> Option<&InferenceComponentRuntimeConfig>
Runtime settings for a model that is deployed with an inference component.
source§impl UpdateInferenceComponentRuntimeConfigInput
impl UpdateInferenceComponentRuntimeConfigInput
sourcepub fn builder() -> UpdateInferenceComponentRuntimeConfigInputBuilder
pub fn builder() -> UpdateInferenceComponentRuntimeConfigInputBuilder
Creates a new builder-style object to manufacture UpdateInferenceComponentRuntimeConfigInput
.
Trait Implementations§
source§impl Clone for UpdateInferenceComponentRuntimeConfigInput
impl Clone for UpdateInferenceComponentRuntimeConfigInput
source§fn clone(&self) -> UpdateInferenceComponentRuntimeConfigInput
fn clone(&self) -> UpdateInferenceComponentRuntimeConfigInput
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 PartialEq for UpdateInferenceComponentRuntimeConfigInput
impl PartialEq for UpdateInferenceComponentRuntimeConfigInput
source§fn eq(&self, other: &UpdateInferenceComponentRuntimeConfigInput) -> bool
fn eq(&self, other: &UpdateInferenceComponentRuntimeConfigInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateInferenceComponentRuntimeConfigInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateInferenceComponentRuntimeConfigInput
impl Send for UpdateInferenceComponentRuntimeConfigInput
impl Sync for UpdateInferenceComponentRuntimeConfigInput
impl Unpin for UpdateInferenceComponentRuntimeConfigInput
impl UnwindSafe for UpdateInferenceComponentRuntimeConfigInput
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>
Creates a shared type from an unshared type.