Module Values_0.DocumentRequiresSource

An SSM document required by the current document.

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

    The name of the required SSM document. The name can be an Amazon Resource Name (ARN).

    *)
  2. version : DocumentVersion.t option;
    (*

    The document version required by the current document.

    *)
  3. requireType : RequireType.t option;
    (*

    The document type of the required SSM document.

    *)
  4. versionName : DocumentVersionName.t option;
    (*

    An optional field specifying the version of the artifact associated with the document. For example, 12.6. This value is unique across all versions of a document, and can't be changed.

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