Class: Aws::APIGateway::Types::UpdateResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateResourceRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateResourceRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Request to change information about a Resource resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations][1].
-
#resource_id ⇒ String
The identifier of the Resource resource.
-
#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.
7074 7075 7076 7077 7078 7079 7080 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 7074 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
The identifier of the Resource resource.
7074 7075 7076 7077 7078 7079 7080 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 7074 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
7074 7075 7076 7077 7078 7079 7080 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 7074 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |