Class: Aws::APIGateway::Types::GetAuthorizerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetAuthorizerRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetAuthorizerRequest data as a hash:
{
rest_api_id: "String", # required
authorizer_id: "String", # required
}
Request to describe an existing Authorizer resource.
Instance Attribute Summary collapse
-
#authorizer_id ⇒ String
The identifier of the Authorizer resource.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#authorizer_id ⇒ String
The identifier of the Authorizer resource.
2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2464 class GetAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
2464 2465 2466 2467 2468 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2464 class GetAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id) include Aws::Structure end |