Class: Aws::APIGateway::Types::FlushStageCacheRequest

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

{
  rest_api_id: "String", # required
  stage_name: "String", # required
}

Requests API Gateway to flush a stage’s cache.

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


2735
2736
2737
2738
2739
# File 'lib/aws-sdk-apigateway/types.rb', line 2735

class FlushStageCacheRequest < Struct.new(
  :rest_api_id,
  :stage_name)
  include Aws::Structure
end

#stage_nameString

[Required] The name of the stage to flush its cache.

Returns:

  • (String)


2735
2736
2737
2738
2739
# File 'lib/aws-sdk-apigateway/types.rb', line 2735

class FlushStageCacheRequest < Struct.new(
  :rest_api_id,
  :stage_name)
  include Aws::Structure
end