1. Packages
  2. Azure Native v2
  3. API Docs
  4. awsconnector
  5. Wafv2LoggingConfiguration
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.awsconnector.Wafv2LoggingConfiguration

Explore with Pulumi AI

A Microsoft.AwsConnector resource Azure REST API version: 2024-12-01.

Example Usage

Wafv2LoggingConfigurations_CreateOrReplace

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var wafv2LoggingConfiguration = new AzureNative.AwsConnector.Wafv2LoggingConfiguration("wafv2LoggingConfiguration", new()
    {
        Location = "miqjaa",
        Name = "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
        Properties = new AzureNative.AwsConnector.Inputs.Wafv2LoggingConfigurationPropertiesArgs
        {
            Arn = "vvamx",
            AwsAccountId = "opcrasgtswrifmkonwy",
            AwsProperties = new AzureNative.AwsConnector.Inputs.AwsWafv2LoggingConfigurationPropertiesArgs
            {
                LogDestinationConfigs = new[]
                {
                    "lyxpldjogdqpffwthdto",
                },
                LoggingFilter = new AzureNative.AwsConnector.Inputs.LoggingFilterModelPropertiesArgs
                {
                    DefaultBehavior = AzureNative.AwsConnector.DefaultBehavior.DROP,
                    Filters = new[]
                    {
                        new AzureNative.AwsConnector.Inputs.FilterArgs
                        {
                            Behavior = AzureNative.AwsConnector.FilterBehavior.DROP,
                            Conditions = new[]
                            {
                                new AzureNative.AwsConnector.Inputs.ConditionArgs
                                {
                                    ActionCondition = new AzureNative.AwsConnector.Inputs.ActionConditionModelPropertiesArgs
                                    {
                                        Action = AzureNative.AwsConnector.Action.ALLOW,
                                    },
                                    LabelNameCondition = new AzureNative.AwsConnector.Inputs.LabelNameConditionModelPropertiesArgs
                                    {
                                        LabelName = "oypkvstyighnjavknhfon",
                                    },
                                },
                            },
                            Requirement = AzureNative.AwsConnector.FilterRequirement.MEETS_ALL,
                        },
                    },
                },
                ManagedByFirewallManager = true,
                RedactedFields = new[]
                {
                    new AzureNative.AwsConnector.Inputs.FieldToMatchArgs
                    {
                        SingleHeader = new AzureNative.AwsConnector.Inputs.SingleHeaderModelPropertiesArgs
                        {
                            Name = "bfqodp",
                        },
                    },
                },
                ResourceArn = "bnozeamipjgc",
            },
            AwsRegion = "kkwxoqqqiadksrmfpvopq",
            AwsSourceSchema = "ywgazosjmcwothayguih",
            AwsTags = 
            {
                { "key5392", "qn" },
            },
            PublicCloudConnectorsResourceId = "towziecfnbhswtodyqkkqrtatogbl",
            PublicCloudResourceName = "eniprewwy",
        },
        ResourceGroupName = "rgwafv2LoggingConfiguration",
        Tags = 
        {
            { "key643", "cmguxikvqhszupgpbhlz" },
        },
    });

});
Copy
package main

