package aws-ec2

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Types.ModifyVpcEndpointServiceConfigurationRequestSource

Sourcetype t = {
  1. dry_run : Aws.BaseTypes.Boolean.t option;
  2. service_id : Aws.BaseTypes.String.t;
  3. private_dns_name : Aws.BaseTypes.String.t option;
  4. remove_private_dns_name : Aws.BaseTypes.Boolean.t option;
  5. acceptance_required : Aws.BaseTypes.Boolean.t option;
  6. add_network_load_balancer_arns : ValueStringList.t;
  7. remove_network_load_balancer_arns : ValueStringList.t;
  8. add_gateway_load_balancer_arns : ValueStringList.t;
  9. remove_gateway_load_balancer_arns : ValueStringList.t;
}
Sourceval make : ?dry_run:??? -> service_id:Aws.BaseTypes.String.t -> ?private_dns_name:??? -> ?remove_private_dns_name:??? -> ?acceptance_required:??? -> ?add_network_load_balancer_arns:??? -> ?remove_network_load_balancer_arns:??? -> ?add_gateway_load_balancer_arns:??? -> ?remove_gateway_load_balancer_arns:??? -> unit -> t
Sourceval parse : Ezxmlm.nodes -> t option
Sourceval to_query : t -> Aws.Query.t
Sourceval to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
Sourceval of_json : Aws.Json.t -> t