Module Values.SourceResourceSource

A source resource can be a source server, a migration wave, an application, or any other resource that you track.

Sourcetype nonrec t = {
  1. name : SourceResourceName.t;
    (*

    This is the name that you want to use to identify the resource. If the resource is an AWS resource, we recommend that you set this parameter to the ARN of the resource.

    *)
  2. description : SourceResourceDescription.t option;
    (*

    A description that can be free-form text to record additional detail about the resource for clarity or later reference.

    *)
  3. statusDetail : StatusDetail.t option;
    (*

    A free-form description of the status of the resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?statusDetail:??? -> name:SourceResourceName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of SourceResourceName.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