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 Amazon 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 value is 25 by default and could be between 1 - 500.

Returns:

  • (Integer)


2670
2671
2672
2673
2674
2675
# File 'lib/aws-sdk-apigateway/types.rb', line 2670

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)


2670
2671
2672
2673
2674
2675
# File 'lib/aws-sdk-apigateway/types.rb', line 2670

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

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)


2670
2671
2672
2673
2674
2675
# File 'lib/aws-sdk-apigateway/types.rb', line 2670

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