Class: Aws::AppSync::Types::StartSchemaCreationRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::AppSync::Types::StartSchemaCreationRequest
- Defined in:
- gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb
Overview
Note:
When making an API call, you may pass StartSchemaCreationRequest data as a hash:
{
api_id: "String", # required
definition: "data", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#api_id ⇒ String
The API ID.
-
#definition ⇒ String
The schema definition, in GraphQL schema language format.
Instance Attribute Details
#api_id ⇒ String
The API ID.
3225 3226 3227 3228 3229 3230 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3225 class StartSchemaCreationRequest < Struct.new( :api_id, :definition) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ String
The schema definition, in GraphQL schema language format.
3225 3226 3227 3228 3229 3230 |
# File 'gems/aws-sdk-appsync/lib/aws-sdk-appsync/types.rb', line 3225 class StartSchemaCreationRequest < Struct.new( :api_id, :definition) SENSITIVE = [] include Aws::Structure end |