pub struct ImportIAMResult {
pub skipped: IAMEntities,
pub removed: IAMEntities,
pub added: IAMEntities,
pub failed: IAMErrEntities,
}Expand description
ImportIAMResult - represents the structure iam import response
Fields§
§skipped: IAMEntitiesSkipped entries while import This could be due to groups, policies etc missing for imported entries. We dont fail hard in this case and
removed: IAMEntitiesRemoved entries - this mostly happens for policies where empty might be getting imported and that’s invalid
added: IAMEntitiesNewly added entries
failed: IAMErrEntitiesFailed entries while import. This would have details of failed entities with respective errors
Trait Implementations§
Source§impl Clone for ImportIAMResult
impl Clone for ImportIAMResult
Source§fn clone(&self) -> ImportIAMResult
fn clone(&self) -> ImportIAMResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ImportIAMResult
impl Debug for ImportIAMResult
Source§impl Default for ImportIAMResult
impl Default for ImportIAMResult
Source§fn default() -> ImportIAMResult
fn default() -> ImportIAMResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ImportIAMResult
impl<'de> Deserialize<'de> for ImportIAMResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ImportIAMResult
impl RefUnwindSafe for ImportIAMResult
impl Send for ImportIAMResult
impl Sync for ImportIAMResult
impl Unpin for ImportIAMResult
impl UnsafeUnpin for ImportIAMResult
impl UnwindSafe for ImportIAMResult
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