#[non_exhaustive]
pub enum PutConfigurationAggregatorErrorKind {
InvalidParameterValueException(InvalidParameterValueException),
InvalidRoleException(InvalidRoleException),
LimitExceededException(LimitExceededException),
NoAvailableOrganizationException(NoAvailableOrganizationException),
OrganizationAccessDeniedException(OrganizationAccessDeniedException),
OrganizationAllFeaturesNotEnabledException(OrganizationAllFeaturesNotEnabledException),
Unhandled(Unhandled),
}Expand description
Types of errors that can occur for the PutConfigurationAggregator operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InvalidParameterValueException(InvalidParameterValueException)
One or more of the specified parameters are invalid. Verify that your parameters are valid and try again.
InvalidRoleException(InvalidRoleException)
You have provided a null or empty role ARN.
LimitExceededException(LimitExceededException)
For StartConfigRulesEvaluation API, this exception is thrown if an evaluation is in progress or if you call the StartConfigRulesEvaluation API more than once per minute.
For PutConfigurationAggregator API, this exception is thrown if the number of accounts and aggregators exceeds the limit.
NoAvailableOrganizationException(NoAvailableOrganizationException)
Organization is no longer available.
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.
OrganizationAllFeaturesNotEnabledException(OrganizationAllFeaturesNotEnabledException)
Config resource cannot be created because your organization does not have all features enabled.
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.