[][src]Struct rusoto_config::OrganizationConformancePackStatus

pub struct OrganizationConformancePackStatus {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub last_update_time: Option<f64>,
    pub organization_conformance_pack_name: String,
    pub status: String,
}

Returns the status for an organization conformance pack in an organization.

Fields

error_code: Option<String>

An error code that is returned when organization conformance pack creation or deletion has failed in a member account.

error_message: Option<String>

An error message indicating that organization conformance pack creation or deletion failed due to an error.

last_update_time: Option<f64>

The timestamp of the last update.

organization_conformance_pack_name: String

The name that you assign to organization conformance pack.

status: String

Indicates deployment status of an organization conformance pack. When master account calls PutOrganizationConformancePack for the first time, conformance pack status is created in all the member accounts. When master account calls PutOrganizationConformancePack for the second time, conformance pack status is updated in all the member accounts. Additionally, conformance pack status is updated when one or more member accounts join or leave an organization. Conformance pack status is deleted when the master account deletes OrganizationConformancePack in all the member accounts and disables service access for config-multiaccountsetup.amazonaws.com.

AWS Config sets the state of the conformance pack to:

  • CREATESUCCESSFUL when an organization conformance pack has been successfully created in all the member accounts.

  • CREATEINPROGRESS when an organization conformance pack creation is in progress.

  • CREATEFAILED when an organization conformance pack creation failed in one or more member accounts within that organization.

  • DELETEFAILED when an organization conformance pack deletion failed in one or more member accounts within that organization.

  • DELETEINPROGRESS when an organization conformance pack deletion is in progress.

  • DELETESUCCESSFUL when an organization conformance pack has been successfully deleted from all the member accounts.

  • UPDATESUCCESSFUL when an organization conformance pack has been successfully updated in all the member accounts.

  • UPDATEINPROGRESS when an organization conformance pack update is in progress.

  • UPDATEFAILED when an organization conformance pack update failed in one or more member accounts within that organization.

Trait Implementations

impl Clone for OrganizationConformancePackStatus[src]

impl Debug for OrganizationConformancePackStatus[src]

impl Default for OrganizationConformancePackStatus[src]

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

impl PartialEq<OrganizationConformancePackStatus> for OrganizationConformancePackStatus[src]

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