Class: Aws::APIGateway::Types::UpdateIntegrationResponseRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateIntegrationResponseRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
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
-
#http_method ⇒ String
Specifies an update integration response request's HTTP method.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations][1].
-
#resource_id ⇒ String
Specifies an update integration response request's resource identifier.
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
-
#status_code ⇒ String
Specifies an update integration response request's status code.
Instance Attribute Details
#http_method ⇒ String
Specifies an update integration response request's HTTP method.
6844 6845 6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6844 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see Patch Operations.
6844 6845 6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6844 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#resource_id ⇒ String
Specifies an update integration response request's resource identifier.
6844 6845 6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6844 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
6844 6845 6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6844 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#status_code ⇒ String
Specifies an update integration response request's status code.
6844 6845 6846 6847 6848 6849 6850 6851 6852 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6844 class UpdateIntegrationResponseRequest < Struct.new( :rest_api_id, :resource_id, :http_method, :status_code, :patch_operations) SENSITIVE = [] include Aws::Structure end |