Show / Hide Table of Contents

Class CfnTrafficMirrorFilterProps

Properties for defining a CfnTrafficMirrorFilter.

Inheritance
object
CfnTrafficMirrorFilterProps
Implements
ICfnTrafficMirrorFilterProps
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.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTrafficMirrorFilterProps : ICfnTrafficMirrorFilterProps
Syntax (vb)
Public Class CfnTrafficMirrorFilterProps Implements ICfnTrafficMirrorFilterProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.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.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 CfnTrafficMirrorFilter.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.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.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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-description

NetworkServices

The network service traffic that is associated with the Traffic Mirror filter.

public string[]? NetworkServices { get; set; }
Property Value

string[]

Remarks

Valid values are amazon-dns .

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-networkservices

Tags

The tags to assign to a Traffic Mirror filter.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrorfilter.html#cfn-ec2-trafficmirrorfilter-tags

Implements

ICfnTrafficMirrorFilterProps
Back to top Generated by DocFX