Class: Aws::APIGateway::Types::GetDeploymentsRequest

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

{
  rest_api_id: "String", # required
  position: "String",
  limit: 1,
}

Requests API Gateway to get information about a Deployments collection.

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of returned results per page. The default value is 25 and the maximum value is 500.

Returns:

  • (Integer)


3220
3221
3222
3223
3224
3225
# File 'lib/aws-sdk-apigateway/types.rb', line 3220

class GetDeploymentsRequest < Struct.new(
  :rest_api_id,
  :position,
  :limit)
  include Aws::Structure
end

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)


3220
3221
3222
3223
3224
3225
# File 'lib/aws-sdk-apigateway/types.rb', line 3220

class GetDeploymentsRequest < Struct.new(
  :rest_api_id,
  :position,
  :limit)
  include Aws::Structure
end

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


3220
3221
3222
3223
3224
3225
# File 'lib/aws-sdk-apigateway/types.rb', line 3220

class GetDeploymentsRequest < Struct.new(
  :rest_api_id,
  :position,
  :limit)
  include Aws::Structure
end