Class: Aws::APIGateway::Types::UpdateModelRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateModelRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Request to update an existing model in an existing RestApi resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#model_name ⇒ String
The name of the model to update.
-
#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
#model_name ⇒ String
The name of the model to update.
5601 5602 5603 5604 5605 5606 5607 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5601 class UpdateModelRequest < Struct.new( :rest_api_id, :model_name, :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
5601 5602 5603 5604 5605 5606 5607 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5601 class UpdateModelRequest < Struct.new( :rest_api_id, :model_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
5601 5602 5603 5604 5605 5606 5607 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5601 class UpdateModelRequest < Struct.new( :rest_api_id, :model_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |