Class: Aws::APIGateway::Types::GetMethodResponseRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::GetMethodResponseRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to describe a MethodResponse resource.
Constant Summary collapse
- SENSITIVE =
- [] 
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.
| 2872 2873 2874 2875 2876 2877 2878 2879 | # File 'lib/aws-sdk-apigateway/types.rb', line 2872 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end | 
#resource_id ⇒ String
The Resource identifier for the MethodResponse resource.
| 2872 2873 2874 2875 2876 2877 2878 2879 | # File 'lib/aws-sdk-apigateway/types.rb', line 2872 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end | 
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
| 2872 2873 2874 2875 2876 2877 2878 2879 | # File 'lib/aws-sdk-apigateway/types.rb', line 2872 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end | 
#status_code ⇒ String
The status code for the MethodResponse resource.
| 2872 2873 2874 2875 2876 2877 2878 2879 | # File 'lib/aws-sdk-apigateway/types.rb', line 2872 class GetMethodResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code) SENSITIVE = [] include Aws::Structure end |