Class: Aws::APIGateway::Types::GetAuthorizersRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetAuthorizersRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetAuthorizersRequest data as a hash:
{
rest_api_id: "String", # required
position: "String",
limit: 1,
}
Request to describe an existing Authorizers resource.
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of returned results per page.
-
#position ⇒ String
The current pagination position in the paged result set.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of returned results per page.
2840 2841 2842 2843 2844 2845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2840 class GetAuthorizersRequest < Struct.new( :rest_api_id, :position, :limit) include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
2840 2841 2842 2843 2844 2845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2840 class GetAuthorizersRequest < Struct.new( :rest_api_id, :position, :limit) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
2840 2841 2842 2843 2844 2845 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2840 class GetAuthorizersRequest < Struct.new( :rest_api_id, :position, :limit) include Aws::Structure end |