Struct aws_sdk_sagemaker::types::builders::AppSpecificationBuilder
source · #[non_exhaustive]pub struct AppSpecificationBuilder { /* private fields */ }
Expand description
A builder for AppSpecification
.
Implementations§
source§impl AppSpecificationBuilder
impl AppSpecificationBuilder
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.
This field is required.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 get_image_uri(&self) -> &Option<String>
pub fn get_image_uri(&self) -> &Option<String>
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 get_container_entrypoint(&self) -> &Option<Vec<String>>
pub fn get_container_entrypoint(&self) -> &Option<Vec<String>>
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 get_container_arguments(&self) -> &Option<Vec<String>>
pub fn get_container_arguments(&self) -> &Option<Vec<String>>
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
.
Trait Implementations§
source§impl Clone for AppSpecificationBuilder
impl Clone for AppSpecificationBuilder
source§fn clone(&self) -> AppSpecificationBuilder
fn clone(&self) -> AppSpecificationBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for AppSpecificationBuilder
impl Debug for AppSpecificationBuilder
source§impl Default for AppSpecificationBuilder
impl Default for AppSpecificationBuilder
source§fn default() -> AppSpecificationBuilder
fn default() -> AppSpecificationBuilder
source§impl PartialEq for AppSpecificationBuilder
impl PartialEq for AppSpecificationBuilder
source§fn eq(&self, other: &AppSpecificationBuilder) -> bool
fn eq(&self, other: &AppSpecificationBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.