CPAN Security Tip #1/3: Add a SECURITY.md policy to your favorite CPAN dists! Learn more

use Moose;
has BundleId => (is => 'ro', isa => 'Str', request_name => 'bundleId', traits => ['NameInRequest']);
has BundleTaskError => (is => 'ro', isa => 'Paws::EC2::BundleTaskError', request_name => 'error', traits => ['NameInRequest']);
has InstanceId => (is => 'ro', isa => 'Str', request_name => 'instanceId', traits => ['NameInRequest']);
has Progress => (is => 'ro', isa => 'Str', request_name => 'progress', traits => ['NameInRequest']);
has StartTime => (is => 'ro', isa => 'Str', request_name => 'startTime', traits => ['NameInRequest']);
has State => (is => 'ro', isa => 'Str', request_name => 'state', traits => ['NameInRequest']);
has Storage => (is => 'ro', isa => 'Paws::EC2::Storage', request_name => 'storage', traits => ['NameInRequest']);
has UpdateTime => (is => 'ro', isa => 'Str', request_name => 'updateTime', traits => ['NameInRequest']);
1;
### main pod documentation begin ###
=head1 NAME
Paws::EC2::BundleTask
=head1 USAGE
This class represents one of two things:
=head3 Arguments in a call to a service
Use the attributes of this class as arguments to methods. You shouldn't make instances of this class.
Each attribute should be used as a named argument in the calls that expect this type of object.
As an example, if Att1 is expected to be a Paws::EC2::BundleTask object:
$service_obj->Method(Att1 => { BundleId => $value, ..., UpdateTime => $value });
=head3 Results returned from an API call
Use accessors for each attribute. If Att1 is expected to be an Paws::EC2::BundleTask object:
$result = $service_obj->Method(...);
$result->Att1->BundleId
=head1 DESCRIPTION
This class has no description
=head1 ATTRIBUTES
=head2 BundleId => Str
The ID of the bundle task.
=head2 BundleTaskError => L<Paws::EC2::BundleTaskError>
If the task fails, a description of the error.
=head2 InstanceId => Str
The ID of the instance associated with this bundle task.
=head2 Progress => Str
The level of task completion, as a percent (for example, 20%).
=head2 StartTime => Str
The time this task started.
=head2 State => Str
The state of the task.
=head2 Storage => L<Paws::EC2::Storage>
The Amazon S3 storage locations.
=head2 UpdateTime => Str
The time of the most recent update for the task.
=head1 SEE ALSO
This class forms part of L<Paws>, describing an object used in L<Paws::EC2>
=head1 BUGS and CONTRIBUTIONS
The source code is located here: L<https://github.com/pplu/aws-sdk-perl>
=cut