Struct aws_sdk_sagemaker::operation::update_inference_component::UpdateInferenceComponentInput
source · #[non_exhaustive]pub struct UpdateInferenceComponentInput {
pub inference_component_name: Option<String>,
pub specification: Option<InferenceComponentSpecification>,
pub 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.
specification: Option<InferenceComponentSpecification>
Details about the resources to deploy with this inference component, including the model, container, and compute resources.
runtime_config: Option<InferenceComponentRuntimeConfig>
Runtime settings for a model that is deployed with an inference component.
Implementations§
source§impl UpdateInferenceComponentInput
impl UpdateInferenceComponentInput
sourcepub fn inference_component_name(&self) -> Option<&str>
pub fn inference_component_name(&self) -> Option<&str>
The name of the inference component.
sourcepub fn specification(&self) -> Option<&InferenceComponentSpecification>
pub fn specification(&self) -> Option<&InferenceComponentSpecification>
Details about the resources to deploy with this inference component, including the model, container, and compute resources.
sourcepub fn runtime_config(&self) -> Option<&InferenceComponentRuntimeConfig>
pub fn runtime_config(&self) -> Option<&InferenceComponentRuntimeConfig>
Runtime settings for a model that is deployed with an inference component.
source§impl UpdateInferenceComponentInput
impl UpdateInferenceComponentInput
sourcepub fn builder() -> UpdateInferenceComponentInputBuilder
pub fn builder() -> UpdateInferenceComponentInputBuilder
Creates a new builder-style object to manufacture UpdateInferenceComponentInput
.
Trait Implementations§
source§impl Clone for UpdateInferenceComponentInput
impl Clone for UpdateInferenceComponentInput
source§fn clone(&self) -> UpdateInferenceComponentInput
fn clone(&self) -> UpdateInferenceComponentInput
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 UpdateInferenceComponentInput
impl PartialEq for UpdateInferenceComponentInput
source§fn eq(&self, other: &UpdateInferenceComponentInput) -> bool
fn eq(&self, other: &UpdateInferenceComponentInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UpdateInferenceComponentInput
Auto Trait Implementations§
impl RefUnwindSafe for UpdateInferenceComponentInput
impl Send for UpdateInferenceComponentInput
impl Sync for UpdateInferenceComponentInput
impl Unpin for UpdateInferenceComponentInput
impl UnwindSafe for UpdateInferenceComponentInput
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.