#[non_exhaustive]pub struct CreateStackInstancesError {
pub kind: CreateStackInstancesErrorKind,
/* private fields */
}Expand description
Error type for the CreateStackInstances 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: CreateStackInstancesErrorKindKind of error that occurred.
Implementations§
source§impl CreateStackInstancesError
impl CreateStackInstancesError
sourcepub fn new(kind: CreateStackInstancesErrorKind, meta: Error) -> Self
pub fn new(kind: CreateStackInstancesErrorKind, meta: Error) -> Self
Creates a new CreateStackInstancesError.
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 CreateStackInstancesError::Unhandled variant from any error type.
Examples found in repository?
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
pub fn parse_create_stack_instances_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::CreateStackInstancesOutput,
crate::error::CreateStackInstancesError,
> {
let generic = crate::xml_deser::parse_http_generic_error(response)
.map_err(crate::error::CreateStackInstancesError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::error::CreateStackInstancesError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InvalidOperationException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::InvalidOperationException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_operation_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_invalid_operation_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"LimitExceededException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::LimitExceededException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::limit_exceeded_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_limit_exceeded_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"OperationIdAlreadyExistsException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::OperationIdAlreadyExistsException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::operation_id_already_exists_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_operation_id_already_exists_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"OperationInProgressException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::OperationInProgressException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::operation_in_progress_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_operation_in_progress_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"StackSetNotFoundException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::StackSetNotFoundException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::stack_set_not_found_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_stack_set_not_found_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"StaleRequestException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::StaleRequestException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::stale_request_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_stale_request_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::CreateStackInstancesError::generic(generic),
})
}sourcepub fn generic(err: Error) -> Self
pub fn generic(err: Error) -> Self
Creates the CreateStackInstancesError::Unhandled variant from a aws_smithy_types::Error.
Examples found in repository?
437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559
pub fn parse_create_stack_instances_error(
response: &http::Response<bytes::Bytes>,
) -> std::result::Result<
crate::output::CreateStackInstancesOutput,
crate::error::CreateStackInstancesError,
> {
let generic = crate::xml_deser::parse_http_generic_error(response)
.map_err(crate::error::CreateStackInstancesError::unhandled)?;
let error_code = match generic.code() {
Some(code) => code,
None => return Err(crate::error::CreateStackInstancesError::unhandled(generic)),
};
let _error_message = generic.message().map(|msg| msg.to_owned());
Err(match error_code {
"InvalidOperationException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::InvalidOperationException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::invalid_operation_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_invalid_operation_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"LimitExceededException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::LimitExceededException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::limit_exceeded_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_limit_exceeded_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"OperationIdAlreadyExistsException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::OperationIdAlreadyExistsException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::operation_id_already_exists_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_operation_id_already_exists_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"OperationInProgressException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::OperationInProgressException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::operation_in_progress_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_operation_in_progress_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"StackSetNotFoundException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::StackSetNotFoundException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output =
crate::error::stack_set_not_found_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_stack_set_not_found_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
"StaleRequestException" => crate::error::CreateStackInstancesError {
meta: generic,
kind: crate::error::CreateStackInstancesErrorKind::StaleRequestException({
#[allow(unused_mut)]
let mut tmp = {
#[allow(unused_mut)]
let mut output = crate::error::stale_request_exception::Builder::default();
let _ = response;
output = crate::xml_deser::deser_structure_crate_error_stale_request_exception_xml_err(response.body().as_ref(), output).map_err(crate::error::CreateStackInstancesError::unhandled)?;
output.build()
};
if tmp.message.is_none() {
tmp.message = _error_message;
}
tmp
}),
},
_ => crate::error::CreateStackInstancesError::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_invalid_operation_exception(&self) -> bool
pub fn is_invalid_operation_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::InvalidOperationException.
sourcepub fn is_limit_exceeded_exception(&self) -> bool
pub fn is_limit_exceeded_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::LimitExceededException.
sourcepub fn is_operation_id_already_exists_exception(&self) -> bool
pub fn is_operation_id_already_exists_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::OperationIdAlreadyExistsException.
sourcepub fn is_operation_in_progress_exception(&self) -> bool
pub fn is_operation_in_progress_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::OperationInProgressException.
sourcepub fn is_stack_set_not_found_exception(&self) -> bool
pub fn is_stack_set_not_found_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::StackSetNotFoundException.
sourcepub fn is_stale_request_exception(&self) -> bool
pub fn is_stale_request_exception(&self) -> bool
Returns true if the error kind is CreateStackInstancesErrorKind::StaleRequestException.