Struct aws_sdk_emr::error::TerminateJobFlowsError
source · #[non_exhaustive]pub struct TerminateJobFlowsError {
pub kind: TerminateJobFlowsErrorKind,
/* private fields */
}Expand description
Error type for the TerminateJobFlows operation.
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.kind: TerminateJobFlowsErrorKindKind of error that occurred.
Implementations§
source§impl TerminateJobFlowsError
impl TerminateJobFlowsError
sourcepub fn new(kind: TerminateJobFlowsErrorKind, meta: Error) -> Self
pub fn new(kind: TerminateJobFlowsErrorKind, meta: Error) -> Self
Creates a new TerminateJobFlowsError.
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the TerminateJobFlowsError::Unhandled variant from any error type.
Examples found in repository?
src/operation_deser.rs (line 3062)
3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086
pub fn parse_terminate_job_flows_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::TerminateJobFlowsOutput, crate::error::TerminateJobFlowsError>
{
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::TerminateJobFlowsError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::error::TerminateJobFlowsError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InternalServerError" => crate::error::TerminateJobFlowsError {
meta: generic,
kind: crate::error::TerminateJobFlowsErrorKind::InternalServerError({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::internal_server_error::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_internal_server_error_json_err(response.body().as_ref(), output).map_err(crate::error::TerminateJobFlowsError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::TerminateJobFlowsError::generic(generic),
})
}sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the TerminateJobFlowsError::Unhandled variant from a aws_smithy_types::Error.
Examples found in repository?
src/operation_deser.rs (line 3084)
3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086
pub fn parse_terminate_job_flows_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<crate::output::TerminateJobFlowsOutput, crate::error::TerminateJobFlowsError>
{
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::TerminateJobFlowsError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::error::TerminateJobFlowsError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InternalServerError" => crate::error::TerminateJobFlowsError {
meta: generic,
kind: crate::error::TerminateJobFlowsErrorKind::InternalServerError({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::internal_server_error::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_internal_server_error_json_err(response.body().as_ref(), output).map_err(crate::error::TerminateJobFlowsError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::TerminateJobFlowsError::generic(generic),
})
}sourcepub fn meta(&self) -> &Error
pub fn meta(&self) -> &Error
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn request_id(&self) -> Option<&str>
pub fn request_id(&self) -> Option<&str>
Returns the request ID if it’s available.
sourcepub fn is_internal_server_error(&self) -> bool
pub fn is_internal_server_error(&self) -> bool
Returns true if the error kind is TerminateJobFlowsErrorKind::InternalServerError.
Trait Implementations§
source§impl Debug for TerminateJobFlowsError
impl Debug for TerminateJobFlowsError
source§impl Display for TerminateJobFlowsError
impl Display for TerminateJobFlowsError
source§impl Error for TerminateJobFlowsError
impl Error for TerminateJobFlowsError
source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
The lower-level source of this error, if any. Read more
1.0.0 · source§fn description(&self) -> &str
fn description(&self) -> &str
👎Deprecated since 1.42.0: use the Display impl or to_string()
source§impl From<TerminateJobFlowsError> for Error
impl From<TerminateJobFlowsError> for Error
source§fn from(err: TerminateJobFlowsError) -> Self
fn from(err: TerminateJobFlowsError) -> Self
Converts to this type from the input type.