Class: Aws::APIGateway::Types::UpdateResourceRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateResourceRequest
- Includes:
- Structure
- Defined in:
- 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>
A list of update operations to be applied to the specified resource and in the order specified in this list.
-
#resource_id ⇒ String
[Required] The identifier of the Resource resource.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
7852 7853 7854 7855 7856 7857 7858 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7852 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
[Required] The identifier of the Resource resource.
7852 7853 7854 7855 7856 7857 7858 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7852 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
7852 7853 7854 7855 7856 7857 7858 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7852 class UpdateResourceRequest < Struct.new( :rest_api_id, :resource_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |