Class: Aws::APIGateway::Types::GetClientCertificatesRequest

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

{
  position: "String",
  limit: 1,
}

A request to get information about a collection of ClientCertificate resources.

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)


2598
2599
2600
2601
2602
# File 'lib/aws-sdk-apigateway/types.rb', line 2598

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

#positionString

The current pagination position in the paged result set.

Returns:

  • (String)


2598
2599
2600
2601
2602
# File 'lib/aws-sdk-apigateway/types.rb', line 2598

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