Module SSM.Parameter

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

type properties = {
  1. type_ : string;
  2. description : string option;
  3. policies : string option;
  4. allowed_pattern : string option;
  5. tier : string option;
  6. value : string;
  7. data_type : string option;
  8. tags : string Stdlib__Map.Make(Stdlib.String).t option;
  9. name : string option;
}

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

val make_properties : type_:string -> ?description:string -> ?policies:string -> ?allowed_pattern:string -> ?tier:string -> value:string -> ?data_type:string -> ?tags:string Stdlib__Map.Make(Stdlib.String).t -> ?name:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. type_ : string;
  3. value : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string