Class: Aws::APIGateway::Types::DeleteAuthorizerRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::DeleteAuthorizerRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass DeleteAuthorizerRequest data as a hash:
{
rest_api_id: "String", # required
authorizer_id: "String", # required
}
Request to delete an existing Authorizer resource.
Constant Summary collapse
- SENSITIVE =
[]
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.
1524 1525 1526 1527 1528 1529 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1524 class DeleteAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
1524 1525 1526 1527 1528 1529 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 1524 class DeleteAuthorizerRequest < Struct.new( :rest_api_id, :authorizer_id) SENSITIVE = [] include Aws::Structure end |