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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#http_method ⇒ String
[Required] The HTTP verb of the Method resource.
-
#resource_id ⇒ String
[Required] The Resource identifier for the MethodResponse resource.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
-
#status_code ⇒ String
[Required] The status code for the MethodResponse resource.
Instance Attribute Details
#http_method ⇒ String
[Required] The HTTP verb of the Method resource.
3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3760 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
[Required] The Resource identifier for the MethodResponse resource.
3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3760 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3760 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
[Required] The status code for the MethodResponse resource.
3760 3761 3762 3763 3764 3765 3766 3767 |
# File 'lib/aws-sdk-apigateway/types.rb', line 3760 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end |