Show / Hide Table of Contents

Interface ICfnTrafficMirrorFilterProps

Properties for defining a CfnTrafficMirrorFilter.

Namespace: Amazon.CDK.AWS.EC2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnTrafficMirrorFilterProps
Syntax (vb)
Public Interface 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

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.

Properties

Description

The description of the Traffic Mirror filter.

string? Description { get; }
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.

string[]? NetworkServices { get; }
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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX