logo
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,
}
Expand description

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

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Returns the “default value” for a type. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more