aws-cdk-lib.aws_appsync.CfnGraphQLApi.LogConfigProperty

interface LogConfigProperty

LanguageType name
.NETAmazon.CDK.AWS.AppSync.CfnGraphQLApi.LogConfigProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsappsync#CfnGraphQLApi_LogConfigProperty
Javasoftware.amazon.awscdk.services.appsync.CfnGraphQLApi.LogConfigProperty
Pythonaws_cdk.aws_appsync.CfnGraphQLApi.LogConfigProperty
TypeScript aws-cdk-lib » aws_appsync » CfnGraphQLApi » LogConfigProperty

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 { aws_appsync as appsync } from 'aws-cdk-lib';
const logConfigProperty: appsync.CfnGraphQLApi.LogConfigProperty = {
  cloudWatchLogsRoleArn: 'cloudWatchLogsRoleArn',
  excludeVerboseContent: false,
  fieldLogLevel: 'fieldLogLevel',
};

Properties

NameTypeDescription
cloudWatchLogsRoleArn?stringThe service role that AWS AppSync will assume to publish to Amazon CloudWatch Logs in your account.
excludeVerboseContent?boolean | IResolvableSet to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.
fieldLogLevel?stringThe field logging level. Values can be NONE, ERROR, or ALL.

cloudWatchLogsRoleArn?

Type: string (optional)

The service role that AWS AppSync will assume to publish to Amazon CloudWatch Logs in your account.


excludeVerboseContent?

Type: boolean | IResolvable (optional)

Set to TRUE to exclude sections that contain information such as headers, context, and evaluated mapping templates, regardless of logging level.


fieldLogLevel?

Type: string (optional)

The field logging level. Values can be NONE, ERROR, or ALL.

  • NONE : No field-level logs are captured.

  • ERROR : Logs the following information only for the fields that are in error:

  • The error section in the server response.

  • Field-level errors.

  • The generated request/response functions that got resolved for error fields.

  • ALL : The following information is logged for all fields in the query:

  • Field-level tracing information.

  • The generated request/response functions that got resolved for each field.