interface AppSyncParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Events.CfnRule.AppSyncParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevents#CfnRule_AppSyncParametersProperty |
Java | software.amazon.awscdk.services.events.CfnRule.AppSyncParametersProperty |
Python | aws_cdk.aws_events.CfnRule.AppSyncParametersProperty |
TypeScript | aws-cdk-lib » aws_events » CfnRule » AppSyncParametersProperty |
Contains the GraphQL operation to be parsed and executed, if the event target is an AWS AppSync API.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_events as events } from 'aws-cdk-lib';
const appSyncParametersProperty: events.CfnRule.AppSyncParametersProperty = {
graphQlOperation: 'graphQlOperation',
};
Properties
| Name | Type | Description |
|---|---|---|
| graph | string | The GraphQL operation; that is, the query, mutation, or subscription to be parsed and executed by the GraphQL service. |
graphQlOperation
Type:
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 AWS AppSync User Guide .

.NET
Go
Java
Python
TypeScript