[][src]Struct rusoto_organizations::DescribeOrganizationalUnitRequest

pub struct DescribeOrganizationalUnitRequest {
    pub organizational_unit_id: String,
}

Fields

organizational_unit_id: String

The unique identifier (ID) of the organizational unit that you want details about. You can get the ID from the ListOrganizationalUnitsForParent operation.

The regex pattern for an organizational unit ID string requires "ou-" followed by from 4 to 32 lowercase letters or digits (the ID of the root that contains the OU). This string is followed by a second "-" dash and from 8 to 32 additional lowercase letters or digits.

Trait Implementations

impl Clone for DescribeOrganizationalUnitRequest[src]

impl Debug for DescribeOrganizationalUnitRequest[src]

impl Default for DescribeOrganizationalUnitRequest[src]

impl PartialEq<DescribeOrganizationalUnitRequest> for DescribeOrganizationalUnitRequest[src]

impl Serialize for DescribeOrganizationalUnitRequest[src]

impl StructuralPartialEq for DescribeOrganizationalUnitRequest[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.