Class CfnApiPropsMixin.EventLogConfigProperty
Describes the CloudWatch Logs configuration for the Event API.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.AppSync
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnApiPropsMixin.EventLogConfigProperty : CfnApiPropsMixin.IEventLogConfigProperty
Syntax (vb)
Public Class CfnApiPropsMixin.EventLogConfigProperty Implements CfnApiPropsMixin.IEventLogConfigProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppSync;
var eventLogConfigProperty = new EventLogConfigProperty {
CloudWatchLogsRoleArn = "cloudWatchLogsRoleArn",
LogLevel = "logLevel"
};
Synopsis
Constructors
| EventLogConfigProperty() | Describes the CloudWatch Logs configuration for the Event API. |
Properties
| CloudWatchLogsRoleArn | The IAM service role that AWS AppSync assumes to publish CloudWatch Logs in your account. |
| LogLevel | The type of information to log for the Event API. |
Constructors
EventLogConfigProperty()
Describes the CloudWatch Logs configuration for the Event API.
public EventLogConfigProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.CfnPropertyMixins.AWS.AppSync;
var eventLogConfigProperty = new EventLogConfigProperty {
CloudWatchLogsRoleArn = "cloudWatchLogsRoleArn",
LogLevel = "logLevel"
};
Properties
CloudWatchLogsRoleArn
The IAM service role that AWS AppSync assumes to publish CloudWatch Logs in your account.
public string? CloudWatchLogsRoleArn { get; set; }
Property Value
Remarks
LogLevel
The type of information to log for the Event API.
public string? LogLevel { get; set; }