Module Lambda.Permission

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-lambda-permission.html

type properties = {
  1. function_name : string;
  2. action : string;
  3. event_source_token : string option;
  4. function_url_auth_type : string option;
  5. source_arn : string option;
  6. source_account : string option;
  7. principal_org_id : string option;
  8. principal : string;
}

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

val make_properties : function_name:string -> action:string -> ?event_source_token:string -> ?function_url_auth_type:string -> ?source_arn:string -> ?source_account:string -> ?principal_org_id:string -> principal:string -> unit -> properties
val yojson_of_properties : properties -> [> `Assoc of (string * Yojson.Safe.t) list ]
type attributes = {
  1. ref_ : string;
  2. id : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string