[][src]Struct rusoto_config::OrganizationConfigRuleStatus

pub struct OrganizationConfigRuleStatus {
    pub error_code: Option<String>,
    pub error_message: Option<String>,
    pub last_update_time: Option<f64>,
    pub organization_config_rule_name: String,
    pub organization_rule_status: String,
}

Returns the status for an organization config rule in an organization.

Fields

error_code: Option<String>

An error code that is returned when organization config rule creation or deletion has failed.

error_message: Option<String>

An error message indicating that organization config rule creation or deletion failed due to an error.

last_update_time: Option<f64>

The timestamp of the last update.

organization_config_rule_name: String

The name that you assign to organization config rule.

organization_rule_status: String

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

AWS Config sets the state of the rule to:

  • CREATESUCCESSFUL when an organization config rule has been successfully created in all the member accounts.

  • CREATEINPROGRESS when an organization config rule creation is in progress.

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

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

  • DELETEINPROGRESS when an organization config rule deletion is in progress.

  • DELETESUCCESSFUL when an organization config rule has been successfully deleted from all the member accounts.

  • UPDATESUCCESSFUL when an organization config rule has been successfully updated in all the member accounts.

  • UPDATEINPROGRESS when an organization config rule update is in progress.

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

Trait Implementations

impl Clone for OrganizationConfigRuleStatus[src]

impl Default for OrganizationConfigRuleStatus[src]

impl PartialEq<OrganizationConfigRuleStatus> for OrganizationConfigRuleStatus[src]

impl Debug for OrganizationConfigRuleStatus[src]

impl StructuralPartialEq for OrganizationConfigRuleStatus[src]

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

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self