Class: Aws::AppSync::Types::ListGraphqlApisRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::ListGraphqlApisRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass ListGraphqlApisRequest data as a hash:
{
next_token: "PaginationToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_results ⇒ Integer
The maximum number of results that you want the request to return.
-
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
Instance Attribute Details
#max_results ⇒ Integer
The maximum number of results that you want the request to return.
2718 2719 2720 2721 2722 2723 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2718 class ListGraphqlApisRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An identifier that was returned from the previous call to this operation, which you can use to return the next set of items in the list.
2718 2719 2720 2721 2722 2723 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2718 class ListGraphqlApisRequest < Struct.new( :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |