Interface CfnTrafficMirrorTargetProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTrafficMirrorTargetProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:39.063Z")
@Stability(Stable)
public interface CfnTrafficMirrorTargetProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnTrafficMirrorTarget
.
Example:
// The code below shows an example of how to instantiate this type. // The values are placeholders you should change. import software.amazon.awscdk.services.ec2.*; CfnTrafficMirrorTargetProps cfnTrafficMirrorTargetProps = CfnTrafficMirrorTargetProps.builder() .description("description") .gatewayLoadBalancerEndpointId("gatewayLoadBalancerEndpointId") .networkInterfaceId("networkInterfaceId") .networkLoadBalancerArn("networkLoadBalancerArn") .tags(List.of(CfnTag.builder() .key("key") .value("value") .build())) .build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final class
A builder forCfnTrafficMirrorTargetProps
static final class
An implementation forCfnTrafficMirrorTargetProps
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
default String
The description of the Traffic Mirror target.default String
The ID of the Gateway Load Balancer endpoint.default String
The network interface ID that is associated with the target.default String
The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target.getTags()
The tags to assign to the Traffic Mirror target.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDescription
The description of the Traffic Mirror target. -
getGatewayLoadBalancerEndpointId
The ID of the Gateway Load Balancer endpoint. -
getNetworkInterfaceId
The network interface ID that is associated with the target. -
getNetworkLoadBalancerArn
The Amazon Resource Name (ARN) of the Network Load Balancer that is associated with the target. -
getTags
The tags to assign to the Traffic Mirror target. -
builder
-