Class: Aws::APIGateway::Types::GetClientCertificatesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::GetClientCertificatesRequest
- Defined in:
- gems/aws-sdk-apigateway/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.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#limit ⇒ Integer
The maximum number of returned results per page.
-
#position ⇒ String
The current pagination position in the paged result set.
Instance Attribute Details
#limit ⇒ Integer
The maximum number of returned results per page. The default value is 25 and the maximum value is 500.
2856 2857 2858 2859 2860 2861 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2856 class GetClientCertificatesRequest < Struct.new( :position, :limit) SENSITIVE = [] include Aws::Structure end |
#position ⇒ String
The current pagination position in the paged result set.
2856 2857 2858 2859 2860 2861 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 2856 class GetClientCertificatesRequest < Struct.new( :position, :limit) SENSITIVE = [] include Aws::Structure end |