Show / Hide Table of Contents

Class CfnLambdaHookPropsMixin.LoggingConfigProperty

Contains logging configuration information for an extension.

Inheritance
object
CfnLambdaHookPropsMixin.LoggingConfigProperty
Implements
CfnLambdaHookPropsMixin.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.CfnPropertyMixins.AWS.CloudFormation
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnLambdaHookPropsMixin.LoggingConfigProperty : CfnLambdaHookPropsMixin.ILoggingConfigProperty
Syntax (vb)
Public Class CfnLambdaHookPropsMixin.LoggingConfigProperty Implements CfnLambdaHookPropsMixin.ILoggingConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-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.CfnPropertyMixins.AWS.CloudFormation;

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

Synopsis

Constructors

LoggingConfigProperty()

Contains logging configuration information for an extension.

Properties

LogGroupName

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

LogRoleArn

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

Constructors

LoggingConfigProperty()

Contains logging configuration information for an extension.

public LoggingConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-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.CfnPropertyMixins.AWS.CloudFormation;

             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 extension's handlers.

public string? LogGroupName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-loggingconfig.html#cfn-cloudformation-lambdahook-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-lambdahook-loggingconfig.html#cfn-cloudformation-lambdahook-loggingconfig-logrolearn

Implements

CfnLambdaHookPropsMixin.ILoggingConfigProperty
Back to top Generated by DocFX