AWS-Networks

 view release on metacpan or  search on metacpan

README  view on Meta::CPAN

NAME
    AWS::Networks - Parse and query official AWS network ranges

SYNOPSIS
      use AWS::Networks;

      my $nets = AWS::Networks->new();

      say $nets->sync_token->iso8601;

      foreach my $cidr (@{ $nets->cidrs }){
        say $cidr
      }

DESCRIPTION
    This module parses the official public IP network information published
    by Amazon Web Services at https://ip-ranges.amazonaws.com/ip-ranges.json

    Please read and understand the information can be found at
    http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html to make
    sense of the data retured by this module.

lib/AWS/Networks.pm  view on Meta::CPAN

=head1 NAME

AWS::Networks - Parse and query official AWS network ranges

=head1 SYNOPSIS

  use AWS::Networks;

  my $nets = AWS::Networks->new();

  say $nets->sync_token->iso8601;

  foreach my $cidr (@{ $nets->cidrs }){
    say $cidr
  }

=head1 DESCRIPTION

This module parses the official public IP network information published by Amazon Web Services at https://ip-ranges.amazonaws.com/ip-ranges.json

Please read and understand the information can be found at http://docs.aws.amazon.com/general/latest/gr/aws-ip-ranges.html to make sense of the data retured by this module.

=head1 USAGE



( run in 0.745 second using v1.01-cache-2.11-cpan-b85c58fdc1d )