package aws-ec2

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

Module Types.ServiceConfigurationSource

Sourcetype t = {
  1. service_type : ServiceTypeDetailSet.t;
  2. service_id : Aws.BaseTypes.String.t option;
  3. service_name : Aws.BaseTypes.String.t option;
  4. service_state : ServiceState.t option;
  5. availability_zones : ValueStringList.t;
  6. acceptance_required : Aws.BaseTypes.Boolean.t option;
  7. manages_vpc_endpoints : Aws.BaseTypes.Boolean.t option;
  8. network_load_balancer_arns : ValueStringList.t;
  9. gateway_load_balancer_arns : ValueStringList.t;
  10. base_endpoint_dns_names : ValueStringList.t;
  11. private_dns_name : Aws.BaseTypes.String.t option;
  12. private_dns_name_configuration : PrivateDnsNameConfiguration.t option;
  13. tags : TagList.t;
}
Sourceval make : ?service_type:??? -> ?service_id:??? -> ?service_name:??? -> ?service_state:??? -> ?availability_zones:??? -> ?acceptance_required:??? -> ?manages_vpc_endpoints:??? -> ?network_load_balancer_arns:??? -> ?gateway_load_balancer_arns:??? -> ?base_endpoint_dns_names:??? -> ?private_dns_name:??? -> ?private_dns_name_configuration:??? -> ?tags:??? -> 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