Module Values.TemplateActionDocumentSource

Put template post migration custom action.

Sourcetype nonrec t = {
  1. actionID : ActionID.t option;
    (*

    Template post migration custom action ID.

    *)
  2. actionName : BoundedString.t option;
    (*

    Template post migration custom action name.

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

    Template post migration custom action document identifier.

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

    Template post migration custom action order.

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

    Template post migration custom action document version.

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

    Template post migration custom action active status.

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

    Template post migration custom action timeout in seconds.

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

    Template post migration custom action must succeed for cutover.

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

    Template post migration custom action parameters.

    *)
  10. operatingSystem : OperatingSystemString.t option;
    (*

    Operating system eligible for this template post migration custom action.

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

    Template post migration custom action external parameters.

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

    Template post migration custom action description.

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

    Template post migration custom action category.

    *)
}
Sourcetype nonrec error = [
  1. | `ConflictException of ConflictException.t
  2. | `ResourceNotFoundException of ResourceNotFoundException.t
  3. | `UninitializedAccountException of UninitializedAccountException.t
  4. | `ValidationException of ValidationException.t
  5. | `Unknown_operation_error of string * string option
]
Sourceval make : ?actionID:??? -> ?actionName:??? -> ?documentIdentifier:??? -> ?order:??? -> ?documentVersion:??? -> ?active:??? -> ?timeoutSeconds:??? -> ?mustSucceedForCutover:??? -> ?parameters:??? -> ?operatingSystem:??? -> ?externalParameters:??? -> ?description:??? -> ?category:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `ConflictException of ConflictException.t | `ResourceNotFoundException of ResourceNotFoundException.t | `UninitializedAccountException of UninitializedAccountException.t | `Unknown_operation_error of string * string option | `ValidationException of ValidationException.t ]
Sourceval error_to_json : error -> Yojson.Safe.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 ActionID.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