Module Values.AwsEc2VpcEndpointServiceDetailsSource

Contains details about the service configuration for a VPC endpoint service.

Sourcetype nonrec t = {
  1. acceptanceRequired : Boolean.t option;
    (*

    Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be accepted.

    *)
  2. availabilityZones : NonEmptyStringList.t option;
    (*

    The Availability Zones where the service is available.

    *)
  3. baseEndpointDnsNames : NonEmptyStringList.t option;
    (*

    The DNS names for the service.

    *)
  4. managesVpcEndpoints : Boolean.t option;
    (*

    Whether the service manages its VPC endpoints.

    *)
  5. gatewayLoadBalancerArns : NonEmptyStringList.t option;
    (*

    The ARNs of the Gateway Load Balancers for the service.

    *)
  6. networkLoadBalancerArns : NonEmptyStringList.t option;
    (*

    The ARNs of the Network Load Balancers for the service.

    *)
  7. privateDnsName : NonEmptyString.t option;
    (*

    The private DNS name for the service.

    *)
  8. serviceId : NonEmptyString.t option;
    (*

    The identifier of the service.

    *)
  9. serviceName : NonEmptyString.t option;
    (*

    The name of the service.

    *)
  10. serviceState : NonEmptyString.t option;
    (*

    The current state of the service. Valid values are as follows: Available Deleted Deleting Failed Pending

    *)
  11. serviceType : AwsEc2VpcEndpointServiceServiceTypeList.t option;
    (*

    The types for the service.

    *)
}
Sourceval make : ?acceptanceRequired:??? -> ?availabilityZones:??? -> ?baseEndpointDnsNames:??? -> ?managesVpcEndpoints:??? -> ?gatewayLoadBalancerArns:??? -> ?networkLoadBalancerArns:??? -> ?privateDnsName:??? -> ?serviceId:??? -> ?serviceName:??? -> ?serviceState:??? -> ?serviceType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `List of [> `String of NonEmptyString.t | `Structure of (string * [> `String of NonEmptyString.t ]) list ] list | `String of NonEmptyString.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t