Show / Hide Table of Contents

Class CfnOrganizationTelemetryRulePropsMixin.ConditionProperty

A single condition that can match based on WAF rule action or label name.

Inheritance
object
CfnOrganizationTelemetryRulePropsMixin.ConditionProperty
Implements
CfnOrganizationTelemetryRulePropsMixin.IConditionProperty
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.ObservabilityAdmin
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnOrganizationTelemetryRulePropsMixin.ConditionProperty : CfnOrganizationTelemetryRulePropsMixin.IConditionProperty
Syntax (vb)
Public Class CfnOrganizationTelemetryRulePropsMixin.ConditionProperty Implements CfnOrganizationTelemetryRulePropsMixin.IConditionProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-condition.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.ObservabilityAdmin;

             var conditionProperty = new ConditionProperty {
                 ActionCondition = new ActionConditionProperty {
                     Action = "action"
                 },
                 LabelNameCondition = new LabelNameConditionProperty {
                     LabelName = "labelName"
                 }
             };

Synopsis

Constructors

ConditionProperty()

A single condition that can match based on WAF rule action or label name.

Properties

ActionCondition

Matches log records based on the WAF rule action taken (ALLOW, BLOCK, COUNT, etc.).

LabelNameCondition

Matches log records based on WAF rule labels applied to the request.

Constructors

ConditionProperty()

A single condition that can match based on WAF rule action or label name.

public ConditionProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-condition.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.ObservabilityAdmin;

             var conditionProperty = new ConditionProperty {
                 ActionCondition = new ActionConditionProperty {
                     Action = "action"
                 },
                 LabelNameCondition = new LabelNameConditionProperty {
                     LabelName = "labelName"
                 }
             };

Properties

ActionCondition

Matches log records based on the WAF rule action taken (ALLOW, BLOCK, COUNT, etc.).

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-condition.html#cfn-observabilityadmin-organizationtelemetryrule-condition-actioncondition

Type union: either IResolvable or CfnOrganizationTelemetryRulePropsMixin.IActionConditionProperty

LabelNameCondition

Matches log records based on WAF rule labels applied to the request.

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

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-observabilityadmin-organizationtelemetryrule-condition.html#cfn-observabilityadmin-organizationtelemetryrule-condition-labelnamecondition

Type union: either IResolvable or CfnOrganizationTelemetryRulePropsMixin.ILabelNameConditionProperty

Implements

CfnOrganizationTelemetryRulePropsMixin.IConditionProperty
Back to top Generated by DocFX