Module ApiGatewayV2.ApiGatewayManagedOverrides

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-apigatewaymanagedoverrides.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-apigatewaymanagedoverrides-routesettings.html

and integration_overrides = {
  1. description : string option;
  2. payload_format_version : string option;
  3. timeout_in_millis : int option;
  4. integration_method : string option;
}

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

and route_overrides = {
  1. target : string option;
  2. authorizer_id : string option;
  3. operation_name : string option;
  4. authorization_scopes : string list option;
  5. authorization_type : string option;
}

see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-apigatewaymanagedoverrides-routeoverrides.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-apigatewaymanagedoverrides-accesslogsettings.html

and stage_overrides = {
  1. description : string option;
  2. access_log_settings : access_log_settings option;
  3. auto_deploy : bool option;
  4. route_settings : Yojson.Safe.t option;
  5. stage_variables : Yojson.Safe.t option;
  6. default_route_settings : route_settings option;
}

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

type properties = {
  1. integration : integration_overrides option;
  2. stage : stage_overrides option;
  3. api_id : string;
  4. route : route_overrides option;
}

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

val make_properties : ?integration:integration_overrides -> ?stage:stage_overrides -> api_id:string -> ?route:route_overrides -> 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_integration_overrides : ?description:string -> ?payload_format_version:string -> ?timeout_in_millis:int -> ?integration_method:string -> unit -> integration_overrides
val make_route_overrides : ?target:string -> ?authorizer_id:string -> ?operation_name:string -> ?authorization_scopes:string list -> ?authorization_type:string -> unit -> route_overrides
val make_access_log_settings : ?format:string -> ?destination_arn:string -> unit -> access_log_settings
val make_stage_overrides : ?description:string -> ?access_log_settings:access_log_settings -> ?auto_deploy:bool -> ?route_settings:Yojson.Safe.t -> ?stage_variables:Yojson.Safe.t -> ?default_route_settings:route_settings -> unit -> stage_overrides
val yojson_of_route_settings : route_settings -> Yojson.Safe.t
val yojson_of_integration_overrides : integration_overrides -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_route_overrides : route_overrides -> [> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_access_log_settings : access_log_settings -> Yojson.Safe.t
val yojson_of_stage_overrides : stage_overrides -> [> `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