You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GameLift::Types::UpdateFleetPortSettingsInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateFleetPortSettingsInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  fleet_id: "FleetIdOrArn", # required
  inbound_permission_authorizations: [
    {
      from_port: 1, # required
      to_port: 1, # required
      ip_range: "NonBlankString", # required
      protocol: "TCP", # required, accepts TCP, UDP
    },
  ],
  inbound_permission_revocations: [
    {
      from_port: 1, # required
      to_port: 1, # required
      ip_range: "NonBlankString", # required
      protocol: "TCP", # required, accepts TCP, UDP
    },
  ],
}

Represents the input for a request operation.

Instance Attribute Summary collapse

Instance Attribute Details

#fleet_idString

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

Returns:

  • (String)

    A unique identifier for a fleet to update port settings for.

#inbound_permission_authorizationsArray<Types::IpPermission>

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

Returns:

  • (Array<Types::IpPermission>)

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

#inbound_permission_revocationsArray<Types::IpPermission>

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

Returns:

  • (Array<Types::IpPermission>)

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