Class: Aws::APIGateway::Types::UpdateIntegrationResponseRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::UpdateIntegrationResponseRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Represents an update integration response request.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #http_method  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies an update integration response request’s HTTP method. 
- 
  
    
      #patch_operations  ⇒ Array<Types::PatchOperation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    For more information about supported patch operations, see [Patch Operations]. 
- 
  
    
      #resource_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies an update integration response request’s resource identifier. 
- 
  
    
      #rest_api_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The string identifier of the associated RestApi. 
- 
  
    
      #status_code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies an update integration response request’s status code. 
Instance Attribute Details
#http_method ⇒ String
Specifies an update integration response request’s HTTP method.
| 5724 5725 5726 5727 5728 5729 5730 5731 5732 | # File 'lib/aws-sdk-apigateway/types.rb', line 5724 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html
| 5724 5725 5726 5727 5728 5729 5730 5731 5732 | # File 'lib/aws-sdk-apigateway/types.rb', line 5724 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#resource_id ⇒ String
Specifies an update integration response request’s resource identifier.
| 5724 5725 5726 5727 5728 5729 5730 5731 5732 | # File 'lib/aws-sdk-apigateway/types.rb', line 5724 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
| 5724 5725 5726 5727 5728 5729 5730 5731 5732 | # File 'lib/aws-sdk-apigateway/types.rb', line 5724 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#status_code ⇒ String
Specifies an update integration response request’s status code.
| 5724 5725 5726 5727 5728 5729 5730 5731 5732 | # File 'lib/aws-sdk-apigateway/types.rb', line 5724 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |