#[non_exhaustive]pub struct CreateAutoMlJobV2Output {
pub auto_ml_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.auto_ml_job_arn: Option<String>
The unique ARN assigned to the AutoMLJob when it is created.
Implementations§
source§impl CreateAutoMlJobV2Output
impl CreateAutoMlJobV2Output
sourcepub fn auto_ml_job_arn(&self) -> Option<&str>
pub fn auto_ml_job_arn(&self) -> Option<&str>
The unique ARN assigned to the AutoMLJob when it is created.
source§impl CreateAutoMlJobV2Output
impl CreateAutoMlJobV2Output
sourcepub fn builder() -> CreateAutoMlJobV2OutputBuilder
pub fn builder() -> CreateAutoMlJobV2OutputBuilder
Creates a new builder-style object to manufacture CreateAutoMlJobV2Output
.
Trait Implementations§
source§impl Clone for CreateAutoMlJobV2Output
impl Clone for CreateAutoMlJobV2Output
source§fn clone(&self) -> CreateAutoMlJobV2Output
fn clone(&self) -> CreateAutoMlJobV2Output
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 CreateAutoMlJobV2Output
impl Debug for CreateAutoMlJobV2Output
source§impl PartialEq for CreateAutoMlJobV2Output
impl PartialEq for CreateAutoMlJobV2Output
source§fn eq(&self, other: &CreateAutoMlJobV2Output) -> bool
fn eq(&self, other: &CreateAutoMlJobV2Output) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for CreateAutoMlJobV2Output
impl RequestId for CreateAutoMlJobV2Output
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 CreateAutoMlJobV2Output
Auto Trait Implementations§
impl RefUnwindSafe for CreateAutoMlJobV2Output
impl Send for CreateAutoMlJobV2Output
impl Sync for CreateAutoMlJobV2Output
impl Unpin for CreateAutoMlJobV2Output
impl UnwindSafe for CreateAutoMlJobV2Output
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Creates a shared type from an unshared type.