#[non_exhaustive]pub struct DescribeInstancePatchStatesForPatchGroupError {
pub kind: DescribeInstancePatchStatesForPatchGroupErrorKind,
/* private fields */
}
Expand description
Error type for the DescribeInstancePatchStatesForPatchGroup
operation.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.kind: DescribeInstancePatchStatesForPatchGroupErrorKind
Kind of error that occurred.
Implementations§
source§impl DescribeInstancePatchStatesForPatchGroupError
impl DescribeInstancePatchStatesForPatchGroupError
sourcepub fn new(
kind: DescribeInstancePatchStatesForPatchGroupErrorKind,
meta: Error
) -> Self
pub fn new(
kind: DescribeInstancePatchStatesForPatchGroupErrorKind,
meta: Error
) -> Self
Creates a new DescribeInstancePatchStatesForPatchGroupError
.
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 DescribeInstancePatchStatesForPatchGroupError::Unhandled
variant from any error type.
Examples found in repository?
4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474
pub fn parse_describe_instance_patch_states_for_patch_group_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DescribeInstancePatchStatesForPatchGroupOutput,
crate::error::DescribeInstancePatchStatesForPatchGroupError,
> {
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => {
return Err(
crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled(generic),
)
}
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InternalServerError" => crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind:
crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::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::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
"InvalidFilter" => {
crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind:
crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidFilter(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_filter::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_invalid_filter_json_err(response.body().as_ref(), output).map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
}
}
"InvalidNextToken" => crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind: crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidNextToken(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_next_token::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_invalid_next_token_json_err(response.body().as_ref(), output).map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
_ => crate::error::DescribeInstancePatchStatesForPatchGroupError::generic(generic),
})
}
sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the DescribeInstancePatchStatesForPatchGroupError::Unhandled
variant from a aws_smithy_types::Error
.
Examples found in repository?
4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474
pub fn parse_describe_instance_patch_states_for_patch_group_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::DescribeInstancePatchStatesForPatchGroupOutput,
crate::error::DescribeInstancePatchStatesForPatchGroupError,
> {
let generic = crate::json_deser::parse_http_generic_error(response)
.map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => {
return Err(
crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled(generic),
)
}
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InternalServerError" => crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind:
crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::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::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
"InvalidFilter" => {
crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind:
crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidFilter(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_filter::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_invalid_filter_json_err(response.body().as_ref(), output).map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
}
}
"InvalidNextToken" => crate::error::DescribeInstancePatchStatesForPatchGroupError {
meta: generic,
kind: crate::error::DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidNextToken(
{
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_next_token::Builder::default();
let _ = response;
output = crate::json_deser::deser_structure_crate_error_invalid_next_token_json_err(response.body().as_ref(), output).map_err(crate::error::DescribeInstancePatchStatesForPatchGroupError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
},
),
},
_ => crate::error::DescribeInstancePatchStatesForPatchGroupError::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 DescribeInstancePatchStatesForPatchGroupErrorKind::InternalServerError
.
sourcepub fn is_invalid_filter(&self) -> bool
pub fn is_invalid_filter(&self) -> bool
Returns true
if the error kind is DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidFilter
.
sourcepub fn is_invalid_next_token(&self) -> bool
pub fn is_invalid_next_token(&self) -> bool
Returns true
if the error kind is DescribeInstancePatchStatesForPatchGroupErrorKind::InvalidNextToken
.