Class: Aws::EventBridge::Types::AppSyncParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::AppSyncParameters
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-eventbridge/types.rb
Overview
Contains the GraphQL operation to be parsed and executed, if the event target is an AppSync API.
Constant Summary collapse
- SENSITIVE =
[:graph_ql_operation]
Instance Attribute Summary collapse
-
#graph_ql_operation ⇒ String
The GraphQL operation; that is, the query, mutation, or subscription to be parsed and executed by the GraphQL service.
Instance Attribute Details
#graph_ql_operation ⇒ String
The GraphQL operation; that is, the query, mutation, or subscription to be parsed and executed by the GraphQL service.
For more information, see [Operations] in the *AppSync User Guide*.
[1]: docs.aws.amazon.com/appsync/latest/devguide/graphql-architecture.html#graphql-operations
98 99 100 101 102 |
# File 'lib/aws-sdk-eventbridge/types.rb', line 98 class AppSyncParameters < Struct.new( :graph_ql_operation) SENSITIVE = [:graph_ql_operation] include Aws::Structure end |