Module IoTSiteWise.Portal

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-iotsitewise-portal.html

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

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

and alarms = {
  1. notification_lambda_arn : string option;
  2. alarm_role_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-iotsitewise-portal-alarms.html

type properties = {
  1. portal_name : string;
  2. portal_auth_mode : string option;
  3. notification_sender_email : string option;
  4. alarms : alarms option;
  5. portal_contact_email : string;
  6. role_arn : string;
  7. tags : tag list option;
  8. portal_description : string option;
}

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

val make_properties : portal_name:string -> ?portal_auth_mode:string -> ?notification_sender_email:string -> ?alarms:alarms -> portal_contact_email:string -> role_arn:string -> ?tags:tag list -> ?portal_description:string -> unit -> properties
val make_tag : value:string -> key:string -> unit -> tag
val make_alarms : ?notification_lambda_arn:string -> ?alarm_role_arn:string -> unit -> alarms
val yojson_of_tag : tag -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_alarms : alarms -> [> `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. portal_arn : string;
  3. portal_start_url : string;
  4. portal_id : string;
  5. portal_client_id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string