Module AppConfig.Extension

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-appconfig-extension.html

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

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

and parameter = {
  1. description : string option;
  2. required : bool;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-appconfig-extension-parameter.html

type properties = {
  1. description : string option;
  2. parameters : parameter Stdlib__Map.Make(Stdlib.String).t option;
  3. actions : Yojson.Safe.t;
  4. latest_version_number : int option;
  5. tags : tag list option;
  6. name : string;
}

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

val make_properties : ?description:string -> ?parameters:parameter Stdlib__Map.Make(Stdlib.String).t -> actions:Yojson.Safe.t -> ?latest_version_number:int -> ?tags:tag list -> name:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_parameter : ?description:string -> required:bool -> unit -> parameter
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_parameter : parameter -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
  3. arn : string;
  4. version_number : int;
}
val create_attributes : string -> attributes
val cloudformation_type : string