Module OpsWorksCM.Server

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-opsworkscm-server.html

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

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

and engine_attribute = {
  1. value : string option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworkscm-server-engineattribute.html

type properties = {
  1. key_pair : string option;
  2. engine_version : string option;
  3. service_role_arn : string;
  4. disable_automated_backup : bool option;
  5. backup_id : string option;
  6. engine_model : string option;
  7. preferred_maintenance_window : string option;
  8. associate_public_ip_address : bool option;
  9. instance_profile_arn : string;
  10. custom_certificate : string option;
  11. preferred_backup_window : string option;
  12. security_group_ids : string list option;
  13. subnet_ids : string list option;
  14. custom_domain : string option;
  15. custom_private_key : string option;
  16. engine_attributes : engine_attribute list option;
  17. backup_retention_count : int option;
  18. instance_type : string;
  19. tags : tag list option;
  20. engine : string option;
}

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

val make_properties : ?key_pair:string -> ?engine_version:string -> service_role_arn:string -> ?disable_automated_backup:bool -> ?backup_id:string -> ?engine_model:string -> ?preferred_maintenance_window:string -> ?associate_public_ip_address:bool -> instance_profile_arn:string -> ?custom_certificate:string -> ?preferred_backup_window:string -> ?security_group_ids:string list -> ?subnet_ids:string list -> ?custom_domain:string -> ?custom_private_key:string -> ?engine_attributes:engine_attribute list -> ?backup_retention_count:int -> instance_type:string -> ?tags:tag list -> ?engine:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_engine_attribute : ?value:string -> ?name:string -> unit -> engine_attribute
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_engine_attribute : engine_attribute -> [> `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. endpoint : string;
  3. server_name : string;
  4. arn : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string