Module Values.SiteSource

Information about a site.

Sourcetype nonrec t = {
  1. siteId : SiteId.t option;
  2. accountId : AccountId.t option;
  3. name : SiteName.t option;
  4. description : SiteDescription.t option;
  5. tags : TagMap.t option;
    (*

    The site tags.

    *)
  6. siteArn : SiteArn.t option;
  7. notes : SiteNotes.t option;
    (*

    Notes about a site.

    *)
  8. operatingAddressCountryCode : CountryCode.t option;
    (*

    The ISO-3166 two-letter country code where the hardware is installed and powered on.

    *)
  9. operatingAddressStateOrRegion : StateOrRegion.t option;
    (*

    State or region where the hardware is installed and powered on.

    *)
  10. operatingAddressCity : City.t option;
    (*

    City where the hardware is installed and powered on.

    *)
  11. rackPhysicalProperties : RackPhysicalProperties.t option;
    (*

    Information about the physical and logistical details for a rack at the site.

    *)
}
Sourceval make : ?siteId:??? -> ?accountId:??? -> ?name:??? -> ?description:??? -> ?tags:??? -> ?siteArn:??? -> ?notes:??? -> ?operatingAddressCountryCode:??? -> ?operatingAddressStateOrRegion:??? -> ?operatingAddressCity:??? -> ?rackPhysicalProperties:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of SiteId.t | `Structure of (string * [> `Enum of string ]) list ]) 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