Struct aws_sdk_sagemaker::model::InferenceSpecification
source · [−]#[non_exhaustive]pub struct InferenceSpecification { /* private fields */ }
Expand description
Defines how to perform inference generation after a training job is run.
Implementations
sourceimpl InferenceSpecification
impl InferenceSpecification
sourcepub fn containers(&self) -> Option<&[ModelPackageContainerDefinition]>
pub fn containers(&self) -> Option<&[ModelPackageContainerDefinition]>
The Amazon ECR registry path of the Docker image that contains the inference code.
sourcepub fn supported_transform_instance_types(
&self
) -> Option<&[TransformInstanceType]>
pub fn supported_transform_instance_types(
&self
) -> Option<&[TransformInstanceType]>
A list of the instance types on which a transformation job can be run or on which an endpoint can be deployed.
This parameter is required for unversioned models, and optional for versioned models.
sourcepub fn supported_realtime_inference_instance_types(
&self
) -> Option<&[ProductionVariantInstanceType]>
pub fn supported_realtime_inference_instance_types(
&self
) -> Option<&[ProductionVariantInstanceType]>
A list of the instance types that are used to generate inferences in real-time.
This parameter is required for unversioned models, and optional for versioned models.
sourcepub fn supported_content_types(&self) -> Option<&[String]>
pub fn supported_content_types(&self) -> Option<&[String]>
The supported MIME types for the input data.
sourcepub fn supported_response_mime_types(&self) -> Option<&[String]>
pub fn supported_response_mime_types(&self) -> Option<&[String]>
The supported MIME types for the output data.
sourceimpl InferenceSpecification
impl InferenceSpecification
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture InferenceSpecification
.
Trait Implementations
sourceimpl Clone for InferenceSpecification
impl Clone for InferenceSpecification
sourcefn clone(&self) -> InferenceSpecification
fn clone(&self) -> InferenceSpecification
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for InferenceSpecification
impl Debug for InferenceSpecification
sourceimpl PartialEq<InferenceSpecification> for InferenceSpecification
impl PartialEq<InferenceSpecification> for InferenceSpecification
sourcefn eq(&self, other: &InferenceSpecification) -> bool
fn eq(&self, other: &InferenceSpecification) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for InferenceSpecification
Auto Trait Implementations
impl RefUnwindSafe for InferenceSpecification
impl Send for InferenceSpecification
impl Sync for InferenceSpecification
impl Unpin for InferenceSpecification
impl UnwindSafe for InferenceSpecification
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more