Class: Aws::APIGateway::Types::DeleteStageRequest

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-apigateway/types.rb

Overview

Requests API Gateway to delete a Stage resource.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


1593
1594
1595
1596
1597
1598
# File 'lib/aws-sdk-apigateway/types.rb', line 1593

class DeleteStageRequest < Struct.new(
  :rest_api_id,
  :stage_name)
  SENSITIVE = []
  include Aws::Structure
end

#stage_nameString

The name of the Stage resource to delete.

Returns:

  • (String)


1593
1594
1595
1596
1597
1598
# File 'lib/aws-sdk-apigateway/types.rb', line 1593

class DeleteStageRequest < Struct.new(
  :rest_api_id,
  :stage_name)
  SENSITIVE = []
  include Aws::Structure
end