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 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 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 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<DeployedImageBuilder> for DeployedImageBuilder
impl PartialEq<DeployedImageBuilder> 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 ==
.