Module Values.OperationSource

The operations performed by AWS Systems Manager for SAP.

Sourcetype nonrec t = {
  1. id : OperationId.t option;
    (*

    The ID of the operation.

    *)
  2. type_ : OperationType.t option;
    (*

    The type of the operation.

    *)
  3. status : OperationStatus.t option;
    (*

    The status of the operation.

    *)
  4. statusMessage : String_.t option;
    (*

    The status message of the operation.

    *)
  5. properties : OperationProperties.t option;
    (*

    The properties of the operation.

    *)
  6. resourceType : ResourceType.t option;
    (*

    The resource type of the operation.

    *)
  7. resourceId : ResourceId.t option;
    (*

    The resource ID of the operation.

    *)
  8. resourceArn : Arn.t option;
    (*

    The Amazon Resource Name (ARN) of the operation.

    *)
  9. startTime : Timestamp.t option;
    (*

    The start time of the operation.

    *)
  10. endTime : Timestamp.t option;
    (*

    The end time of the operation.

    *)
  11. lastUpdatedTime : Timestamp.t option;
    (*

    The time at which the operation was last updated.

    *)
}
Sourceval make : ?id:??? -> ?type_:??? -> ?status:??? -> ?statusMessage:??? -> ?properties:??? -> ?resourceType:??? -> ?resourceId:??? -> ?resourceArn:??? -> ?startTime:??? -> ?endTime:??? -> ?lastUpdatedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of String_.t ] * [> `String of String_.t ]) list | `String of OperationId.t | `Timestamp of Timestamp.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