pub enum TagResourcesError {
InternalService(String),
InvalidParameter(String),
Throttled(String),
}
Expand description
Errors returned by TagResources
Variants§
InternalService(String)
The request processing failed because of an unknown error, exception, or failure. You can retry the request.
InvalidParameter(String)
This error indicates one of the following:
-
A parameter is missing.
-
A malformed string was supplied for the request parameter.
-
An out-of-range value was supplied for the request parameter.
-
The target ID is invalid, unsupported, or doesn't exist.
-
You can't access the Amazon S3 bucket for report storage. For more information, see Additional Requirements for Organization-wide Tag Compliance Reports in the AWS Organizations User Guide.
Throttled(String)
The request was denied to limit the frequency of submitted requests.
Implementations§
Source§impl TagResourcesError
impl TagResourcesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<TagResourcesError>
Trait Implementations§
Source§impl Debug for TagResourcesError
impl Debug for TagResourcesError
Source§impl Display for TagResourcesError
impl Display for TagResourcesError
Source§impl Error for TagResourcesError
impl Error for TagResourcesError
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 TagResourcesError
impl PartialEq for TagResourcesError
impl StructuralPartialEq for TagResourcesError
Auto Trait Implementations§
impl Freeze for TagResourcesError
impl RefUnwindSafe for TagResourcesError
impl Send for TagResourcesError
impl Sync for TagResourcesError
impl Unpin for TagResourcesError
impl UnwindSafe for TagResourcesError
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