|
NAMEPaws::GameLift::UpdateFleetPortSettings - Arguments for method UpdateFleetPortSettings on Paws::GameLift DESCRIPTIONThis class represents the parameters used for calling the method UpdateFleetPortSettings on the Amazon GameLift service. Use the attributes of this class as arguments to method UpdateFleetPortSettings. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateFleetPortSettings. SYNOPSIS my $gamelift = Paws->service('GameLift');
my $UpdateFleetPortSettingsOutput = $gamelift->UpdateFleetPortSettings(
FleetId => 'MyFleetIdOrArn',
InboundPermissionAuthorizations => [
{
FromPort => 1, # min: 1, max: 60000
IpRange => 'MyNonBlankString',
Protocol => 'TCP', # values: TCP, UDP
ToPort => 1, # min: 1, max: 60000
},
...
], # OPTIONAL
InboundPermissionRevocations => [
{
FromPort => 1, # min: 1, max: 60000
IpRange => 'MyNonBlankString',
Protocol => 'TCP', # values: TCP, UDP
ToPort => 1, # min: 1, max: 60000
},
...
], # OPTIONAL
);
# Results:
my $FleetId = $UpdateFleetPortSettingsOutput->FleetId;
# Returns a L<Paws::GameLift::UpdateFleetPortSettingsOutput> object.
Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see <https://docs.aws.amazon.com/goto/WebAPI/gamelift/UpdateFleetPortSettings> ATTRIBUTESREQUIRED FleetId => StrA unique identifier for the fleet to update port settings for. You can use either the fleet ID or ARN value. InboundPermissionAuthorizations => ArrayRef[Paws::GameLift::IpPermission]A collection of port settings to be added to the fleet resource. InboundPermissionRevocations => ArrayRef[Paws::GameLift::IpPermission]A collection of port settings to be removed from the fleet resource. SEE ALSOThis class forms part of Paws, documenting arguments for method UpdateFleetPortSettings in Paws::GameLift BUGS and CONTRIBUTIONSThe source code is located here: <https://github.com/pplu/aws-sdk-perl> Please report bugs to: <https://github.com/pplu/aws-sdk-perl/issues>
|