Show / Hide Table of Contents

Class CfnResourceVersion.LoggingConfigProperty

Logging configuration information for a resource.

Inheritance
object
CfnResourceVersion.LoggingConfigProperty
Implements
CfnResourceVersion.ILoggingConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnResourceVersion.LoggingConfigProperty : CfnResourceVersion.ILoggingConfigProperty
Syntax (vb)
Public Class CfnResourceVersion.LoggingConfigProperty Implements CfnResourceVersion.ILoggingConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-resourceversion-loggingconfig.html

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;

             var loggingConfigProperty = new LoggingConfigProperty {
                 LogGroupName = "logGroupName",
                 LogRoleArn = "logRoleArn"
             };

Synopsis

Constructors

LoggingConfigProperty()

Logging configuration information for a resource.

Properties

LogGroupName

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

LogRoleArn

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

Constructors

LoggingConfigProperty()

Logging configuration information for a resource.

public LoggingConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-resourceversion-loggingconfig.html

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;

             var loggingConfigProperty = new LoggingConfigProperty {
                 LogGroupName = "logGroupName",
                 LogRoleArn = "logRoleArn"
             };

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-resourceversion-loggingconfig.html#cfn-cloudformation-resourceversion-loggingconfig-loggroupname

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-resourceversion-loggingconfig.html#cfn-cloudformation-resourceversion-loggingconfig-logrolearn

Implements

CfnResourceVersion.ILoggingConfigProperty
Back to top Generated by DocFX