Try AWS Native preview for resources not in the classic version.
aws.ec2.TrafficMirrorSession
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Traffic mirror session.
Read limits and considerations for traffic mirroring
Example Usage
To create a basic traffic mirror session
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const filter = new aws.ec2.TrafficMirrorFilter("filter", {
description: "traffic mirror filter - example",
networkServices: ["amazon-dns"],
});
const target = new aws.ec2.TrafficMirrorTarget("target", {networkLoadBalancerArn: lb.arn});
const session = new aws.ec2.TrafficMirrorSession("session", {
description: "traffic mirror session - example",
networkInterfaceId: test.primaryNetworkInterfaceId,
sessionNumber: 1,
trafficMirrorFilterId: filter.id,
trafficMirrorTargetId: target.id,
});
import pulumi
import pulumi_aws as aws
filter = aws.ec2.TrafficMirrorFilter("filter",
description="traffic mirror filter - example",
network_services=["amazon-dns"])
target = aws.ec2.TrafficMirrorTarget("target", network_load_balancer_arn=lb["arn"])
session = aws.ec2.TrafficMirrorSession("session",
description="traffic mirror session - example",
network_interface_id=test["primaryNetworkInterfaceId"],
session_number=1,
traffic_mirror_filter_id=filter.id,
traffic_mirror_target_id=target.id)
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/ec2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
filter, err := ec2.NewTrafficMirrorFilter(ctx, "filter", &ec2.TrafficMirrorFilterArgs{
Description: pulumi.String("traffic mirror filter - example"),
NetworkServices: pulumi.StringArray{
pulumi.String("amazon-dns"),
},
})
if err != nil {
return err
}
target, err := ec2.NewTrafficMirrorTarget(ctx, "target", &ec2.TrafficMirrorTargetArgs{
NetworkLoadBalancerArn: pulumi.Any(lb.Arn),
})
if err != nil {
return err
}
_, err = ec2.NewTrafficMirrorSession(ctx, "session", &ec2.TrafficMirrorSessionArgs{
Description: pulumi.String("traffic mirror session - example"),
NetworkInterfaceId: pulumi.Any(test.PrimaryNetworkInterfaceId),
SessionNumber: pulumi.Int(1),
TrafficMirrorFilterId: filter.ID(),
TrafficMirrorTargetId: target.ID(),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;
return await Deployment.RunAsync(() =>
{
var filter = new Aws.Ec2.TrafficMirrorFilter("filter", new()
{
Description = "traffic mirror filter - example",
NetworkServices = new[]
{
"amazon-dns",
},
});
var target = new Aws.Ec2.TrafficMirrorTarget("target", new()
{
NetworkLoadBalancerArn = lb.Arn,
});
var session = new Aws.Ec2.TrafficMirrorSession("session", new()
{
Description = "traffic mirror session - example",
NetworkInterfaceId = test.PrimaryNetworkInterfaceId,
SessionNumber = 1,
TrafficMirrorFilterId = filter.Id,
TrafficMirrorTargetId = target.Id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.ec2.TrafficMirrorFilter;
import com.pulumi.aws.ec2.TrafficMirrorFilterArgs;
import com.pulumi.aws.ec2.TrafficMirrorTarget;
import com.pulumi.aws.ec2.TrafficMirrorTargetArgs;
import com.pulumi.aws.ec2.TrafficMirrorSession;
import com.pulumi.aws.ec2.TrafficMirrorSessionArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var filter = new TrafficMirrorFilter("filter", TrafficMirrorFilterArgs.builder()
.description("traffic mirror filter - example")
.networkServices("amazon-dns")
.build());
var target = new TrafficMirrorTarget("target", TrafficMirrorTargetArgs.builder()
.networkLoadBalancerArn(lb.arn())
.build());
var session = new TrafficMirrorSession("session", TrafficMirrorSessionArgs.builder()
.description("traffic mirror session - example")
.networkInterfaceId(test.primaryNetworkInterfaceId())
.sessionNumber(1)
.trafficMirrorFilterId(filter.id())
.trafficMirrorTargetId(target.id())
.build());
}
}
resources:
filter:
type: aws:ec2:TrafficMirrorFilter
properties:
description: traffic mirror filter - example
networkServices:
- amazon-dns
target:
type: aws:ec2:TrafficMirrorTarget
properties:
networkLoadBalancerArn: ${lb.arn}
session:
type: aws:ec2:TrafficMirrorSession
properties:
description: traffic mirror session - example
networkInterfaceId: ${test.primaryNetworkInterfaceId}
sessionNumber: 1
trafficMirrorFilterId: ${filter.id}
trafficMirrorTargetId: ${target.id}
Create TrafficMirrorSession Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TrafficMirrorSession(name: string, args: TrafficMirrorSessionArgs, opts?: CustomResourceOptions);
@overload
def TrafficMirrorSession(resource_name: str,
args: TrafficMirrorSessionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def TrafficMirrorSession(resource_name: str,
opts: Optional[ResourceOptions] = None,
network_interface_id: Optional[str] = None,
session_number: Optional[int] = None,
traffic_mirror_filter_id: Optional[str] = None,
traffic_mirror_target_id: Optional[str] = None,
description: Optional[str] = None,
packet_length: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
virtual_network_id: Optional[int] = None)
func NewTrafficMirrorSession(ctx *Context, name string, args TrafficMirrorSessionArgs, opts ...ResourceOption) (*TrafficMirrorSession, error)
public TrafficMirrorSession(string name, TrafficMirrorSessionArgs args, CustomResourceOptions? opts = null)
public TrafficMirrorSession(String name, TrafficMirrorSessionArgs args)
public TrafficMirrorSession(String name, TrafficMirrorSessionArgs args, CustomResourceOptions options)
type: aws:ec2:TrafficMirrorSession
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args TrafficMirrorSessionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args TrafficMirrorSessionArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args TrafficMirrorSessionArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TrafficMirrorSessionArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TrafficMirrorSessionArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var trafficMirrorSessionResource = new Aws.Ec2.TrafficMirrorSession("trafficMirrorSessionResource", new()
{
NetworkInterfaceId = "string",
SessionNumber = 0,
TrafficMirrorFilterId = "string",
TrafficMirrorTargetId = "string",
Description = "string",
PacketLength = 0,
Tags =
{
{ "string", "string" },
},
VirtualNetworkId = 0,
});
example, err := ec2.NewTrafficMirrorSession(ctx, "trafficMirrorSessionResource", &ec2.TrafficMirrorSessionArgs{
NetworkInterfaceId: pulumi.String("string"),
SessionNumber: pulumi.Int(0),
TrafficMirrorFilterId: pulumi.String("string"),
TrafficMirrorTargetId: pulumi.String("string"),
Description: pulumi.String("string"),
PacketLength: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
VirtualNetworkId: pulumi.Int(0),
})
var trafficMirrorSessionResource = new TrafficMirrorSession("trafficMirrorSessionResource", TrafficMirrorSessionArgs.builder()
.networkInterfaceId("string")
.sessionNumber(0)
.trafficMirrorFilterId("string")
.trafficMirrorTargetId("string")
.description("string")
.packetLength(0)
.tags(Map.of("string", "string"))
.virtualNetworkId(0)
.build());
traffic_mirror_session_resource = aws.ec2.TrafficMirrorSession("trafficMirrorSessionResource",
network_interface_id="string",
session_number=0,
traffic_mirror_filter_id="string",
traffic_mirror_target_id="string",
description="string",
packet_length=0,
tags={
"string": "string",
},
virtual_network_id=0)
const trafficMirrorSessionResource = new aws.ec2.TrafficMirrorSession("trafficMirrorSessionResource", {
networkInterfaceId: "string",
sessionNumber: 0,
trafficMirrorFilterId: "string",
trafficMirrorTargetId: "string",
description: "string",
packetLength: 0,
tags: {
string: "string",
},
virtualNetworkId: 0,
});
type: aws:ec2:TrafficMirrorSession
properties:
description: string
networkInterfaceId: string
packetLength: 0
sessionNumber: 0
tags:
string: string
trafficMirrorFilterId: string
trafficMirrorTargetId: string
virtualNetworkId: 0
TrafficMirrorSession Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The TrafficMirrorSession resource accepts the following input properties:
- Network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- Session
Number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- Traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- Description string
- A description of the traffic mirror session.
- Packet
Length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Virtual
Network intId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- Network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- Session
Number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- Traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- Description string
- A description of the traffic mirror session.
- Packet
Length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Virtual
Network intId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- network
Interface StringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- session
Number Integer - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- traffic
Mirror StringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror StringTarget Id - ID of the traffic mirror target to be used
- description String
- A description of the traffic mirror session.
- packet
Length Integer - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - virtual
Network IntegerId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- session
Number number - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- description string
- A description of the traffic mirror session.
- packet
Length number - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - virtual
Network numberId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- network_
interface_ strid - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- session_
number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- traffic_
mirror_ strfilter_ id - ID of the traffic mirror filter to be used
- traffic_
mirror_ strtarget_ id - ID of the traffic mirror target to be used
- description str
- A description of the traffic mirror session.
- packet_
length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - virtual_
network_ intid - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- network
Interface StringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- session
Number Number - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- traffic
Mirror StringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror StringTarget Id - ID of the traffic mirror target to be used
- description String
- A description of the traffic mirror session.
- packet
Length Number - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - virtual
Network NumberId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
Outputs
All input properties are implicitly available as output properties. Additionally, the TrafficMirrorSession resource produces the following output properties:
- Arn string
- The ARN of the traffic mirror session.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - The AWS account ID of the session owner.
- Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- Arn string
- The ARN of the traffic mirror session.
- Id string
- The provider-assigned unique ID for this managed resource.
- Owner
Id string - The AWS account ID of the session owner.
- map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn String
- The ARN of the traffic mirror session.
- id String
- The provider-assigned unique ID for this managed resource.
- owner
Id String - The AWS account ID of the session owner.
- Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
- arn string
- The ARN of the traffic mirror session.
- id string
- The provider-assigned unique ID for this managed resource.
- owner
Id string - The AWS account ID of the session owner.
- {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.
Look up Existing TrafficMirrorSession Resource
Get an existing TrafficMirrorSession resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: TrafficMirrorSessionState, opts?: CustomResourceOptions): TrafficMirrorSession
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
network_interface_id: Optional[str] = None,
owner_id: Optional[str] = None,
packet_length: Optional[int] = None,
session_number: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None,
traffic_mirror_filter_id: Optional[str] = None,
traffic_mirror_target_id: Optional[str] = None,
virtual_network_id: Optional[int] = None) -> TrafficMirrorSession
func GetTrafficMirrorSession(ctx *Context, name string, id IDInput, state *TrafficMirrorSessionState, opts ...ResourceOption) (*TrafficMirrorSession, error)
public static TrafficMirrorSession Get(string name, Input<string> id, TrafficMirrorSessionState? state, CustomResourceOptions? opts = null)
public static TrafficMirrorSession get(String name, Output<String> id, TrafficMirrorSessionState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Arn string
- The ARN of the traffic mirror session.
- Description string
- A description of the traffic mirror session.
- Network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- Owner
Id string - The AWS account ID of the session owner.
- Packet
Length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Session
Number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Dictionary<string, string>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Dictionary<string, string>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- Traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- Virtual
Network intId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- Arn string
- The ARN of the traffic mirror session.
- Description string
- A description of the traffic mirror session.
- Network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- Owner
Id string - The AWS account ID of the session owner.
- Packet
Length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- Session
Number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- map[string]string
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - map[string]string
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - Traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- Traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- Virtual
Network intId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- arn String
- The ARN of the traffic mirror session.
- description String
- A description of the traffic mirror session.
- network
Interface StringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- owner
Id String - The AWS account ID of the session owner.
- packet
Length Integer - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- session
Number Integer - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Map<String,String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String,String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - traffic
Mirror StringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror StringTarget Id - ID of the traffic mirror target to be used
- virtual
Network IntegerId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- arn string
- The ARN of the traffic mirror session.
- description string
- A description of the traffic mirror session.
- network
Interface stringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- owner
Id string - The AWS account ID of the session owner.
- packet
Length number - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- session
Number number - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- {[key: string]: string}
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - {[key: string]: string}
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - traffic
Mirror stringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror stringTarget Id - ID of the traffic mirror target to be used
- virtual
Network numberId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- arn str
- The ARN of the traffic mirror session.
- description str
- A description of the traffic mirror session.
- network_
interface_ strid - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- owner_
id str - The AWS account ID of the session owner.
- packet_
length int - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- session_
number int - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Mapping[str, str]
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Mapping[str, str]
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - traffic_
mirror_ strfilter_ id - ID of the traffic mirror filter to be used
- traffic_
mirror_ strtarget_ id - ID of the traffic mirror target to be used
- virtual_
network_ intid - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
- arn String
- The ARN of the traffic mirror session.
- description String
- A description of the traffic mirror session.
- network
Interface StringId - ID of the source network interface. Not all network interfaces are eligible as mirror sources. On EC2 instances only nitro based instances support mirroring.
- owner
Id String - The AWS account ID of the session owner.
- packet
Length Number - The number of bytes in each packet to mirror. These are bytes after the VXLAN header. Do not specify this parameter when you want to mirror the entire packet. To mirror a subset of the packet, set this to the length (in bytes) that you want to mirror.
- session
Number Number - The session number determines the order in which sessions are evaluated when an interface is used by multiple sessions. The first session with a matching filter is the one that mirrors the packets.
- Map<String>
- Key-value map of resource tags. If configured with a provider
default_tags
configuration block present, tags with matching keys will overwrite those defined at the provider-level. - Map<String>
- A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block. - traffic
Mirror StringFilter Id - ID of the traffic mirror filter to be used
- traffic
Mirror StringTarget Id - ID of the traffic mirror target to be used
- virtual
Network NumberId - The VXLAN ID for the Traffic Mirror session. For more information about the VXLAN protocol, see RFC 7348. If you do not specify a VirtualNetworkId, an account-wide unique id is chosen at random.
Import
Using pulumi import
, import traffic mirror sessions using the id
. For example:
$ pulumi import aws:ec2/trafficMirrorSession:TrafficMirrorSession session tms-0d8aa3ca35897b82e
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- AWS Classic pulumi/pulumi-aws
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
aws
Terraform Provider.
Try AWS Native preview for resources not in the classic version.