Show / Hide Table of Contents

Class CfnBrokerPropsMixin.LogListProperty

The list of information about logs to be enabled for the specified broker.

Inheritance
object
CfnBrokerPropsMixin.LogListProperty
Implements
CfnBrokerPropsMixin.ILogListProperty
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.AmazonMQ
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnBrokerPropsMixin.LogListProperty : CfnBrokerPropsMixin.ILogListProperty
Syntax (vb)
Public Class CfnBrokerPropsMixin.LogListProperty Implements CfnBrokerPropsMixin.ILogListProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.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.AmazonMQ;

             var logListProperty = new LogListProperty {
                 Audit = false,
                 General = false
             };

Synopsis

Constructors

LogListProperty()

The list of information about logs to be enabled for the specified broker.

Properties

Audit

Enables audit logging.

General

Enables general logging.

Constructors

LogListProperty()

The list of information about logs to be enabled for the specified broker.

public LogListProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.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.AmazonMQ;

             var logListProperty = new LogListProperty {
                 Audit = false,
                 General = false
             };

Properties

Audit

Enables audit logging.

public object? Audit { get; set; }
Property Value

object

Remarks

Every user management action made using JMX or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ brokers.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-audit

Type union: either bool or IResolvable

General

Enables general logging.

public object? General { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-amazonmq-broker-loglist.html#cfn-amazonmq-broker-loglist-general

Type union: either bool or IResolvable

Implements

CfnBrokerPropsMixin.ILogListProperty
Back to top Generated by DocFX