Class DescribeFleetPortSettingsResult
- java.lang.Object
-
- com.amazonaws.services.gamelift.model.DescribeFleetPortSettingsResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeFleetPortSettingsResult extends Object implements Serializable, Cloneable
Represents the returned data in response to a request action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeFleetPortSettingsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeFleetPortSettingsResult
clone()
boolean
equals(Object obj)
List<IpPermission>
getInboundPermissions()
Object containing port settings for the requested fleet ID.int
hashCode()
void
setInboundPermissions(Collection<IpPermission> inboundPermissions)
Object containing port settings for the requested fleet ID.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeFleetPortSettingsResult
withInboundPermissions(IpPermission... inboundPermissions)
Object containing port settings for the requested fleet ID.DescribeFleetPortSettingsResult
withInboundPermissions(Collection<IpPermission> inboundPermissions)
Object containing port settings for the requested fleet ID.
-
-
-
Method Detail
-
getInboundPermissions
public List<IpPermission> getInboundPermissions()
Object containing port settings for the requested fleet ID.
- Returns:
- Object containing port settings for the requested fleet ID.
-
setInboundPermissions
public void setInboundPermissions(Collection<IpPermission> inboundPermissions)
Object containing port settings for the requested fleet ID.
- Parameters:
inboundPermissions
- Object containing port settings for the requested fleet ID.
-
withInboundPermissions
public DescribeFleetPortSettingsResult withInboundPermissions(IpPermission... inboundPermissions)
Object containing port settings for the requested fleet ID.
NOTE: This method appends the values to the existing list (if any). Use
setInboundPermissions(java.util.Collection)
orwithInboundPermissions(java.util.Collection)
if you want to override the existing values.- Parameters:
inboundPermissions
- Object containing port settings for the requested fleet ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withInboundPermissions
public DescribeFleetPortSettingsResult withInboundPermissions(Collection<IpPermission> inboundPermissions)
Object containing port settings for the requested fleet ID.
- Parameters:
inboundPermissions
- Object containing port settings for the requested fleet ID.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeFleetPortSettingsResult clone()
-
-