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.

Constant Summary collapse

SENSITIVE =
[]

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)


3910
3911
3912
3913
3914
3915
3916
# File 'lib/aws-sdk-apigateway/types.rb', line 3910

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

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)


3910
3911
3912
3913
3914
3915
3916
# File 'lib/aws-sdk-apigateway/types.rb', line 3910

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

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


3910
3911
3912
3913
3914
3915
3916
# File 'lib/aws-sdk-apigateway/types.rb', line 3910

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