Show / Hide Table of Contents

Interface ICfnTrafficMirrorTargetProps

Properties for defining a CfnTrafficMirrorTarget.

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

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.

Properties

Description

The description of the Traffic Mirror target.

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

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

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

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

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX