Show / Hide Table of Contents

Class CfnTypeActivation.LoggingConfigProperty

Contains logging configuration information for an extension.

Inheritance
System.Object
CfnTypeActivation.LoggingConfigProperty
Implements
CfnTypeActivation.ILoggingConfigProperty
Namespace: Amazon.CDK
Assembly: Amazon.CDK.dll
Syntax (csharp)
public class LoggingConfigProperty : Object, CfnTypeActivation.ILoggingConfigProperty
Syntax (vb)
Public Class LoggingConfigProperty
    Inherits Object
    Implements CfnTypeActivation.ILoggingConfigProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-typeactivation-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;
LoggingConfigProperty loggingConfigProperty = new LoggingConfigProperty {
    LogGroupName = "logGroupName",
    LogRoleArn = "logRoleArn"
};

Synopsis

Constructors

LoggingConfigProperty()

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.

Constructors

LoggingConfigProperty()

public LoggingConfigProperty()

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

System.String

Remarks

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

LogRoleArn

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

public string LogRoleArn { get; set; }
Property Value

System.String

Remarks

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

Implements

CfnTypeActivation.ILoggingConfigProperty
Back to top Generated by DocFX