Module ApiGatewayV2.Stage

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-stage.html

type route_settings = {
  1. logging_level : string option;
  2. data_trace_enabled : bool option;
  3. throttling_burst_limit : int option;
  4. detailed_metrics_enabled : bool option;
  5. throttling_rate_limit : float option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-routesettings.html

and access_log_settings = {
  1. format : string option;
  2. destination_arn : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-stage-accesslogsettings.html

type properties = {
  1. client_certificate_id : string option;
  2. deployment_id : string option;
  3. description : string option;
  4. access_log_settings : access_log_settings option;
  5. auto_deploy : bool option;
  6. route_settings : Yojson.Safe.t option;
  7. stage_name : string;
  8. stage_variables : Yojson.Safe.t option;
  9. access_policy_id : string option;
  10. api_id : string;
  11. default_route_settings : route_settings option;
  12. tags : Yojson.Safe.t 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 -> properties
val make_route_settings : ?logging_level:string -> ?data_trace_enabled:bool -> ?throttling_burst_limit:int -> ?detailed_metrics_enabled:bool -> ?throttling_rate_limit:float -> unit -> route_settings
val make_access_log_settings : ?format:string -> ?destination_arn:string -> unit -> access_log_settings
val 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 ]
type attributes = {
  1. ref_ : string;
}
val create_attributes : string -> attributes
val cloudformation_type : string