Class: Aws::AppSync::Types::DataSourceIntrospectionResult
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::DataSourceIntrospectionResult
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Represents the output of a DataSourceIntrospectionResult
. This is
the populated result of a GetDataSourceIntrospection
operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#models ⇒ Array<Types::DataSourceIntrospectionModel>
The array of
DataSourceIntrospectionModel
objects. -
#next_token ⇒ String
Determines the number of types to be returned in a single response before paginating.
Instance Attribute Details
#models ⇒ Array<Types::DataSourceIntrospectionModel>
The array of DataSourceIntrospectionModel
objects.
1922 1923 1924 1925 1926 1927 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1922 class DataSourceIntrospectionResult < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
Determines the number of types to be returned in a single response
before paginating. This value is typically taken from nextToken
value from the previous response.
1922 1923 1924 1925 1926 1927 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 1922 class DataSourceIntrospectionResult < Struct.new( :models, :next_token) SENSITIVE = [] include Aws::Structure end |