Module SES.ContactList

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html

type topic = {
  1. description : string option;
  2. display_name : string;
  3. default_subscription_status : string;
  4. topic_name : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-contactlist-topic.html

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

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

type properties = {
  1. description : string option;
  2. topics : topic list option;
  3. contact_list_name : string option;
  4. tags : tag list option;
}

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

val make_properties : ?description:string -> ?topics:topic list -> ?contact_list_name:string -> ?tags:tag list -> unit -> properties
val make_topic : ?description:string -> display_name:string -> default_subscription_status:string -> topic_name:string -> unit -> topic
val make_tag : value:string -> key:string -> unit -> tag
val yojson_of_topic : topic -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_tag : tag -> [> `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