Class: Aws::APIGateway::Types::GetMethodResponseRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetMethodResponseRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass GetMethodResponseRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
http_method: "String", # required
status_code: "StatusCode", # required
}
Request to describe a MethodResponse resource.
Instance Attribute Summary collapse
-
#http_method ⇒ String
The HTTP verb of the Method resource.
-
#resource_id ⇒ String
The Resource identifier for the MethodResponse resource.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
-
#status_code ⇒ String
The status code for the MethodResponse resource.
Instance Attribute Details
#http_method ⇒ String
The HTTP verb of the Method resource.
3108 3109 3110 3111 3112 3113 3114 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3108 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#resource_id ⇒ String
The Resource identifier for the MethodResponse resource.
3108 3109 3110 3111 3112 3113 3114 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3108 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
3108 3109 3110 3111 3112 3113 3114 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3108 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |
#status_code ⇒ String
The status code for the MethodResponse resource.
3108 3109 3110 3111 3112 3113 3114 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3108 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) include Aws::Structure end |