import (
	awsconnector "github.com/pulumi/pulumi-azure-native-sdk/awsconnector/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := awsconnector.NewWafv2LoggingConfiguration(ctx, "wafv2LoggingConfiguration", &awsconnector.Wafv2LoggingConfigurationArgs{
			Location: pulumi.String("miqjaa"),
			Name:     pulumi.String("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])"),
			Properties: &awsconnector.Wafv2LoggingConfigurationPropertiesArgs{
				Arn:          pulumi.String("vvamx"),
				AwsAccountId: pulumi.String("opcrasgtswrifmkonwy"),
				AwsProperties: &awsconnector.AwsWafv2LoggingConfigurationPropertiesArgs{
					LogDestinationConfigs: pulumi.StringArray{
						pulumi.String("lyxpldjogdqpffwthdto"),
					},
					LoggingFilter: &awsconnector.LoggingFilterModelPropertiesArgs{
						DefaultBehavior: pulumi.String(awsconnector.DefaultBehaviorDROP),
						Filters: awsconnector.FilterArray{
							&awsconnector.FilterArgs{
								Behavior: pulumi.String(awsconnector.FilterBehaviorDROP),
								Conditions: awsconnector.ConditionArray{
									&awsconnector.ConditionArgs{
										ActionCondition: &awsconnector.ActionConditionModelPropertiesArgs{
											Action: pulumi.String(awsconnector.ActionALLOW),
										},
										LabelNameCondition: &awsconnector.LabelNameConditionModelPropertiesArgs{
											LabelName: pulumi.String("oypkvstyighnjavknhfon"),
										},
									},
								},
								Requirement: pulumi.String(awsconnector.FilterRequirement_MEETS_ALL),
							},
						},
					},
					ManagedByFirewallManager: pulumi.Bool(true),
					RedactedFields: awsconnector.FieldToMatchArray{
						&awsconnector.FieldToMatchArgs{
							SingleHeader: &awsconnector.SingleHeaderModelPropertiesArgs{
								Name: pulumi.String("bfqodp"),
							},
						},
					},
					ResourceArn: pulumi.String("bnozeamipjgc"),
				},
				AwsRegion:       pulumi.String("kkwxoqqqiadksrmfpvopq"),
				AwsSourceSchema: pulumi.String("ywgazosjmcwothayguih"),
				AwsTags: pulumi.StringMap{
					"key5392": pulumi.String("qn"),
				},
				PublicCloudConnectorsResourceId: pulumi.String("towziecfnbhswtodyqkkqrtatogbl"),
				PublicCloudResourceName:         pulumi.String("eniprewwy"),
			},
			ResourceGroupName: pulumi.String("rgwafv2LoggingConfiguration"),
			Tags: pulumi.StringMap{
				"key643": pulumi.String("cmguxikvqhszupgpbhlz"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.awsconnector.Wafv2LoggingConfiguration;
import com.pulumi.azurenative.awsconnector.Wafv2LoggingConfigurationArgs;
import com.pulumi.azurenative.awsconnector.inputs.Wafv2LoggingConfigurationPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.AwsWafv2LoggingConfigurationPropertiesArgs;
import com.pulumi.azurenative.awsconnector.inputs.LoggingFilterModelPropertiesArgs;
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 wafv2LoggingConfiguration = new Wafv2LoggingConfiguration("wafv2LoggingConfiguration", Wafv2LoggingConfigurationArgs.builder()
            .location("miqjaa")
            .name("Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])")
            .properties(Wafv2LoggingConfigurationPropertiesArgs.builder()
                .arn("vvamx")
                .awsAccountId("opcrasgtswrifmkonwy")
                .awsProperties(AwsWafv2LoggingConfigurationPropertiesArgs.builder()
                    .logDestinationConfigs("lyxpldjogdqpffwthdto")
                    .loggingFilter(LoggingFilterModelPropertiesArgs.builder()
                        .defaultBehavior("DROP")
                        .filters(FilterArgs.builder()
                            .behavior("DROP")
                            .conditions(ConditionArgs.builder()
                                .actionCondition(ActionConditionModelPropertiesArgs.builder()
                                    .action("ALLOW")
                                    .build())
                                .labelNameCondition(LabelNameConditionModelPropertiesArgs.builder()
                                    .labelName("oypkvstyighnjavknhfon")
                                    .build())
                                .build())
                            .requirement("MEETS_ALL")
                            .build())
                        .build())
                    .managedByFirewallManager(true)
                    .redactedFields(FieldToMatchArgs.builder()
                        .singleHeader(SingleHeaderModelPropertiesArgs.builder()
                            .name("bfqodp")
                            .build())
                        .build())
                    .resourceArn("bnozeamipjgc")
                    .build())
                .awsRegion("kkwxoqqqiadksrmfpvopq")
                .awsSourceSchema("ywgazosjmcwothayguih")
                .awsTags(Map.of("key5392", "qn"))
                .publicCloudConnectorsResourceId("towziecfnbhswtodyqkkqrtatogbl")
                .publicCloudResourceName("eniprewwy")
                .build())
            .resourceGroupName("rgwafv2LoggingConfiguration")
            .tags(Map.of("key643", "cmguxikvqhszupgpbhlz"))
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const wafv2LoggingConfiguration = new azure_native.awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfiguration", {
    location: "miqjaa",
    name: "Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties: {
        arn: "vvamx",
        awsAccountId: "opcrasgtswrifmkonwy",
        awsProperties: {
            logDestinationConfigs: ["lyxpldjogdqpffwthdto"],
            loggingFilter: {
                defaultBehavior: azure_native.awsconnector.DefaultBehavior.DROP,
                filters: [{
                    behavior: azure_native.awsconnector.FilterBehavior.DROP,
                    conditions: [{
                        actionCondition: {
                            action: azure_native.awsconnector.Action.ALLOW,
                        },
                        labelNameCondition: {
                            labelName: "oypkvstyighnjavknhfon",
                        },
                    }],
                    requirement: azure_native.awsconnector.FilterRequirement.MEETS_ALL,
                }],
            },
            managedByFirewallManager: true,
            redactedFields: [{
                singleHeader: {
                    name: "bfqodp",
                },
            }],
            resourceArn: "bnozeamipjgc",
        },
        awsRegion: "kkwxoqqqiadksrmfpvopq",
        awsSourceSchema: "ywgazosjmcwothayguih",
        awsTags: {
            key5392: "qn",
        },
        publicCloudConnectorsResourceId: "towziecfnbhswtodyqkkqrtatogbl",
        publicCloudResourceName: "eniprewwy",
    },
    resourceGroupName: "rgwafv2LoggingConfiguration",
    tags: {
        key643: "cmguxikvqhszupgpbhlz",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

wafv2_logging_configuration = azure_native.awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfiguration",
    location="miqjaa",
    name="Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])",
    properties={
        "arn": "vvamx",
        "aws_account_id": "opcrasgtswrifmkonwy",
        "aws_properties": {
            "log_destination_configs": ["lyxpldjogdqpffwthdto"],
            "logging_filter": {
                "default_behavior": azure_native.awsconnector.DefaultBehavior.DROP,
                "filters": [{
                    "behavior": azure_native.awsconnector.FilterBehavior.DROP,
                    "conditions": [{
                        "action_condition": {
                            "action": azure_native.awsconnector.Action.ALLOW,
                        },
                        "label_name_condition": {
                            "label_name": "oypkvstyighnjavknhfon",
                        },
                    }],
                    "requirement": azure_native.awsconnector.FilterRequirement.MEET_S_ALL,
                }],
            },
            "managed_by_firewall_manager": True,
            "redacted_fields": [{
                "single_header": {
                    "name": "bfqodp",
                },
            }],
            "resource_arn": "bnozeamipjgc",
        },
        "aws_region": "kkwxoqqqiadksrmfpvopq",
        "aws_source_schema": "ywgazosjmcwothayguih",
        "aws_tags": {
            "key5392": "qn",
        },
        "public_cloud_connectors_resource_id": "towziecfnbhswtodyqkkqrtatogbl",
        "public_cloud_resource_name": "eniprewwy",
    },
    resource_group_name="rgwafv2LoggingConfiguration",
    tags={
        "key643": "cmguxikvqhszupgpbhlz",
    })
Copy
resources:
  wafv2LoggingConfiguration:
    type: azure-native:awsconnector:Wafv2LoggingConfiguration
    properties:
      location: miqjaa
      name: Replace this value with a string matching RegExp ^(z=.{0,259}[^zs.]$)(z!.*[zzzzzzzz])
      properties:
        arn: vvamx
        awsAccountId: opcrasgtswrifmkonwy
        awsProperties:
          logDestinationConfigs:
            - lyxpldjogdqpffwthdto
          loggingFilter:
            defaultBehavior: DROP
            filters:
              - behavior: DROP
                conditions:
                  - actionCondition:
                      action: ALLOW
                    labelNameCondition:
                      labelName: oypkvstyighnjavknhfon
                requirement: MEETS_ALL
          managedByFirewallManager: true
          redactedFields:
            - singleHeader:
                name: bfqodp
          resourceArn: bnozeamipjgc
        awsRegion: kkwxoqqqiadksrmfpvopq
        awsSourceSchema: ywgazosjmcwothayguih
        awsTags:
          key5392: qn
        publicCloudConnectorsResourceId: towziecfnbhswtodyqkkqrtatogbl
        publicCloudResourceName: eniprewwy
      resourceGroupName: rgwafv2LoggingConfiguration
      tags:
        key643: cmguxikvqhszupgpbhlz
Copy

Create Wafv2LoggingConfiguration Resource

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

Constructor syntax

new Wafv2LoggingConfiguration(name: string, args: Wafv2LoggingConfigurationArgs, opts?: CustomResourceOptions);
@overload
def Wafv2LoggingConfiguration(resource_name: str,
                              args: Wafv2LoggingConfigurationArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def Wafv2LoggingConfiguration(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              resource_group_name: Optional[str] = None,
                              location: Optional[str] = None,
                              name: Optional[str] = None,
                              properties: Optional[Wafv2LoggingConfigurationPropertiesArgs] = None,
                              tags: Optional[Mapping[str, str]] = None)
func NewWafv2LoggingConfiguration(ctx *Context, name string, args Wafv2LoggingConfigurationArgs, opts ...ResourceOption) (*Wafv2LoggingConfiguration, error)
public Wafv2LoggingConfiguration(string name, Wafv2LoggingConfigurationArgs args, CustomResourceOptions? opts = null)
public Wafv2LoggingConfiguration(String name, Wafv2LoggingConfigurationArgs args)
public Wafv2LoggingConfiguration(String name, Wafv2LoggingConfigurationArgs args, CustomResourceOptions options)
type: azure-native:awsconnector:Wafv2LoggingConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. Wafv2LoggingConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. Wafv2LoggingConfigurationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. Wafv2LoggingConfigurationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. Wafv2LoggingConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. Wafv2LoggingConfigurationArgs
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 wafv2LoggingConfigurationResource = new AzureNative.Awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource", new()
{
    ResourceGroupName = "string",
    Location = "string",
    Name = "string",
    Properties = 
    {
        { "arn", "string" },
        { "awsAccountId", "string" },
        { "awsProperties", 
        {
            { "logDestinationConfigs", new[]
            {
                "string",
            } },
            { "loggingFilter", 
            {
                { "defaultBehavior", "string" },
                { "filters", new[]
                {
                    
                    {
                        { "behavior", "string" },
                        { "conditions", new[]
                        {
                            
                            {
                                { "actionCondition", 
                                {
                                    { "action", "string" },
                                } },
                                { "labelNameCondition", 
                                {
                                    { "labelName", "string" },
                                } },
                            },
                        } },
                        { "contains", new[]
                        {
                            "string",
                        } },
                        { "eq", new[]
                        {
                            "string",
                        } },
                        { "exists", false },
                        { "neq", new[]
                        {
                            "string",
                        } },
                        { "property", "string" },
                        { "requirement", "string" },
                    },
                } },
            } },
            { "managedByFirewallManager", false },
            { "redactedFields", new[]
            {
                
                {
                    { "method", "any" },
                    { "queryString", "any" },
                    { "singleHeader", 
                    {
                        { "name", "string" },
                    } },
                    { "uriPath", "any" },
                },
            } },
            { "resourceArn", "string" },
        } },
        { "awsRegion", "string" },
        { "awsSourceSchema", "string" },
        { "awsTags", 
        {
            { "string", "string" },
        } },
        { "publicCloudConnectorsResourceId", "string" },
        { "publicCloudResourceName", "string" },
    },
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := awsconnector.NewWafv2LoggingConfiguration(ctx, "wafv2LoggingConfigurationResource", &awsconnector.Wafv2LoggingConfigurationArgs{
	ResourceGroupName: "string",
	Location:          "string",
	Name:              "string",
	Properties: map[string]interface{}{
		"arn":          "string",
		"awsAccountId": "string",
		"awsProperties": map[string]interface{}{
			"logDestinationConfigs": []string{
				"string",
			},
			"loggingFilter": map[string]interface{}{
				"defaultBehavior": "string",
				"filters": []map[string]interface{}{
					map[string]interface{}{
						"behavior": "string",
						"conditions": []map[string]interface{}{
							map[string]interface{}{
								"actionCondition": map[string]interface{}{
									"action": "string",
								},
								"labelNameCondition": map[string]interface{}{
									"labelName": "string",
								},
							},
						},
						"contains": []string{
							"string",
						},
						"eq": []string{
							"string",
						},
						"exists": false,
						"neq": []string{
							"string",
						},
						"property":    "string",
						"requirement": "string",
					},
				},
			},
			"managedByFirewallManager": false,
			"redactedFields": []map[string]interface{}{
				map[string]interface{}{
					"method":      "any",
					"queryString": "any",
					"singleHeader": map[string]interface{}{
						"name": "string",
					},
					"uriPath": "any",
				},
			},
			"resourceArn": "string",
		},
		"awsRegion":       "string",
		"awsSourceSchema": "string",
		"awsTags": map[string]interface{}{
			"string": "string",
		},
		"publicCloudConnectorsResourceId": "string",
		"publicCloudResourceName":         "string",
	},
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var wafv2LoggingConfigurationResource = new Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource", Wafv2LoggingConfigurationArgs.builder()
    .resourceGroupName("string")
    .location("string")
    .name("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
wafv2_logging_configuration_resource = azure_native.awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource",
    resource_group_name=string,
    location=string,
    name=string,
    properties={
        arn: string,
        awsAccountId: string,
        awsProperties: {
            logDestinationConfigs: [string],
            loggingFilter: {
                defaultBehavior: string,
                filters: [{
                    behavior: string,
                    conditions: [{
                        actionCondition: {
                            action: string,
                        },
                        labelNameCondition: {
                            labelName: string,
                        },
                    }],
                    contains: [string],
                    eq: [string],
                    exists: False,
                    neq: [string],
                    property: string,
                    requirement: string,
                }],
            },
            managedByFirewallManager: False,
            redactedFields: [{
                method: any,
                queryString: any,
                singleHeader: {
                    name: string,
                },
                uriPath: any,
            }],
            resourceArn: string,
        },
        awsRegion: string,
        awsSourceSchema: string,
        awsTags: {
            string: string,
        },
        publicCloudConnectorsResourceId: string,
        publicCloudResourceName: string,
    },
    tags={
        string: string,
    })
Copy
const wafv2LoggingConfigurationResource = new azure_native.awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource", {
    resourceGroupName: "string",
    location: "string",
    name: "string",
    properties: {
        arn: "string",
        awsAccountId: "string",
        awsProperties: {
            logDestinationConfigs: ["string"],
            loggingFilter: {
                defaultBehavior: "string",
                filters: [{
                    behavior: "string",
                    conditions: [{
                        actionCondition: {
                            action: "string",
                        },
                        labelNameCondition: {
                            labelName: "string",
                        },
                    }],
                    contains: ["string"],
                    eq: ["string"],
                    exists: false,
                    neq: ["string"],
                    property: "string",
                    requirement: "string",
                }],
            },
            managedByFirewallManager: false,
            redactedFields: [{
                method: "any",
                queryString: "any",
                singleHeader: {
                    name: "string",
                },
                uriPath: "any",
            }],
            resourceArn: "string",
        },
        awsRegion: "string",
        awsSourceSchema: "string",
        awsTags: {
            string: "string",
        },
        publicCloudConnectorsResourceId: "string",
        publicCloudResourceName: "string",
    },
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:awsconnector:Wafv2LoggingConfiguration
properties:
    location: string
    name: string
    properties:
        arn: string
        awsAccountId: string
        awsProperties:
            logDestinationConfigs:
                - string
            loggingFilter:
                defaultBehavior: string
                filters:
                    - behavior: string
                      conditions:
                        - actionCondition:
                            action: string
                          labelNameCondition:
                            labelName: string
                      contains:
                        - string
                      eq:
                        - string
                      exists: false
                      neq:
                        - string
                      property: string
                      requirement: string
            managedByFirewallManager: false
            redactedFields:
                - method: any
                  queryString: any
                  singleHeader:
                    name: string
                  uriPath: any
            resourceArn: string
        awsRegion: string
        awsSourceSchema: string
        awsTags:
            string: string
        publicCloudConnectorsResourceId: string
        publicCloudResourceName: string
    resourceGroupName: string
    tags:
        string: string
Copy

Wafv2LoggingConfiguration Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The Wafv2LoggingConfiguration resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name Changes to this property will trigger replacement. string
Name of Wafv2LoggingConfiguration
Properties Pulumi.AzureNative.AwsConnector.Inputs.Wafv2LoggingConfigurationProperties
The resource-specific properties for this resource.
Tags Dictionary<string, string>
Resource tags.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Name Changes to this property will trigger replacement. string
Name of Wafv2LoggingConfiguration
Properties Wafv2LoggingConfigurationPropertiesArgs
The resource-specific properties for this resource.
Tags map[string]string
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name Changes to this property will trigger replacement. String
Name of Wafv2LoggingConfiguration
properties Wafv2LoggingConfigurationProperties
The resource-specific properties for this resource.
tags Map<String,String>
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
name Changes to this property will trigger replacement. string
Name of Wafv2LoggingConfiguration
properties Wafv2LoggingConfigurationProperties
The resource-specific properties for this resource.
tags {[key: string]: string}
Resource tags.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
name Changes to this property will trigger replacement. str
Name of Wafv2LoggingConfiguration
properties Wafv2LoggingConfigurationPropertiesArgs
The resource-specific properties for this resource.
tags Mapping[str, str]
Resource tags.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
name Changes to this property will trigger replacement. String
Name of Wafv2LoggingConfiguration
properties Property Map
The resource-specific properties for this resource.
tags Map<String>
Resource tags.

Outputs

All input properties are implicitly available as output properties. Additionally, the Wafv2LoggingConfiguration resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
SystemData Pulumi.AzureNative.AwsConnector.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

Action
, ActionArgs

ALLOW
ALLOWAction enum ALLOW
BLOCK
BLOCKAction enum BLOCK
CAPTCHA
CAPTCHAAction enum CAPTCHA
CHALLENGE
CHALLENGEAction enum CHALLENGE
COUNT
COUNTAction enum COUNT
EXCLUDED_AS_COUNT
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT
ActionALLOW
ALLOWAction enum ALLOW
ActionBLOCK
BLOCKAction enum BLOCK
ActionCAPTCHA
CAPTCHAAction enum CAPTCHA
ActionCHALLENGE
CHALLENGEAction enum CHALLENGE
ActionCOUNT
COUNTAction enum COUNT
Action_EXCLUDED_AS_COUNT
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT
ALLOW
ALLOWAction enum ALLOW
BLOCK
BLOCKAction enum BLOCK
CAPTCHA
CAPTCHAAction enum CAPTCHA
CHALLENGE
CHALLENGEAction enum CHALLENGE
COUNT
COUNTAction enum COUNT
EXCLUDED_AS_COUNT
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT
ALLOW
ALLOWAction enum ALLOW
BLOCK
BLOCKAction enum BLOCK
CAPTCHA
CAPTCHAAction enum CAPTCHA
CHALLENGE
CHALLENGEAction enum CHALLENGE
COUNT
COUNTAction enum COUNT
EXCLUDED_AS_COUNT
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT
ALLOW
ALLOWAction enum ALLOW
BLOCK
BLOCKAction enum BLOCK
CAPTCHA
CAPTCHAAction enum CAPTCHA
CHALLENGE
CHALLENGEAction enum CHALLENGE
COUNT
COUNTAction enum COUNT
EXCLUDE_D_A_S_COUNT
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT
"ALLOW"
ALLOWAction enum ALLOW
"BLOCK"
BLOCKAction enum BLOCK
"CAPTCHA"
CAPTCHAAction enum CAPTCHA
"CHALLENGE"
CHALLENGEAction enum CHALLENGE
"COUNT"
COUNTAction enum COUNT
"EXCLUDED_AS_COUNT"
EXCLUDED_AS_COUNTAction enum EXCLUDED_AS_COUNT

ActionConditionModelProperties
, ActionConditionModelPropertiesArgs

Action string | Pulumi.AzureNative.AwsConnector.Action
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
Action string | Action
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action String | Action
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action string | Action
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action str | Action
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action String | "ALLOW" | "BLOCK" | "CAPTCHA" | "CHALLENGE" | "COUNT" | "EXCLUDED_AS_COUNT"
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

ActionConditionModelPropertiesResponse
, ActionConditionModelPropertiesResponseArgs

Action string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
Action string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action String
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action str
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
action String
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

AwsWafv2LoggingConfigurationProperties
, AwsWafv2LoggingConfigurationPropertiesArgs

LogDestinationConfigs List<string>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
LoggingFilter Pulumi.AzureNative.AwsConnector.Inputs.LoggingFilterModelProperties
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
ManagedByFirewallManager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
RedactedFields List<Pulumi.AzureNative.AwsConnector.Inputs.FieldToMatch>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
ResourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
LogDestinationConfigs []string
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
LoggingFilter LoggingFilterModelProperties
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
ManagedByFirewallManager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
RedactedFields []FieldToMatch
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
ResourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs List<String>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter LoggingFilterModelProperties
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager Boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields List<FieldToMatch>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn String
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs string[]
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter LoggingFilterModelProperties
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields FieldToMatch[]
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
log_destination_configs Sequence[str]
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
logging_filter LoggingFilterModelProperties
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managed_by_firewall_manager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redacted_fields Sequence[FieldToMatch]
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resource_arn str
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs List<String>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter Property Map
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager Boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields List<Property Map>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn String
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

AwsWafv2LoggingConfigurationPropertiesResponse
, AwsWafv2LoggingConfigurationPropertiesResponseArgs

LogDestinationConfigs List<string>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
LoggingFilter Pulumi.AzureNative.AwsConnector.Inputs.LoggingFilterModelPropertiesResponse
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
ManagedByFirewallManager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
RedactedFields List<Pulumi.AzureNative.AwsConnector.Inputs.FieldToMatchResponse>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
ResourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
LogDestinationConfigs []string
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
LoggingFilter LoggingFilterModelPropertiesResponse
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
ManagedByFirewallManager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
RedactedFields []FieldToMatchResponse
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
ResourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs List<String>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter LoggingFilterModelPropertiesResponse
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager Boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields List<FieldToMatchResponse>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn String
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs string[]
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter LoggingFilterModelPropertiesResponse
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields FieldToMatchResponse[]
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn string
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
log_destination_configs Sequence[str]
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
logging_filter LoggingFilterModelPropertiesResponse
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managed_by_firewall_manager bool
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redacted_fields Sequence[FieldToMatchResponse]
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resource_arn str
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
logDestinationConfigs List<String>
The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
loggingFilter Property Map
Filtering that specifies which web requests are kept in the logs and which are dropped. You can filter on the rule action and on the web request labels that were applied by matching rules during web ACL evaluation.
managedByFirewallManager Boolean
Indicates whether the logging configuration was created by AWS Firewall Manager, as part of an AWS WAF policy configuration. If true, only Firewall Manager can modify or delete the configuration.
redactedFields List<Property Map>
The parts of the request that you want to keep out of the logs. For example, if you redact the HEADER field, the HEADER field in the firehose will be xxx.
resourceArn String
The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.

Condition
, ConditionArgs

actionCondition Property Map
A single action condition.
labelNameCondition Property Map
A single label name condition.

ConditionResponse
, ConditionResponseArgs

actionCondition Property Map
A single action condition.
labelNameCondition Property Map
A single label name condition.

DefaultBehavior
, DefaultBehaviorArgs

DROP
DROPDefaultBehavior enum DROP
KEEP
KEEPDefaultBehavior enum KEEP
DefaultBehaviorDROP
DROPDefaultBehavior enum DROP
DefaultBehaviorKEEP
KEEPDefaultBehavior enum KEEP
DROP
DROPDefaultBehavior enum DROP
KEEP
KEEPDefaultBehavior enum KEEP
DROP
DROPDefaultBehavior enum DROP
KEEP
KEEPDefaultBehavior enum KEEP
DROP
DROPDefaultBehavior enum DROP
KEEP
KEEPDefaultBehavior enum KEEP
"DROP"
DROPDefaultBehavior enum DROP
"KEEP"
KEEPDefaultBehavior enum KEEP

FieldToMatch
, FieldToMatchArgs

Method object
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
QueryString object
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
SingleHeader Pulumi.AzureNative.AwsConnector.Inputs.SingleHeaderModelProperties
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
UriPath object
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
Method interface{}
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
QueryString interface{}
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
SingleHeader SingleHeaderModelProperties
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
UriPath interface{}
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Object
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString Object
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader SingleHeaderModelProperties
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath Object
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader SingleHeaderModelProperties
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
query_string Any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
single_header SingleHeaderModelProperties
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uri_path Any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString Any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader Property Map
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath Any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.

FieldToMatchResponse
, FieldToMatchResponseArgs

Method object
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
QueryString object
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
SingleHeader Pulumi.AzureNative.AwsConnector.Inputs.SingleHeaderModelPropertiesResponse
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
UriPath object
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
Method interface{}
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
QueryString interface{}
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
SingleHeader SingleHeaderModelPropertiesResponse
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
UriPath interface{}
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Object
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString Object
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader SingleHeaderModelPropertiesResponse
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath Object
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader SingleHeaderModelPropertiesResponse
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
query_string Any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
single_header SingleHeaderModelPropertiesResponse
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uri_path Any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.
method Any
Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
queryString Any
Inspect the query string. This is the part of a URL that appears after a ? character, if any.
singleHeader Property Map
Inspect a single header. Provide the name of the header to inspect, for example, User-Agent or Referer. This setting isn't case sensitive.
uriPath Any
Inspect the request URI path. This is the part of a web request that identifies a resource, for example, /images/daily-ad.jpg.

Filter
, FilterArgs

Behavior string | Pulumi.AzureNative.AwsConnector.FilterBehavior
How to handle logs that satisfy the filter's conditions and requirement.
Conditions List<Pulumi.AzureNative.AwsConnector.Inputs.Condition>
Match conditions for the filter.
Contains List<string>
Property contains
Eq List<string>
Property eq
Exists bool
Property exists
Neq List<string>
Property neq
Property string
Property property
Requirement string | Pulumi.AzureNative.AwsConnector.FilterRequirement
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
Behavior string | FilterBehavior
How to handle logs that satisfy the filter's conditions and requirement.
Conditions []Condition
Match conditions for the filter.
Contains []string
Property contains
Eq []string
Property eq
Exists bool
Property exists
Neq []string
Property neq
Property string
Property property
Requirement string | FilterRequirement
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior String | FilterBehavior
How to handle logs that satisfy the filter's conditions and requirement.
conditions List<Condition>
Match conditions for the filter.
contains List<String>
Property contains
eq List<String>
Property eq
exists Boolean
Property exists
neq List<String>
Property neq
property String
Property property
requirement String | FilterRequirement
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior string | FilterBehavior
How to handle logs that satisfy the filter's conditions and requirement.
conditions Condition[]
Match conditions for the filter.
contains string[]
Property contains
eq string[]
Property eq
exists boolean
Property exists
neq string[]
Property neq
property string
Property property
requirement string | FilterRequirement
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior str | FilterBehavior
How to handle logs that satisfy the filter's conditions and requirement.
conditions Sequence[Condition]
Match conditions for the filter.
contains Sequence[str]
Property contains
eq Sequence[str]
Property eq
exists bool
Property exists
neq Sequence[str]
Property neq
property str
Property property
requirement str | FilterRequirement
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior String | "DROP" | "KEEP"
How to handle logs that satisfy the filter's conditions and requirement.
conditions List<Property Map>
Match conditions for the filter.
contains List<String>
Property contains
eq List<String>
Property eq
exists Boolean
Property exists
neq List<String>
Property neq
property String
Property property
requirement String | "MEETS_ALL" | "MEETS_ANY"
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

FilterBehavior
, FilterBehaviorArgs

DROP
DROPFilterBehavior enum DROP
KEEP
KEEPFilterBehavior enum KEEP
FilterBehaviorDROP
DROPFilterBehavior enum DROP
FilterBehaviorKEEP
KEEPFilterBehavior enum KEEP
DROP
DROPFilterBehavior enum DROP
KEEP
KEEPFilterBehavior enum KEEP
DROP
DROPFilterBehavior enum DROP
KEEP
KEEPFilterBehavior enum KEEP
DROP
DROPFilterBehavior enum DROP
KEEP
KEEPFilterBehavior enum KEEP
"DROP"
DROPFilterBehavior enum DROP
"KEEP"
KEEPFilterBehavior enum KEEP

FilterRequirement
, FilterRequirementArgs

MEETS_ALL
MEETS_ALLFilterRequirement enum MEETS_ALL
MEETS_ANY
MEETS_ANYFilterRequirement enum MEETS_ANY
FilterRequirement_MEETS_ALL
MEETS_ALLFilterRequirement enum MEETS_ALL
FilterRequirement_MEETS_ANY
MEETS_ANYFilterRequirement enum MEETS_ANY
MEETS_ALL
MEETS_ALLFilterRequirement enum MEETS_ALL
MEETS_ANY
MEETS_ANYFilterRequirement enum MEETS_ANY
MEETS_ALL
MEETS_ALLFilterRequirement enum MEETS_ALL
MEETS_ANY
MEETS_ANYFilterRequirement enum MEETS_ANY
MEET_S_ALL
MEETS_ALLFilterRequirement enum MEETS_ALL
MEET_S_ANY
MEETS_ANYFilterRequirement enum MEETS_ANY
"MEETS_ALL"
MEETS_ALLFilterRequirement enum MEETS_ALL
"MEETS_ANY"
MEETS_ANYFilterRequirement enum MEETS_ANY

FilterResponse
, FilterResponseArgs

Behavior string
How to handle logs that satisfy the filter's conditions and requirement.
Conditions List<Pulumi.AzureNative.AwsConnector.Inputs.ConditionResponse>
Match conditions for the filter.
Contains List<string>
Property contains
Eq List<string>
Property eq
Exists bool
Property exists
Neq List<string>
Property neq
Property string
Property property
Requirement string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
Behavior string
How to handle logs that satisfy the filter's conditions and requirement.
Conditions []ConditionResponse
Match conditions for the filter.
Contains []string
Property contains
Eq []string
Property eq
Exists bool
Property exists
Neq []string
Property neq
Property string
Property property
Requirement string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior String
How to handle logs that satisfy the filter's conditions and requirement.
conditions List<ConditionResponse>
Match conditions for the filter.
contains List<String>
Property contains
eq List<String>
Property eq
exists Boolean
Property exists
neq List<String>
Property neq
property String
Property property
requirement String
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior string
How to handle logs that satisfy the filter's conditions and requirement.
conditions ConditionResponse[]
Match conditions for the filter.
contains string[]
Property contains
eq string[]
Property eq
exists boolean
Property exists
neq string[]
Property neq
property string
Property property
requirement string
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior str
How to handle logs that satisfy the filter's conditions and requirement.
conditions Sequence[ConditionResponse]
Match conditions for the filter.
contains Sequence[str]
Property contains
eq Sequence[str]
Property eq
exists bool
Property exists
neq Sequence[str]
Property neq
property str
Property property
requirement str
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.
behavior String
How to handle logs that satisfy the filter's conditions and requirement.
conditions List<Property Map>
Match conditions for the filter.
contains List<String>
Property contains
eq List<String>
Property eq
exists Boolean
Property exists
neq List<String>
Property neq
property String
Property property
requirement String
Logic to apply to the filtering conditions. You can specify that, in order to satisfy the filter, a log must match all conditions or must match at least one condition.

LabelNameConditionModelProperties
, LabelNameConditionModelPropertiesArgs

LabelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
LabelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName String
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
label_name str
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName String
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

LabelNameConditionModelPropertiesResponse
, LabelNameConditionModelPropertiesResponseArgs

LabelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
LabelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName String
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName string
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
label_name str
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.
labelName String
The label name that a log record must contain in order to meet the condition. This must be a fully qualified label name. Fully qualified labels have a prefix, optional namespaces, and label name. The prefix identifies the rule group or web ACL context of the rule that added the label.

LoggingFilterModelProperties
, LoggingFilterModelPropertiesArgs

DefaultBehavior string | Pulumi.AzureNative.AwsConnector.DefaultBehavior
Default handling for logs that don't match any of the specified filtering conditions.
Filters List<Pulumi.AzureNative.AwsConnector.Inputs.Filter>
The filters that you want to apply to the logs.
DefaultBehavior string | DefaultBehavior
Default handling for logs that don't match any of the specified filtering conditions.
Filters []Filter
The filters that you want to apply to the logs.
defaultBehavior String | DefaultBehavior
Default handling for logs that don't match any of the specified filtering conditions.
filters List<Filter>
The filters that you want to apply to the logs.
defaultBehavior string | DefaultBehavior
Default handling for logs that don't match any of the specified filtering conditions.
filters Filter[]
The filters that you want to apply to the logs.
default_behavior str | DefaultBehavior
Default handling for logs that don't match any of the specified filtering conditions.
filters Sequence[Filter]
The filters that you want to apply to the logs.
defaultBehavior String | "DROP" | "KEEP"
Default handling for logs that don't match any of the specified filtering conditions.
filters List<Property Map>
The filters that you want to apply to the logs.

LoggingFilterModelPropertiesResponse
, LoggingFilterModelPropertiesResponseArgs

DefaultBehavior string
Default handling for logs that don't match any of the specified filtering conditions.
Filters List<Pulumi.AzureNative.AwsConnector.Inputs.FilterResponse>
The filters that you want to apply to the logs.
DefaultBehavior string
Default handling for logs that don't match any of the specified filtering conditions.
Filters []FilterResponse
The filters that you want to apply to the logs.
defaultBehavior String
Default handling for logs that don't match any of the specified filtering conditions.
filters List<FilterResponse>
The filters that you want to apply to the logs.
defaultBehavior string
Default handling for logs that don't match any of the specified filtering conditions.
filters FilterResponse[]
The filters that you want to apply to the logs.
default_behavior str
Default handling for logs that don't match any of the specified filtering conditions.
filters Sequence[FilterResponse]
The filters that you want to apply to the logs.
defaultBehavior String
Default handling for logs that don't match any of the specified filtering conditions.
filters List<Property Map>
The filters that you want to apply to the logs.

SingleHeaderModelProperties
, SingleHeaderModelPropertiesArgs

Name string
The name of the query header to inspect.
Name string
The name of the query header to inspect.
name String
The name of the query header to inspect.
name string
The name of the query header to inspect.
name str
The name of the query header to inspect.
name String
The name of the query header to inspect.

SingleHeaderModelPropertiesResponse
, SingleHeaderModelPropertiesResponseArgs

Name string
The name of the query header to inspect.
Name string
The name of the query header to inspect.
name String
The name of the query header to inspect.
name string
The name of the query header to inspect.
name str
The name of the query header to inspect.
name String
The name of the query header to inspect.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Wafv2LoggingConfigurationProperties
, Wafv2LoggingConfigurationPropertiesArgs

Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsWafv2LoggingConfigurationProperties
AWS Properties
AwsRegion string
AWS Region
AwsSourceSchema string
AWS Source Schema
AwsTags Dictionary<string, string>
AWS Tags
PublicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
PublicCloudResourceName string
Public Cloud Resource Name
Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties AwsWafv2LoggingConfigurationProperties
AWS Properties
AwsRegion string
AWS Region
AwsSourceSchema string
AWS Source Schema
AwsTags map[string]string
AWS Tags
PublicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
PublicCloudResourceName string
Public Cloud Resource Name
arn String
Amazon Resource Name (ARN)
awsAccountId String
AWS Account ID
awsProperties AwsWafv2LoggingConfigurationProperties
AWS Properties
awsRegion String
AWS Region
awsSourceSchema String
AWS Source Schema
awsTags Map<String,String>
AWS Tags
publicCloudConnectorsResourceId String
Public Cloud Connectors Resource ID
publicCloudResourceName String
Public Cloud Resource Name
arn string
Amazon Resource Name (ARN)
awsAccountId string
AWS Account ID
awsProperties AwsWafv2LoggingConfigurationProperties
AWS Properties
awsRegion string
AWS Region
awsSourceSchema string
AWS Source Schema
awsTags {[key: string]: string}
AWS Tags
publicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
publicCloudResourceName string
Public Cloud Resource Name
arn str
Amazon Resource Name (ARN)
aws_account_id str
AWS Account ID
aws_properties AwsWafv2LoggingConfigurationProperties
AWS Properties
aws_region str
AWS Region
aws_source_schema str
AWS Source Schema
aws_tags Mapping[str, str]
AWS Tags
public_cloud_connectors_resource_id str
Public Cloud Connectors Resource ID
public_cloud_resource_name str
Public Cloud Resource Name
arn String
Amazon Resource Name (ARN)
awsAccountId String
AWS Account ID
awsProperties Property Map
AWS Properties
awsRegion String
AWS Region
awsSourceSchema String
AWS Source Schema
awsTags Map<String>
AWS Tags
publicCloudConnectorsResourceId String
Public Cloud Connectors Resource ID
publicCloudResourceName String
Public Cloud Resource Name

Wafv2LoggingConfigurationPropertiesResponse
, Wafv2LoggingConfigurationPropertiesResponseArgs

ProvisioningState This property is required. string
The status of the last operation.
Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties Pulumi.AzureNative.AwsConnector.Inputs.AwsWafv2LoggingConfigurationPropertiesResponse
AWS Properties
AwsRegion string
AWS Region
AwsSourceSchema string
AWS Source Schema
AwsTags Dictionary<string, string>
AWS Tags
PublicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
PublicCloudResourceName string
Public Cloud Resource Name
ProvisioningState This property is required. string
The status of the last operation.
Arn string
Amazon Resource Name (ARN)
AwsAccountId string
AWS Account ID
AwsProperties AwsWafv2LoggingConfigurationPropertiesResponse
AWS Properties
AwsRegion string
AWS Region
AwsSourceSchema string
AWS Source Schema
AwsTags map[string]string
AWS Tags
PublicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
PublicCloudResourceName string
Public Cloud Resource Name
provisioningState This property is required. String
The status of the last operation.
arn String
Amazon Resource Name (ARN)
awsAccountId String
AWS Account ID
awsProperties AwsWafv2LoggingConfigurationPropertiesResponse
AWS Properties
awsRegion String
AWS Region
awsSourceSchema String
AWS Source Schema
awsTags Map<String,String>
AWS Tags
publicCloudConnectorsResourceId String
Public Cloud Connectors Resource ID
publicCloudResourceName String
Public Cloud Resource Name
provisioningState This property is required. string
The status of the last operation.
arn string
Amazon Resource Name (ARN)
awsAccountId string
AWS Account ID
awsProperties AwsWafv2LoggingConfigurationPropertiesResponse
AWS Properties
awsRegion string
AWS Region
awsSourceSchema string
AWS Source Schema
awsTags {[key: string]: string}
AWS Tags
publicCloudConnectorsResourceId string
Public Cloud Connectors Resource ID
publicCloudResourceName string
Public Cloud Resource Name
provisioning_state This property is required. str
The status of the last operation.
arn str
Amazon Resource Name (ARN)
aws_account_id str
AWS Account ID
aws_properties AwsWafv2LoggingConfigurationPropertiesResponse
AWS Properties
aws_region str
AWS Region
aws_source_schema str
AWS Source Schema
aws_tags Mapping[str, str]
AWS Tags
public_cloud_connectors_resource_id str
Public Cloud Connectors Resource ID
public_cloud_resource_name str
Public Cloud Resource Name
provisioningState This property is required. String
The status of the last operation.
arn String
Amazon Resource Name (ARN)
awsAccountId String
AWS Account ID
awsProperties Property Map
AWS Properties
awsRegion String
AWS Region
awsSourceSchema String
AWS Source Schema
awsTags Map<String>
AWS Tags
publicCloudConnectorsResourceId String
Public Cloud Connectors Resource ID
publicCloudResourceName String
Public Cloud Resource Name

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:awsconnector:Wafv2LoggingConfiguration fhprvqrekcufvebkfddaoyll /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AwsConnector/wafv2LoggingConfigurations/{name} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0