Class: Aws::APIGateway::Types::GetMethodRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetMethodRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
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.
2647 2648 2649 2650 2651 2652 2653 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2647 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.
2647 2648 2649 2650 2651 2652 2653 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2647 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.
2647 2648 2649 2650 2651 2652 2653 |
# File 'lib/aws-sdk-apigateway/types.rb', line 2647 class GetMethodRequest < Struct.new( :rest_api_id, :resource_id, :http_method) SENSITIVE = [] include Aws::Structure end |