Class CfnTrafficMirrorFilterProps
Properties for defining a CfnTrafficMirrorFilter
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrafficMirrorFilterProps : ICfnTrafficMirrorFilterProps
Syntax (vb)
Public Class CfnTrafficMirrorFilterProps Implements ICfnTrafficMirrorFilterProps
Remarks
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.EC2;
var cfnTrafficMirrorFilterProps = new CfnTrafficMirrorFilterProps {
Description = "description",
NetworkServices = new [] { "networkServices" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnTrafficMirrorFilterProps() | Properties for defining a |
Properties
Description | The description of the Traffic Mirror filter. |
NetworkServices | The network service traffic that is associated with the Traffic Mirror filter. |
Tags | The tags to assign to a Traffic Mirror filter. |
Constructors
CfnTrafficMirrorFilterProps()
Properties for defining a CfnTrafficMirrorFilter
.
public CfnTrafficMirrorFilterProps()
Remarks
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.EC2;
var cfnTrafficMirrorFilterProps = new CfnTrafficMirrorFilterProps {
Description = "description",
NetworkServices = new [] { "networkServices" },
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Description
The description of the Traffic Mirror filter.
public string? Description { get; set; }
Property Value
Remarks
NetworkServices
The network service traffic that is associated with the Traffic Mirror filter.
public string[]? NetworkServices { get; set; }
Property Value
string[]
Remarks
Tags
The tags to assign to a Traffic Mirror filter.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]