Module Values.LocationSource

Information about an Direct Connect location.

Sourcetype nonrec t = {
  1. locationCode : LocationCode.t option;
    (*

    The code for the location.

    *)
  2. locationName : LocationName.t option;
    (*

    The name of the location. This includes the name of the colocation partner and the physical site of the building.

    *)
  3. region : Region.t option;
    (*

    The Amazon Web Services Region for the location.

    *)
  4. availablePortSpeeds : AvailablePortSpeeds.t option;
    (*

    The available port speeds for the location.

    *)
  5. availableProviders : ProviderList.t option;
    (*

    The name of the service provider for the location.

    *)
  6. availableMacSecPortSpeeds : AvailableMacSecPortSpeeds.t option;
    (*

    The available MAC Security (MACsec) port speeds for the location.

    *)
}
Sourceval make : ?locationCode:??? -> ?locationName:??? -> ?region:??? -> ?availablePortSpeeds:??? -> ?availableProviders:??? -> ?availableMacSecPortSpeeds:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of PortSpeed.t ] list | `String of LocationCode.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