package Paws::KMS::ListGrantsResponse; use Moose; has Grants => (is => 'ro', isa => 'ArrayRef[Paws::KMS::GrantListEntry]'); has NextMarker => (is => 'ro', isa => 'Str'); has Truncated => (is => 'ro', isa => 'Bool'); has _request_id => (is => 'ro', isa => 'Str'); ### main pod documentation begin ### =head1 NAME Paws::KMS::ListGrantsResponse =head1 ATTRIBUTES =head2 Grants => ArrayRef[L] A list of grants. =head2 NextMarker => Str When C is true, this element is present and contains the value to use for the C parameter in a subsequent request. =head2 Truncated => Bool A flag that indicates whether there are more items in the list. When this value is true, the list in this response is truncated. To get more items, pass the value of the C element in thisresponse to the C parameter in a subsequent request. =head2 _request_id => Str =cut 1;