Class: Aws::APIGateway::Types::GetMethodRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetMethodRequest
- Defined in:
- gems/aws-sdk-apigateway/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.
Constant Summary collapse
- SENSITIVE =
[]
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
#http_method ⇒ String
Specifies the method request's HTTP method type.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3337 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The Resource identifier for the Method resource.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3337 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
3337 3338 3339 3340 3341 3342 3343 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 3337 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) SENSITIVE = [] include Aws::Structure end |