I'm using the Amazon WebService::Amazon::Route53 Perl module to retrieve resource records and it returns them as a reference to an array of hash references, containing record set data and I can print the data using Data Dumper but I need to manipulate the data and cannot figure out how to dereference it.

Below is the call and the data dumper output. Any help would be appreciated. Thanks
#Lists resource record sets for a hosted zone. #Called in scalar context: $record_sets = $r53->list_resource_record_sets(zone_id => '123ZONEID') +; #Returns: A reference to an array of hash references, containing recor +d set data. Example: #Using Data Dumper I get the following: $VAR1 = [ { 'records' => [ '192.168.20.12' ], 'ttl' => '14400', 'name' => 'acme.com.', 'type' => 'A' }, { 'records' => [ '1 mail.acme.com.', '20 mail2.acme.com.' ], 'ttl' => '14400', 'name' => 'acme.com.', 'type' => 'MX' }, { 'records' => [ 'ns1.acme.com.', 'ns2.acme.com.', 'ns3.acme.com.', 'ns4.acme.com.' ], 'ttl' => '172800', 'name' => 'acme.com.', 'type' => 'NS' }, { 'records' => [ '192.168.26.152' ], 'ttl' => '14400', 'name' => 'remote.acme.com.', 'type' => 'A' } ];

In reply to Help dereferencing an array of hash references by z28pwr

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.