SES.ContactListsee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-contactlist.html
type topic = {description : string option;display_name : string;default_subscription_status : string;topic_name : string;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ses-contactlist-topic.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-resource-tags.html
type properties = {description : string option;topics : topic list option;contact_list_name : string 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 ->
propertiesval make_topic :
?description:string ->
display_name:string ->
default_subscription_status:string ->
topic_name:string ->
unit ->
topicval make_tag : value:string -> key:string -> unit -> tagval 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 ]val create_attributes : string -> attributes