Struct aws_sdk_sagemakerruntime::error::ModelError [−][src]
#[non_exhaustive]pub struct ModelError {
pub message: Option<String>,
pub original_status_code: Option<i32>,
pub original_message: Option<String>,
pub log_stream_arn: Option<String>,
}
Expand description
Model (owned by the customer in the container) returned 4xx or 5xx error code.
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.message: Option<String>
original_status_code: Option<i32>
Original status code.
original_message: Option<String>
Original message.
log_stream_arn: Option<String>
The Amazon Resource Name (ARN) of the log stream.
Implementations
Original status code.
Original message.
The Amazon Resource Name (ARN) of the log stream.
Creates a new builder-style object to manufacture ModelError
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 ModelError
impl Send for ModelError
impl Sync for ModelError
impl Unpin for ModelError
impl UnwindSafe for ModelError
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