package aws-autoscaling

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. lifecycle_hook_name : Aws.BaseTypes.String.t;
  2. auto_scaling_group_name : Aws.BaseTypes.String.t;
  3. lifecycle_transition : Aws.BaseTypes.String.t option;
  4. role_a_r_n : Aws.BaseTypes.String.t option;
  5. notification_target_a_r_n : Aws.BaseTypes.String.t option;
  6. notification_metadata : Aws.BaseTypes.String.t option;
  7. heartbeat_timeout : Aws.BaseTypes.Integer.t option;
  8. default_result : Aws.BaseTypes.String.t option;
}
val make : lifecycle_hook_name:Aws.BaseTypes.String.t -> auto_scaling_group_name:Aws.BaseTypes.String.t -> ?lifecycle_transition:Aws.BaseTypes.String.t -> ?role_a_r_n:Aws.BaseTypes.String.t -> ?notification_target_a_r_n:Aws.BaseTypes.String.t -> ?notification_metadata:Aws.BaseTypes.String.t -> ?heartbeat_timeout:Aws.BaseTypes.Integer.t -> ?default_result:Aws.BaseTypes.String.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t