pub enum GetOrganizationConfigRuleDetailedStatusError {
InvalidLimit(String),
InvalidNextToken(String),
NoSuchOrganizationConfigRule(String),
OrganizationAccessDenied(String),
}Expand description
Errors returned by GetOrganizationConfigRuleDetailedStatus
Variants§
InvalidLimit(String)
The specified limit is outside the allowable range.
InvalidNextToken(String)
The specified next token is invalid. Specify the nextToken string that was returned in the previous response to get the next page of results.
NoSuchOrganizationConfigRule(String)
You specified one or more organization config rules that do not exist.
OrganizationAccessDenied(String)
For PutConfigAggregator API, no permission to call EnableAWSServiceAccess API.
For all OrganizationConfigRule and OrganizationConformancePack APIs, AWS Config throws an exception if APIs are called from member accounts. All APIs must be called from organization master account.
Implementations§
Trait Implementations§
Source§impl Error for GetOrganizationConfigRuleDetailedStatusError
impl Error for GetOrganizationConfigRuleDetailedStatusError
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 GetOrganizationConfigRuleDetailedStatusError
impl PartialEq for GetOrganizationConfigRuleDetailedStatusError
Source§fn eq(&self, other: &GetOrganizationConfigRuleDetailedStatusError) -> bool
fn eq(&self, other: &GetOrganizationConfigRuleDetailedStatusError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetOrganizationConfigRuleDetailedStatusError
Auto Trait Implementations§
impl Freeze for GetOrganizationConfigRuleDetailedStatusError
impl RefUnwindSafe for GetOrganizationConfigRuleDetailedStatusError
impl Send for GetOrganizationConfigRuleDetailedStatusError
impl Sync for GetOrganizationConfigRuleDetailedStatusError
impl Unpin for GetOrganizationConfigRuleDetailedStatusError
impl UnwindSafe for GetOrganizationConfigRuleDetailedStatusError
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