Class: Aws::APIGateway::Types::UpdateDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDeploymentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Requests API Gateway to change information about a Deployment resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The replacement identifier for the Deployment resource to change information about.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#deployment_id ⇒ String
The replacement identifier for the Deployment resource to change information about.
5330 5331 5332 5333 5334 5335 5336 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5330 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations].
[1]: docs.aws.amazon.com/apigateway/latest/api/patch-operations.html
5330 5331 5332 5333 5334 5335 5336 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5330 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
5330 5331 5332 5333 5334 5335 5336 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5330 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |