Class: Aws::APIGateway::Types::GetRequestValidatorsRequest

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

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

Gets the RequestValidators collection of a given RestApi.

Instance Attribute Summary collapse

Instance Attribute Details

#limitInteger

The maximum number of returned results per page.

Returns:

  • (Integer)

3607
3608
3609
3610
3611
3612
# File 'lib/aws-sdk-apigateway/types.rb', line 3607

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

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)

3607
3608
3609
3610
3611
3612
# File 'lib/aws-sdk-apigateway/types.rb', line 3607

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

#rest_api_idString

The string identifier of the associated RestApi.

Returns:

  • (String)

3607
3608
3609
3610
3611
3612
# File 'lib/aws-sdk-apigateway/types.rb', line 3607

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