Class: Aws::APIGateway::Types::UpdateDocumentationPartRequest
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::APIGateway::Types::UpdateDocumentationPartRequest
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Updates an existing documentation part of a given API.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #documentation_part_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The identifier of the to-be-updated documentation part. 
- 
  
    
      #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
#documentation_part_id ⇒ String
The identifier of the to-be-updated documentation part.
| 5573 5574 5575 5576 5577 5578 5579 | # File 'lib/aws-sdk-apigateway/types.rb', line 5573 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :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
| 5573 5574 5575 5576 5577 5578 5579 | # File 'lib/aws-sdk-apigateway/types.rb', line 5573 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :patch_operations) SENSITIVE = [] include Aws::Structure end | 
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
| 5573 5574 5575 5576 5577 5578 5579 | # File 'lib/aws-sdk-apigateway/types.rb', line 5573 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |