package Paws::SES::ListIdentitiesResponse; use Moose; has Identities => (is => 'ro', isa => 'ArrayRef[Str|Undef]', required => 1); has NextToken => (is => 'ro', isa => 'Str'); has _request_id => (is => 'ro', isa => 'Str'); 1; ### main pod documentation begin ### =head1 NAME Paws::SES::ListIdentitiesResponse =head1 ATTRIBUTES =head2 B Identities => ArrayRef[Str|Undef] A list of identities. =head2 NextToken => Str The token used for pagination. =head2 _request_id => Str =cut