Class: Aws::AppSync::Types::GetDataSourceIntrospectionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::GetDataSourceIntrospectionRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#include_models_sdl ⇒ Boolean
A boolean flag that determines whether SDL should be generated for introspected types.
-
#introspection_id ⇒ String
The introspection ID.
-
#max_results ⇒ Integer
The maximum number of introspected types that will be returned in a single response.
-
#next_token ⇒ String
Determines the number of types to be returned in a single response before paginating.
Instance Attribute Details
#include_models_sdl ⇒ Boolean
A boolean flag that determines whether SDL should be generated for
introspected types. If set to true
, each model will contain an
sdl
property that contains the SDL for that type. The SDL only
contains the type data and no additional metadata or directives.
2976 2977 2978 2979 2980 2981 2982 2983 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2976 class GetDataSourceIntrospectionRequest < Struct.new( :introspection_id, :include_models_sdl, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#introspection_id ⇒ String
The introspection ID. Each introspection contains a unique ID that can be used to reference the instrospection record.
2976 2977 2978 2979 2980 2981 2982 2983 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2976 class GetDataSourceIntrospectionRequest < Struct.new( :introspection_id, :include_models_sdl, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
The maximum number of introspected types that will be returned in a single response.
2976 2977 2978 2979 2980 2981 2982 2983 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2976 class GetDataSourceIntrospectionRequest < Struct.new( :introspection_id, :include_models_sdl, :next_token, :max_results) 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.
2976 2977 2978 2979 2980 2981 2982 2983 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2976 class GetDataSourceIntrospectionRequest < Struct.new( :introspection_id, :include_models_sdl, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |