Interface CfnRule.AppSyncParametersProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRule.AppSyncParametersProperty.Jsii$Proxy
- Enclosing class:
CfnRule
@Stability(Stable)
public static interface CfnRule.AppSyncParametersProperty
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.events.*;
AppSyncParametersProperty appSyncParametersProperty = AppSyncParametersProperty.builder()
.graphQlOperation("graphQlOperation")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRule.AppSyncParametersPropertystatic final classAn implementation forCfnRule.AppSyncParametersProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The GraphQL operation; that is, the query, mutation, or subscription to be parsed and executed by the GraphQL service.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getGraphQlOperation
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 .
- See Also:
-
builder
-