Struct aws_sdk_sagemaker::model::app_specification::Builder
source · pub struct Builder { /* private fields */ }
Expand description
A builder for AppSpecification
.
Implementations§
source§impl Builder
impl Builder
sourcepub fn image_uri(self, input: impl Into<String>) -> Self
pub fn image_uri(self, input: impl Into<String>) -> Self
The container image to be run by the processing job.
sourcepub fn set_image_uri(self, input: Option<String>) -> Self
pub fn set_image_uri(self, input: Option<String>) -> Self
The container image to be run by the processing job.
sourcepub fn container_entrypoint(self, input: impl Into<String>) -> Self
pub fn container_entrypoint(self, input: impl Into<String>) -> Self
Appends an item to container_entrypoint
.
To override the contents of this collection use set_container_entrypoint
.
The entrypoint for a container used to run a processing job.
sourcepub fn set_container_entrypoint(self, input: Option<Vec<String>>) -> Self
pub fn set_container_entrypoint(self, input: Option<Vec<String>>) -> Self
The entrypoint for a container used to run a processing job.
sourcepub fn container_arguments(self, input: impl Into<String>) -> Self
pub fn container_arguments(self, input: impl Into<String>) -> Self
Appends an item to container_arguments
.
To override the contents of this collection use set_container_arguments
.
The arguments for a container used to run a processing job.
sourcepub fn set_container_arguments(self, input: Option<Vec<String>>) -> Self
pub fn set_container_arguments(self, input: Option<Vec<String>>) -> Self
The arguments for a container used to run a processing job.
sourcepub fn build(self) -> AppSpecification
pub fn build(self) -> AppSpecification
Consumes the builder and constructs a AppSpecification
.