Module Redshift.EventSubscription

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-redshift-eventsubscription.html

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

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

type properties = {
  1. source_type : string option;
  2. event_categories : string list option;
  3. enabled : bool option;
  4. severity : string option;
  5. subscription_name : string;
  6. source_ids : string list option;
  7. sns_topic_arn : string option;
  8. tags : tag list option;
}

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

val make_properties : ?source_type:string -> ?event_categories:string list -> ?enabled:bool -> ?severity:string -> subscription_name:string -> ?source_ids:string list -> ?sns_topic_arn:string -> ?tags:tag list -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
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;
  2. status : string;
  3. cust_subscription_id : string;
  4. event_categories_list : string list;
  5. source_ids_list : string list;
  6. subscription_creation_time : string;
  7. customer_aws_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string