Class: Aws::AppSync::Types::GetIntrospectionSchemaRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::GetIntrospectionSchemaRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass GetIntrospectionSchemaRequest data as a hash:
{
api_id: "String", # required
format: "SDL", # required, accepts SDL, JSON
include_directives: false,
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
The API ID.
-
#format ⇒ String
The schema format: SDL or JSON.
-
#include_directives ⇒ Boolean
A flag that specifies whether the schema introspection should contain directives.
Instance Attribute Details
#api_id ⇒ String
The API ID.
2043 2044 2045 2046 2047 2048 2049 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2043 class GetIntrospectionSchemaRequest < Struct.new( :api_id, :format, :include_directives) SENSITIVE = [] include Aws::Structure end |
#format ⇒ String
The schema format: SDL or JSON.
2043 2044 2045 2046 2047 2048 2049 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2043 class GetIntrospectionSchemaRequest < Struct.new( :api_id, :format, :include_directives) SENSITIVE = [] include Aws::Structure end |
#include_directives ⇒ Boolean
A flag that specifies whether the schema introspection should contain directives.
2043 2044 2045 2046 2047 2048 2049 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 2043 class GetIntrospectionSchemaRequest < Struct.new( :api_id, :format, :include_directives) SENSITIVE = [] include Aws::Structure end |