Module Values.PutSourceServerActionRequestSource

Put source server post migration custom action.

Sourcetype nonrec t = {
  1. sourceServerID : SourceServerID.t;
    (*

    Source server ID.

    *)
  2. actionName : ActionName.t;
    (*

    Source server post migration custom action name.

    *)
  3. documentIdentifier : BoundedString.t;
    (*

    Source server post migration custom action document identifier.

    *)
  4. order : OrderType.t;
    (*

    Source server post migration custom action order.

    *)
  5. actionID : ActionID.t;
    (*

    Source server post migration custom action ID.

    *)
  6. documentVersion : DocumentVersion.t option;
    (*

    Source server post migration custom action document version.

    *)
  7. active : Boolean.t option;
    (*

    Source server post migration custom action active status.

    *)
  8. timeoutSeconds : StrictlyPositiveInteger.t option;
    (*

    Source server post migration custom action timeout in seconds.

    *)
  9. mustSucceedForCutover : Boolean.t option;
    (*

    Source server post migration custom action must succeed for cutover.

    *)
  10. parameters : SsmDocumentParameters.t option;
    (*

    Source server post migration custom action parameters.

    *)
  11. externalParameters : SsmDocumentExternalParameters.t option;
    (*

    Source server post migration custom action external parameters.

    *)
  12. description : ActionDescription.t option;
    (*

    Source server post migration custom action description.

    *)
  13. category : ActionCategory.t option;
    (*

    Source server post migration custom action category.

    *)
  14. accountID : AccountID.t option;
    (*

    Source server post migration custom account ID.

    *)
}
Sourceval context_ : string
Sourceval make : ?documentVersion:??? -> ?active:??? -> ?timeoutSeconds:??? -> ?mustSucceedForCutover:??? -> ?parameters:??? -> ?externalParameters:??? -> ?description:??? -> ?category:??? -> ?accountID:??? -> sourceServerID:SourceServerID.t -> actionName:ActionName.t -> documentIdentifier:BoundedString.t -> order:OrderType.t -> actionID:ActionID.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Enum of string | `Integer of OrderType.t | `Map of ([> `String of SsmDocumentParameterName.t ] * [> `List of [> `Structure of (string * [> `Enum of string | `String of SsmParameterStoreParameterName.t ]) list ] list | `Structure of (string * [> `String of JmesPathString.t ]) list ]) list | `String of SourceServerID.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