Class: Aws::EventBridge::Types::AppSyncParameters
- Inherits:
-
Struct
- Object
- Struct
- Aws::EventBridge::Types::AppSyncParameters
- Defined in:
- gems/aws-sdk-eventbridge/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.
98 99 100 101 102 |
# File 'gems/aws-sdk-eventbridge/lib/aws-sdk-eventbridge/types.rb', line 98 class AppSyncParameters < Struct.new( :graph_ql_operation) SENSITIVE = [:graph_ql_operation] include Aws::Structure end |