Try AWS Native preview for resources not in the classic version.
aws.ec2.TrafficMirrorFilter
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides an Traffic mirror filter.
Read limits and considerations for traffic mirroring
Example Usage
To create a basic traffic mirror filter
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const foo = new aws.ec2.TrafficMirrorFilter("foo", {
description: "traffic mirror filter - example",
networkServices: ["amazon-dns"],
});
import pulumi
import pulumi_aws as aws
foo = aws.ec2.TrafficMirrorFilter("foo",
description="traffic mirror filter - example",
network_services=["amazon-dns"])
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 {
_, err := ec2.NewTrafficMirrorFilter(ctx, "foo", &ec2.TrafficMirrorFilterArgs{
Description: pulumi.String("traffic mirror filter - example"),
NetworkServices: pulumi.StringArray{
pulumi.String("amazon-dns"),
},
})
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 foo = new Aws.Ec2.TrafficMirrorFilter("foo", new()
{
Description = "traffic mirror filter - example",
NetworkServices = new[]
{
"amazon-dns",
},
});
});
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 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 foo = new TrafficMirrorFilter("foo", TrafficMirrorFilterArgs.builder()
.description("traffic mirror filter - example")
.networkServices("amazon-dns")
.build());
}
}
resources:
foo:
type: aws:ec2:TrafficMirrorFilter
properties:
description: traffic mirror filter - example
networkServices:
- amazon-dns
Create TrafficMirrorFilter Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new TrafficMirrorFilter(name: string, args?: TrafficMirrorFilterArgs, opts?: CustomResourceOptions);
@overload
def TrafficMirrorFilter(resource_name: str,
args: Optional[TrafficMirrorFilterArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def TrafficMirrorFilter(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
network_services: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None)
func NewTrafficMirrorFilter(ctx *Context, name string, args *TrafficMirrorFilterArgs, opts ...ResourceOption) (*TrafficMirrorFilter, error)
public TrafficMirrorFilter(string name, TrafficMirrorFilterArgs? args = null, CustomResourceOptions? opts = null)
public TrafficMirrorFilter(String name, TrafficMirrorFilterArgs args)
public TrafficMirrorFilter(String name, TrafficMirrorFilterArgs args, CustomResourceOptions options)
type: aws:ec2:TrafficMirrorFilter
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 TrafficMirrorFilterArgs
- 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 TrafficMirrorFilterArgs
- 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 TrafficMirrorFilterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args TrafficMirrorFilterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args TrafficMirrorFilterArgs
- 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 trafficMirrorFilterResource = new Aws.Ec2.TrafficMirrorFilter("trafficMirrorFilterResource", new()
{
Description = "string",
NetworkServices = new[]
{
"string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := ec2.NewTrafficMirrorFilter(ctx, "trafficMirrorFilterResource", &ec2.TrafficMirrorFilterArgs{
Description: pulumi.String("string"),
NetworkServices: pulumi.StringArray{
pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var trafficMirrorFilterResource = new TrafficMirrorFilter("trafficMirrorFilterResource", TrafficMirrorFilterArgs.builder()
.description("string")
.networkServices("string")
.tags(Map.of("string", "string"))
.build());
traffic_mirror_filter_resource = aws.ec2.TrafficMirrorFilter("trafficMirrorFilterResource",
description="string",
network_services=["string"],
tags={
"string": "string",
})
const trafficMirrorFilterResource = new aws.ec2.TrafficMirrorFilter("trafficMirrorFilterResource", {
description: "string",
networkServices: ["string"],
tags: {
string: "string",
},
});
type: aws:ec2:TrafficMirrorFilter
properties:
description: string
networkServices:
- string
tags:
string: string
TrafficMirrorFilter 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 TrafficMirrorFilter resource accepts the following input properties:
- Description string
- A description of the filter.
- Network
Services List<string> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- Description string
- A description of the filter.
- Network
Services []string - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- description String
- A description of the filter.
- network
Services List<String> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- description string
- A description of the filter.
- network
Services string[] - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - {[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.
- description str
- A description of the filter.
- network_
services Sequence[str] - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- description String
- A description of the filter.
- network
Services List<String> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
Outputs
All input properties are implicitly available as output properties. Additionally, the TrafficMirrorFilter resource produces the following output properties:
Look up Existing TrafficMirrorFilter Resource
Get an existing TrafficMirrorFilter 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?: TrafficMirrorFilterState, opts?: CustomResourceOptions): TrafficMirrorFilter
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
description: Optional[str] = None,
network_services: Optional[Sequence[str]] = None,
tags: Optional[Mapping[str, str]] = None,
tags_all: Optional[Mapping[str, str]] = None) -> TrafficMirrorFilter
func GetTrafficMirrorFilter(ctx *Context, name string, id IDInput, state *TrafficMirrorFilterState, opts ...ResourceOption) (*TrafficMirrorFilter, error)
public static TrafficMirrorFilter Get(string name, Input<string> id, TrafficMirrorFilterState? state, CustomResourceOptions? opts = null)
public static TrafficMirrorFilter get(String name, Output<String> id, TrafficMirrorFilterState 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 filter.
- Description string
- A description of the filter.
- Network
Services List<string> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- Arn string
- The ARN of the traffic mirror filter.
- Description string
- A description of the filter.
- Network
Services []string - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- arn String
- The ARN of the traffic mirror filter.
- description String
- A description of the filter.
- network
Services List<String> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- arn string
- The ARN of the traffic mirror filter.
- description string
- A description of the filter.
- network
Services string[] - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - {[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.
- arn str
- The ARN of the traffic mirror filter.
- description str
- A description of the filter.
- network_
services Sequence[str] - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
- arn String
- The ARN of the traffic mirror filter.
- description String
- A description of the filter.
- network
Services List<String> - List of amazon network services that should be mirrored. Valid values:
amazon-dns
. - 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.
Import
Using pulumi import
, import traffic mirror filter using the id
. For example:
$ pulumi import aws:ec2/trafficMirrorFilter:TrafficMirrorFilter foo tmf-0fbb93ddf38198f64
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.