1package Paws::EC2::PrivateIpAddressSpecification {
2  use Moose;
3  has Primary => (is => 'ro', isa => 'Bool', xmlname => 'primary', traits => ['Unwrapped']);
4  has PrivateIpAddress => (is => 'ro', isa => 'Str', xmlname => 'privateIpAddress', traits => ['Unwrapped'], required => 1);
5}
61;
7