Class CfnFirewallPolicyPropsMixin.DimensionProperty
The value to use in an Amazon CloudWatch custom metric dimension.
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.NetworkFirewall.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnFirewallPolicyPropsMixin.DimensionProperty : CfnFirewallPolicyPropsMixin.IDimensionProperty
Syntax (vb)
Public Class CfnFirewallPolicyPropsMixin.DimensionProperty Implements CfnFirewallPolicyPropsMixin.IDimensionProperty
Remarks
This is used in the PublishMetrics custom action. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric.
AWS Network Firewall sets the dimension name to CustomAction and you provide the dimension value.
For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide .
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.Mixins.Preview.AWS.NetworkFirewall.Mixins;
var dimensionProperty = new DimensionProperty {
Value = "value"
};
Synopsis
Constructors
| DimensionProperty() | The value to use in an Amazon CloudWatch custom metric dimension. |
Properties
| Value | The value to use in the custom metric dimension. |
Constructors
DimensionProperty()
The value to use in an Amazon CloudWatch custom metric dimension.
public DimensionProperty()
Remarks
This is used in the PublishMetrics custom action. A CloudWatch custom metric dimension is a name/value pair that's part of the identity of a metric.
AWS Network Firewall sets the dimension name to CustomAction and you provide the dimension value.
For more information about CloudWatch custom metric dimensions, see Publishing Custom Metrics in the Amazon CloudWatch User Guide .
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.Mixins.Preview.AWS.NetworkFirewall.Mixins;
var dimensionProperty = new DimensionProperty {
Value = "value"
};
Properties
Value
The value to use in the custom metric dimension.
public string? Value { get; set; }