package Paws::SimpleWorkflow::History; use Moose; has Events => (is => 'ro', isa => 'ArrayRef[Paws::SimpleWorkflow::HistoryEvent]', traits => ['NameInRequest'], request_name => 'events' , required => 1); has NextPageToken => (is => 'ro', isa => 'Str', traits => ['NameInRequest'], request_name => 'nextPageToken' ); has _request_id => (is => 'ro', isa => 'Str'); ### main pod documentation begin ### =head1 NAME Paws::SimpleWorkflow::History =head1 ATTRIBUTES =head2 B Events => ArrayRef[L] The list of history events. =head2 NextPageToken => Str If a C was returned by a previous call, there are more results available. To retrieve the next page of results, make the call again using the returned token in C. Keep all other arguments unchanged. The configured C determines how many results can be returned in a single call. =head2 _request_id => Str =cut 1;