Module SSM.Document

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html

type document_requires = {
  1. version : string option;
  2. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html

and tag = {
  1. value : string;
  2. key : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html

and attachments_source = {
  1. values : string list option;
  2. key : string option;
  3. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-attachmentssource.html

type properties = {
  1. document_format : string option;
  2. requires : document_requires list option;
  3. content : Yojson.Safe.t;
  4. target_type : string option;
  5. document_type : string option;
  6. version_name : string option;
  7. update_method : string option;
  8. attachments : attachments_source list option;
  9. tags : tag list option;
  10. name : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html;

val make_properties : ?document_format:string -> ?requires:document_requires list -> content:Yojson.Safe.t -> ?target_type:string -> ?document_type:string -> ?version_name:string -> ?update_method:string -> ?attachments:attachments_source list -> ?tags:tag list -> ?name:string -> unit -> properties
val make_document_requires : ?version:string -> ?name:string -> unit -> document_requires
val make_tag : value:string -> key:string -> unit -> tag
val make_attachments_source : ?values:string list -> ?key:string -> ?name:string -> unit -> attachments_source
val yojson_of_document_requires : document_requires -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_attachments_source : attachments_source -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string