Module Organizations.Account

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-account.html

type tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

type properties = {
  1. role_name : string option;
  2. email : string;
  3. parent_ids : string list option;
  4. tags : tag list option;
  5. account_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-organizations-account.html;

val make_properties : ?role_name:string -> email:string -> ?parent_ids:string list -> ?tags:tag list -> account_name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. joined_method : string;
  3. status : string;
  4. joined_timestamp : string;
  5. account_id : string;
  6. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string