[][src]Struct rusoto_ssm::ResourceDataSyncAwsOrganizationsSource

pub struct ResourceDataSyncAwsOrganizationsSource {
    pub organization_source_type: String,
    pub organizational_units: Option<Vec<ResourceDataSyncOrganizationalUnit>>,
}

Information about the AwsOrganizationsSource resource data sync source. A sync source of this type can synchronize data from AWS Organizations or, if an AWS Organization is not present, from multiple AWS Regions.

Fields

organization_source_type: String

If an AWS Organization is present, this is either OrganizationalUnits or EntireOrganization. For OrganizationalUnits, the data is aggregated from a set of organization units. For EntireOrganization, the data is aggregated from the entire AWS Organization.

organizational_units: Option<Vec<ResourceDataSyncOrganizationalUnit>>

The AWS Organizations organization units included in the sync.

Trait Implementations

impl Clone for ResourceDataSyncAwsOrganizationsSource[src]

impl Debug for ResourceDataSyncAwsOrganizationsSource[src]

impl Default for ResourceDataSyncAwsOrganizationsSource[src]

impl<'de> Deserialize<'de> for ResourceDataSyncAwsOrganizationsSource[src]

impl PartialEq<ResourceDataSyncAwsOrganizationsSource> for ResourceDataSyncAwsOrganizationsSource[src]

impl Serialize for ResourceDataSyncAwsOrganizationsSource[src]

impl StructuralPartialEq for ResourceDataSyncAwsOrganizationsSource[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> 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.