Struct aws_sdk_sagemaker::model::deployed_image::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for DeployedImage
.
Implementations§
source§impl Builder
impl Builder
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
.