The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use Moose;
has BasePath => (is => 'ro', isa => 'Str');
has RestApiId => (is => 'ro', isa => 'Str');
has Stage => (is => 'ro', isa => 'Str');
1;
### main pod documentation begin ###
=head1 NAME
Paws::ApiGateway::BasePathMapping
=head1 ATTRIBUTES
=head2 BasePath => Str
The base path name that callers of the API must provide as part of the
URL after the domain name.
=head2 RestApiId => Str
The name of the API.
=head2 Stage => Str
The name of the API's stage.
=cut