diff --git a/text/0465-organizations.md b/text/0465-organizations.md index 256c28b59..1b2a9837b 100644 --- a/text/0465-organizations.md +++ b/text/0465-organizations.md @@ -77,6 +77,9 @@ new organizations.OrganizationalUnit(this, "OrganizationalUnit", { ### Defining an account +In order to define your `Account`, you must specify the name and a unique account email. Optionally, you +may specify the parent organizational unit and the organizations role name. + ```typescript import * as organizations from '@aws-cdk/aws-organizations'; @@ -86,7 +89,7 @@ const ou = organizations.OrganizationalUnit.fromAttributes({ new organizations.Account(this, "Account", { accountName: "MyFirstAccount", accountEmail: "any«example.com", - parent: ou, + parent: ou, // Defaults to the organiaztion root roleName: "OrganizationAccountAccessRole", // The default if don't specified }); ``` @@ -100,6 +103,16 @@ interface IAccount { } ``` +### Defining policies + +#### Defining a service control policy + +#### Defining a backup policy + +#### Defining a tag policy + +#### Defining an AI opt-out policy + --- Ticking the box below indicates that the public API of this RFC has been