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
impl StructuralPartialEq for DeployedImageBuilder
Auto Trait Implementations§
impl Freeze for DeployedImageBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.