![]() |
![]()
| ![]() |
![]()
NAMEPaws::Route53Resolver::ListResolverEndpointIpAddresses - Arguments for method ListResolverEndpointIpAddresses on Paws::Route53Resolver DESCRIPTIONThis class represents the parameters used for calling the method ListResolverEndpointIpAddresses on the Amazon Route 53 Resolver service. Use the attributes of this class as arguments to method ListResolverEndpointIpAddresses. You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to ListResolverEndpointIpAddresses. SYNOPSISmy $route53resolver = Paws->service('Route53Resolver'); my $ListResolverEndpointIpAddressesResponse = $route53resolver->ListResolverEndpointIpAddresses( ResolverEndpointId => 'MyResourceId', MaxResults => 1, # OPTIONAL NextToken => 'MyNextToken', # OPTIONAL ); # Results: my $IpAddresses = $ListResolverEndpointIpAddressesResponse->IpAddresses; my $MaxResults = $ListResolverEndpointIpAddressesResponse->MaxResults; my $NextToken = $ListResolverEndpointIpAddressesResponse->NextToken; # Returns a Paws::Route53Resolver::ListResolverEndpointIpAddressesResponse 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/route53resolver/ListResolverEndpointIpAddresses> ATTRIBUTESMaxResults => IntThe maximum number of IP addresses that you want to return in the response to a "ListResolverEndpointIpAddresses" request. If you don't specify a value for "MaxResults", Resolver returns up to 100 IP addresses. NextToken => StrFor the first "ListResolverEndpointIpAddresses" request, omit this value. If the specified Resolver endpoint has more than "MaxResults" IP addresses, you can submit another "ListResolverEndpointIpAddresses" request to get the next group of IP addresses. In the next request, specify the value of "NextToken" from the previous response. REQUIRED ResolverEndpointId => StrThe ID of the Resolver endpoint that you want to get IP addresses for. SEE ALSOThis class forms part of Paws, documenting arguments for method ListResolverEndpointIpAddresses in Paws::Route53Resolver 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>
|