#[non_exhaustive]pub enum PutResourceConfigError {
InsufficientPermissionsException(InsufficientPermissionsException),
MaxActiveResourcesExceededException(MaxActiveResourcesExceededException),
NoRunningConfigurationRecorderException(NoRunningConfigurationRecorderException),
ValidationException(ValidationException),
Unhandled(Unhandled),
}Expand description
Error type for the PutResourceConfigError operation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
InsufficientPermissionsException(InsufficientPermissionsException)
Indicates one of the following errors:
-
For PutConfigRule, the rule cannot be created because the IAM role assigned to Config lacks permissions to perform the config:Put* action.
-
For PutConfigRule, the Lambda function cannot be invoked. Check the function ARN, and check the function's permissions.
-
For PutOrganizationConfigRule, organization Config rule cannot be created because you do not have permissions to call IAM
GetRoleaction or create a service-linked role. -
For PutConformancePack and PutOrganizationConformancePack, a conformance pack cannot be created because you do not have the following permissions:
-
You do not have permission to call IAM
GetRoleaction or create a service-linked role. -
You do not have permission to read Amazon S3 bucket or call SSM:GetDocument.
-
MaxActiveResourcesExceededException(MaxActiveResourcesExceededException)
You have reached the limit of active custom resource types in your account. There is a limit of 100,000. Delete unused resources using DeleteResourceConfig .
NoRunningConfigurationRecorderException(NoRunningConfigurationRecorderException)
There is no configuration recorder running.
ValidationException(ValidationException)
The requested action is not valid.
For PutStoredQuery, you will see this exception if there are missing required fields or if the input value fails the validation, or if you are trying to create more than 300 queries.
For GetStoredQuery, ListStoredQuery, and DeleteStoredQuery you will see this exception if there are missing required fields or if the input value fails the validation.
Unhandled(Unhandled)
Unhandled directly is not forwards compatible. Instead, match using a variable wildcard pattern and check .code():
err if err.code() == Some("SpecificExceptionCode") => { /* handle the error */ }
See ProvideErrorMetadata for what information is available for the error.An unexpected error occurred (e.g., invalid JSON returned by the service or an unknown error code).
Implementations§
source§impl PutResourceConfigError
impl PutResourceConfigError
sourcepub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
pub fn unhandled(err: impl Into<Box<dyn Error + Send + Sync + 'static>>) -> Self
Creates the PutResourceConfigError::Unhandled variant from any error type.
sourcepub fn generic(err: ErrorMetadata) -> Self
pub fn generic(err: ErrorMetadata) -> Self
Creates the PutResourceConfigError::Unhandled variant from an ErrorMetadata.
sourcepub fn meta(&self) -> &ErrorMetadata
pub fn meta(&self) -> &ErrorMetadata
Returns error metadata, which includes the error code, message, request ID, and potentially additional information.
sourcepub fn is_insufficient_permissions_exception(&self) -> bool
pub fn is_insufficient_permissions_exception(&self) -> bool
Returns true if the error kind is PutResourceConfigError::InsufficientPermissionsException.
sourcepub fn is_max_active_resources_exceeded_exception(&self) -> bool
pub fn is_max_active_resources_exceeded_exception(&self) -> bool
Returns true if the error kind is PutResourceConfigError::MaxActiveResourcesExceededException.
sourcepub fn is_no_running_configuration_recorder_exception(&self) -> bool
pub fn is_no_running_configuration_recorder_exception(&self) -> bool
Returns true if the error kind is PutResourceConfigError::NoRunningConfigurationRecorderException.
sourcepub fn is_validation_exception(&self) -> bool
pub fn is_validation_exception(&self) -> bool
Returns true if the error kind is PutResourceConfigError::ValidationException.
Trait Implementations§
source§impl CreateUnhandledError for PutResourceConfigError
impl CreateUnhandledError for PutResourceConfigError
source§fn create_unhandled_error(
source: Box<dyn Error + Send + Sync + 'static>,
meta: Option<ErrorMetadata>,
) -> Self
fn create_unhandled_error( source: Box<dyn Error + Send + Sync + 'static>, meta: Option<ErrorMetadata>, ) -> Self
source and error metadata.source§impl Debug for PutResourceConfigError
impl Debug for PutResourceConfigError
source§impl Display for PutResourceConfigError
impl Display for PutResourceConfigError
source§impl Error for PutResourceConfigError
impl Error for PutResourceConfigError
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
source§impl From<PutResourceConfigError> for Error
impl From<PutResourceConfigError> for Error
source§fn from(err: PutResourceConfigError) -> Self
fn from(err: PutResourceConfigError) -> Self
source§impl ProvideErrorMetadata for PutResourceConfigError
impl ProvideErrorMetadata for PutResourceConfigError
source§fn meta(&self) -> &ErrorMetadata
fn meta(&self) -> &ErrorMetadata
source§impl RequestId for PutResourceConfigError
impl RequestId for PutResourceConfigError
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
None if the service could not be reached.Auto Trait Implementations§
impl Freeze for PutResourceConfigError
impl !RefUnwindSafe for PutResourceConfigError
impl Send for PutResourceConfigError
impl Sync for PutResourceConfigError
impl Unpin for PutResourceConfigError
impl !UnwindSafe for PutResourceConfigError
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more