Class: Aws::APIGateway::Types::UpdateIntegrationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateIntegrationRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateIntegrationRequest data as a hash:
{
rest_api_id: "String", # required
resource_id: "String", # required
http_method: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Represents an update integration request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#http_method ⇒ String
[Required] Represents an update integration request’s HTTP method.
-
#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] Represents an update integration request’s resource identifier.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
Instance Attribute Details
#http_method ⇒ String
[Required] Represents an update integration request’s HTTP method.
7583 7584 7585 7586 7587 7588 7589 7590 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7583 class UpdateIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#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.
7583 7584 7585 7586 7587 7588 7589 7590 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7583 class UpdateIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
[Required] Represents an update integration request’s resource identifier.
7583 7584 7585 7586 7587 7588 7589 7590 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7583 class UpdateIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
7583 7584 7585 7586 7587 7588 7589 7590 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7583 class UpdateIntegrationRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :patch_operations) SENSITIVE = [] include Aws::Structure end |