Module Values.UpdateFleetPortSettingsInputSource

This API works with the following fleet types: EC2, Container Updates permissions that allow inbound traffic to connect to game sessions in the fleet. To update settings, specify the fleet ID to be updated and specify the changes to be made. List the permissions you want to add in InboundPermissionAuthorizations, and permissions you want to remove in InboundPermissionRevocations. Permissions to be removed must match existing fleet permissions. If successful, the fleet ID for the updated fleet is returned. For fleets with remote locations, port setting updates can take time to propagate across all locations. You can check the status of updates in each location by calling DescribeFleetPortSettings with a location name. Learn more Setting up Amazon GameLift Servers fleets

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

    A unique identifier for the fleet to update port settings for. You can use either the fleet ID or ARN value.

    *)
  2. inboundPermissionAuthorizations : IpPermissionsList.t option;
    (*

    A collection of port settings to be added to the fleet resource.

    *)
  3. inboundPermissionRevocations : IpPermissionsList.t option;
    (*

    A collection of port settings to be removed from the fleet resource.

    *)
}
Sourceval context_ : string
Sourceval make : ?inboundPermissionAuthorizations:??? -> ?inboundPermissionRevocations:??? -> fleetId:FleetIdOrArn.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Enum of string | `Integer of PortNumber.t | `String of IpRange.t ]) list ] list | `String of FleetIdOrArn.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