azure-native.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" },
},
});
});
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
})
}
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());
}
}
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",
})
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",
},
});
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
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 string
- The unique name of the resource.
- args Wafv2LoggingConfigurationArgs
- 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 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 string
- The unique name of the resource.
- args Wafv2LoggingConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args Wafv2LoggingConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.AwsConnector.Inputs.Wafv2LoggingConfigurationPropertiesArgs
{
Arn = "string",
AwsAccountId = "string",
AwsProperties = new AzureNative.AwsConnector.Inputs.AwsWafv2LoggingConfigurationPropertiesArgs
{
LogDestinationConfigs = new[]
{
"string",
},
LoggingFilter = new AzureNative.AwsConnector.Inputs.LoggingFilterModelPropertiesArgs
{
DefaultBehavior = "string",
Filters = new[]
{
new AzureNative.AwsConnector.Inputs.FilterArgs
{
Behavior = "string",
Conditions = new[]
{
new AzureNative.AwsConnector.Inputs.ConditionArgs
{
ActionCondition = new AzureNative.AwsConnector.Inputs.ActionConditionModelPropertiesArgs
{
Action = "string",
},
LabelNameCondition = new AzureNative.AwsConnector.Inputs.LabelNameConditionModelPropertiesArgs
{
LabelName = "string",
},
},
},
Contains = new[]
{
"string",
},
Eq = new[]
{
"string",
},
Exists = false,
Neq = new[]
{
"string",
},
Property = "string",
Requirement = "string",
},
},
},
ManagedByFirewallManager = false,
RedactedFields = new[]
{
new AzureNative.AwsConnector.Inputs.FieldToMatchArgs
{
Method = "any",
QueryString = "any",
SingleHeader = new AzureNative.AwsConnector.Inputs.SingleHeaderModelPropertiesArgs
{
Name = "string",
},
UriPath = "any",
},
},
ResourceArn = "string",
},
AwsRegion = "string",
AwsSourceSchema = "string",
AwsTags =
{
{ "string", "string" },
},
PublicCloudConnectorsResourceId = "string",
PublicCloudResourceName = "string",
},
Tags =
{
{ "string", "string" },
},
});
example, err := awsconnector.NewWafv2LoggingConfiguration(ctx, "wafv2LoggingConfigurationResource", &awsconnector.Wafv2LoggingConfigurationArgs{
ResourceGroupName: pulumi.String("string"),
Location: pulumi.String("string"),
Name: pulumi.String("string"),
Properties: &awsconnector.Wafv2LoggingConfigurationPropertiesArgs{
Arn: pulumi.String("string"),
AwsAccountId: pulumi.String("string"),
AwsProperties: &awsconnector.AwsWafv2LoggingConfigurationPropertiesArgs{
LogDestinationConfigs: pulumi.StringArray{
pulumi.String("string"),
},
LoggingFilter: &awsconnector.LoggingFilterModelPropertiesArgs{
DefaultBehavior: pulumi.String("string"),
Filters: awsconnector.FilterArray{
&awsconnector.FilterArgs{
Behavior: pulumi.String("string"),
Conditions: awsconnector.ConditionArray{
&awsconnector.ConditionArgs{
ActionCondition: &awsconnector.ActionConditionModelPropertiesArgs{
Action: pulumi.String("string"),
},
LabelNameCondition: &awsconnector.LabelNameConditionModelPropertiesArgs{
LabelName: pulumi.String("string"),
},
},
},
Contains: pulumi.StringArray{
pulumi.String("string"),
},
Eq: pulumi.StringArray{
pulumi.String("string"),
},
Exists: pulumi.Bool(false),
Neq: pulumi.StringArray{
pulumi.String("string"),
},
Property: pulumi.String("string"),
Requirement: pulumi.String("string"),
},
},
},
ManagedByFirewallManager: pulumi.Bool(false),
RedactedFields: awsconnector.FieldToMatchArray{
&awsconnector.FieldToMatchArgs{
Method: pulumi.Any("any"),
QueryString: pulumi.Any("any"),
SingleHeader: &awsconnector.SingleHeaderModelPropertiesArgs{
Name: pulumi.String("string"),
},
UriPath: pulumi.Any("any"),
},
},
ResourceArn: pulumi.String("string"),
},
AwsRegion: pulumi.String("string"),
AwsSourceSchema: pulumi.String("string"),
AwsTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
PublicCloudConnectorsResourceId: pulumi.String("string"),
PublicCloudResourceName: pulumi.String("string"),
},
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var wafv2LoggingConfigurationResource = new Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource", Wafv2LoggingConfigurationArgs.builder()
.resourceGroupName("string")
.location("string")
.name("string")
.properties(Wafv2LoggingConfigurationPropertiesArgs.builder()
.arn("string")
.awsAccountId("string")
.awsProperties(AwsWafv2LoggingConfigurationPropertiesArgs.builder()
.logDestinationConfigs("string")
.loggingFilter(LoggingFilterModelPropertiesArgs.builder()
.defaultBehavior("string")
.filters(FilterArgs.builder()
.behavior("string")
.conditions(ConditionArgs.builder()
.actionCondition(ActionConditionModelPropertiesArgs.builder()
.action("string")
.build())
.labelNameCondition(LabelNameConditionModelPropertiesArgs.builder()
.labelName("string")
.build())
.build())
.contains("string")
.eq("string")
.exists(false)
.neq("string")
.property("string")
.requirement("string")
.build())
.build())
.managedByFirewallManager(false)
.redactedFields(FieldToMatchArgs.builder()
.method("any")
.queryString("any")
.singleHeader(SingleHeaderModelPropertiesArgs.builder()
.name("string")
.build())
.uriPath("any")
.build())
.resourceArn("string")
.build())
.awsRegion("string")
.awsSourceSchema("string")
.awsTags(Map.of("string", "string"))
.publicCloudConnectorsResourceId("string")
.publicCloudResourceName("string")
.build())
.tags(Map.of("string", "string"))
.build());
wafv2_logging_configuration_resource = azure_native.awsconnector.Wafv2LoggingConfiguration("wafv2LoggingConfigurationResource",
resource_group_name="string",
location="string",
name="string",
properties={
"arn": "string",
"aws_account_id": "string",
"aws_properties": {
"log_destination_configs": ["string"],
"logging_filter": {
"default_behavior": "string",
"filters": [{
"behavior": "string",
"conditions": [{
"action_condition": {
"action": "string",
},
"label_name_condition": {
"label_name": "string",
},
}],
"contains": ["string"],
"eq": ["string"],
"exists": False,
"neq": ["string"],
"property": "string",
"requirement": "string",
}],
},
"managed_by_firewall_manager": False,
"redacted_fields": [{
"method": "any",
"query_string": "any",
"single_header": {
"name": "string",
},
"uri_path": "any",
}],
"resource_arn": "string",
},
"aws_region": "string",
"aws_source_schema": "string",
"aws_tags": {
"string": "string",
},
"public_cloud_connectors_resource_id": "string",
"public_cloud_resource_name": "string",
},
tags={
"string": "string",
})
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",
},
});
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
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:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of Wafv2LoggingConfiguration
- Properties
Pulumi.
Azure Native. Aws Connector. Inputs. Wafv2Logging Configuration Properties - The resource-specific properties for this resource.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Name string
- Name of Wafv2LoggingConfiguration
- Properties
Wafv2Logging
Configuration Properties Args - The resource-specific properties for this resource.
- map[string]string
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of Wafv2LoggingConfiguration
- properties
Wafv2Logging
Configuration Properties - The resource-specific properties for this resource.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- name string
- Name of Wafv2LoggingConfiguration
- properties
Wafv2Logging
Configuration Properties - The resource-specific properties for this resource.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- name str
- Name of Wafv2LoggingConfiguration
- properties
Wafv2Logging
Configuration Properties Args - The resource-specific properties for this resource.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- name String
- Name of Wafv2LoggingConfiguration
- properties Property Map
- The resource-specific properties for this resource.
- 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.
- System
Data Pulumi.Azure Native. Aws Connector. Outputs. System Data Response - 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.
- System
Data SystemData Response - 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.
- system
Data SystemData Response - 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.
- system
Data SystemData Response - 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 SystemData Response - 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.
- system
Data 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
- Action
ALLOW - ALLOWAction enum ALLOW
- Action
BLOCK - BLOCKAction enum BLOCK
- Action
CAPTCHA - CAPTCHAAction enum CAPTCHA
- Action
CHALLENGE - CHALLENGEAction enum CHALLENGE
- Action
COUNT - 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.
Azure Native. Aws Connector. 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
- Log
Destination List<string>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- Logging
Filter Pulumi.Azure Native. Aws Connector. Inputs. Logging Filter Model Properties - 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 boolFirewall Manager - 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 List<Pulumi.Azure Native. Aws Connector. Inputs. Field To Match> - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- Log
Destination []stringConfigs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- Logging
Filter LoggingFilter Model Properties - 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 boolFirewall Manager - 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 []FieldTo Match - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log
Destination List<String>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter LoggingFilter Model Properties - 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 BooleanFirewall Manager - 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 List<FieldTo Match> - 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 String - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log
Destination string[]Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter LoggingFilter Model Properties - 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 booleanFirewall Manager - 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 FieldTo Match[] - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log_
destination_ Sequence[str]configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging_
filter LoggingFilter Model Properties - 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_ boolfirewall_ manager - 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[FieldTo Match] - 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.
- log
Destination List<String>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter 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.
- managed
By BooleanFirewall Manager - 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 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.
- resource
Arn String - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
AwsWafv2LoggingConfigurationPropertiesResponse, AwsWafv2LoggingConfigurationPropertiesResponseArgs
- Log
Destination List<string>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- Logging
Filter Pulumi.Azure Native. Aws Connector. Inputs. Logging Filter Model Properties Response - 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 boolFirewall Manager - 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 List<Pulumi.Azure Native. Aws Connector. Inputs. Field To Match Response> - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- Log
Destination []stringConfigs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- Logging
Filter LoggingFilter Model Properties Response - 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 boolFirewall Manager - 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 []FieldTo Match Response - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log
Destination List<String>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter LoggingFilter Model Properties Response - 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 BooleanFirewall Manager - 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 List<FieldTo Match Response> - 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 String - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log
Destination string[]Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter LoggingFilter Model Properties Response - 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 booleanFirewall Manager - 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 FieldTo Match Response[] - 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 string - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
- log_
destination_ Sequence[str]configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging_
filter LoggingFilter Model Properties Response - 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_ boolfirewall_ manager - 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[FieldTo Match Response] - 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.
- log
Destination List<String>Configs - The Amazon Resource Names (ARNs) of the logging destinations that you want to associate with the web ACL.
- logging
Filter 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.
- managed
By BooleanFirewall Manager - 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 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.
- resource
Arn String - The Amazon Resource Name (ARN) of the web ACL that you want to associate with LogDestinationConfigs.
Condition, ConditionArgs
- Action
Condition Pulumi.Azure Native. Aws Connector. Inputs. Action Condition Model Properties - A single action condition.
- Label
Name Pulumi.Condition Azure Native. Aws Connector. Inputs. Label Name Condition Model Properties - A single label name condition.
- Action
Condition ActionCondition Model Properties - A single action condition.
- Label
Name LabelCondition Name Condition Model Properties - A single label name condition.
- action
Condition ActionCondition Model Properties - A single action condition.
- label
Name LabelCondition Name Condition Model Properties - A single label name condition.
- action
Condition ActionCondition Model Properties - A single action condition.
- label
Name LabelCondition Name Condition Model Properties - A single label name condition.
- action_
condition ActionCondition Model Properties - A single action condition.
- label_
name_ Labelcondition Name Condition Model Properties - A single label name condition.
- action
Condition Property Map - A single action condition.
- label
Name Property MapCondition - A single label name condition.
ConditionResponse, ConditionResponseArgs
- Action
Condition Pulumi.Azure Native. Aws Connector. Inputs. Action Condition Model Properties Response - A single action condition.
- Label
Name Pulumi.Condition Azure Native. Aws Connector. Inputs. Label Name Condition Model Properties Response - A single label name condition.
- Action
Condition ActionCondition Model Properties Response - A single action condition.
- Label
Name LabelCondition Name Condition Model Properties Response - A single label name condition.
- action
Condition ActionCondition Model Properties Response - A single action condition.
- label
Name LabelCondition Name Condition Model Properties Response - A single label name condition.
- action
Condition ActionCondition Model Properties Response - A single action condition.
- label
Name LabelCondition Name Condition Model Properties Response - A single label name condition.
- action_
condition ActionCondition Model Properties Response - A single action condition.
- label_
name_ Labelcondition Name Condition Model Properties Response - A single label name condition.
- action
Condition Property Map - A single action condition.
- label
Name Property MapCondition - A single label name condition.
DefaultBehavior, DefaultBehaviorArgs
- DROP
- DROPDefaultBehavior enum DROP
- KEEP
- KEEPDefaultBehavior enum KEEP
- Default
Behavior DROP - DROPDefaultBehavior enum DROP
- Default
Behavior 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
- "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.
- Query
String object - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- Single
Header Pulumi.Azure Native. Aws Connector. Inputs. Single Header Model Properties - 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 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.
- Query
String interface{} - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- Single
Header SingleHeader Model Properties - 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 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.
- query
String Object - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header SingleHeader Model Properties - 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 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.
- query
String any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header SingleHeader Model Properties - 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.
- query_
string Any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single_
header SingleHeader Model Properties - 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.
- query
String Any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header 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.
- 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.
FieldToMatchResponse, FieldToMatchResponseArgs
- Method object
- Inspect the HTTP method. The method indicates the type of operation that the request is asking the origin to perform.
- Query
String object - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- Single
Header Pulumi.Azure Native. Aws Connector. Inputs. Single Header Model Properties Response - 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 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.
- Query
String interface{} - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- Single
Header SingleHeader Model Properties Response - 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 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.
- query
String Object - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header SingleHeader Model Properties Response - 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 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.
- query
String any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header SingleHeader Model Properties Response - 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.
- query_
string Any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single_
header SingleHeader Model Properties Response - 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.
- query
String Any - Inspect the query string. This is the part of a URL that appears after a ? character, if any.
- single
Header 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.
- 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.
Filter, FilterArgs
- Behavior
string | Pulumi.
Azure Native. Aws Connector. Filter Behavior - How to handle logs that satisfy the filter's conditions and requirement.
- Conditions
List<Pulumi.
Azure Native. Aws Connector. 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.
Azure Native. Aws Connector. Filter Requirement - 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 | Filter
Behavior - 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 | Filter
Requirement - 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 | Filter
Behavior - 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 | Filter
Requirement - 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 | Filter
Behavior - 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 | Filter
Requirement - 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 | Filter
Behavior - 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 | Filter
Requirement - 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
- Filter
Behavior DROP - DROPFilterBehavior enum DROP
- Filter
Behavior 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
- "DROP"
- DROPFilterBehavior enum DROP
- "KEEP"
- KEEPFilterBehavior enum KEEP
FilterRequirement, FilterRequirementArgs
- MEETS_ALL
- MEETS_ALLFilterRequirement enum MEETS_ALL
- MEETS_ANY
- MEETS_ANYFilterRequirement enum MEETS_ANY
- Filter
Requirement_MEETS_ALL - MEETS_ALLFilterRequirement enum MEETS_ALL
- Filter
Requirement_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.
Azure Native. Aws Connector. Inputs. Condition Response> - 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
[]Condition
Response - 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<Condition
Response> - 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
Condition
Response[] - 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[Condition
Response] - 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
- Label
Name 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 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 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 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.
- label
Name 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
- Label
Name 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 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 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 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.
- label
Name 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
- Default
Behavior string | Pulumi.Azure Native. Aws Connector. Default Behavior - Default handling for logs that don't match any of the specified filtering conditions.
- Filters
List<Pulumi.
Azure Native. Aws Connector. Inputs. Filter> - The filters that you want to apply to the logs.
- Default
Behavior 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 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.
- default
Behavior 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.
- default
Behavior 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
- Default
Behavior string - Default handling for logs that don't match any of the specified filtering conditions.
- Filters
List<Pulumi.
Azure Native. Aws Connector. Inputs. Filter Response> - The filters that you want to apply to the logs.
- Default
Behavior string - Default handling for logs that don't match any of the specified filtering conditions.
- Filters
[]Filter
Response - The filters that you want to apply to the logs.
- default
Behavior String - Default handling for logs that don't match any of the specified filtering conditions.
- filters
List<Filter
Response> - The filters that you want to apply to the logs.
- default
Behavior string - Default handling for logs that don't match any of the specified filtering conditions.
- filters
Filter
Response[] - 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[Filter
Response] - The filters that you want to apply to the logs.
- default
Behavior 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Wafv2LoggingConfigurationProperties, Wafv2LoggingConfigurationPropertiesArgs
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties Pulumi.Azure Native. Aws Connector. Inputs. Aws Wafv2Logging Configuration Properties - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties AwsWafv2Logging Configuration Properties - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- map[string]string
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties AwsWafv2Logging Configuration Properties - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String,String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
- arn string
- Amazon Resource Name (ARN)
- aws
Account stringId - AWS Account ID
- aws
Properties AwsWafv2Logging Configuration Properties - AWS Properties
- aws
Region string - AWS Region
- aws
Source stringSchema - AWS Source Schema
- {[key: string]: string}
- AWS Tags
- public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud stringResource Name - Public Cloud Resource Name
- arn str
- Amazon Resource Name (ARN)
- aws_
account_ strid - AWS Account ID
- aws_
properties AwsWafv2Logging Configuration Properties - AWS Properties
- aws_
region str - AWS Region
- aws_
source_ strschema - AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_
cloud_ strconnectors_ resource_ id - Public Cloud Connectors Resource ID
- public_
cloud_ strresource_ name - Public Cloud Resource Name
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties Property Map - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
Wafv2LoggingConfigurationPropertiesResponse, Wafv2LoggingConfigurationPropertiesResponseArgs
- Provisioning
State string - The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties Pulumi.Azure Native. Aws Connector. Inputs. Aws Wafv2Logging Configuration Properties Response - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- Dictionary<string, string>
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- Provisioning
State string - The status of the last operation.
- Arn string
- Amazon Resource Name (ARN)
- Aws
Account stringId - AWS Account ID
- Aws
Properties AwsWafv2Logging Configuration Properties Response - AWS Properties
- Aws
Region string - AWS Region
- Aws
Source stringSchema - AWS Source Schema
- map[string]string
- AWS Tags
- Public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- Public
Cloud stringResource Name - Public Cloud Resource Name
- provisioning
State String - The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties AwsWafv2Logging Configuration Properties Response - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String,String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - Public Cloud Resource Name
- provisioning
State string - The status of the last operation.
- arn string
- Amazon Resource Name (ARN)
- aws
Account stringId - AWS Account ID
- aws
Properties AwsWafv2Logging Configuration Properties Response - AWS Properties
- aws
Region string - AWS Region
- aws
Source stringSchema - AWS Source Schema
- {[key: string]: string}
- AWS Tags
- public
Cloud stringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud stringResource Name - Public Cloud Resource Name
- provisioning_
state str - The status of the last operation.
- arn str
- Amazon Resource Name (ARN)
- aws_
account_ strid - AWS Account ID
- aws_
properties AwsWafv2Logging Configuration Properties Response - AWS Properties
- aws_
region str - AWS Region
- aws_
source_ strschema - AWS Source Schema
- Mapping[str, str]
- AWS Tags
- public_
cloud_ strconnectors_ resource_ id - Public Cloud Connectors Resource ID
- public_
cloud_ strresource_ name - Public Cloud Resource Name
- provisioning
State String - The status of the last operation.
- arn String
- Amazon Resource Name (ARN)
- aws
Account StringId - AWS Account ID
- aws
Properties Property Map - AWS Properties
- aws
Region String - AWS Region
- aws
Source StringSchema - AWS Source Schema
- Map<String>
- AWS Tags
- public
Cloud StringConnectors Resource Id - Public Cloud Connectors Resource ID
- public
Cloud StringResource Name - 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}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0