@pulumi/aws
Version:
A Pulumi package for creating and managing Amazon Web Services (AWS) cloud resources.
108 lines (107 loc) • 3.98 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* Provides a WAF Byte Match Set Resource
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as aws from "@pulumi/aws";
*
* const byteSet = new aws.waf.ByteMatchSet("byte_set", {
* name: "my_waf_byte_match_set",
* byteMatchTuples: [{
* textTransformation: "NONE",
* targetString: "badrefer1",
* positionalConstraint: "CONTAINS",
* fieldToMatch: {
* type: "HEADER",
* data: "referer",
* },
* }],
* });
* ```
*
* ## Import
*
* Using `pulumi import`, import WAF Byte Match Set using the id. For example:
*
* ```sh
* $ pulumi import aws:waf/byteMatchSet:ByteMatchSet byte_set a1b2c3d4-d5f6-7777-8888-9999aaaabbbbcccc
* ```
*/
export declare class ByteMatchSet extends pulumi.CustomResource {
/**
* Get an existing ByteMatchSet resource's state with the given name, ID, and optional extra
* properties used to qualify the lookup.
*
* @param name The _unique_ name of the resulting resource.
* @param id The _unique_ provider ID of the resource to lookup.
* @param state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ByteMatchSetState, opts?: pulumi.CustomResourceOptions): ByteMatchSet;
/**
* Returns true if the given object is an instance of ByteMatchSet. This is designed to work even
* when multiple copies of the Pulumi SDK have been loaded into the same process.
*/
static isInstance(obj: any): obj is ByteMatchSet;
/**
* Amazon Resource Name (ARN) of the byte match set.
*/
readonly arn: pulumi.Output<string>;
/**
* Specifies the bytes (typically a string that corresponds
* with ASCII characters) that you want to search for in web requests,
* the location in requests that you want to search, and other settings.
*/
readonly byteMatchTuples: pulumi.Output<outputs.waf.ByteMatchSetByteMatchTuple[] | undefined>;
/**
* The name or description of the Byte Match Set.
*/
readonly name: pulumi.Output<string>;
/**
* Create a ByteMatchSet resource with the given unique name, arguments, and options.
*
* @param name The _unique_ name of the resource.
* @param args The arguments to use to populate this resource's properties.
* @param opts A bag of options that control this resource's behavior.
*/
constructor(name: string, args?: ByteMatchSetArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ByteMatchSet resources.
*/
export interface ByteMatchSetState {
/**
* Amazon Resource Name (ARN) of the byte match set.
*/
arn?: pulumi.Input<string>;
/**
* Specifies the bytes (typically a string that corresponds
* with ASCII characters) that you want to search for in web requests,
* the location in requests that you want to search, and other settings.
*/
byteMatchTuples?: pulumi.Input<pulumi.Input<inputs.waf.ByteMatchSetByteMatchTuple>[]>;
/**
* The name or description of the Byte Match Set.
*/
name?: pulumi.Input<string>;
}
/**
* The set of arguments for constructing a ByteMatchSet resource.
*/
export interface ByteMatchSetArgs {
/**
* Specifies the bytes (typically a string that corresponds
* with ASCII characters) that you want to search for in web requests,
* the location in requests that you want to search, and other settings.
*/
byteMatchTuples?: pulumi.Input<pulumi.Input<inputs.waf.ByteMatchSetByteMatchTuple>[]>;
/**
* The name or description of the Byte Match Set.
*/
name?: pulumi.Input<string>;
}