Table of Contents

Class CfnResourceVersion.LoggingConfigProperty

Namespace
Amazon.CDK
Assembly
Amazon.CDK.dll

Logging configuration information for a resource.

public class CfnResourceVersion.LoggingConfigProperty : CfnResourceVersion.ILoggingConfigProperty
Inheritance
CfnResourceVersion.LoggingConfigProperty
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK;
             var loggingConfigProperty = new LoggingConfigProperty {
                 LogGroupName = "logGroupName",
                 LogRoleArn = "logRoleArn"
             };

Remarks

Constructors

LoggingConfigProperty()

public LoggingConfigProperty()

Properties

LogGroupName

The Amazon CloudWatch logs group to which CloudFormation sends error logging information when invoking the type's handlers.

public string? LogGroupName { get; set; }

Property Value

string

Remarks

LogRoleArn

The ARN of the role that CloudFormation should assume when sending log entries to CloudWatch logs.

public string? LogRoleArn { get; set; }

Property Value

string

Remarks