#[non_exhaustive]pub struct CreateCompilationJobOutput {
pub compilation_job_arn: Option<String>,
/* private fields */
}
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.compilation_job_arn: Option<String>
If the action is successful, the service sends back an HTTP 200 response. Amazon SageMaker returns the following data in JSON format:
-
CompilationJobArn
: The Amazon Resource Name (ARN) of the compiled job.
Implementations§
source§impl CreateCompilationJobOutput
impl CreateCompilationJobOutput
sourcepub fn compilation_job_arn(&self) -> Option<&str>
pub fn compilation_job_arn(&self) -> Option<&str>
If the action is successful, the service sends back an HTTP 200 response. Amazon SageMaker returns the following data in JSON format:
-
CompilationJobArn
: The Amazon Resource Name (ARN) of the compiled job.
source§impl CreateCompilationJobOutput
impl CreateCompilationJobOutput
sourcepub fn builder() -> CreateCompilationJobOutputBuilder
pub fn builder() -> CreateCompilationJobOutputBuilder
Creates a new builder-style object to manufacture CreateCompilationJobOutput
.
Trait Implementations§
source§impl Clone for CreateCompilationJobOutput
impl Clone for CreateCompilationJobOutput
source§fn clone(&self) -> CreateCompilationJobOutput
fn clone(&self) -> CreateCompilationJobOutput
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for CreateCompilationJobOutput
impl Debug for CreateCompilationJobOutput
source§impl PartialEq<CreateCompilationJobOutput> for CreateCompilationJobOutput
impl PartialEq<CreateCompilationJobOutput> for CreateCompilationJobOutput
source§fn eq(&self, other: &CreateCompilationJobOutput) -> bool
fn eq(&self, other: &CreateCompilationJobOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateCompilationJobOutput
impl RequestId for CreateCompilationJobOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for CreateCompilationJobOutput
Auto Trait Implementations§
impl RefUnwindSafe for CreateCompilationJobOutput
impl Send for CreateCompilationJobOutput
impl Sync for CreateCompilationJobOutput
impl Unpin for CreateCompilationJobOutput
impl UnwindSafe for CreateCompilationJobOutput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more