pub struct AwsOrganization {
pub id: Option<String>,
}Expand description
An organization is a collection of accounts that are centrally managed together using consolidated billing, organized hierarchically with organizational units (OUs), and controlled with policies.
This type is not used in any activity, and only used as part of another schema.
Fields§
§id: Option<String>The unique identifier (ID) for the organization. The regex pattern for an organization ID string requires “o-” followed by from 10 to 32 lowercase letters or digits.
Trait Implementations§
Source§impl Clone for AwsOrganization
impl Clone for AwsOrganization
Source§fn clone(&self) -> AwsOrganization
fn clone(&self) -> AwsOrganization
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 AwsOrganization
impl Debug for AwsOrganization
Source§impl Default for AwsOrganization
impl Default for AwsOrganization
Source§fn default() -> AwsOrganization
fn default() -> AwsOrganization
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AwsOrganization
impl<'de> Deserialize<'de> for AwsOrganization
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 Serialize for AwsOrganization
impl Serialize for AwsOrganization
impl Part for AwsOrganization
Auto Trait Implementations§
impl Freeze for AwsOrganization
impl RefUnwindSafe for AwsOrganization
impl Send for AwsOrganization
impl Sync for AwsOrganization
impl Unpin for AwsOrganization
impl UnwindSafe for AwsOrganization
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