Module Values.OutpostSource

Information about an Outpost.

Sourcetype nonrec t = {
  1. outpostId : OutpostId.t option;
    (*

    The ID of the Outpost.

    *)
  2. ownerId : OwnerId.t option;
  3. outpostArn : OutpostArn.t option;
  4. siteId : SiteId.t option;
  5. name : OutpostName.t option;
  6. description : OutpostDescription.t option;
  7. lifeCycleStatus : LifeCycleStatus.t option;
  8. availabilityZone : AvailabilityZone.t option;
  9. availabilityZoneId : AvailabilityZoneId.t option;
  10. tags : TagMap.t option;
    (*

    The Outpost tags.

    *)
  11. siteArn : SiteArn.t option;
  12. supportedHardwareType : SupportedHardwareType.t option;
    (*

    The hardware type.

    *)
}
Sourceval make : ?outpostId:??? -> ?ownerId:??? -> ?outpostArn:??? -> ?siteId:??? -> ?name:??? -> ?description:??? -> ?lifeCycleStatus:??? -> ?availabilityZone:??? -> ?availabilityZoneId:??? -> ?tags:??? -> ?siteArn:??? -> ?supportedHardwareType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of OutpostId.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