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

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

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