interface CfnTrafficMirrorTargetMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.EC2.Mixins.CfnTrafficMirrorTargetMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsec2/mixins#CfnTrafficMirrorTargetMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.ec2.mixins.CfnTrafficMirrorTargetMixinProps |
Python | aws_cdk.mixins_preview.aws_ec2.mixins.CfnTrafficMirrorTargetMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_ec2 » mixins » CfnTrafficMirrorTargetMixinProps |
Properties for CfnTrafficMirrorTargetPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ec2_mixins } from '@aws-cdk/mixins-preview/aws-ec2';
const cfnTrafficMirrorTargetMixinProps: ec2_mixins.CfnTrafficMirrorTargetMixinProps = {
description: 'description',
gatewayLoadBalancerEndpointId: 'gatewayLoadBalancerEndpointId',
networkInterfaceId: 'networkInterfaceId',
networkLoadBalancerArn: 'networkLoadBalancerArn',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the Traffic Mirror target. |
| gateway | string | The ID of the Gateway Load Balancer endpoint. |
| network | string | The network interface ID that is associated with the target. |
| network | string | The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target. |
| tags? | Cfn[] | The tags to assign to the Traffic Mirror target. |
description?
Type:
string
(optional)
The description of the Traffic Mirror target.
gatewayLoadBalancerEndpointId?
Type:
string
(optional)
The ID of the Gateway Load Balancer endpoint.
networkInterfaceId?
Type:
string
(optional)
The network interface ID that is associated with the target.
networkLoadBalancerArn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.
tags?
Type:
Cfn[]
(optional)
The tags to assign to the Traffic Mirror target.

.NET
Go
Java
Python
TypeScript