Class: Aws::APIGateway::Types::GetMethodRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetMethodRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetMethodRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
http_method: "String", # required
}
Request to describe an existing Method resource.
Instance Attribute Summary collapse
-
#http_method ⇒ String
Specifies the method request’s HTTP method type.
-
#resource_id ⇒ String
The Resource identifier for the Method resource.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
permalink #http_method ⇒ String
Specifies the method request’s HTTP method type.
3428 3429 3430 3431 3432 3433 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3428 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |
permalink #resource_id ⇒ String
The Resource identifier for the Method resource.
3428 3429 3430 3431 3432 3433 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3428 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |
permalink #rest_api_id ⇒ String
The string identifier of the associated RestApi.
3428 3429 3430 3431 3432 3433 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3428 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) include Aws::Structure end |