Class: Aws::AppSync::Types::ListTypesRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::ListTypesRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass ListTypesRequest data as a hash:
{
api_id: "String", # required
format: "SDL", # required, accepts SDL, JSON
next_token: "PaginationToken",
max_results: 1,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
The API ID.
-
#format ⇒ String
The type format: SDL or JSON.
-
#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
#api_id ⇒ String
The API ID.
2858 2859 2860 2861 2862 2863 2864 2865 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2858 class ListTypesRequest < Struct.new( :api_id, :format, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
The type format: SDL or JSON.
2858 2859 2860 2861 2862 2863 2864 2865 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2858 class ListTypesRequest < Struct.new( :api_id, :format, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of results that you want the request to return.
2858 2859 2860 2861 2862 2863 2864 2865 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2858 class ListTypesRequest < Struct.new( :api_id, :format, :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.
2858 2859 2860 2861 2862 2863 2864 2865 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2858 class ListTypesRequest < Struct.new( :api_id, :format, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |