Module Values.SsmDocumentSource

AWS Systems Manager Document.

Sourcetype nonrec t = {
  1. actionName : BoundedString.t;
    (*

    User-friendly name for the AWS Systems Manager Document.

    *)
  2. ssmDocumentName : SsmDocumentName.t;
    (*

    AWS Systems Manager Document name or full ARN.

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

    AWS Systems Manager Document timeout seconds.

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

    If true, Cutover will not be enabled if the document has failed.

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

    AWS Systems Manager Document parameters.

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

    AWS Systems Manager Document external parameters.

    *)
}
Sourceval context_ : string
Sourceval make : ?timeoutSeconds:??? -> ?mustSucceedForCutover:??? -> ?parameters:??? -> ?externalParameters:??? -> actionName:BoundedString.t -> ssmDocumentName:SsmDocumentName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `Integer of StrictlyPositiveInteger.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 BoundedString.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