Struct aws_sdk_sagemaker::model::custom_image::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for CustomImage
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn image_name(self, input: impl Into<String>) -> Self
pub fn image_name(self, input: impl Into<String>) -> Self
The name of the CustomImage. Must be unique to your account.
sourcepub fn set_image_name(self, input: Option<String>) -> Self
pub fn set_image_name(self, input: Option<String>) -> Self
The name of the CustomImage. Must be unique to your account.
sourcepub fn image_version_number(self, input: i32) -> Self
pub fn image_version_number(self, input: i32) -> Self
The version number of the CustomImage.
sourcepub fn set_image_version_number(self, input: Option<i32>) -> Self
pub fn set_image_version_number(self, input: Option<i32>) -> Self
The version number of the CustomImage.
sourcepub fn app_image_config_name(self, input: impl Into<String>) -> Self
pub fn app_image_config_name(self, input: impl Into<String>) -> Self
The name of the AppImageConfig.
sourcepub fn set_app_image_config_name(self, input: Option<String>) -> Self
pub fn set_app_image_config_name(self, input: Option<String>) -> Self
The name of the AppImageConfig.
sourcepub fn build(self) -> CustomImage
pub fn build(self) -> CustomImage
Consumes the builder and constructs a CustomImage
.