Interface CfnGraphQLApi.LogConfigProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnGraphQLApi.LogConfigProperty.Jsii$Proxy
Enclosing class:
CfnGraphQLApi

@Stability(Stable) public static interface CfnGraphQLApi.LogConfigProperty extends software.amazon.jsii.JsiiSerializable
The LogConfig property type specifies the logging configuration when writing GraphQL operations and tracing to Amazon CloudWatch for an AWS AppSync GraphQL API.

LogConfig is a property of the AWS::AppSync::GraphQLApi property type.

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.appsync.*;
 LogConfigProperty logConfigProperty = LogConfigProperty.builder()
         .cloudWatchLogsRoleArn("cloudWatchLogsRoleArn")
         .excludeVerboseContent(false)
         .fieldLogLevel("fieldLogLevel")
         .build();
 

See Also: