Struct aws_sdk_sagemaker::types::builders::DeployedImageBuilder
source · #[non_exhaustive]pub struct DeployedImageBuilder { /* private fields */ }
Expand description
A builder for DeployedImage
.
Implementations§
source§impl DeployedImageBuilder
impl DeployedImageBuilder
sourcepub fn specified_image(self, input: impl Into<String>) -> Self
pub fn specified_image(self, input: impl Into<String>) -> Self
The image path you specified when you created the model.
sourcepub fn set_specified_image(self, input: Option<String>) -> Self
pub fn set_specified_image(self, input: Option<String>) -> Self
The image path you specified when you created the model.
sourcepub fn get_specified_image(&self) -> &Option<String>
pub fn get_specified_image(&self) -> &Option<String>
The image path you specified when you created the model.
sourcepub fn resolved_image(self, input: impl Into<String>) -> Self
pub fn resolved_image(self, input: impl Into<String>) -> Self
The specific digest path of the image hosted in this ProductionVariant
.
sourcepub fn set_resolved_image(self, input: Option<String>) -> Self
pub fn set_resolved_image(self, input: Option<String>) -> Self
The specific digest path of the image hosted in this ProductionVariant
.
sourcepub fn get_resolved_image(&self) -> &Option<String>
pub fn get_resolved_image(&self) -> &Option<String>
The specific digest path of the image hosted in this ProductionVariant
.
sourcepub fn resolution_time(self, input: DateTime) -> Self
pub fn resolution_time(self, input: DateTime) -> Self
The date and time when the image path for the model resolved to the ResolvedImage
sourcepub fn set_resolution_time(self, input: Option<DateTime>) -> Self
pub fn set_resolution_time(self, input: Option<DateTime>) -> Self
The date and time when the image path for the model resolved to the ResolvedImage
sourcepub fn get_resolution_time(&self) -> &Option<DateTime>
pub fn get_resolution_time(&self) -> &Option<DateTime>
The date and time when the image path for the model resolved to the ResolvedImage
sourcepub fn build(self) -> DeployedImage
pub fn build(self) -> DeployedImage
Consumes the builder and constructs a DeployedImage
.
Trait Implementations§
source§impl Clone for DeployedImageBuilder
impl Clone for DeployedImageBuilder
source§fn clone(&self) -> DeployedImageBuilder
fn clone(&self) -> DeployedImageBuilder
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 Debug for DeployedImageBuilder
impl Debug for DeployedImageBuilder
source§impl Default for DeployedImageBuilder
impl Default for DeployedImageBuilder
source§fn default() -> DeployedImageBuilder
fn default() -> DeployedImageBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DeployedImageBuilder
impl PartialEq for DeployedImageBuilder
source§fn eq(&self, other: &DeployedImageBuilder) -> bool
fn eq(&self, other: &DeployedImageBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeployedImageBuilder
Auto Trait Implementations§
impl RefUnwindSafe for DeployedImageBuilder
impl Send for DeployedImageBuilder
impl Sync for DeployedImageBuilder
impl Unpin for DeployedImageBuilder
impl UnwindSafe for DeployedImageBuilder
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.