interface EventLogConfigProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.AppSync.CfnApiPropsMixin.EventLogConfigProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsappsync#CfnApiPropsMixin_EventLogConfigProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.appsync.CfnApiPropsMixin.EventLogConfigProperty |
Python | aws_cdk.cfn_property_mixins.aws_appsync.CfnApiPropsMixin.EventLogConfigProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_appsync » CfnApiPropsMixin » EventLogConfigProperty |
Describes the CloudWatch Logs configuration for the Event API.
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/cfn-property-mixins';
const eventLogConfigProperty: appsync.CfnApiPropsMixin.EventLogConfigProperty = {
cloudWatchLogsRoleArn: 'cloudWatchLogsRoleArn',
logLevel: 'logLevel',
};
Properties
| Name | Type | Description |
|---|---|---|
| cloud | string | The IAM service role that AWS AppSync assumes to publish CloudWatch Logs in your account. |
| log | string | The type of information to log for the Event API. |
cloudWatchLogsRoleArn?
Type:
string
(optional)
The IAM service role that AWS AppSync assumes to publish CloudWatch Logs in your account.
logLevel?
Type:
string
(optional)
The type of information to log for the Event API.

.NET
Go
Java
Python
TypeScript