1package Paws::EC2::DiskImageDetail {
2  use Moose;
3  has Bytes => (is => 'ro', isa => 'Int', xmlname => 'bytes', traits => ['Unwrapped'], required => 1);
4  has Format => (is => 'ro', isa => 'Str', xmlname => 'format', traits => ['Unwrapped'], required => 1);
5  has ImportManifestUrl => (is => 'ro', isa => 'Str', xmlname => 'importManifestUrl', traits => ['Unwrapped'], required => 1);
6}
71;
8