Show / Hide Table of Contents

Class CfnOrganizationTelemetryRule.ConditionProperty

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

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

Implements

CfnOrganizationTelemetryRule.IConditionProperty
Back to top Generated by DocFX