pub enum CreateGraphError {
Conflict(String),
InternalServer(String),
ServiceQuotaExceeded(String),
}Expand description
Errors returned by CreateGraph
Variants§
Conflict(String)
The request attempted an invalid action.
InternalServer(String)
The request was valid but failed because of a problem with the service.
ServiceQuotaExceeded(String)
This request cannot be completed for one of the following reasons.
-
The request would cause the number of member accounts in the behavior graph to exceed the maximum allowed. A behavior graph cannot have more than 1000 member accounts.
-
The request would cause the data rate for the behavior graph to exceed the maximum allowed.
-
Detective is unable to verify the data rate for the member account. This is usually because the member account is not enrolled in Amazon GuardDuty.
Implementations§
Source§impl CreateGraphError
impl CreateGraphError
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<CreateGraphError>
Trait Implementations§
Source§impl Debug for CreateGraphError
impl Debug for CreateGraphError
Source§impl Display for CreateGraphError
impl Display for CreateGraphError
Source§impl Error for CreateGraphError
impl Error for CreateGraphError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
Returns 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 PartialEq for CreateGraphError
impl PartialEq for CreateGraphError
impl StructuralPartialEq for CreateGraphError
Auto Trait Implementations§
impl Freeze for CreateGraphError
impl RefUnwindSafe for CreateGraphError
impl Send for CreateGraphError
impl Sync for CreateGraphError
impl Unpin for CreateGraphError
impl UnwindSafe for CreateGraphError
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more