Try AWS Native preview for resources not in the classic version.
aws.waf.XssMatchSet
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
Provides a WAF XSS Match Set Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const xssMatchSet = new aws.waf.XssMatchSet("xss_match_set", {
name: "xss_match_set",
xssMatchTuples: [
{
textTransformation: "NONE",
fieldToMatch: {
type: "URI",
},
},
{
textTransformation: "NONE",
fieldToMatch: {
type: "QUERY_STRING",
},
},
],
});
import pulumi
import pulumi_aws as aws
xss_match_set = aws.waf.XssMatchSet("xss_match_set",
name="xss_match_set",
xss_match_tuples=[
{
"textTransformation": "NONE",
"fieldToMatch": {
"type": "URI",
},
},
{
"textTransformation": "NONE",
"fieldToMatch": {
"type": "QUERY_STRING",
},
},
])
package main
import (
"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/waf"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := waf.NewXssMatchSet(ctx, "xss_match_set", &waf.XssMatchSetArgs{
Name: pulumi.String("xss_match_set"),
XssMatchTuples: waf.XssMatchSetXssMatchTupleArray{
&waf.XssMatchSetXssMatchTupleArgs{
TextTransformation: pulumi.String("NONE"),
FieldToMatch: &waf.XssMatchSetXssMatchTupleFieldToMatchArgs{
Type: pulumi.String("URI"),
},
},
&waf.XssMatchSetXssMatchTupleArgs{
TextTransformation: pulumi.String("NONE"),
FieldToMatch: &waf.XssMatchSetXssMatchTupleFieldToMatchArgs{
Type: pulumi.String("QUERY_STRING"),
},
},
},
})
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 xssMatchSet = new Aws.Waf.XssMatchSet("xss_match_set", new()
{
Name = "xss_match_set",
XssMatchTuples = new[]
{
new Aws.Waf.Inputs.XssMatchSetXssMatchTupleArgs
{
TextTransformation = "NONE",
FieldToMatch = new Aws.Waf.Inputs.XssMatchSetXssMatchTupleFieldToMatchArgs
{
Type = "URI",
},
},
new Aws.Waf.Inputs.XssMatchSetXssMatchTupleArgs
{
TextTransformation = "NONE",
FieldToMatch = new Aws.Waf.Inputs.XssMatchSetXssMatchTupleFieldToMatchArgs
{
Type = "QUERY_STRING",
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.waf.XssMatchSet;
import com.pulumi.aws.waf.XssMatchSetArgs;
import com.pulumi.aws.waf.inputs.XssMatchSetXssMatchTupleArgs;
import com.pulumi.aws.waf.inputs.XssMatchSetXssMatchTupleFieldToMatchArgs;
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 xssMatchSet = new XssMatchSet("xssMatchSet", XssMatchSetArgs.builder()
.name("xss_match_set")
.xssMatchTuples(
XssMatchSetXssMatchTupleArgs.builder()
.textTransformation("NONE")
.fieldToMatch(XssMatchSetXssMatchTupleFieldToMatchArgs.builder()
.type("URI")
.build())
.build(),
XssMatchSetXssMatchTupleArgs.builder()
.textTransformation("NONE")
.fieldToMatch(XssMatchSetXssMatchTupleFieldToMatchArgs.builder()
.type("QUERY_STRING")
.build())
.build())
.build());
}
}
resources:
xssMatchSet:
type: aws:waf:XssMatchSet
name: xss_match_set
properties:
name: xss_match_set
xssMatchTuples:
- textTransformation: NONE
fieldToMatch:
type: URI
- textTransformation: NONE
fieldToMatch:
type: QUERY_STRING
Create XssMatchSet Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new XssMatchSet(name: string, args?: XssMatchSetArgs, opts?: CustomResourceOptions);
@overload
def XssMatchSet(resource_name: str,
args: Optional[XssMatchSetArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def XssMatchSet(resource_name: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
xss_match_tuples: Optional[Sequence[XssMatchSetXssMatchTupleArgs]] = None)
func NewXssMatchSet(ctx *Context, name string, args *XssMatchSetArgs, opts ...ResourceOption) (*XssMatchSet, error)
public XssMatchSet(string name, XssMatchSetArgs? args = null, CustomResourceOptions? opts = null)
public XssMatchSet(String name, XssMatchSetArgs args)
public XssMatchSet(String name, XssMatchSetArgs args, CustomResourceOptions options)
type: aws:waf:XssMatchSet
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 XssMatchSetArgs
- 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 XssMatchSetArgs
- 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 XssMatchSetArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args XssMatchSetArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args XssMatchSetArgs
- 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 xssMatchSetResource = new Aws.Waf.XssMatchSet("xssMatchSetResource", new()
{
Name = "string",
XssMatchTuples = new[]
{
new Aws.Waf.Inputs.XssMatchSetXssMatchTupleArgs
{
FieldToMatch = new Aws.Waf.Inputs.XssMatchSetXssMatchTupleFieldToMatchArgs
{
Type = "string",
Data = "string",
},
TextTransformation = "string",
},
},
});
example, err := waf.NewXssMatchSet(ctx, "xssMatchSetResource", &waf.XssMatchSetArgs{
Name: pulumi.String("string"),
XssMatchTuples: waf.XssMatchSetXssMatchTupleArray{
&waf.XssMatchSetXssMatchTupleArgs{
FieldToMatch: &waf.XssMatchSetXssMatchTupleFieldToMatchArgs{
Type: pulumi.String("string"),
Data: pulumi.String("string"),
},
TextTransformation: pulumi.String("string"),
},
},
})
var xssMatchSetResource = new XssMatchSet("xssMatchSetResource", XssMatchSetArgs.builder()
.name("string")
.xssMatchTuples(XssMatchSetXssMatchTupleArgs.builder()
.fieldToMatch(XssMatchSetXssMatchTupleFieldToMatchArgs.builder()
.type("string")
.data("string")
.build())
.textTransformation("string")
.build())
.build());
xss_match_set_resource = aws.waf.XssMatchSet("xssMatchSetResource",
name="string",
xss_match_tuples=[{
"fieldToMatch": {
"type": "string",
"data": "string",
},
"textTransformation": "string",
}])
const xssMatchSetResource = new aws.waf.XssMatchSet("xssMatchSetResource", {
name: "string",
xssMatchTuples: [{
fieldToMatch: {
type: "string",
data: "string",
},
textTransformation: "string",
}],
});
type: aws:waf:XssMatchSet
properties:
name: string
xssMatchTuples:
- fieldToMatch:
data: string
type: string
textTransformation: string
XssMatchSet 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 XssMatchSet resource accepts the following input properties:
- Name string
- The name or description of the SizeConstraintSet.
- Xss
Match List<XssTuples Match Set Xss Match Tuple> - The parts of web requests that you want to inspect for cross-site scripting attacks.
- Name string
- The name or description of the SizeConstraintSet.
- Xss
Match []XssTuples Match Set Xss Match Tuple Args - The parts of web requests that you want to inspect for cross-site scripting attacks.
- name String
- The name or description of the SizeConstraintSet.
- xss
Match List<XssTuples Match Set Xss Match Tuple> - The parts of web requests that you want to inspect for cross-site scripting attacks.
- name string
- The name or description of the SizeConstraintSet.
- xss
Match XssTuples Match Set Xss Match Tuple[] - The parts of web requests that you want to inspect for cross-site scripting attacks.
- name str
- The name or description of the SizeConstraintSet.
- xss_
match_ Sequence[Xsstuples Match Set Xss Match Tuple Args] - The parts of web requests that you want to inspect for cross-site scripting attacks.
- name String
- The name or description of the SizeConstraintSet.
- xss
Match List<Property Map>Tuples - The parts of web requests that you want to inspect for cross-site scripting attacks.
Outputs
All input properties are implicitly available as output properties. Additionally, the XssMatchSet resource produces the following output properties:
Look up Existing XssMatchSet Resource
Get an existing XssMatchSet 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?: XssMatchSetState, opts?: CustomResourceOptions): XssMatchSet
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
arn: Optional[str] = None,
name: Optional[str] = None,
xss_match_tuples: Optional[Sequence[XssMatchSetXssMatchTupleArgs]] = None) -> XssMatchSet
func GetXssMatchSet(ctx *Context, name string, id IDInput, state *XssMatchSetState, opts ...ResourceOption) (*XssMatchSet, error)
public static XssMatchSet Get(string name, Input<string> id, XssMatchSetState? state, CustomResourceOptions? opts = null)
public static XssMatchSet get(String name, Output<String> id, XssMatchSetState 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
- Amazon Resource Name (ARN)
- Name string
- The name or description of the SizeConstraintSet.
- Xss
Match List<XssTuples Match Set Xss Match Tuple> - The parts of web requests that you want to inspect for cross-site scripting attacks.
- Arn string
- Amazon Resource Name (ARN)
- Name string
- The name or description of the SizeConstraintSet.
- Xss
Match []XssTuples Match Set Xss Match Tuple Args - The parts of web requests that you want to inspect for cross-site scripting attacks.
- arn String
- Amazon Resource Name (ARN)
- name String
- The name or description of the SizeConstraintSet.
- xss
Match List<XssTuples Match Set Xss Match Tuple> - The parts of web requests that you want to inspect for cross-site scripting attacks.
- arn string
- Amazon Resource Name (ARN)
- name string
- The name or description of the SizeConstraintSet.
- xss
Match XssTuples Match Set Xss Match Tuple[] - The parts of web requests that you want to inspect for cross-site scripting attacks.
- arn str
- Amazon Resource Name (ARN)
- name str
- The name or description of the SizeConstraintSet.
- xss_
match_ Sequence[Xsstuples Match Set Xss Match Tuple Args] - The parts of web requests that you want to inspect for cross-site scripting attacks.
- arn String
- Amazon Resource Name (ARN)
- name String
- The name or description of the SizeConstraintSet.
- xss
Match List<Property Map>Tuples - The parts of web requests that you want to inspect for cross-site scripting attacks.
Supporting Types
XssMatchSetXssMatchTuple, XssMatchSetXssMatchTupleArgs
- Field
To XssMatch Match Set Xss Match Tuple Field To Match - Specifies where in a web request to look for cross-site scripting attacks.
- Text
Transformation string - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
- Field
To XssMatch Match Set Xss Match Tuple Field To Match - Specifies where in a web request to look for cross-site scripting attacks.
- Text
Transformation string - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
- field
To XssMatch Match Set Xss Match Tuple Field To Match - Specifies where in a web request to look for cross-site scripting attacks.
- text
Transformation String - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
- field
To XssMatch Match Set Xss Match Tuple Field To Match - Specifies where in a web request to look for cross-site scripting attacks.
- text
Transformation string - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
- field_
to_ Xssmatch Match Set Xss Match Tuple Field To Match - Specifies where in a web request to look for cross-site scripting attacks.
- text_
transformation str - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
- field
To Property MapMatch - Specifies where in a web request to look for cross-site scripting attacks.
- text
Transformation String - Text transformations used to eliminate unusual formatting that attackers use in web requests in an effort to bypass AWS WAF.
If you specify a transformation, AWS WAF performs the transformation on
target_string
before inspecting a request for a match. e.g.,CMD_LINE
,HTML_ENTITY_DECODE
orNONE
. See docs for all supported values.
XssMatchSetXssMatchTupleFieldToMatch, XssMatchSetXssMatchTupleFieldToMatchArgs
Import
Using pulumi import
, import WAF XSS Match Set using their ID. For example:
$ pulumi import aws:waf/xssMatchSet:XssMatchSet example a1b2c3d4-d5f6-7777-8888-9999aaaabbbbcccc
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.