Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions awscli/examples/organizations/create-organizational-unit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ The output includes an organizationalUnit object with details about the new OU:
"OrganizationalUnit": {
"Id": "ou-examplerootid111-exampleouid111",
"Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111",
"Name": "AccountingOU"
"Name": "AccountingOU",
"Path": "o-exampleorgid/r-examplerootid111/ou-examplerootid111-exampleouid111/"
Comment thread
jamescro marked this conversation as resolved.
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ Output::
"OrganizationalUnit": {
"Name": "Accounting Group",
"Arn": "arn:aws:organizations::123456789012:ou/o-exampleorgid/ou-examplerootid111-exampleouid111",
"Id": "ou-examplerootid111-exampleouid111"
"Id": "ou-examplerootid111-exampleouid111",
"Path": "o-exampleorgid/r-examplerootid111/ou-examplerootid111-exampleouid111/"
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ The output shows that the specified root contains two OUs and shows details of e
"OrganizationalUnits": [
{
"Name": "AccountingDepartment",
"Arn": "arn:aws:organizations::o-exampleorgid:ou/r-examplerootid111/ou-examplerootid111-exampleouid111"
"Arn": "arn:aws:organizations::o-exampleorgid:ou/r-examplerootid111/ou-examplerootid111-exampleouid111",
Comment thread
jamescro marked this conversation as resolved.
"Id": "ou-examplerootid111-exampleouid111",
"Path": "o-exampleorgid/r-examplerootid111/ou-examplerootid111-exampleouid111/"
},
{
"Name": "ProductionDepartment",
"Arn": "arn:aws:organizations::o-exampleorgid:ou/r-examplerootid111/ou-examplerootid111-exampleouid222"
"Arn": "arn:aws:organizations::o-exampleorgid:ou/r-examplerootid111/ou-examplerootid111-exampleouid222",
"Id": "ou-examplerootid111-exampleouid222",
"Path": "o-exampleorgid/r-examplerootid111/ou-examplerootid111-exampleouid222/"
}
]
}
}
7 changes: 4 additions & 3 deletions awscli/examples/organizations/update-organizational-unit.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ The output shows the new name: ::

{
"OrganizationalUnit": {
"Id": "ou-examplerootid111-exampleouid111"
"Id": "ou-examplerootid111-exampleouid111",
"Name": "AccountingOU",
"Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111""
"Arn": "arn:aws:organizations::111111111111:ou/o-exampleorgid/ou-examplerootid111-exampleouid111",
"Path": "o-exampleorgid/r-examplerootid111/ou-examplerootid111-exampleouid111/"
}
}
}
Loading