Module Values_0.DescribeDocumentRequestSource

Describes the specified Amazon Web Services Systems Manager document (SSM document).

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

    The name of the SSM document. If you're calling a shared SSM document from a different Amazon Web Services account, Name is the full Amazon Resource Name (ARN) of the document.

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

    The document version for which you want information. Can be a specific version or the default version.

    *)
  3. 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 : ?documentVersion:??? -> ?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