Module Values.InstanceAccessSource

Information and credentials that you can use to remotely connect to an instance in an EC2 managed fleet. This data type is returned in response to a call to https://docs.aws.amazon.com/gamelift/latest/apireference/API_GetInstanceAccess.

Sourcetype nonrec t = {
  1. fleetId : FleetId.t option;
    (*

    A unique identifier for the fleet containing the instance to be accessed.

    *)
  2. instanceId : InstanceId.t option;
    (*

    A unique identifier for the instance to be accessed.

    *)
  3. ipAddress : IpAddress.t option;
    (*

    IP address assigned to the instance.

    *)
  4. operatingSystem : OperatingSystem.t option;
    (*

    Operating system that is running on the instance.

    *)
  5. credentials : InstanceCredentials.t option;
    (*

    Security credentials that are required to access the instance.

    *)
}
Sourceval make : ?fleetId:??? -> ?instanceId:??? -> ?ipAddress:??? -> ?operatingSystem:??? -> ?credentials:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of FleetId.t | `Structure of (string * [> `String of NonEmptyString.t ]) 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