ApiGatewayV2.Stagesee http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html
type route_settings = {logging_level : string option;data_trace_enabled : bool option;throttling_burst_limit : int option;detailed_metrics_enabled : bool option;throttling_rate_limit : float option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html
type properties = {client_certificate_id : string option;deployment_id : string option;description : string option;access_log_settings : access_log_settings option;auto_deploy : bool option;route_settings : Yojson.Safe.t option;stage_name : string;stage_variables : Yojson.Safe.t option;access_policy_id : string option;api_id : string;default_route_settings : route_settings option;}see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html;
val make_properties :
?client_certificate_id:string ->
?deployment_id:string ->
?description:string ->
?access_log_settings:access_log_settings ->
?auto_deploy:bool ->
?route_settings:Yojson.Safe.t ->
stage_name:string ->
?stage_variables:Yojson.Safe.t ->
?access_policy_id:string ->
api_id:string ->
?default_route_settings:route_settings ->
?tags:Yojson.Safe.t ->
unit ->
propertiesval make_route_settings :
?logging_level:string ->
?data_trace_enabled:bool ->
?throttling_burst_limit:int ->
?detailed_metrics_enabled:bool ->
?throttling_rate_limit:float ->
unit ->
route_settingsval make_access_log_settings :
?format:string ->
?destination_arn:string ->
unit ->
access_log_settingsval yojson_of_route_settings :
route_settings ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_access_log_settings :
access_log_settings ->
[> `Assoc of (string * Yojson.Safe.t) list ]val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]val create_attributes : string -> attributes