![]() |
![]()
| ![]() |
![]()
NAMEPaws::EC2::RevokeSecurityGroupEgress - Arguments for method RevokeSecurityGroupEgress on Paws::EC2 DESCRIPTIONThis class represents the parameters used for calling the method RevokeSecurityGroupEgress on the Amazon Elastic Compute Cloud service. Use the attributes of this class as arguments to method RevokeSecurityGroupEgress. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to RevokeSecurityGroupEgress. SYNOPSISmy $ec2 = Paws->service('EC2'); my $RevokeSecurityGroupEgressResult = $ec2->RevokeSecurityGroupEgress( GroupId => 'MySecurityGroupId', CidrIp => 'MyString', # OPTIONAL DryRun => 1, # OPTIONAL FromPort => 1, # OPTIONAL IpPermissions => [ { FromPort => 1, IpProtocol => 'MyString', IpRanges => [ { CidrIp => 'MyString', Description => 'MyString', }, ... ], # OPTIONAL Ipv6Ranges => [ { CidrIpv6 => 'MyString', Description => 'MyString', }, ... ], # OPTIONAL PrefixListIds => [ { Description => 'MyString', PrefixListId => 'MyString', }, ... ], # OPTIONAL ToPort => 1, UserIdGroupPairs => [ { Description => 'MyString', GroupId => 'MyString', GroupName => 'MyString', PeeringStatus => 'MyString', UserId => 'MyString', VpcId => 'MyString', VpcPeeringConnectionId => 'MyString', }, ... ], # OPTIONAL }, ... ], # OPTIONAL IpProtocol => 'MyString', # OPTIONAL SourceSecurityGroupName => 'MyString', # OPTIONAL SourceSecurityGroupOwnerId => 'MyString', # OPTIONAL ToPort => 1, # OPTIONAL ); # Results: my $Return = $RevokeSecurityGroupEgressResult->Return; my $UnknownIpPermissions = $RevokeSecurityGroupEgressResult->UnknownIpPermissions; # Returns a L<Paws::EC2::RevokeSecurityGroupEgressResult> 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/ec2/RevokeSecurityGroupEgress> ATTRIBUTESCidrIp => StrNot supported. Use a set of IP permissions to specify the CIDR. DryRun => BoolChecks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is "DryRunOperation". Otherwise, it is "UnauthorizedOperation". FromPort => IntNot supported. Use a set of IP permissions to specify the port. REQUIRED GroupId => StrThe ID of the security group. IpPermissions => ArrayRef[Paws::EC2::IpPermission]The sets of IP permissions. You can't specify a destination security group and a CIDR IP address range in the same set of permissions. IpProtocol => StrNot supported. Use a set of IP permissions to specify the protocol name or number. SourceSecurityGroupName => StrNot supported. Use a set of IP permissions to specify a destination security group. SourceSecurityGroupOwnerId => StrNot supported. Use a set of IP permissions to specify a destination security group. ToPort => IntNot supported. Use a set of IP permissions to specify the port. SEE ALSOThis class forms part of Paws, documenting arguments for method RevokeSecurityGroupEgress in Paws::EC2 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>
|