[][src]Struct rusoto_config::OrganizationConformancePackDetailedStatus

pub struct OrganizationConformancePackDetailedStatus {
    pub account_id: String,
    pub conformance_pack_name: String,
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub last_update_time: Option<f64>,
    pub status: String,
}

Organization conformance pack creation or deletion status in each member account. This includes the name of the conformance pack, the status, error code and error message when the conformance pack creation or deletion failed.

Fields

account_id: String

The 12-digit account ID of a member account.

conformance_pack_name: String

The name of conformance pack deployed in the member account.

error_code: Option<String>

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

error_message: Option<String>

An error message indicating that conformance pack account creation or deletion has failed due to an error in the member account.

last_update_time: Option<f64>

The timestamp of the last status update.

status: 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 OrganizationConformancePackDetailedStatus[src]

impl Debug for OrganizationConformancePackDetailedStatus[src]

impl Default for OrganizationConformancePackDetailedStatus[src]

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

impl PartialEq<OrganizationConformancePackDetailedStatus> for OrganizationConformancePackDetailedStatus[src]

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