[][src]Struct rusoto_config::OrganizationResourceDetailedStatusFilters

pub struct OrganizationResourceDetailedStatusFilters {
    pub account_id: Option<String>,
    pub status: Option<String>,
}

Status filter object to filter results based on specific member account ID or status type for an organization conformance pack.

Fields

account_id: Option<String>

The 12-digit account ID of the member account within an organization.

status: Option<String>

Indicates deployment status for conformance pack in a member account. When master account calls PutOrganizationConformancePack action for the first time, conformance pack status is created in the member account. When master account calls PutOrganizationConformancePack action for the second time, conformance pack status is updated in the member account. Conformance pack status is deleted when the master account deletes OrganizationConformancePack and disables service access for config-multiaccountsetup.amazonaws.com.

AWS Config sets the state of the conformance pack to:

  • CREATESUCCESSFUL when conformance pack has been created in the member account.

  • CREATEINPROGRESS when conformance pack is being created in the member account.

  • CREATEFAILED when conformance pack creation has failed in the member account.

  • DELETEFAILED when conformance pack deletion has failed in the member account.

  • DELETEINPROGRESS when conformance pack is being deleted in the member account.

  • DELETESUCCESSFUL when conformance pack has been deleted in the member account.

  • UPDATESUCCESSFUL when conformance pack has been updated in the member account.

  • UPDATEINPROGRESS when conformance pack is being updated in the member account.

  • UPDATEFAILED when conformance pack deletion has failed in the member account.

Trait Implementations

impl Clone for OrganizationResourceDetailedStatusFilters[src]

impl Debug for OrganizationResourceDetailedStatusFilters[src]

impl Default for OrganizationResourceDetailedStatusFilters[src]

impl PartialEq<OrganizationResourceDetailedStatusFilters> for OrganizationResourceDetailedStatusFilters[src]

impl Serialize for OrganizationResourceDetailedStatusFilters[src]

impl StructuralPartialEq for OrganizationResourceDetailedStatusFilters[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, 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.