package awswafv2 // Allow traffic towards application. // // Example: // // The code below shows an example of how to instantiate this type. // // The values are placeholders you should change. // import "github.com/aws/aws-cdk-go/awscdk" // // allowProperty := &AllowProperty{ // CustomRequestHandling: &CustomRequestHandlingProperty{ // InsertHeaders: []interface{}{ // &CustomHTTPHeaderProperty{ // Name: jsii.String("name"), // Value: jsii.String("value"), // }, // }, // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-allow.html // type CfnRuleGroup_AllowProperty struct { // Custom request handling. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-wafv2-rulegroup-allow.html#cfn-wafv2-rulegroup-allow-customrequesthandling // CustomRequestHandling interface{} `field:"optional" json:"customRequestHandling" yaml:"customRequestHandling"` }