pub enum DescribeOrganizationConfigRuleStatusesError {
InvalidLimit(String),
InvalidNextToken(String),
NoSuchOrganizationConfigRule(String),
OrganizationAccessDenied(String),
}Expand description
Errors returned by DescribeOrganizationConfigRuleStatuses
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 DescribeOrganizationConfigRuleStatusesError
impl Error for DescribeOrganizationConfigRuleStatusesError
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 DescribeOrganizationConfigRuleStatusesError
impl PartialEq for DescribeOrganizationConfigRuleStatusesError
Source§fn eq(&self, other: &DescribeOrganizationConfigRuleStatusesError) -> bool
fn eq(&self, other: &DescribeOrganizationConfigRuleStatusesError) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DescribeOrganizationConfigRuleStatusesError
Auto Trait Implementations§
impl Freeze for DescribeOrganizationConfigRuleStatusesError
impl RefUnwindSafe for DescribeOrganizationConfigRuleStatusesError
impl Send for DescribeOrganizationConfigRuleStatusesError
impl Sync for DescribeOrganizationConfigRuleStatusesError
impl Unpin for DescribeOrganizationConfigRuleStatusesError
impl UnwindSafe for DescribeOrganizationConfigRuleStatusesError
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