Class: Aws::APIGateway::Types::UpdateIntegrationResponseRequest

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 UpdateIntegrationResponseRequest data as a hash:

{
  rest_api_id: "String", # required
  resource_id: "String", # required
  http_method: "String", # required
  status_code: "StatusCode", # required
  patch_operations: [
    {
      op: "add", # accepts add, remove, replace, move, copy, test
      path: "String",
      value: "String",
      from: "String",
    },
  ],
}

Represents an update integration response request.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#http_methodString

[Required] Specifies an update integration response request’s HTTP method.

Returns:

  • (String)


7636
7637
7638
7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-apigateway/types.rb', line 7636

class UpdateIntegrationResponseRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :status_code,
  :patch_operations)
  SENSITIVE = []
  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:



7636
7637
7638
7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-apigateway/types.rb', line 7636

class UpdateIntegrationResponseRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :status_code,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end

#resource_idString

[Required] Specifies an update integration response request’s resource identifier.

Returns:

  • (String)


7636
7637
7638
7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-apigateway/types.rb', line 7636

class UpdateIntegrationResponseRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :status_code,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


7636
7637
7638
7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-apigateway/types.rb', line 7636

class UpdateIntegrationResponseRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :status_code,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end

#status_codeString

[Required] Specifies an update integration response request’s status code.

Returns:

  • (String)


7636
7637
7638
7639
7640
7641
7642
7643
7644
# File 'lib/aws-sdk-apigateway/types.rb', line 7636

class UpdateIntegrationResponseRequest < Struct.new(
  :rest_api_id,
  :resource_id,
  :http_method,
  :status_code,
  :patch_operations)
  SENSITIVE = []
  include Aws::Structure
end