Show / Hide Table of Contents

Interface CfnHookVersion.ILoggingConfigProperty

The LoggingConfig property type specifies logging configuration information for an extension.

Namespace: Amazon.CDK
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnHookVersion.ILoggingConfigProperty
Syntax (vb)
Public Interface CfnHookVersion.ILoggingConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-hookversion-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

Properties

LogGroupName

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

LogRoleArn

The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.

Properties

LogGroupName

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

string? LogGroupName { get; }
Property Value

string

Remarks

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

LogRoleArn

The Amazon Resource Name (ARN) of the role that CloudFormation should assume when sending log entries to CloudWatch Logs.

string? LogRoleArn { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX