From 256e5a7c6fd29c947b4795789f8a3f74c8fcbdaa Mon Sep 17 00:00:00 2001 From: nivtrips <148805521+nivtrips@users.noreply.github.com> Date: Tue, 5 May 2026 08:21:10 -0700 Subject: [PATCH 1/3] Update list-accounts.rst Added "State": "ACTIVE" to the examples --- awscli/examples/organizations/list-accounts.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/awscli/examples/organizations/list-accounts.rst b/awscli/examples/organizations/list-accounts.rst index fe50ef799b1a..7bd5baf6b1a9 100755 --- a/awscli/examples/organizations/list-accounts.rst +++ b/awscli/examples/organizations/list-accounts.rst @@ -24,6 +24,7 @@ The output includes a list of account summary objects. :: "Id": "222222222222", "Name": "Production Account", "Email": "alice@example.com", + "State": "ACTIVE", "Status": "ACTIVE" }, { @@ -33,6 +34,7 @@ The output includes a list of account summary objects. :: "Id": "333333333333", "Name": "Development Account", "Email": "juan@example.com", + "State": "ACTIVE", "Status": "ACTIVE" }, { @@ -42,7 +44,8 @@ The output includes a list of account summary objects. :: "Id": "444444444444", "Name": "Test Account", "Email": "anika@example.com", + "State": "ACTIVE", "Status": "ACTIVE" } ] - } \ No newline at end of file + } From 8b2b9065262e436758961c8ce0222a2a20dfdef3 Mon Sep 17 00:00:00 2001 From: nivtrips <148805521+nivtrips@users.noreply.github.com> Date: Tue, 5 May 2026 15:14:19 -0700 Subject: [PATCH 2/3] Update list-accounts.rst --- awscli/examples/organizations/list-accounts.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/awscli/examples/organizations/list-accounts.rst b/awscli/examples/organizations/list-accounts.rst index 7bd5baf6b1a9..3da765876de4 100755 --- a/awscli/examples/organizations/list-accounts.rst +++ b/awscli/examples/organizations/list-accounts.rst @@ -15,6 +15,7 @@ The output includes a list of account summary objects. :: "Id": "111111111111", "Name": "Master Account", "Email": "bill@example.com", + "State": "ACTIVE", "Status": "ACTIVE" }, { From 308d07acdfcb9d3a2d51e7c1889f8bcd3987095d Mon Sep 17 00:00:00 2001 From: nivtrips <148805521+nivtrips@users.noreply.github.com> Date: Wed, 6 May 2026 09:33:45 -0700 Subject: [PATCH 3/3] Update list-accounts.rst Added org-path too along with the account state --- awscli/examples/organizations/list-accounts.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/awscli/examples/organizations/list-accounts.rst b/awscli/examples/organizations/list-accounts.rst index 3da765876de4..bea5b9d618fe 100755 --- a/awscli/examples/organizations/list-accounts.rst +++ b/awscli/examples/organizations/list-accounts.rst @@ -15,6 +15,8 @@ The output includes a list of account summary objects. :: "Id": "111111111111", "Name": "Master Account", "Email": "bill@example.com", + "Paths": [ "o-exampleorgid/r-examplerootid111/111111111111/" + ], "State": "ACTIVE", "Status": "ACTIVE" }, @@ -25,6 +27,8 @@ The output includes a list of account summary objects. :: "Id": "222222222222", "Name": "Production Account", "Email": "alice@example.com", + "Paths": [ "o-exampleorgid/r-examplerootid111/111111111111/" + ], "State": "ACTIVE", "Status": "ACTIVE" }, @@ -35,6 +39,8 @@ The output includes a list of account summary objects. :: "Id": "333333333333", "Name": "Development Account", "Email": "juan@example.com", + "Paths": [ "o-exampleorgid/r-examplerootid111/111111111111/" + ], "State": "ACTIVE", "Status": "ACTIVE" }, @@ -45,6 +51,8 @@ The output includes a list of account summary objects. :: "Id": "444444444444", "Name": "Test Account", "Email": "anika@example.com", + "Paths": [ "o-exampleorgid/r-examplerootid111/111111111111/" + ], "State": "ACTIVE", "Status": "ACTIVE" }