Class: Aws::EventBridge::Types::AppSyncParameters

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#graph_ql_operationString

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.

Returns:

  • (String)


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