Class: Aws::APIGateway::Types::UpdateIntegrationRequest

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#http_methodString

Represents an update integration request’s HTTP method.

Returns:

  • (String)


6284
6285
6286
6287
6288
6289
6290
# File 'lib/aws-sdk-apigateway/types.rb', line 6284

class UpdateIntegrationRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :patch_operations)
  include Aws::Structure
end

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



6284
6285
6286
6287
6288
6289
6290
# File 'lib/aws-sdk-apigateway/types.rb', line 6284

class UpdateIntegrationRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :patch_operations)
  include Aws::Structure
end

#resource_idString

Represents an update integration request’s resource identifier.

Returns:

  • (String)


6284
6285
6286
6287
6288
6289
6290
# File 'lib/aws-sdk-apigateway/types.rb', line 6284

class UpdateIntegrationRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :patch_operations)
  include Aws::Structure
end

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


6284
6285
6286
6287
6288
6289
6290
# File 'lib/aws-sdk-apigateway/types.rb', line 6284

class UpdateIntegrationRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :patch_operations)
  include Aws::Structure
end