Module Values.GatewaySource

A gateway is an Backup Gateway appliance that runs on the customer's network to provide seamless connectivity to backup storage in the Amazon Web Services Cloud.

Sourcetype nonrec t = {
  1. gatewayArn : GatewayArn.t option;
    (*

    The Amazon Resource Name (ARN) of the gateway. Use the ListGateways operation to return a list of gateways for your account and Amazon Web Services Region.

    *)
  2. gatewayDisplayName : Name.t option;
    (*

    The display name of the gateway.

    *)
  3. gatewayType : GatewayType.t option;
    (*

    The type of the gateway.

    *)
  4. hypervisorId : HypervisorId.t option;
    (*

    The hypervisor ID of the gateway.

    *)
  5. lastSeenTime : Time.t option;
    (*

    The last time Backup gateway communicated with the gateway, in Unix format and UTC time.

    *)
}
Sourceval make : ?gatewayArn:??? -> ?gatewayDisplayName:??? -> ?gatewayType:??? -> ?hypervisorId:??? -> ?lastSeenTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GatewayArn.t | `Timestamp of Time.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