pub struct OrganizationsAccountsResponse {
pub accounts: Vec<OrganizationsAccount>,
pub management_account_id: Option<String>,
pub master_account_id: Option<String>,
}Expand description
Response body for GET /_fakecloud/organizations/accounts.
managementAccountId and masterAccountId are duplicates — AWS
renamed Master to Management in 2020 but kept the old field
around for back-compat. Both are returned here so SDKs in either
vintage match.
When no organization has been created yet, accounts is empty and
the account-id fields are None.
Fields§
§accounts: Vec<OrganizationsAccount>§management_account_id: Option<String>§master_account_id: Option<String>Trait Implementations§
Source§impl Clone for OrganizationsAccountsResponse
impl Clone for OrganizationsAccountsResponse
Source§fn clone(&self) -> OrganizationsAccountsResponse
fn clone(&self) -> OrganizationsAccountsResponse
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<'de> Deserialize<'de> for OrganizationsAccountsResponse
impl<'de> Deserialize<'de> for OrganizationsAccountsResponse
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 OrganizationsAccountsResponse
impl RefUnwindSafe for OrganizationsAccountsResponse
impl Send for OrganizationsAccountsResponse
impl Sync for OrganizationsAccountsResponse
impl Unpin for OrganizationsAccountsResponse
impl UnsafeUnpin for OrganizationsAccountsResponse
impl UnwindSafe for OrganizationsAccountsResponse
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