1. Packages
  2. AWS Classic
  3. API Docs
  4. wafv2
  5. RegexPatternSet

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.wafv2.RegexPatternSet

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    Provides an AWS WAFv2 Regex Pattern Set Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.wafv2.RegexPatternSet("example", {
        name: "example",
        description: "Example regex pattern set",
        scope: "REGIONAL",
        regularExpressions: [
            {
                regexString: "one",
            },
            {
                regexString: "two",
            },
        ],
        tags: {
            Tag1: "Value1",
            Tag2: "Value2",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.wafv2.RegexPatternSet("example",
        name="example",
        description="Example regex pattern set",
        scope="REGIONAL",
        regular_expressions=[
            aws.wafv2.RegexPatternSetRegularExpressionArgs(
                regex_string="one",
            ),
            aws.wafv2.RegexPatternSetRegularExpressionArgs(
                regex_string="two",
            ),
        ],
        tags={
            "Tag1": "Value1",
            "Tag2": "Value2",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/wafv2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := wafv2.NewRegexPatternSet(ctx, "example", &wafv2.RegexPatternSetArgs{
    			Name:        pulumi.String("example"),
    			Description: pulumi.String("Example regex pattern set"),
    			Scope:       pulumi.String("REGIONAL"),
    			RegularExpressions: wafv2.RegexPatternSetRegularExpressionArray{
    				&wafv2.RegexPatternSetRegularExpressionArgs{
    					RegexString: pulumi.String("one"),
    				},
    				&wafv2.RegexPatternSetRegularExpressionArgs{
    					RegexString: pulumi.String("two"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"Tag1": pulumi.String("Value1"),
    				"Tag2": pulumi.String("Value2"),
    			},
    		})
    		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 example = new Aws.WafV2.RegexPatternSet("example", new()
        {
            Name = "example",
            Description = "Example regex pattern set",
            Scope = "REGIONAL",
            RegularExpressions = new[]
            {
                new Aws.WafV2.Inputs.RegexPatternSetRegularExpressionArgs
                {
                    RegexString = "one",
                },
                new Aws.WafV2.Inputs.RegexPatternSetRegularExpressionArgs
                {
                    RegexString = "two",
                },
            },
            Tags = 
            {
                { "Tag1", "Value1" },
                { "Tag2", "Value2" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.wafv2.RegexPatternSet;
    import com.pulumi.aws.wafv2.RegexPatternSetArgs;
    import com.pulumi.aws.wafv2.inputs.RegexPatternSetRegularExpressionArgs;
    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 example = new RegexPatternSet("example", RegexPatternSetArgs.builder()        
                .name("example")
                .description("Example regex pattern set")
                .scope("REGIONAL")
                .regularExpressions(            
                    RegexPatternSetRegularExpressionArgs.builder()
                        .regexString("one")
                        .build(),
                    RegexPatternSetRegularExpressionArgs.builder()
                        .regexString("two")
                        .build())
                .tags(Map.ofEntries(
                    Map.entry("Tag1", "Value1"),
                    Map.entry("Tag2", "Value2")
                ))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:wafv2:RegexPatternSet
        properties:
          name: example
          description: Example regex pattern set
          scope: REGIONAL
          regularExpressions:
            - regexString: one
            - regexString: two
          tags:
            Tag1: Value1
            Tag2: Value2
    

    Create RegexPatternSet Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RegexPatternSet(name: string, args: RegexPatternSetArgs, opts?: CustomResourceOptions);
    @overload
    def RegexPatternSet(resource_name: str,
                        args: RegexPatternSetArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def RegexPatternSet(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        scope: Optional[str] = None,
                        description: Optional[str] = None,
                        name: Optional[str] = None,
                        regular_expressions: Optional[Sequence[RegexPatternSetRegularExpressionArgs]] = None,
                        tags: Optional[Mapping[str, str]] = None)
    func NewRegexPatternSet(ctx *Context, name string, args RegexPatternSetArgs, opts ...ResourceOption) (*RegexPatternSet, error)
    public RegexPatternSet(string name, RegexPatternSetArgs args, CustomResourceOptions? opts = null)
    public RegexPatternSet(String name, RegexPatternSetArgs args)
    public RegexPatternSet(String name, RegexPatternSetArgs args, CustomResourceOptions options)
    
    type: aws:wafv2:RegexPatternSet
    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 RegexPatternSetArgs
    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 RegexPatternSetArgs
    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 RegexPatternSetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RegexPatternSetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RegexPatternSetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var exampleregexPatternSetResourceResourceFromWafv2regexPatternSet = new Aws.WafV2.RegexPatternSet("exampleregexPatternSetResourceResourceFromWafv2regexPatternSet", new()
    {
        Scope = "string",
        Description = "string",
        Name = "string",
        RegularExpressions = new[]
        {
            new Aws.WafV2.Inputs.RegexPatternSetRegularExpressionArgs
            {
                RegexString = "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := wafv2.NewRegexPatternSet(ctx, "exampleregexPatternSetResourceResourceFromWafv2regexPatternSet", &wafv2.RegexPatternSetArgs{
    	Scope:       pulumi.String("string"),
    	Description: pulumi.String("string"),
    	Name:        pulumi.String("string"),
    	RegularExpressions: wafv2.RegexPatternSetRegularExpressionArray{
    		&wafv2.RegexPatternSetRegularExpressionArgs{
    			RegexString: pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var exampleregexPatternSetResourceResourceFromWafv2regexPatternSet = new RegexPatternSet("exampleregexPatternSetResourceResourceFromWafv2regexPatternSet", RegexPatternSetArgs.builder()        
        .scope("string")
        .description("string")
        .name("string")
        .regularExpressions(RegexPatternSetRegularExpressionArgs.builder()
            .regexString("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    exampleregex_pattern_set_resource_resource_from_wafv2regex_pattern_set = aws.wafv2.RegexPatternSet("exampleregexPatternSetResourceResourceFromWafv2regexPatternSet",
        scope="string",
        description="string",
        name="string",
        regular_expressions=[aws.wafv2.RegexPatternSetRegularExpressionArgs(
            regex_string="string",
        )],
        tags={
            "string": "string",
        })
    
    const exampleregexPatternSetResourceResourceFromWafv2regexPatternSet = new aws.wafv2.RegexPatternSet("exampleregexPatternSetResourceResourceFromWafv2regexPatternSet", {
        scope: "string",
        description: "string",
        name: "string",
        regularExpressions: [{
            regexString: "string",
        }],
        tags: {
            string: "string",
        },
    });
    
    type: aws:wafv2:RegexPatternSet
    properties:
        description: string
        name: string
        regularExpressions:
            - regexString: string
        scope: string
        tags:
            string: string
    

    RegexPatternSet 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 RegexPatternSet resource accepts the following input properties:

    Scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    Description string
    A friendly description of the regular expression pattern set.
    Name string
    A friendly name of the regular expression pattern set.
    RegularExpressions List<Pulumi.Aws.WafV2.Inputs.RegexPatternSetRegularExpression>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    Tags Dictionary<string, string>
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    Scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    Description string
    A friendly description of the regular expression pattern set.
    Name string
    A friendly name of the regular expression pattern set.
    RegularExpressions []RegexPatternSetRegularExpressionArgs
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    Tags map[string]string
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    scope String
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    description String
    A friendly description of the regular expression pattern set.
    name String
    A friendly name of the regular expression pattern set.
    regularExpressions List<RegexPatternSetRegularExpression>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    tags Map<String,String>
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    description string
    A friendly description of the regular expression pattern set.
    name string
    A friendly name of the regular expression pattern set.
    regularExpressions RegexPatternSetRegularExpression[]
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    tags {[key: string]: string}
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    scope str
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    description str
    A friendly description of the regular expression pattern set.
    name str
    A friendly name of the regular expression pattern set.
    regular_expressions Sequence[RegexPatternSetRegularExpressionArgs]
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    tags Mapping[str, str]
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    scope String
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    description String
    A friendly description of the regular expression pattern set.
    name String
    A friendly name of the regular expression pattern set.
    regularExpressions List<Property Map>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    tags Map<String>
    An array of key:value pairs to associate with the resource. 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 RegexPatternSet resource produces the following output properties:

    Arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LockToken string
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    LockToken string
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) that identifies the cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lockToken String
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    lockToken string
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    The Amazon Resource Name (ARN) that identifies the cluster.
    id str
    The provider-assigned unique ID for this managed resource.
    lock_token str
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) that identifies the cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    lockToken String
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Look up Existing RegexPatternSet Resource

    Get an existing RegexPatternSet 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?: RegexPatternSetState, opts?: CustomResourceOptions): RegexPatternSet
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            arn: Optional[str] = None,
            description: Optional[str] = None,
            lock_token: Optional[str] = None,
            name: Optional[str] = None,
            regular_expressions: Optional[Sequence[RegexPatternSetRegularExpressionArgs]] = None,
            scope: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None) -> RegexPatternSet
    func GetRegexPatternSet(ctx *Context, name string, id IDInput, state *RegexPatternSetState, opts ...ResourceOption) (*RegexPatternSet, error)
    public static RegexPatternSet Get(string name, Input<string> id, RegexPatternSetState? state, CustomResourceOptions? opts = null)
    public static RegexPatternSet get(String name, Output<String> id, RegexPatternSetState 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.
    The following state arguments are supported:
    Arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    Description string
    A friendly description of the regular expression pattern set.
    LockToken string
    Name string
    A friendly name of the regular expression pattern set.
    RegularExpressions List<Pulumi.Aws.WafV2.Inputs.RegexPatternSetRegularExpression>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    Scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    Tags Dictionary<string, string>
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    Description string
    A friendly description of the regular expression pattern set.
    LockToken string
    Name string
    A friendly name of the regular expression pattern set.
    RegularExpressions []RegexPatternSetRegularExpressionArgs
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    Scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    Tags map[string]string
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) that identifies the cluster.
    description String
    A friendly description of the regular expression pattern set.
    lockToken String
    name String
    A friendly name of the regular expression pattern set.
    regularExpressions List<RegexPatternSetRegularExpression>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    scope String
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    tags Map<String,String>
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn string
    The Amazon Resource Name (ARN) that identifies the cluster.
    description string
    A friendly description of the regular expression pattern set.
    lockToken string
    name string
    A friendly name of the regular expression pattern set.
    regularExpressions RegexPatternSetRegularExpression[]
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    scope string
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    tags {[key: string]: string}
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn str
    The Amazon Resource Name (ARN) that identifies the cluster.
    description str
    A friendly description of the regular expression pattern set.
    lock_token str
    name str
    A friendly name of the regular expression pattern set.
    regular_expressions Sequence[RegexPatternSetRegularExpressionArgs]
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    scope str
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    tags Mapping[str, str]
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    arn String
    The Amazon Resource Name (ARN) that identifies the cluster.
    description String
    A friendly description of the regular expression pattern set.
    lockToken String
    name String
    A friendly name of the regular expression pattern set.
    regularExpressions List<Property Map>
    One or more blocks of regular expression patterns that you want AWS WAF to search for, such as B[a@]dB[o0]t. See Regular Expression below for details. A maximum of 10 regular_expression blocks may be specified.
    scope String
    Specifies whether this is for an AWS CloudFront distribution or for a regional application. Valid values are CLOUDFRONT or REGIONAL. To work with CloudFront, you must also specify the region us-east-1 (N. Virginia) on the AWS provider.
    tags Map<String>
    An array of key:value pairs to associate with the resource. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Supporting Types

    RegexPatternSetRegularExpression, RegexPatternSetRegularExpressionArgs

    RegexString string
    The string representing the regular expression, see the AWS WAF documentation for more information.
    RegexString string
    The string representing the regular expression, see the AWS WAF documentation for more information.
    regexString String
    The string representing the regular expression, see the AWS WAF documentation for more information.
    regexString string
    The string representing the regular expression, see the AWS WAF documentation for more information.
    regex_string str
    The string representing the regular expression, see the AWS WAF documentation for more information.
    regexString String
    The string representing the regular expression, see the AWS WAF documentation for more information.

    Import

    Using pulumi import, import WAFv2 Regex Pattern Sets using ID/name/scope. For example:

    $ pulumi import aws:wafv2/regexPatternSet:RegexPatternSet example a1b2c3d4-d5f6-7777-8888-9999aaaabbbbcccc/example/REGIONAL
    

    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.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi