#[non_exhaustive]
pub enum DescribeOrganizationConfigRulesErrorKind {
InvalidLimitException(InvalidLimitException),
InvalidNextTokenException(InvalidNextTokenException),
NoSuchOrganizationConfigRuleException(NoSuchOrganizationConfigRuleException),
OrganizationAccessDeniedException(OrganizationAccessDeniedException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the DescribeOrganizationConfigRules operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidLimitException(InvalidLimitException)
The specified limit is outside the allowable range.
InvalidNextTokenException(InvalidNextTokenException)
The specified next token is invalid. Specify the nextToken string that was returned in the previous response to get the next page of results.
NoSuchOrganizationConfigRuleException(NoSuchOrganizationConfigRuleException)
The Config rule in the request is not valid. Verify that the rule is an organization Config Custom Policy rule, that the rule name is correct, and that valid Amazon Resouce Names (ARNs) are used before trying again.
OrganizationAccessDeniedException(OrganizationAccessDeniedException)
For PutConfigurationAggregator API, you can see this exception for the following reasons:
-
No permission to call
EnableAWSServiceAccessAPI -
The configuration aggregator cannot be updated because your Amazon Web Services Organization management account or the delegated administrator role changed. Delete this aggregator and create a new one with the current Amazon Web Services Organization.
-
The configuration aggregator is associated with a previous Amazon Web Services Organization and Config cannot aggregate data with current Amazon Web Services Organization. Delete this aggregator and create a new one with the current Amazon Web Services Organization.
-
You are not a registered delegated administrator for Config with permissions to call
ListDelegatedAdministratorsAPI. Ensure that the management account registers delagated administrator for Config service principle name before the delegated administrator creates an aggregator.
For all OrganizationConfigRule and OrganizationConformancePack APIs, Config throws an exception if APIs are called from member accounts. All APIs must be called from organization master account.
Unhandled(Unhandled)
An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
When logging an error from the SDK, it is recommended that you either wrap the error in
DisplayErrorContext, use another
error reporter library that visits the error’s cause/source chain, or call
Error::source for more details about the underlying cause.