Struct aws_sdk_ssm::error::GetAutomationExecutionError
source · #[non_exhaustive]pub struct GetAutomationExecutionError {
pub kind: GetAutomationExecutionErrorKind,
/* private fields */
}
Expand description
Error type for the GetAutomationExecution
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: GetAutomationExecutionErrorKind
Kind of error that occurred.
Implementations§
source§impl GetAutomationExecutionError
impl GetAutomationExecutionError
sourcepub fn new(kind: GetAutomationExecutionErrorKind, meta: Error) -> Self
pub fn new(kind: GetAutomationExecutionErrorKind, meta: Error) -> Self
Creates a new GetAutomationExecutionError
.
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 GetAutomationExecutionError::Unhandled
variant from any error type.
Examples found in repository?
src/operation_deser.rs (lines 5772-5774)
5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818
pub fn parse_get_automation_execution_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::GetAutomationExecutionOutput,
crate::error::GetAutomationExecutionError,
> {
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::GetAutomationExecutionError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => {
return Err(crate::error::GetAutomationExecutionError::unhandled(
generic,
))
}
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"AutomationExecutionNotFoundException" => crate::error::GetAutomationExecutionError {
meta: generic,
kind:
crate::error::GetAutomationExecutionErrorKind::AutomationExecutionNotFoundException(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]let mut output = crate::error::automation_execution_not_found_exception::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_automation_execution_not_found_exception_json_err(response.body().as_ref(), output).map_err(crate::error::GetAutomationExecutionError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
"InternalServerError" => crate::error::GetAutomationExecutionError {
meta: generic,
kind: crate::error::GetAutomationExecutionErrorKind::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::GetAutomationExecutionError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::GetAutomationExecutionError::generic(generic),
})
}
sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the GetAutomationExecutionError::Unhandled
variant from a aws_smithy_types::Error
.
Examples found in repository?
src/operation_deser.rs (line 5816)
5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818
pub fn parse_get_automation_execution_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::GetAutomationExecutionOutput,
crate::error::GetAutomationExecutionError,
> {
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::GetAutomationExecutionError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => {
return Err(crate::error::GetAutomationExecutionError::unhandled(
generic,
))
}
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"AutomationExecutionNotFoundException" => crate::error::GetAutomationExecutionError {
meta: generic,
kind:
crate::error::GetAutomationExecutionErrorKind::AutomationExecutionNotFoundException(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]let mut output = crate::error::automation_execution_not_found_exception::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_automation_execution_not_found_exception_json_err(response.body().as_ref(), output).map_err(crate::error::GetAutomationExecutionError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
"InternalServerError" => crate::error::GetAutomationExecutionError {
meta: generic,
kind: crate::error::GetAutomationExecutionErrorKind::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::GetAutomationExecutionError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::GetAutomationExecutionError::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_automation_execution_not_found_exception(&self) -> bool
pub fn is_automation_execution_not_found_exception(&self) -> bool
Returns true
if the error kind is GetAutomationExecutionErrorKind::AutomationExecutionNotFoundException
.
sourcepub fn is_internal_server_error(&self) -> bool
pub fn is_internal_server_error(&self) -> bool
Returns true
if the error kind is GetAutomationExecutionErrorKind::InternalServerError
.
Trait Implementations§
source§impl Debug for GetAutomationExecutionError
impl Debug for GetAutomationExecutionError
source§impl Error for GetAutomationExecutionError
impl Error for GetAutomationExecutionError
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<GetAutomationExecutionError> for Error
impl From<GetAutomationExecutionError> for Error
source§fn from(err: GetAutomationExecutionError) -> Self
fn from(err: GetAutomationExecutionError) -> Self
Converts to this type from the input type.