Show / Hide Table of Contents

Class CfnTrafficMirrorTargetProps

Properties for defining a CfnTrafficMirrorTarget.

Inheritance
object
CfnTrafficMirrorTargetProps
Implements
ICfnTrafficMirrorTargetProps
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 CfnTrafficMirrorTargetProps : ICfnTrafficMirrorTargetProps
Syntax (vb)
Public Class CfnTrafficMirrorTargetProps Implements ICfnTrafficMirrorTargetProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.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 cfnTrafficMirrorTargetProps = new CfnTrafficMirrorTargetProps {
                 Description = "description",
                 GatewayLoadBalancerEndpointId = "gatewayLoadBalancerEndpointId",
                 NetworkInterfaceId = "networkInterfaceId",
                 NetworkLoadBalancerArn = "networkLoadBalancerArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnTrafficMirrorTargetProps()

Properties for defining a CfnTrafficMirrorTarget.

Properties

Description

The description of the Traffic Mirror target.

GatewayLoadBalancerEndpointId

The ID of the Gateway Load Balancer endpoint.

NetworkInterfaceId

The network interface ID that is associated with the target.

NetworkLoadBalancerArn

The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.

Tags

The tags to assign to the Traffic Mirror target.

Constructors

CfnTrafficMirrorTargetProps()

Properties for defining a CfnTrafficMirrorTarget.

public CfnTrafficMirrorTargetProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ec2-trafficmirrortarget.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 cfnTrafficMirrorTargetProps = new CfnTrafficMirrorTargetProps {
                 Description = "description",
                 GatewayLoadBalancerEndpointId = "gatewayLoadBalancerEndpointId",
                 NetworkInterfaceId = "networkInterfaceId",
                 NetworkLoadBalancerArn = "networkLoadBalancerArn",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Description

The description of the Traffic Mirror target.

public string? Description { get; set; }
Property Value

string

Remarks

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

GatewayLoadBalancerEndpointId

The ID of the Gateway Load Balancer endpoint.

public string? GatewayLoadBalancerEndpointId { get; set; }
Property Value

string

Remarks

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

NetworkInterfaceId

The network interface ID that is associated with the target.

public string? NetworkInterfaceId { get; set; }
Property Value

string

Remarks

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

NetworkLoadBalancerArn

The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.

public string? NetworkLoadBalancerArn { get; set; }
Property Value

string

Remarks

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

Tags

The tags to assign to the Traffic Mirror target.

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

ICfnTag[]

Remarks

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

Implements

ICfnTrafficMirrorTargetProps
Back to top Generated by DocFX