ApiGatewayV2.Integration
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-tlsconfig.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameter.html
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigatewayv2-integration-responseparameterlist.html
type properties = {
description : string option;
template_selection_expression : string option;
connection_type : string option;
response_parameters : Yojson.Safe.t option;
integration_method : string option;
passthrough_behavior : string option;
request_parameters : Yojson.Safe.t option;
connection_id : string option;
integration_uri : string option;
payload_format_version : string option;
credentials_arn : string option;
request_templates : Yojson.Safe.t option;
timeout_in_millis : int option;
tls_config : tls_config option;
content_handling_strategy : string option;
integration_subtype : string option;
api_id : string;
integration_type : string;
}
see http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-integration.html;
val make_properties :
?description:string ->
?template_selection_expression:string ->
?connection_type:string ->
?response_parameters:Yojson.Safe.t ->
?integration_method:string ->
?passthrough_behavior:string ->
?request_parameters:Yojson.Safe.t ->
?connection_id:string ->
?integration_uri:string ->
?payload_format_version:string ->
?credentials_arn:string ->
?request_templates:Yojson.Safe.t ->
?timeout_in_millis:int ->
?tls_config:tls_config ->
?content_handling_strategy:string ->
?integration_subtype:string ->
api_id:string ->
integration_type:string ->
unit ->
properties
val make_tls_config : ?server_name_to_verify:string -> unit -> tls_config
val make_response_parameter :
destination:string ->
source:string ->
unit ->
response_parameter
val make_response_parameter_list :
?response_parameters:response_parameter list ->
unit ->
response_parameter_list
val yojson_of_tls_config :
tls_config ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_response_parameter : response_parameter -> Yojson.Safe.t
val yojson_of_response_parameter_list :
response_parameter_list ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val yojson_of_properties :
properties ->
[> `Assoc of (string * Yojson.Safe.t) list ]
val create_attributes : string -> attributes