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

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

Overview

Requests API Gateway to flush a stage's cache.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


2044
2045
2046
2047
2048
2049
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2044

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

#stage_nameString

The name of the stage to flush its cache.

Returns:

  • (String)


2044
2045
2046
2047
2048
2049
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2044

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