Struct aws_sdk_sagemaker::model::AppSpecification [−][src]
#[non_exhaustive]pub struct AppSpecification {
pub image_uri: Option<String>,
pub container_entrypoint: Option<Vec<String>>,
pub container_arguments: Option<Vec<String>>,
}
Expand description
Configuration to run a processing job in a specified container image.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.image_uri: Option<String>
The container image to be run by the processing job.
container_entrypoint: Option<Vec<String>>
The entrypoint for a container used to run a processing job.
container_arguments: Option<Vec<String>>
The arguments for a container used to run a processing job.
Implementations
The entrypoint for a container used to run a processing job.
Creates a new builder-style object to manufacture AppSpecification
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl RefUnwindSafe for AppSpecification
impl Send for AppSpecification
impl Sync for AppSpecification
impl Unpin for AppSpecification
impl UnwindSafe for AppSpecification
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more