Class: Aws::APIGateway::Types::UpdateRestApiRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::UpdateRestApiRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to update an existing RestApi resource in your collection.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #patch_operations  ⇒ Array<Types::PatchOperation> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    For more information about supported patch operations, see [Patch Operations]. 
- 
  
    
      #rest_api_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The string identifier of the associated RestApi. 
Instance Attribute Details
#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
| 5899 5900 5901 5902 5903 5904 | # File 'lib/aws-sdk-apigateway/types.rb', line 5899 class UpdateRestApiRequest < Struct.new( :rest_api_id, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
| 5899 5900 5901 5902 5903 5904 | # File 'lib/aws-sdk-apigateway/types.rb', line 5899 class UpdateRestApiRequest < Struct.new( :rest_api_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |