package aws-ec2

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. dry_run : Aws.BaseTypes.Boolean.t option;
  2. vpc_endpoint_type : VpcEndpointType.t option;
  3. vpc_id : Aws.BaseTypes.String.t;
  4. service_name : Aws.BaseTypes.String.t;
  5. policy_document : Aws.BaseTypes.String.t option;
  6. route_table_ids : VpcEndpointRouteTableIdList.t;
  7. subnet_ids : VpcEndpointSubnetIdList.t;
  8. security_group_ids : VpcEndpointSecurityGroupIdList.t;
  9. client_token : Aws.BaseTypes.String.t option;
  10. private_dns_enabled : Aws.BaseTypes.Boolean.t option;
  11. tag_specifications : TagSpecificationList.t;
}
val make : ?dry_run:Aws.BaseTypes.Boolean.t -> ?vpc_endpoint_type:VpcEndpointType.t -> vpc_id:Aws.BaseTypes.String.t -> service_name:Aws.BaseTypes.String.t -> ?policy_document:Aws.BaseTypes.String.t -> ?route_table_ids:VpcEndpointRouteTableIdList.t -> ?subnet_ids:VpcEndpointSubnetIdList.t -> ?security_group_ids:VpcEndpointSecurityGroupIdList.t -> ?client_token:Aws.BaseTypes.String.t -> ?private_dns_enabled:Aws.BaseTypes.Boolean.t -> ?tag_specifications:TagSpecificationList.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t