{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-config/refs/heads/main/json-structure/config-member-account-status-structure.json", "name": "MemberAccountStatus", "description": "Organization Config rule creation or deletion status in each member account. This includes the name of the rule, the status, error code and error message when the rule creation or deletion failed.", "type": "object", "properties": { "AccountId": { "allOf": [ { "$ref": "#/components/schemas/AccountId" }, { "description": "The 12-digit account ID of a member account." } ] }, "ConfigRuleName": { "allOf": [ { "$ref": "#/components/schemas/StringWithCharLimit64" }, { "description": "The name of Config rule deployed in the member account." } ] }, "MemberAccountRuleStatus": { "allOf": [ { "$ref": "#/components/schemas/MemberAccountRuleStatus" }, { "description": "

Indicates deployment status for Config rule in the member account. When management account calls PutOrganizationConfigRule action for the first time, Config rule status is created in the member account. When management account calls PutOrganizationConfigRule action for the second time, Config rule status is updated in the member account. Config rule status is deleted when the management account deletes OrganizationConfigRule and disables service access for config-multiaccountsetup.amazonaws.com.

Config sets the state of the rule to:

" } ] }, "ErrorCode": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "An error code that is returned when Config rule creation or deletion failed in the member account." } ] }, "ErrorMessage": { "allOf": [ { "$ref": "#/components/schemas/String" }, { "description": "An error message indicating that Config rule account creation or deletion has failed due to an error in the member account." } ] }, "LastUpdateTime": { "allOf": [ { "$ref": "#/components/schemas/Date" }, { "description": "The timestamp of the last status update." } ] } }, "required": [ "AccountId", "ConfigRuleName", "MemberAccountRuleStatus" ] }