Module Values.ActivitySource

Describes scaling activity, which is a long-running process that represents a change to your Auto Scaling group, such as changing its size or replacing an instance.

Sourcetype nonrec t = {
  1. activityId : XmlString.t option;
    (*

    The ID of the activity.

    *)
  2. autoScalingGroupName : XmlStringMaxLen255.t option;
    (*

    The name of the Auto Scaling group.

    *)
  3. description : XmlString.t option;
    (*

    A friendly, more verbose description of the activity.

    *)
  4. cause : XmlStringMaxLen1023.t option;
    (*

    The reason the activity began.

    *)
  5. startTime : TimestampType.t option;
    (*

    The start time of the activity.

    *)
  6. endTime : TimestampType.t option;
    (*

    The end time of the activity.

    *)
  7. statusCode : ScalingActivityStatusCode.t option;
    (*

    The current status of the activity.

    *)
  8. statusMessage : XmlStringMaxLen255.t option;
    (*

    A friendly, more verbose description of the activity status.

    *)
  9. progress : Progress.t option;
    (*

    A value between 0 and 100 that indicates the progress of the activity.

    *)
  10. details : XmlString.t option;
    (*

    The details about the activity.

    *)
  11. autoScalingGroupState : AutoScalingGroupState.t option;
    (*

    The state of the Auto Scaling group, which is either InService or Deleted.

    *)
  12. autoScalingGroupARN : ResourceName.t option;
    (*

    The Amazon Resource Name (ARN) of the Auto Scaling group.

    *)
}
Sourceval make : ?activityId:??? -> ?autoScalingGroupName:??? -> ?description:??? -> ?cause:??? -> ?startTime:??? -> ?endTime:??? -> ?statusCode:??? -> ?statusMessage:??? -> ?progress:??? -> ?details:??? -> ?autoScalingGroupState:??? -> ?autoScalingGroupARN:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of Progress.t | `String of XmlString.t | `Timestamp of TimestampType.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t