Module EC2.CapacityReservation

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-capacityreservation.html

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

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

and tag_specification = {
  1. resource_type : string option;
  2. tags : tag list option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ec2-capacityreservation-tagspecification.html

type properties = {
  1. tenancy : string option;
  2. end_date_type : string option;
  3. tag_specifications : tag_specification list option;
  4. availability_zone : string;
  5. end_date : string option;
  6. ebs_optimized : bool option;
  7. out_post_arn : string option;
  8. instance_count : int;
  9. placement_group_arn : string option;
  10. instance_platform : string;
  11. instance_type : string;
  12. ephemeral_storage : bool option;
  13. instance_match_criteria : string option;
}

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

val make_properties : ?tenancy:string -> ?end_date_type:string -> ?tag_specifications:tag_specification list -> availability_zone:string -> ?end_date:string -> ?ebs_optimized:bool -> ?out_post_arn:string -> instance_count:int -> ?placement_group_arn:string -> instance_platform:string -> instance_type:string -> ?ephemeral_storage:bool -> ?instance_match_criteria:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_tag_specification : ?resource_type:string -> ?tags:tag list -> unit -> tag_specification
val yojson_of_tag : tag -> Yojson.Safe.t
val yojson_of_tag_specification : tag_specification -> [> `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. tenancy : string;
  3. available_instance_count : int;
  4. availability_zone : string;
  5. total_instance_count : int;
  6. id : string;
  7. instance_type : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string