pub struct GetMembersResponse {
pub members: Option<Vec<Member>>,
pub unprocessed_accounts: Option<Vec<SecurityHubResult>>,
}
Fields§
§members: Option<Vec<Member>>
The list of details about the Security Hub member accounts.
unprocessed_accounts: Option<Vec<SecurityHubResult>>
The list of AWS accounts that could not be processed. For each account, the list includes the account ID and the email address.
Trait Implementations§
Source§impl Clone for GetMembersResponse
impl Clone for GetMembersResponse
Source§fn clone(&self) -> GetMembersResponse
fn clone(&self) -> GetMembersResponse
Returns a duplicate of the value. Read more
1.0.0 · 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 GetMembersResponse
impl Debug for GetMembersResponse
Source§impl Default for GetMembersResponse
impl Default for GetMembersResponse
Source§fn default() -> GetMembersResponse
fn default() -> GetMembersResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMembersResponse
impl<'de> Deserialize<'de> for GetMembersResponse
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
Source§impl PartialEq for GetMembersResponse
impl PartialEq for GetMembersResponse
impl StructuralPartialEq for GetMembersResponse
Auto Trait Implementations§
impl Freeze for GetMembersResponse
impl RefUnwindSafe for GetMembersResponse
impl Send for GetMembersResponse
impl Sync for GetMembersResponse
impl Unpin for GetMembersResponse
impl UnwindSafe for GetMembersResponse
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