Module Cognito.UserPoolResourceServer

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cognito-userpoolresourceserver.html

type resource_server_scope_type = {
  1. scope_name : string;
  2. scope_description : string;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cognito-userpoolresourceserver-resourceserverscopetype.html

type properties = {
  1. user_pool_id : string;
  2. identifier : string;
  3. scopes : resource_server_scope_type list option;
  4. name : string;
}

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

val make_properties : user_pool_id:string -> identifier:string -> ?scopes:resource_server_scope_type list -> name:string -> unit -> properties
val make_resource_server_scope_type : scope_name:string -> scope_description:string -> unit -> resource_server_scope_type
val yojson_of_resource_server_scope_type : resource_server_scope_type -> [> `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