Module BillingConductor.BillingGroup

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-billingconductor-billinggroup.html

type computation_preference = {
  1. pricing_plan_arn : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billingconductor-billinggroup-computationpreference.html

and account_grouping = {
  1. linked_account_ids : string list;
  2. auto_associate : bool option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-billingconductor-billinggroup-accountgrouping.html

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

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

type properties = {
  1. description : string option;
  2. primary_account_id : string;
  3. computation_preference : computation_preference;
  4. account_grouping : account_grouping;
  5. tags : tag list option;
  6. name : string;
}

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

val make_properties : ?description:string -> primary_account_id:string -> computation_preference:computation_preference -> account_grouping:account_grouping -> ?tags:tag list -> name:string -> unit -> properties
val make_computation_preference : pricing_plan_arn:string -> unit -> computation_preference
val make_account_grouping : linked_account_ids:string list -> ?auto_associate:bool -> unit -> account_grouping
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_computation_preference : computation_preference -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_account_grouping : account_grouping -> [> `Assoc of (string * Yojson.Safe.t) list ]
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. status : string;
  3. size : int;
  4. status_reason : string;
  5. creation_time : int;
  6. last_modified_time : int;
  7. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string