pub enum GetTagValuesError {
InternalService(String),
InvalidParameter(String),
PaginationTokenExpired(String),
Throttled(String),
}Expand description
Errors returned by GetTagValues
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.
PaginationTokenExpired(String)
A PaginationToken is valid for a maximum of 15 minutes. Your request was denied because the specified PaginationToken has expired.
Throttled(String)
The request was denied to limit the frequency of submitted requests.
Implementations§
Source§impl GetTagValuesError
impl GetTagValuesError
pub fn from_response( res: BufferedHttpResponse, ) -> RusotoError<GetTagValuesError>
Trait Implementations§
Source§impl Debug for GetTagValuesError
impl Debug for GetTagValuesError
Source§impl Display for GetTagValuesError
impl Display for GetTagValuesError
Source§impl Error for GetTagValuesError
impl Error for GetTagValuesError
1.30.0 · Source§fn source(&self) -> Option<&(dyn Error + 'static)>
fn source(&self) -> Option<&(dyn Error + 'static)>
1.0.0 · Source§fn description(&self) -> &str
fn description(&self) -> &str
use the Display impl or to_string()
Source§impl PartialEq for GetTagValuesError
impl PartialEq for GetTagValuesError
Source§fn eq(&self, other: &GetTagValuesError) -> bool
fn eq(&self, other: &GetTagValuesError) -> bool
self and other values to be equal, and is used by ==.