SSM.Document
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ssm-document.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-documentrequires.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssm-document-attachmentssource.html
type properties = {
document_format : string option;
requires : document_requires list option;
content : Yojson.Safe.t;
target_type : string option;
document_type : string option;
version_name : string option;
update_method : string option;
attachments : attachments_source list option;
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 ]
val create_attributes : string -> attributes