Class: Aws::APIGateway::Types::UpdateStageRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateStageRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Requests API Gateway to change information about a Stage resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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.
-
#stage_name ⇒ String
The name of the Stage resource to change information about.
Instance Attribute Details
#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
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5915 class UpdateStageRequest < Struct.new( :rest_api_id, :stage_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5915 class UpdateStageRequest < Struct.new( :rest_api_id, :stage_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#stage_name ⇒ String
The name of the Stage resource to change information about.
5915 5916 5917 5918 5919 5920 5921 |
# File 'lib/aws-sdk-apigateway/types.rb', line 5915 class UpdateStageRequest < Struct.new( :rest_api_id, :stage_name, :patch_operations) SENSITIVE = [] include Aws::Structure end |